@charset "utf-8";

/* common */

body{
	background:#fff;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight:500;
	font-style: normal;
	color:#222;
	line-height:1.8;
	margin:0;
	overflow-wrap: anywhere;
	word-break: normal;
	line-break: strict;
}

.mont{
	font-family: "Montserrat", sans-serif;
}

a{
	display:block;
	color:#222;
	transition: .5s;
	text-decoration:none;
	-webkit-tap-highlight-color: transparent;
}

a:hover{
	color:#222;
	text-decoration:none;
	opacity:0.8;
}

/* layout */

.bg_blue{
	background:#E4F7F7;
}

.bg_gray{
	background:#F8F8F8;
}

.img-trim{
	position:relative;
	overflow:hidden;
	padding-top:100%;
}

.img-trim img{
	position:absolute;
	top:20px;
	left:50%;
	transform:translateX(-50%);
	width:100%;
	object-fit:cover;
}

/* parts */

.typ{
	opacity:0;
	visibility: hidden;
}

span.marker{
	display: inline;
	position: relative;
	background-image: linear-gradient(90deg, #FFEC5D, #FFEC5D);
	background-repeat: no-repeat;
	background-position: bottom left;
	background-size: 0 40%;
	transition: all 1s ease-in-out;
}

span.marker.active{
	background-size: 100% 40%;
}

.btn{
	display:inline-block;
	background:transparent;
	color:#fff;
	font-weight:700;
	padding:1.25rem 4rem;
	border:3px solid #096287;
	position:relative;
}

.btn::after{
	position:absolute;
	content:"";
	width:100%;
	height:100%;
	top:0;
	left:0;
	background:#096287;
	transition:all .7s ease;
}

.btn span{
	position:relative;
	z-index:2;
}

.btn:hover{
	color:#096287;
	opacity:1;
	background:#fff;
}

.btn:hover::after{
	right:0;
	width:0;
}

.heading01{
	position:relative;
	margin-bottom:4rem;
	width:100%;
	height:11rem;
}

.heading01 > span{
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	left:-0.25em;
	font-size:11rem;
	font-weight:700;
	color:#F8F8F8;
	line-height:0.8;
}

.heading01 h2{
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	left:0;
	color:#7CCACA;
	font-size:2.5rem;
	font-weight:700;
	position:relative;
	z-index:2;
	letter-spacing:0.2em;
}

.bg_blue .heading01 > span,
.bg_gray .heading01 > span{
	color:#fff;
}

.heading02_wrap{
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	align-items: flex-start;
}

.heading02_wrap .inner{
	width:calc(100% - 3rem - 60px);
	padding-top:60px;
}

.heading02_wrap .heading02{
	width:3rem;
}

.heading02_wrap .heading02 h2{
	writing-mode: vertical-rl;
	font-size:3rem;
	font-weight:700;
	letter-spacing:0.2em;
	line-height:1;
	position:relative;
}

.heading02_wrap .heading02 h2::after{
	position:absolute;
	top:calc(100% + 0.5rem);
	left:50%;
	transform:translateX(-50%);
	content:"";
	width:6px;
	height:2.5rem;
	background:#222;
}

/* lp */

.fv{
	width:100%;
	height:calc(100vw / 1366 * 768);
	overflow:hidden;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: end;
	align-items: flex-end;
	position:relative;
	margin-bottom:80px;
}

.fv .bg{
	position:absolute;
	bottom:0;
	left:-5%;
	width:60%;
	transform:rotate(-30deg);
	z-index:-1;
}

.fv .content_wrap{
	width:calc(100vw / 1366 * 1200);
	-webkit-box-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	align-items: center;
	padding-bottom:calc(100vw / 1366 * 60);
	margin-right:10%;
}

.fv .content_wrap .txt{
	width:50%;
}

.fv .content_wrap .txt h1{
	color:#096287;
	font-weight:700;
	font-size:calc(100vw / 1366 * 60);
	line-height:1.2;
	margin-bottom:0.2em;
	letter-spacing:0.1em;
	text-align:justify;
}

.fv .content_wrap .txt h1 span > span{
	font-size:calc(100vw / 1366 * 40);
	font-weight:900;
}

.fv .content_wrap .txt h1 span.mont > span{
	font-weight:700;
	font-size:calc(100vw / 1366 * 75);
}

.fv .content_wrap .txt p{
	font-weight:700;
	font-size:calc(100vw / 1366 * 18);
	line-height:2;
}

.fv .content_wrap .txt .btn{
	margin-top:calc(100vw / 1366 * 28);
}

.fv .content_wrap .img{
	width:26%;
}

.lp_content{
	padding:80px 0;
	position:relative;
}

.lc_cta{
	background:#096287;
	padding:40px 0;
}

.lc_cta .content_wrap .img{
	width:240px;
	background:#fff;
	border-radius:16px 0 0 16px;
}

.lc_cta .content_wrap .txt{
	width:560px;
	background:#fff;
	-webkit-box-align: center;
	align-items: center;
	padding:0 0 0 60px;
	border-radius:0 16px 16px 0;
}

.lc_cta .content_wrap .txt p{
	font-size:1.25rem;
	font-weight:700;
}

.lc_cta .content_wrap .txt .btn{
	margin-top:1rem;
}

.lc01::after{
	position:absolute;
	bottom:0;
	right:0;
	content:"";
	width:50%;
	height:240px;
	background:#F8F8F8;
	border-radius:120px 0 0 120px;
	z-index:-1;
}

.lc01 .content_wrap{
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	align-items: center;
}

.lc01 .content_wrap .img{
	width:22%;
	position:relative;
	z-index:2;
}

.lc01 .content_wrap .list{
	width:46%;
	margin-left:-8%;
	background:#7CCACA;
	color:#fff;
	border-radius:16px;
	padding:24px 0;
	-webkit-box-pack: center;
	justify-content: center;
}

.lc01 .content_wrap .list ul{
	line-height:2.8;
	font-weight:700;
}

.lc01 .content_wrap .list ul li{
	text-decoration-line: underline;
	text-decoration-style:wavy;
	text-decoration-color:#FFEC5D;
	text-decoration-thickness: 2px;
	text-underline-offset:0.25em;
	
	position:relative;
	padding-left:2rem;
}

.lc01 .content_wrap .list ul li::before{
	position:absolute;
	top:-0.35em;
	left:0;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content:"\f058";
	font-size:1.5rem;
}

.lc01 .content_wrap .txt{
	width:30%;
	font-weight:700;
	position:relative;
}

.lc01 .content_wrap .txt h3{
	font-weight:700;
	font-size:2rem;
	line-height:1.2;
	margin-bottom:0.5em;
}

.lc01 .content_wrap .txt h3 span{
	font-size:3rem;
}

.lc01 .content_wrap .txt h3 i{
	font-size:3.5rem;
	color:#FFEC5D;
	margin-left:0.1em;
}

.lc01 .content_wrap .txt > span{
	position:absolute;
	top:-0.35em;
	right:-1.75em;
	transform:rotate(90deg);
	font-size:8rem;
	font-weight:700;
	color:#e5e5e5;
	letter-spacing:0.1em;
}

.lc02::after{
	position:absolute;
	bottom:0;
	left:0;
	content:"";
	width:50%;
	height:200px;
	background-color:transparent;
	background-image: radial-gradient(circle, #e4f7f7 4px, transparent 4px), radial-gradient(circle, #e4f7f7 4px, transparent 4px);
	background-position: 0 0, 8px 16px;
	background-size: 16px 32px;
	border-radius:16px;
	z-index:-1;
}

.lc02 .heading02_wrap .inner{
	-webkit-box-pack: justify;
	justify-content: space-between;
}

.lc02 .heading02_wrap .inner .box{
	width:30%;
}

.lc02 .heading02_wrap .inner .box:nth-child(-n+3){
	margin-bottom:48px;
}

.lc02 .heading02_wrap .inner .box .title{
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	align-items: center;
	margin-bottom:20px;
}

@keyframes return {
	50% {
		left:0.1em;
	}
	100% {
		left:0;
	}
}

.lc02 .heading02_wrap .inner .box .title i{
	color:#222;
	font-size:3.5rem;
	position: relative;
	left:0;
	animation-name: return;
	animation-duration: 1s;
	animation-iteration-count: infinite;
	animation-timing-function: ease;
}

.lc02 .heading02_wrap .inner .box .title h3{
	width:calc(100% - 3.5rem - 20px);
	color:#7CCACA;
	font-weight:700;
	font-size:1.25rem;
	line-height:1.4;
}

.lc02 .heading02_wrap .inner .box p{
	padding:0 16px 12px;
	background:#fff;
}

.lc03{
	padding:100px 0 80px;
}

.lc03 .lc03_slick{
	margin-top:120px;
}

.lc03 .lc03_slick .slide-arrow{
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	width:40px;
	height:40px;
	background:#222;
	color:#fff;
	border-radius:4px;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	z-index:2;
}

.lc03 .lc03_slick .slide-arrow.prev{
	left:26.25vw;
	transform:translateY(-50%) rotate(180deg);
}

.lc03 .lc03_slick .slide-arrow.next{
	right:26.25vw;
}

.lc03 .lc03_slick .slick-list{
	overflow:visible;
}

.lc03 .lc03_slick .slick-track{
	display: flex;
}

.lc03 .lc03_slick .slick-slide{
	height: auto !important;
	padding:0 24px;
}

.lc03 .lc03_slick .slick-slide .box{
	height:100%;
	background:#fff;
	border-radius:16px;
	padding:60px 48px 40px;
	position:relative;
	border:4px solid #F8F8F8;
	transition:.5s;
}

.lc03 .lc03_slick .slick-slide.slick-active .box{
	border:4px solid #222;
}

.lc03 .lc03_slick .slick-slide .box .label{
	position:absolute;
	top:-40px;
	left:50%;
	transform:translateX(-50%);
	width:80px;
	height:80px;
	border:4px solid transparent;
	border-radius:50%;
	background:#fff;
	color:#222;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	z-index:2;
	transition:.5s;
}

.lc03 .lc03_slick .slick-slide.slick-active .box .label{
	color:#222;
	border:4px solid #222;
}

.lc03 .lc03_slick .slick-slide .box .label span{
	font-size:2rem;
	font-weight:700;
	line-height:1;
}

.lc03 .lc03_slick .slick-slide .box h3{
	font-size:1.25rem;
	font-weight:700;
	color:#7CCACA;
	margin-bottom:1rem;
}

.lc03 .lc03_slick .slick-slide .box p{
	margin-bottom:1rem;
	font-weight:700;
	
}

.lc03 .lc03_slick .slick-slide .box dl{
	-webkit-box-pack: justify;
	justify-content: space-between;
	font-size:0.9rem;
	border-top:1px dashed #ccc;
	padding:1.5rem 24px 0;
	margin-bottom:1.5rem;
}

.lc03 .lc03_slick .slick-slide .box dl:last-child{
	margin-bottom:0;
}

.lc03 .lc03_slick .slick-slide .box dl dt{
	width:5.75em;
	padding-left:2.75em;
	font-weight:700;
	position:relative;
}

.lc03 .lc03_slick .slick-slide .box dl dt i{
	position:absolute;
	top:-0.05em;
	left:0;
	font-size:1.5rem;
	color:#7CCACA;
}

.lc03 .lc03_slick .slick-slide .box dl dd{
	width:calc(100% - 5.75em);
}

.lc04{
	padding:100px 0 80px;
}

.lc04::after{
	position:absolute;
	bottom:0;
	right:0;
	content:"";
	width:50%;
	height:300px;
	background-color:transparent;
	background-image: radial-gradient(circle, #e4f7f7 4px, transparent 4px), radial-gradient(circle, #e4f7f7 4px, transparent 4px);
	background-position: 0 0, 8px 16px;
	background-size: 16px 32px;
	border-radius:16px;
	z-index:-1;
}

.lc04 .content_wrap{
	-webkit-box-pack: justify;
	justify-content: space-between;
}

.lc04 .content_wrap .box{
	width:32%;
	margin-bottom:28px;
	background:#7CCACA;
	border-radius:16px;
	padding:68px 40px 40px;
	color:#fff;
	position:relative;
}

.lc04 .content_wrap .box::before{
	position:absolute;
	left:50%;
	transform:translateX(-50%);
	top:32px;
	content:"";
	width:16px;
	height:16px;
	background:#fff;
	border-radius:50%;
}

.lc04 .content_wrap .box:nth-child(4),
.lc04 .content_wrap .box:last-child{
	width:49%;
}

.lc04 .content_wrap .box h3{
	font-size:1.25rem;
	font-weight:700;
	margin-bottom:0.5em;
}

.lc04 .content_wrap .box p{
	font-weight:700;
	font-size:3rem;
	line-height:1;
	letter-spacing:0.1em;
	margin-bottom:0.5em;
}

.lc04 .content_wrap .box p span{
	font-size:2rem;
}

.lc04 .content_wrap .box h4{
	margin-bottom:1rem;
}

.lc04 .content_wrap .box ul li{
	list-style-type:disc;
	text-indent:-1em;
	padding-left: 1em;
}

.lc04 .content_wrap .box ul li.plus{
	color:#FFEC5D;
}

.lc04 .txt{
	margin-bottom:60px;
}

.lc04 .contract,
.lc05 .box{
	background:#F8F8F8;
	border-radius:16px;
	padding:40px 48px;
}

.lc04 .contract h5,
.lc05 .box h3{
	font-weight:700;
	font-size:1.5rem;
	margin-bottom:0.5em;
}

.lc04 .contract h5 i{
	margin-right:0.25em;
	color:#096287;
}

.lc04 .contract ul{
	list-style: square;
	padding-left:0.75em;
}

.lc06{
	padding:100px 0 80px;
}

.lc06::after{
	position:absolute;
	bottom:0;
	left:0;
	content:"";
	width:60%;
	height:80%;
	background-color:transparent;
	background-image: radial-gradient(circle, #EFEFEF 4px, transparent 4px), radial-gradient(circle, #EFEFEF 4px, transparent 4px);
	background-position: 0 0, 8px 16px;
	background-size: 16px 32px;
	border-radius:16px;
}

.lc06 .box{
	width:100%;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	align-items: center;
	background:#fff;
	border-radius:16px;
	padding:40px 48px;
	margin-bottom:48px;
	position:relative;
	z-index:2;
}

.lc06 .box:last-child{
	margin-bottom:0;
}

.lc06 .box .number{
	width:60px;
	height:60px;
	border-radius:50%;
	background:#7CCACA;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
}

.lc06 .box .number span{
	color:#fff;
	font-size:2rem;
	font-weight:700;
}

.lc06 .box .txt{
	width:calc(100% - 100px);
}

.lc06 .box .txt h3{
	font-size:1.25rem;
	font-weight:700;
	color:#7CCACA;
}

.lc06 .box > span{
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	right:-0.6em;
	font-size:2.5rem;
	font-weight:700;
	line-height:1;
	color:#e5e5e5;
	writing-mode: vertical-rl;
	white-space: nowrap;
}

.lc07 .inner{
	-webkit-box-pack: justify;
	justify-content: space-between;
}

.lc07 .inner .box{
	width:48%;
	margin-bottom:48px;
}

.lc07 .inner .box:nth-child(n+5){
	margin-bottom:0;
}

.lc07 .inner .box .profile{
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	align-items: center;
	width:80%;
	margin:0 auto;
}

.lc07 .inner .box .profile .img{
	width:120px;
}

.lc07 .inner .box .profile .img .img-trim img{
	top:0;
}

.lc07 .inner .box .profile .name{
	width:calc(100% - 120px - 20px);
}

.lc07 .inner .box .profile .name p{
	font-weight:700;
	line-height:1.4;
}

.lc07 .inner .box .txt{
	background:#F8F8F8;
	border-radius:16px;
	padding:32px 40px;
}

.lc07 .inner .box h3{
	font-weight:700;
	color:#7CCACA;
}

.lc08{
	padding:100px 0 80px;
}

.lc08 .heading01{
	margin-bottom:6rem;
}

.lc08 .box{
	margin-bottom:48px;
}

.lc08 .box:last-child{
	margin-bottom:0;
}

.lc08 .box .title{
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	align-items: center;
	margin-bottom:1rem;
}

.lc08 .box .title i{
	font-size:2rem;
	color:#7CCACA;
}

.lc08 .box .title h3{
	width:calc(100% - 2.5rem);
	font-size:1.25rem;
	font-weight:700;
	color:#7CCACA;
}

.lc08 .box p{
	background:#fff;
	border-radius:0 0 16px 16px;
	padding:20px 24px;
	border-top:4px solid #7CCACA;
}

.lc09{
	padding:100px 0 80px;
}

.lc09 .heading01{
	margin-bottom:6rem;
}

@media (max-width:1366px) {
	
	/* parts */
	
	.heading02_wrap .inner{
		width:calc(100% - 3rem - (100vw / 1366 * 60));
		padding-top:calc(100vw / 1366 * 60);
	}
	
	/* lp */
	
	.lp_content{
		padding:calc(100vw / 1366 * 80) 0;
	}
	
	.lc_cta{
		padding:calc(100vw / 1366 * 40) 0;
	}
	
	.lc_cta .content_wrap .img{
		width:calc(100vw / 1366 * 240);
		border-radius:calc(100vw / 1366 * 16) 0 0 calc(100vw / 1366 * 16);
	}
	
	.lc_cta .content_wrap .txt{
		width:calc(100vw / 1366 * 560);
		padding:0 0 0 calc(100vw / 1366 * 60);
		border-radius:0 calc(100vw / 1366 * 16) calc(100vw / 1366 * 16) 0;
	}
	
	.lc01::after{
		height:calc(100vw / 1366 * 240);
		border-radius:calc(100vw / 1366 * 120) 0 0 calc(100vw / 1366 * 120);
	}
	
	.lc01 .content_wrap .list{
		border-radius:calc(100vw / 1366 * 16);
		padding:calc(100vw / 1366 * 24) 0;
	}
	
	.lc02::after{
		height:calc(100vw / 1366 * 200);
		border-radius:calc(100vw / 1366 * 16);
	}
	
	.lc02 .heading02_wrap .inner .box:nth-child(-n+3){
		margin-bottom:calc(100vw / 1366 * 48);
	}
	
	.lc02 .heading02_wrap .inner .box .title{
		margin-bottom:calc(100vw / 1366 * 20);
	}
	
	.lc02 .heading02_wrap .inner .box .title h3{
		width:calc(100% - 3.5rem - (100vw / 1366 * 20));
	}
	
	.lc02 .heading02_wrap .inner .box p{
		padding:0 calc(100vw / 1366 * 16) calc(100vw / 1366 * 12);
	}
	
	.lc03{
		padding:calc(100vw / 1366 * 100) 0 calc(100vw / 1366 * 80);
	}
	
	.lc03 .lc03_slick{
		margin-top:calc(100vw / 1366 * 120);
	}
	
	.lc03 .lc03_slick .slide-arrow{
		width:calc(100vw / 1366 * 40);
		height:calc(100vw / 1366 * 40);
	}
	
	.lc03 .lc03_slick .slick-slide{
		padding:0 calc(100vw / 1366 * 24);
	}
	
	.lc03 .lc03_slick .slick-slide .box{
		border-radius:calc(100vw / 1366 * 16);
		padding:calc(100vw / 1366 * 60) calc(100vw / 1366 * 48) calc(100vw / 1366 * 40);
	}
	
	.lc03 .lc03_slick .slick-slide .box .label{
		top:calc(100vw / 1366 * -40);
		width:calc(100vw / 1366 * 80);
		height:calc(100vw / 1366 * 80);
	}
	
	.lc03 .lc03_slick .slick-slide .box dl{
		padding:1.5rem calc(100vw / 1366 * 24) 0;
	}
	
	.lc04{
		padding:calc(100vw / 1366 * 100) 0 calc(100vw / 1366 * 80);
	}
	
	.lc04::after{
		height:calc(100vw / 1366 * 300);
		border-radius:calc(100vw / 1366 * 16);
	}
	
	.lc04 .content_wrap .box{
		margin-bottom:calc(100vw / 1366 * 32);
		border-radius:calc(100vw / 1366 * 16);
		padding:calc(100vw / 1366 * 68) calc(100vw / 1366 * 40) calc(100vw / 1366 * 40);
	}
	
	.lc04 .content_wrap .box::before{
		top:calc(100vw / 1366 * 32);
		width:calc(100vw / 1366 * 16);
		height:calc(100vw / 1366 * 16);
	}
	
	.lc04 .txt{
		margin-bottom:calc(100vw / 1366 * 60);
	}
	
	.lc04 .contract,
	.lc05 .box{
		border-radius:calc(100vw / 1366 * 16);
		padding:calc(100vw / 1366 * 40) calc(100vw / 1366 * 48);
	}
	
	.lc06{
		padding:calc(100vw / 1366 * 100) 0 calc(100vw / 1366 * 80);
	}
	
	.lc06::after{
		border-radius:calc(100vw / 1366 * 16);
	}
	
	.lc06 .box{
		border-radius:calc(100vw / 1366 * 16);
		padding:calc(100vw / 1366 * 40) calc(100vw / 1366 * 48);
		margin-bottom:calc(100vw / 1366 * 48);
	}
	
	.lc06 .box .number{
		width:calc(100vw / 1366 * 60);
		height:calc(100vw / 1366 * 60);
	}
	
	.lc06 .box .txt{
		width:calc(100% - (100vw / 1366 * 100));
	}
	
	.lc07 .inner .box{
		margin-bottom:calc(100vw / 1366 * 48);
	}
	
	.lc07 .inner .box .profile .img{
		width:calc(100vw / 1366 * 120);
	}
	
	.lc07 .inner .box .profile .name{
		width:calc(100% - (100vw / 1366 * 120) - (100vw / 1366 * 20));
	}
	
	.lc07 .inner .box .txt{
		border-radius:calc(100vw / 1366 * 16);
		padding:calc(100vw / 1366 * 32) calc(100vw / 1366 * 40);
	}
	
	.lc08{
		padding:calc(100vw / 1366 * 100) 0 calc(100vw / 1366 * 80);
	}
	
	.lc08 .box{
		margin-bottom:calc(100vw / 1366 * 48);
	}
	
	.lc08 .box p{
		border-radius:0 0 calc(100vw / 1366 * 16) calc(100vw / 1366 * 16);
		padding:calc(100vw / 1366 * 20) calc(100vw / 1366 * 24);
	}
	
	.lc09{
		padding:calc(100vw / 1366 * 100) 0 calc(100vw / 1366 * 80);
	}

}

@media (max-width:768px) {
	
	/* parts */
	
	.heading01{
		height:5.75rem;
		margin-bottom:calc(100vw / 375 * 40);
	}
	
	.heading01 > span{
		font-size:5.5rem;
		left:-0.1em;
	}
	
	.heading01 h2{
		font-size:2rem;
		padding-left:0.75em;
		line-height:1.4;
	}
	
	.heading02_wrap .heading02{
		
	}
	
	.heading02_wrap .heading02 h2{
		font-size:2.5rem;
	}
	
	.heading02_wrap .heading02 h2::after{
		width:0.15em;
	}
	
	.heading02_wrap .inner{
		width:calc(100% - 2.5rem - (100vw / 375 * 28));
		padding-top:calc(100vw / 375 * 40);
	}
	
	.btn{
		padding:0.75rem 4rem;
	}
	
	/* lp */
	
	.fv{
		height:auto;
		margin-bottom:calc(100vw / 375 * 40);
		padding-top:calc(100vw / 375 * 100);
	}
	
	.fv .bg{
		bottom:auto;
		top:-5vw;
		left:-5vw;
		width:120%;
	}
	
	.fv .content_wrap{
		width:100%;
		margin:0 auto;
		padding-bottom:0;
	}
	
	.fv .content_wrap .txt{
		width:100%;
		text-align:center;
		-webkit-box-ordinal-group:3;
		order:2;
	}
	
	.fv .content_wrap .txt h1{
		font-size:calc(100vw / 375 * 36);
		letter-spacing:0.2rem;
		text-align:center;
	}
	
	.fv .content_wrap .txt h1 span > span{
		font-size:calc(100vw / 375 * 24);
	}
	
	.fv .content_wrap .txt h1 span.mont > span{
		font-size:calc(100vw / 375 * 48);
	}
	
	.fv .content_wrap .txt p{
		font-size:calc(100vw / 375 * 16);
	}
	
	.fv .content_wrap .img{
		width:60%;
		margin:0 auto calc(100vw / 375 * 20);
		-webkit-box-ordinal-group:2;
		order:1;
	}
	
	.lp_content{
		padding:calc(100vw / 375 * 40) 0;
	}
	
	.lc_cta{
		padding:calc(100vw / 375 * 20) 0;
	}
	
	.lc_cta .content_wrap{
		background:#fff;
		border-radius:calc(100vw / 375 * 16);
		padding:calc(100vw / 375 * 20) 0;
	}
	
	.lc_cta .content_wrap .img{
		width:100%;
		border-radius:0;
	}
	
	.lc_cta .content_wrap .img{
		width:50%;
		margin:0 auto calc(100vw / 375 * 20);
	}
	
	.lc_cta .content_wrap .txt{
		width:100%;
		padding:0 calc(100vw / 375 * 28);
		border-radius:0;
		background:transparent;
		text-align:center;
	}
	
	.lc_cta .content_wrap .txt .inner{
		width:100%;
	}
	
	.lc_cta .content_wrap .txt p{
		font-size:1rem;
	}
	
	.lc01::after{
		height:calc(100vw / 375 * 240);
		border-radius:calc(100vw / 375 * 120) 0 0 calc(100vw / 375 * 120);
	}
	
	.lc01 .content_wrap .img{
		display:none;
	}
	
	.lc01 .content_wrap .list{
		width:100%;
		margin-left:0;
		border-radius:calc(100vw / 375 * 16);
		-webkit-box-pack: start;
		justify-content: flex-start;
		padding:calc(100vw / 375 * 20) calc(100vw / 375 * 32);
	}
	
	.lc01 .content_wrap .txt{
		width:100%;
		margin-top:calc(100vw / 375 * 40);
		text-align:center;
	}
	
	.lc01 .content_wrap .txt h3{
		letter-spacing:0.1rem;
	}
	
	.lc01 .content_wrap .txt > span{
		transform:rotate(0);
		right:0;
		top:auto;
		bottom:-1.3em;
		font-size:6rem;;
	}
	
	.lc02::after{
		height:calc(100vw / 375 * 200);
		border-radius:calc(100vw / 375 * 16);
	}
	
	.lc02 .heading02_wrap .inner .box{
		width:100%;
		margin-bottom:calc(100vw / 375 * 40);
	}
	
	.lc02 .heading02_wrap .inner .box:nth-child(-n+3){
		margin-bottom:calc(100vw / 375 * 40);
	}
	
	.lc02 .heading02_wrap .inner .box:last-child{
		margin-bottom:0;
	}
	
	.lc02 .heading02_wrap .inner .box .title{
		margin-bottom:calc(100vw / 375 * 8);
	}
	
	.lc02 .heading02_wrap .inner .box .title h3{
		width:calc(100% - 3.5rem - (100vw / 375 * 20));
	}
	
	.lc02 .heading02_wrap .inner .box p{
		padding:0  0 0 calc(100vw / 375 * 16);
	}
	
	.lc03{
		padding:calc(100vw / 375 * 60) 0 calc(100vw / 375 * 40);
	}
	
	.lc03 .lc03_slick{
		margin-top:calc(100vw / 375 * 60);
	}
	
	.lc03 .lc03_slick .slide-arrow{
		width:calc(100vw / 375 * 40);
		height:calc(100vw / 375 * 40);
	}
	
	.lc03 .lc03_slick .slide-arrow.prev{
		left:0;
	}
	
	.lc03 .lc03_slick .slide-arrow.next{
		right:0;
	}
	
	.lc03 .lc03_slick .slick-slide{
		padding:0 5vw;
	}
	
	.lc03 .lc03_slick .slick-slide .box{
		border-radius:calc(100vw / 375 * 16);
		padding:calc(100vw / 375 * 40) calc(100vw / 375 * 28) calc(100vw / 375 * 32);
	}
	
	.lc03 .lc03_slick .slick-slide .box .label{
		top:calc(100vw / 375 * -30);
		width:calc(100vw / 375 * 60);
		height:calc(100vw / 375 * 60);
	}
	
	.lc03 .lc03_slick .slick-slide .box dl{
		padding:0.75rem 0 0;
	}
	
	.lc04{
		padding:calc(100vw / 375 * 60) 0 calc(100vw / 375 * 40);
	}
	
	.lc04::after{
		height:calc(100vw / 375 * 600);
		border-radius:calc(100vw / 375 * 16);
	}
	
	.lc04 .content_wrap .box{
		width:100%;
		margin-bottom:calc(100vw / 375 * 20);
		border-radius:calc(100vw / 375 * 16);
		padding:calc(100vw / 375 * 68) calc(100vw / 375 * 28) calc(100vw / 375 * 28);
	}
	
	.lc04 .content_wrap .box::before{
		top:calc(100vw / 375 * 32);
		width:calc(100vw / 375 * 16);
		height:calc(100vw / 375 * 16);
	}
	
	.lc04 .content_wrap .box p{
		font-size:2.7rem;
	}
	
	.lc04 .content_wrap .box p span{
		font-size:1.75rem;
	}
	
	.lc04 .content_wrap .box:nth-child(4),
	.lc04 .content_wrap .box:last-child{
		width:100%;
	}
	
	.lc04 .txt{
		text-align:left;
		margin-bottom:calc(100vw / 375 * 40);
	}
	
	.lc04 .contract,
	.lc05 .box{
		border-radius:calc(100vw / 375 * 16);
		padding:calc(100vw / 375 * 20) calc(100vw / 375 * 28);
		font-size:0.9rem;
	}
	
	.lc06{
		padding:calc(100vw / 375 * 60) 0 calc(100vw / 375 * 40);
	}
	
	.lc06::after{
		border-radius:calc(100vw / 375 * 16);
	}
	
	.lc06 .heading01{
		margin-bottom:calc(100vw / 375 * 60);
	}
	
	.lc06 .box{
		border-radius:calc(100vw / 375 * 16);
		padding:calc(100vw / 375 * 40) calc(100vw / 375 * 28) calc(100vw / 375 * 20);
		margin-bottom:calc(100vw / 375 * 48);
		position:relative;
	}
	
	.lc06 .box .number{
		position:absolute;
		top:calc(100vw / 375 * -30);
		left:50%;
		transform:translateX(-50%);
		width:calc(100vw / 375 * 60);
		height:calc(100vw / 375 * 60);
	}
	
	.lc06 .box .txt{
		width:100%;
	}
	
	.lc07 .inner .box{
		width:100%;
		margin-bottom:calc(100vw / 375 * 40);
	}
	
	.lc07 .inner .box:nth-child(n+5){
		margin-bottom:calc(100vw / 375 * 40);
	}
	
	.lc07 .inner .box:last-child{
		margin-bottom:0;
	}
	
	.lc07 .inner .box .profile .img{
		width:calc(100vw / 375 * 80);
	}
	
	.lc07 .inner .box .profile .name{
		width:calc(100% - (100vw / 375 * 80) - (100vw / 375 * 20));
	}
	
	.lc07 .inner .box .profile .name p{
		line-height:1.6;
	}
	
	.lc07 .inner .box .txt{
		border-radius:calc(100vw / 375 * 16);
		padding:calc(100vw / 375 * 20) calc(100vw / 375 * 28);
	}
	
	.lc08{
		padding:calc(100vw / 375 * 60) 0 calc(100vw / 375 * 40);
	}
	
	.lc08 .heading01{
		margin-bottom:calc(100vw / 375 * 60);
	}
	
	.lc08 .box{
		margin-bottom:calc(100vw / 375 * 40);
	}
	
	.lc08 .box .title h3{
		font-size:1rem;
		line-height:1.6;
	}
	
	.lc08 .box p{
		border-radius:0 0 calc(100vw / 375 * 16) calc(100vw / 375 * 16);
		padding:calc(100vw / 375 * 20) calc(100vw / 375 * 28);
	}
	
	.lc09{
		padding:calc(100vw / 375 * 60) 0 calc(100vw / 375 * 40);
	}
	
	.lc09 .heading01{
		margin-bottom:calc(100vw / 375 * 60);
	}

}