@charset "UTF-8";
/* lower.css */


.mv_wrap {
	padding-top: 100px;
	padding-top: clamp(70px,10vw,100px);
}


/* ===== パンくずリスト ===== */
.bread_list,
.bread_list li {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
}
.bread_list li,
.bread_list li a,
.bread_list li p {
	line-height: 1.2;
}
.bread_list li {
	font-size: 14px;
	color: #666666;
}
.bread_list li a,
.bread_list li p {
	font-size: 1em;
	letter-spacing: .15em;
}
.bread_list li + li:before {
	content: "";
	width:  .85em;
	height: .85em;
	min-width:  .85em;
	min-height: .85em;
	display: block;
	margin: 0 .5em;
	background-image: url(../../img/common/bread_arrow.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
/* パンくず トップページアイコン */
.bread_list li:first-of-type a {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
}
.bread_list li:first-of-type a:before {
	content: "";
	width:  1.25em;
	height: 1.25em;
	min-width:  1.25em;
	min-height: 1.25em;
	display: block;
	background-image: url(../../img/common/bread_home.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin-right: .5em;
	transform: translateY(-.05em);
}




/* ===== MV ===== */
.mv_wrap,
.scroll_text  {
	padding-bottom: 60px;
}
.mv_wrap {
	position: relative;
	background-color: #f5f5f5;
}
#lower_mv:after {
	content: "";
	width: 100%;
	height: 7.792vw;
	display: block;
	background-image: url(../../img/common/lower_maru.svg);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center top;
	margin-top: -1px;
}
h1 {
	font-size: 100px;
	font-size: clamp(55px,5.208vw,100px);
	margin-bottom: .5em;
}
h1 img {
	width:  100%;
	height: 1em;
	display: block;
	object-fit: contain;
	object-position: left center;
}
h1 small {
	font-size: 28px;
	font-size: clamp(16px,1.458vw,28px);
	font-weight: 500;
	line-height: 1.3;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
	margin-top: 1em;
	color: #009e96;
}
h1 small:before {
	content: "";
	width: 2.15em;
	height: 2px;
	display: block;
	margin-right: .5em;
	background-color: #009e96;
}
/* mv + p */
h1 + p {
	font-size: 24px;
	font-size: clamp(16px,1.25vw,24px);
	line-height: 2;
	letter-spacing: .1em;
	margin-bottom: 2.5em;
}
/* mv img */
.mv_img {
	width: 100%;
	height: 36.979vw;
	max-height: 700px;
	min-height: 400px;
	border-radius: 20px;
	overflow: hidden;
}
.mv_img img {
	width:  100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
/* mv scroll text */
.scroll_text_wrap {
	height: 100vh;
	max-height: calc(100% - 60px);
	min-height: calc(150px + clamp(70px,10vw,100px));
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	position: absolute;
	top: 0;
	right:  20px;
}
.scroll_text {
	font-size: 14px;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-end;
	margin-top:    auto;
	margin-bottom: 0;
	padding-bottom: 0;
	color: #000;
}
.scroll_text:after {
	content: "";
	width:  1.5px;
	height: 4.3em;
	min-height: 4.3em;
	display: block;
	margin-top: .5em;
	background-color: #ccc;
}



/* --- MV 画像なし(プライバシーポリシーなど) --- */
#lower_mv.img_none .mv_wrap {
	background-color: transparent;
}
#lower_mv.img_none:after {
	content: none;
}


/* --- MV h1・画像アニメーション --- */
h1 .img_mask {
	width: fit-content;
}
h1 .img_mask:before {
	z-index: 1 !important;
}
h1 .img_mask span {
	z-index: 2;
}
.is-active h1 .img_mask span {
	animation: clip_img_mask cubic-bezier(.165,.84,.44,1) 1s forwards;
}
.is-active h1 .img_mask {
	animation-delay: .5s;
}
.is-active h1 .img_mask span {
	animation-delay: 1.5s;
	animation-duration: 1s;
}
/* h1 日本語 */
h1 small {
	width: fit-content;
	clip-path: inset(0px 100% 0px 0px);
}
.is-active h1 small {
	animation: clip_img_mask cubic-bezier(.165,.84,.44,1) .5s forwards;
	animation-delay: .5s;
}




/* --- ファーストビュー 下のp text --- */
h1 + p {
	opacity: 0;
	transform: translateY(min(5vw,40px));
	transition: opacity 1s, transform 2s cubic-bezier(0.075,0.82,0.165,1);
	transition-delay: .75s; /* h1は.25s */
}
.is-active h1 + p {
	opacity: 1;
	transform: translateY(0);
}





/* --- ファーストビュー 下の img --- */
.mv_img {
	position: relative;
	clip-path: inset(0 100% 0 0);
}
.mv_img img {
	transform: scale(1.2);
	transform-origin: center;
}
.is-active .mv_img {
	animation: clip_img_mask cubic-bezier(.165,.84,.44,1) 1s forwards;
	animation-delay: 1.25s;
}
.is-active .mv_img img {
	animation: mvimg_anim ease 2s forwards;
}
@keyframes mvimg_anim {
	0%   {
		transform: scale(1.2);
	}
	100% {
		transform: scale(1);
	}
}


















/* ===== wrap & cont ===== */
.middle_wrap {
	width: 85%;
	max-width: 1150px;
	margin-left:  auto;
	margin-right: auto;
}
.white_box {
	padding: 90px 70px;
	padding: clamp(45px,4.688vw,90px) clamp(35px,3.646vw,70px);
	border-radius: 20px;
	background-color: #fff;
}
.bg_radius {
	border-radius: 150px 150px 0 0;
	border-radius: clamp(75px,7.5vw,150px) clamp(75px,7.5vw,150px) 0 0;
}
.bg_radius .wrap {
	padding-top:    clamp(75px,7.813vw,150px);
	padding-bottom: clamp(75px,7.813vw,150px);
}
.radius_minus_margin {
	margin-bottom:  calc(clamp(75px,7.5vw,150px)*-1);
	padding-bottom: clamp(75px,7.5vw,150px);
}
/* line-height */
.p_addheight {
	line-height: 2;
}
/* color */
.color_green { color:#009e96; }

/* bg_color */
.bg_white     { background-color:#ffffff; }
.bg_gray      { background-color:#f5f5f5; }
.bg_green     { background-color:#e0f3f2; }
.bg_deepgreen { background-color:#009e96; }

/* 半円装飾つきセクション */
.sec_maru {
	position: relative;
}
.sec_maru:before {
	content: "";
	width: 100%;
	height: 7.792vw;
	display: block;
	background-image: url(../../img/common/lower_maru_yellow.svg);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center bottom;
	margin-bottom: -1px;
}
.sec_maru .bg_wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	background-color: #ffee6b;
}


/* ===== heading ===== */
/* h2 */
main h2 {
	font-size: 36px;
	font-size: clamp(24px,1.875vw,36px);
	font-weight: 500;
	line-height: 1.3;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 1.7em;
	color: #009e96;
}
main h2:before {
	content: "";
	width: .5em;
	height: 1em;
	min-width: .5em;
	min-height: 1em;
	display: block;
	margin-right: .5em;
	align-self: flex-end;
	background-image: url(../../img/common/head_sankaku.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transform: translateY(-.1em);
}
main h2 span {
	font-size: 1em;
}
main h2 img {
	width: 100%;
	height: .5em;
	display: block;
	object-fit: contain;
	object-position: left center;
	margin-bottom: .3em;
}
/* h3 */
main h3 {
	font-size: 24px;
	font-size: clamp(18px,1.25vw,24px);
	font-weight: 500;
}
/* font size */
.fs_big    {
	font-size: 36px;
	font-size: clamp(24px,1.875vw,36px);
}
.fs_middle {
	font-size: 24px;
	font-size: clamp(18px,1.25vw,24px);
}










@media screen and (max-width:768px) {
	.mv_wrap {
		padding-top: 70px;
		padding-top: clamp(70px,18.667vw,100px);

	}	

	/* ===== パンくずリスト ===== */
	.bread_list li {
		font-size: 12px;
	}

	/* ===== MV ===== */
	h1 {
		font-size: 45px;
		font-size: clamp(45px,12vw,55px);
	}
	h1 small {
		font-size: 16px;
	}
	h1 small:before {
		height: 1px;
	}
	h1 + p {
		font-size: 16px;
		margin-bottom: 1.5em;
	}
	.mv_img {
		height: 72vw;
		max-height: 450px;
		min-height: 200px;
		border-radius: 10px;
	}


	/* ===== wrap & cont ===== */
	.middle_wrap {
		width: 100%;
		max-width: 640px;
		padding-left:  20px;
		padding-right: 20px;
		padding-left:  clamp(20px,5.333vw,40px);
		padding-right: clamp(20px,5.333vw,40px);
	}
	.wrap > .middle_wrap {
		padding-left:  0;
		padding-right: 0;
	}
	.white_box {
		padding: 30px 20px;
		padding: clamp(30px,8vw,60px) clamp(20px,5.333vw,60px) !important;
		border-radius: 10px;
	}
	/* 角丸 */
	.bg_radius {
		border-radius: 30px 30px 0 0;
		border-radius: min(8vw,60px) min(8vw,60px) 0 0;
	}
	.bg_radius .wrap {
		padding-top:    40px;
		padding-bottom: 40px;
	}
	.radius_minus_margin {
		margin-bottom: -40px;
		padding-bottom: 40px;
	}


	/* 半円装飾つきセクション */
	.sec_maru:before {
		height: 13.333vw;
		background-image: url(../../img/common/lower_maru_yellow_sp.svg);
	}

	/* ===== heading ===== */
	/* h2 */
	main h2 {
		font-size: 24px;
		margin-bottom: 1.25em;
	}
	main h2:before {
		transform: translateY(-.05em);
	}
	main h2 img {
		height: .55em;
	}
	/* h3 */
	main h3 {
		font-size: 20px;
	}

	/* font-size */
	.fs_big { font-size:20px; }
}