@charset "utf-8";





/* --------------------------------------------------------------------------------
ローディング
-------------------------------------------------------------------------------- */
.loading {
	position: fixed;
	inset: 0;
	z-index: 9999;
	height: 100svh;
	background-color: #fff;
}
.loading__inner {
	width: 100%;
	height: inherit;
	display: grid;
	place-content: center;
	align-items: center;
	row-gap: 10px;
}
.loading__text {
	opacity: 0;
	position: absolute;
	top: calc(50% - 75px);
	left:calc(50% - 250px);
	text-align: center;
}
.loading__text img {
	width: 500px;
}
.loading__logo {
	opacity: 0;
	position: absolute;
	top: calc(50% - 62.5px);
	left:calc(50% - 450px);
	width: min(900px, 100%);
	margin: 0;
}
.loading__logo img {
	width: 900px;
}
.contents {
	height: 100svh;
}










/* --------------------------------------------------------------------------------
index
-------------------------------------------------------------------------------- */
#index {
	padding: 0 0 40px;
	overflow: hidden;
}

#index .main-about {
	position: relative;
	max-width: 1920px;
	height: 1050px;
	margin: 0 auto;
	overflow: hidden;
}



/********** main-about-box **********/
#index .main-about-box {
	
}

/********** メイン画像 **********/
#index .img-main {
	position: relative;
}
#index .img-main .main-txt {
	position: absolute;
	z-index: 2;
	top: 60px;
	right: 410px;
	
	display: flex;
}
#index .img-main .main-txt .main-txt-box {
	writing-mode: vertical-rl;
	font-size: 40px;
}
#index .img-main .main-img {
	position: absolute;
	z-index: 1;
	left: 260px;
	
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
#index .img-main .main-img img {
	position: relative;
	width: 1660px;
	height: 720px;
	object-fit: cover;
	max-width: none;
}

/********** 背景色 **********/
#index .main-about::after {
	position: absolute;
	top: 230px;
	z-index: -1;
	content: '';
	
	width: 420px;
	height: 660px;
	background: #f0f0f0;
}


/********** 信用と信頼 **********/
#index .main-about .txt {
	position: absolute;
	z-index: 3;
	top: 650px;
	left: 200px;
}
#index .main-about .txt h1 {
	padding: 0 0 20px;
}
#index .main-about .txt h1 img {
	width: 493px;
	height: auto;
}
#index .main-about .txt .txt-box {
	line-height: 2.25;
	font-size: 18px;
}


/* --------------------------------------------------------------------------------
各コンテンツへのリンク
-------------------------------------------------------------------------------- */
#index .contents-link .contents-link-box {
	display: flex;
	justify-content: space-between;
	
	width: 1240px;
	margin: 0 auto 50px;
}
#index .contents-link .contents-link-box .img {
	width: 740px;
}
#index .contents-link .contents-link-box .txt {
	width: 500px;
}
#index .contents-link h2 {
	display: block;
	padding: 0 0 40px;
}
#index .contents-link h2 .heading-ja {
	display: block;
	
	position: relative;
	margin: auto auto 24px 10px;
	font-size: 20px;
	font-weight: 700;
}
#index .contents-link .contents-link-box .txt h2 .heading-en {
	position: relative;
	display: block;
	
	margin: -10px 0 0;
	line-height: 1;
	font-size: 90px;
	font-weight: 500;
	color: #dcdcdc;
	
}
#index .contents-link .contents-link-box .txt h2 .heading-ja {
	position: relative;
	margin: 0 5px 0 3px;
	color: inherit;
	font-size: 32px;
}
#index .contents-link .contents-link-box .txt .btn-details {
	display: flex;
	justify-content: flex-end;
	width: 100%;
}
#index .contents-link .contents-link-box .txt .btn-details a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 250px;
	height: 50px;
	font-size: 16px;
	color: #fff;
	background: #002864 url("../images/common/btn-arr.svg") no-repeat calc(100% - 19px) 50%;
	background-size: 0.85rem auto;
}


/* --------------------------------------------------------------------------------
contents-link-1：通常パターン
-------------------------------------------------------------------------------- */
#index .contents-link-1 h2 .heading-ja {
	text-align: right;
}
#index .contents-link-1 .contents-link-box .txt h2 .heading-en {
	text-align: right;
}
#index .contents-link-1 .contents-link-box .txt h2 .heading-ja {
	text-align: right;
}


/* --------------------------------------------------------------------------------
contents-link-2：レイアウト反転パターン
-------------------------------------------------------------------------------- */
#index .contents-link-2 .contents-link-box {
	flex-direction: row-reverse;
}
#index .contents-link-2 h2 .heading-ja {
	text-align: left;
}
#index .contents-link-2 .contents-link-box .txt h2 .heading-en {
	text-align: left;
}
#index .contents-link-2 .contents-link-box .txt h2 .heading-ja {
	text-align: left;
}
#index .contents-link-2 .contents-link-box .txt .btn-details {
	justify-content: flex-start;
}












