@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% - 10vw);
	left:calc(50% - 25vw);
	text-align: center;
}
.loading__text img {
	width: 50vw;
}
.loading__logo {
	opacity: 0;
	position: absolute;
	top: calc(50% - 5vw);
	left:calc(50% - 45vw);
	width: min(90vw, 100%);
	margin: 0;
}
.loading__logo img {
	width: 90vw;
}
.contents {
	height: 100svh;
}





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


/* --------------------------------------------------------------------------------
main-about
-------------------------------------------------------------------------------- */
#index .main-about {
	position: relative;
	height: 212vw;
	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: 11.5vw;
	left: 51vw;
	
	display: flex;
}
#index .img-main .main-txt .main-txt-box {
	writing-mode: vertical-rl;
	font-size: 5.4vw;
}
#index .img-main .main-img {
	position: absolute;
	z-index: 1;
	left: 10vw;
	
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
#index .img-main .main-img img {
	position: relative;
	width: 90vw;
	height: 120vw;
	object-fit: cover;
	max-width: none;
}

/********** 背景色 **********/
#index .main-about::after {
	position: absolute;
	top: 45vw;
	z-index: -1;
	content: '';
	
	width: 34vw;
	height: 128vw;
	background: #f0f0f0;
}


/********** 信用と信頼 **********/
#index .main-about .txt {
	position: absolute;
	z-index: 3;
	top: 114.5vw;
	left: 5vw;
	
	width: 90vw;
}
#index .main-about .txt h1 {
	padding: 0 0 6.5vw;
}
#index .main-about .txt h1 img {
	width: 69vw;
	height: auto;
}
#index .main-about .txt .txt-box {
	line-height: 1.8;
	font-size: 4.4vw;
}


/* --------------------------------------------------------------------------------
各コンテンツへのリンク
-------------------------------------------------------------------------------- */
#index .contents-link {
	padding: 0 0 16vw;
}
#index .contents-link .contents-link-box {
	padding: 0 10vw 0 0;
}
#index .contents-link .contents-link-box .img {
	padding: 0 0 2vw;
}
#index .contents-link .contents-link-box .txt {
}
#index .contents-link h2 {
	display: block;
	padding: 0 0 4vw;
}
#index .contents-link h2 .heading-ja {
	display: block;
	
	position: relative;
	font-size: 2rem;
	font-weight: 700;
}
#index .contents-link .contents-link-box .txt h2 .heading-en {
	position: relative;
	display: block;
	
	padding: 0 0 0.2vw;
	line-height: 1;
	letter-spacing: 0;
	font-size: 12.4vw;
	font-weight: 500;
	color: #dcdcdc;
	
}
#index .contents-link .contents-link-box .txt h2 .heading-ja {
	position: relative;
	color: inherit;
	letter-spacing: -0.01em;
	font-size: 4.8vw;
}
#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: 50vw;
	height: 10vw;
	font-size: 3.6vw;
	color: #fff;
	background: #002864 url("../images/common/btn-arr.svg") no-repeat calc(100% - 3vw) 50%;
	background-size: 1.7vw 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 {
	padding: 0 0 0 10vw;
}
#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;
}












