@charset "utf-8";

/* -------------------------------------------------- */
/* PC*/
/* -------------------------------------------------- */

/* ----- */
/* メインビジュアル */
/* ----- */

#topMv {
	position: relative;
	width: 100%;
}

.topMvHero {
	position: relative;
	/* min-height: calc(100vh - var(--header-height)); */
	display: flex;
	align-items: center;
}
.topMvHero:before,
.topMvHero:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	height: 100%;
	background-repeat: no-repeat;
	-webkit-background-size: auto 100%;
}

.topMvHero:before {
	width: 50%;
	max-width: 33.3vw;
	left: 0;
	right: auto;
	background-image: url("../../img/top/top_mv_bg01.png");
	background-position: left top;
	background-size: 100% auto;
}

.topMvHero:after {
	width: 100%;
	right: 0;
	left: auto;
	background-image: url("../../img/top/top_mv_bg02.png");
	background-position: right top;
	background-size: auto 100%;
}

/* @media screen and (min-width: 1600px) and (max-width: 1800px) {
	.topMvHero:before {
		max-width: 15vw;
	}
}

@media screen and (max-width: 1599px) {
	.topMvHero:before {
		background-image: url("../../img/top/top_mv_bg01_blur.png");
		width: 100%;
		max-width: none;
		bottom: 0;
		top: auto;
		z-index: 2;
	}
} */

/* @media screen and (min-width: 1025px) and (max-width: 1599px) {
	.topMvHero {
		padding-bottom: 24.975vw;
	}
	.topMvHero:before {
		height: 26.475vw;
		background-size: auto 100%;
	}
} */

.topMvInner {
	position: relative;
	z-index: 3;
	padding: 41.25px 5% 0;
}

/* タイトル・テキスト */
.topMvContent {
	width: 100%;
}

.topMvTitle {
	font-size: clamp(3.6rem, 7.33vw, 6.6rem);
	color: #016B3A;
	line-height: 1.2;
	letter-spacing: 0.1em;
	margin-bottom: 0.25em;
	font-weight: 700;
}

.topMvTitleM {
	/* font-size: clamp(3.1rem, 4.875vw, 5.8rem); */
	font-size: 0.87em;
}

.topMvTitleS {
	/* font-size: clamp(2.2rem, 3.5025vw, 4.2rem); */
	font-size: 0.636em;
}

.topMvLead {
	font-size: clamp(1.4rem, 2.11vw, 1.9rem);
	letter-spacing: 0.04em;
	line-height: 2;
	margin-bottom: 1.4em;
	font-weight: bold;
}

.topMvLeadHighlight {
	color: #fff;
	background-color: #2E9D61;
	border-radius: 7.5px;
	padding: 0.1em 0.5em;
}

/* キャラクター（MV右上） */
.topMvCharacters {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	gap: clamp(7.5px, 1.6875vw, 20px);
	padding: 4.75%;
}

.topMvCharacter {
	line-height: 0;
}

.topMvCharacter01 {
	width: clamp(75px, 12.69vw, 152px);
}

.topMvCharacter02 {
	width: clamp(75px, 14.4975vw, 174px);
}

.topMvCharacter img {
	display: block;
	width: 100%;
}

/* コンテンツ画像 */
.topMvImgWrap {
	position: relative;
	width: 100%;
}

.topMvImg01 {
	width: 54.25%;
}

.topMvImg02 {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 57.54%;
	z-index: 1;
}

.topMvImg03 {
	position: absolute;
	right: 0;
	top: -28.5%;
	width: 42%;
}

.topMvImg img {
	display: block;
	width: 100%;
	height: auto;
}


/* -------------------------------------------------- */
/* PC only (1025px〜) */
/* -------------------------------------------------- */
@media screen and (min-width: 1025px) {

	/* セクション余白（PC） */
	#topMv {
		margin-bottom: 112px;
	}

	#service {
		margin-bottom: 135px;
	}

	#news {
		margin-bottom: 120px;
	}



}


/* -------------------------------------------------- */
/* TAB&SP */
/* -------------------------------------------------- */
@media screen and (max-width: 1024px) {

	/* メインビジュアル */
	/* .topMvHero {
		min-height: calc(100vh - var(--header-height));
	} */

	/* .topMvHero:before,
	.topMvHero:after {
		opacity: 0.8;
	} */

	.topMvContent {
		max-width: 100%;
	}
}

/* -------------------------------------------------- */
/* TAB(調整) */
/* -------------------------------------------------- */
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.topMvHero:before { 
		display: none;
	}
}

/* -------------------------------------------------- */
/* SP(調整) */
/* -------------------------------------------------- */
@media screen and (max-width: 767px) {
	/* メインビジュアル */
	.topMvHero {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		/* padding-bottom: 45vw; */
	}
	.topMvHero:before {
		/* height: 52.5vw; */
		background-size: 100% auto;
	}

	.topMvHero::after {
		background-size: 100% auto;
		max-width: calc(100% - 33.3vw);
	}

	.topMvInner {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: stretch;
		    -ms-flex-align: stretch;
		        align-items: stretch;
		width: 100%;
		padding: 75px 0 0;
	}

	.topMvTitle {
		font-size: 6.8vw;
		letter-spacing: 0.05em;
	}

	.topMvTitleM {
		font-size: 1em;
	}

	.topMvContent {
		text-align: center;
	}

	.topMvCharacters {
		/* position: static;
		top: auto;
		right: auto;
		left: auto;
		z-index: auto;
		width: 100%;
		padding: 0;
		gap: 8px;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		-webkit-box-align: end;
		    -ms-flex-align: end;
		        align-items: flex-end;
		margin-bottom: 13.07vw; */
		display: none;
	}


	.topMvImgWrap {
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}

	.topMvImg01 {
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}

	.topMvImg01 > img {
		width: 60%;
		object-fit: contain;
	}

	.topMvImg01::after {
		content: "";
		display: block;
		width: 40%;
		height: auto;
		aspect-ratio: 3 / 2;
		background-image: url("../../img/top/top_mv_character_sp.png");
		background-size: contain;
		background-position: center;
		background-repeat: no-repeat;
	}

	.topMvImg02 {
		position: relative;
		width: 90%;
		margin: 0 auto;
		/* padding-top: 35%; */
	}

	.topMvImg03 {
		width: 40%;
		top: auto;
		bottom: 56%;
	}
	
	/* .topMvImg03 > img {
		width: 65%;		
	}

	.topMvImg03::before {
		content: "";
		display: block;
		width: 30%;
		height: auto;
		aspect-ratio: 1 / 1;
		background-image: url("../../img/top/top_mv_character_ion.png");
		background-size: contain;
		background-position: center;
		background-repeat: no-repeat;
	} */


	.topMvLead {
		margin-bottom: 1em;
	}



}
