@charset "utf-8";

/* reset */

html{
	scroll-behavior:smooth;
}

body{
	margin:0;
	width:100%;
	overflow-x:hidden;
	overflow-y: scroll;
	scrollbar-width: none;
	text-rendering:optimizeSpeed;
	-webkit-text-size-adjust: 100%;
	overflow-wrap: anywhere;
	word-break: normal;
	line-break: strict;
}

*{
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin-block-start:0;
	margin-block-end:0;
	margin-inline-start:0;
	margin-inline-end:0;
	overflow-wrap: anywhere;
	word-break: normal;
	line-break: strict;
}

*::before,
*::after{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

h1,h2,h3,h4,h5,h6{
	font-size:1rem;
	font-weight:400;
	margin:0;
	padding:0;
	line-height:1.8;
}

p{
	margin:0;
	padding:0;
}

ul,
ol{
	list-style:none;
	padding:0;
	margin:0;
}

li{
	list-style-position: inside;
}

figure,
blockquote,
dl,
dd{
	margin:0;
}

table{
	border-collapse: collapse;
	border-spacing: 0;
}

table th{
	font-weight:400;
	text-align:left;
}

a:not([class]){
	text-decoration-skip-ink:auto;
}

::-webkit-scrollbar{
	display: none;
	-webkit-appearance: none;
}

input,
button,
select,
textarea{
	background: transparent;
	border: none;
	border-radius: 0;
	font-family: inherit;
	outline: none;
	margin:0;
}

select,
select option{
	color:#000 !important;
}

textarea{
	resize: vertical;
}

input[type='checkbox'],
input[type='radio']{
	display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select{
	cursor: pointer;
}

select::-ms-expand{
	display: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button,
input[type="month"]::-webkit-outer-spin-button,
input[type="month"]::-webkit-inner-spin-button,
input[type="datetime-local"]::-webkit-outer-spin-button,
input[type="datetime-local"]::-webkit-inner-spin-button,
input[type="week"]::-webkit-outer-spin-button,
input[type="week"]::-webkit-inner-spin-button,
input[type="time"]::-webkit-outer-spin-button,
input[type="time"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-outer-spin-button,
input[type="date"]::-webkit-inner-spin-button{
	display: none;
}

input[type="number"],
input[type="month"],
input[type="datetime-local"],
input[type="week"],
input[type="time"],
input[type="date"]{
	-moz-appearance: textfield;
}

input[type="date"]::-webkit-clear-button,
input[type="month"]::-webkit-clear-button,
input[type="datetime-local"]::-webkit-clear-button,
input[type="time"]::-webkit-clear-button,
input[type="week"]::-webkit-clear-button{
	-webkit-appearance: none;
}

@media(prefers-reduced-motion:reduce){
	*{
		animation-duration:.01ms !important;
		animation-iteration-count:1 !important;
		transition-duration:.01ms !important;
		scroll-behavior:auto !important;
	}
}

img,
video{
	display: block;
	vertical-align: bottom;
}

/* common */

html{
	font-size:calc(100vw / 430 * 15);
}

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

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

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

.flex-wrap{
	display:-webkit-box;
 	display:flex;
 	flex-wrap: wrap;
}

.text-center{
	text-align:center;
}

.text-right{
	text-align:right;
}

.img-fluid{
	display:block;
	max-width:100%;
	width:100%;
	height:auto;
}

.main_wrap > h6,
.main_wrap .toc{
	display:none;
}

.lp-main{
	width:100%;
	height:100dvh;
	background:#fff;
	position: relative;
	overflow: visible;
}

.lp-main .scroll_contents {
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
}

.cta a{
	width:calc(100vw / 430 * 380);
	height:calc(100vw / 430 * 85);
	background:#000;
	justify-content: center;
	align-items: center;
}

.cta a .img{
	width:calc(100vw / 430 * 81);
}

.lp-main .header{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	background:#fff;
	padding:calc(100vw / 430 * 20) calc(100vw / 430 * 25) calc(100vw / 430 * 15);
	z-index:1000;
}

.lp-main .header .inner{
	justify-content: space-between;
	align-items: center;
}

.lp-main .header .inner h1{
	width:calc(100vw / 430 * 189);
}

.lp-main .header .inner .g_nav .g_nav_btn{
	width:calc(100vw / 430 * 35);
	height:calc(100vw / 430 * 29);
	position:relative;
	cursor:pointer;
}

.lp-main .header .inner .g_nav .g_nav_btn .menu__line{
	background:#000;
	display:block;
	height:calc(100vw / 430 * 6);
	border-radius:2px;
	position:absolute;
	top:0;
	transition:.5s;
	width:100%;
}

.lp-main .header .inner .g_nav .g_nav_btn .menu__line--center{
	top:calc(100vw / 430 * 11.5);
}

.lp-main .header .inner .g_nav .g_nav_btn .menu__line--bottom{
	top:auto;
	bottom:0;
}

.lp-main .header .inner .g_nav .g_nav_btn .menu__line--top.active{
	top:calc(100vw / 430 * 11.5);
	-webkit-transform:rotate(45deg);
	transform:rotate(45deg);
}

.lp-main .header .inner .g_nav .g_nav_btn .menu__line--center.active{
	-webkit-transform:scaleX(0);
	transform:scaleX(0);
}

.lp-main .header .inner .g_nav .g_nav_btn .menu__line--bottom.active{
	bottom:calc(100vw / 430 * 11.5);
	-webkit-transform:rotate(135deg);
	transform:rotate(135deg);
}

.lp-main .header .inner .g_nav .g_nav_content{
	position:fixed;
	top:-100%;
	left:0;
	width:100%;
	height:calc(100dvh - (100vw / 430 * 72.36));
	background:#000;
	transition:.5s;
	padding:calc(100vw / 430 * 80) calc(100vw / 430 * 30) 0;
}

.lp-main .header .inner .g_nav .g_nav_content.active{
	top:calc(100vw / 430 * 72.36);
}

.lp-main .header .inner .g_nav .g_nav_content ul li{
	font-size:1.666rem;
	line-height:1;
	margin-bottom:calc(100vw / 430 * 60);
}

.lp-main .header .inner .g_nav .g_nav_content ul li:last-child{
	margin-bottom:0;
}

.lp-main .header .inner .g_nav .g_nav_content ul li a{
	color:#fff;
	font-weight:700;
}

.lp-main .header .inner .g_nav .g_nav_content .cta{
	position:absolute;
	bottom:0;
	left:0;
	width:100%;
	height:calc(100vw / 430 * 245);
	background:url("./../img/menu_bg.webp");
	background-size:cover;
}

.lp-main .header .inner .g_nav .g_nav_content .cta a{
	position:absolute;
	bottom:calc(100vw / 430 * 25);
	left:50%;
	transform:translateX(-50%);
}

.lp-main .fv{
	height:calc(100dvh - (100vw / 430 * 72.36) - (100vw / 430 * 85) - (100vw / 430 * 152.5));
	margin:calc(100vw / 430 * 72.36) 0 calc(100vw / 430 * 252.5);
	align-items: center;
	position:relative;
}

.lp-main .fv .inner{
	width:100%;
}

.lp-main .fv .inner h2{
	width:calc(100vw / 430 * 384);
	margin:0 auto calc(100vw / 430 * 56);
}

.lp-main .fv .inner .fv_slick .slick-list{
	overflow:visible;
}

.lp-main .fv .inner .fv_slick .slick-slide img{
	transform: scale(0.625);
	transition: transform 0.5s ease;
}

.lp-main .fv .inner .fv_slick .slick-slide.slick-current img{
	transform: scale(1);
}

.lp-main .fv .inner .fv_slick .slick-slide{
	position:relative;
}

.lp-main .fv .inner .fv_slick .slick-slide::before{
	position:absolute;
	top:50%;
	left:50%;
	opacity:0;
	transform:translate(-50%,-50%) scale(0.625);
	content:"";
	width:100%;
	height:100%;
	background:url("./../img/fv_image_bg01.webp");
	background-size:cover;
	transition: transform 0.5s ease;
}

.lp-main .fv .inner .fv_slick .slick-slide:nth-child(2)::before{
	background:url("./../img/fv_image_bg02.webp");
	background-size:cover;
}

.lp-main .fv .inner .fv_slick .slick-slide:nth-child(3)::before{
	background:url("./../img/fv_image_bg03.webp");
	background-size:cover;
}

.lp-main .fv .inner .fv_slick .slick-slide:nth-child(4)::before{
	background:url("./../img/fv_image_bg01.webp");
	background-size:cover;
}

.lp-main .fv .inner .fv_slick .slick-slide:nth-child(5)::before{
	background:url("./../img/fv_image_bg02.webp");
	background-size:cover;
}

.lp-main .fv .inner .fv_slick .slick-slide.slick-current::before{
	opacity:1;
	transform:translate(-50%,-50%) scale(1.1);
}

.lp-main .section01 h3{
	width:calc(100vw / 430 * 320);
	margin:0 auto calc(100vw / 430 * 48);
}

.lp-main .section01 .inner{
	background:#ffa310;
	padding:calc(100vw / 430 * 32) 0 calc(100vw / 430 * 90);
}

.lp-main .section01 .inner .img{
	width:calc(100vw / 430 * 410.5);
	margin:0 auto;
}

.lp-main .section02{
	padding:0 0 calc(100vw / 430 * 80);
}

.lp-main .section02 .sec02_slick{
	margin-top: calc(100vw / 430 * -73);
}

.lp-main .section02 .sec02_slick .slick-list {
	overflow: visible;
}

.lp-main .section02 .sec02_slick .slick-slide img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s ease;
	transform: scale(0.6666);
}

.lp-main .section02 .sec02_slick .slick-slide:has(+ .slick-current) img {
	transform: scale(0.6666) translateX(18%);
}

.lp-main .section02 .sec02_slick .slick-slide.slick-current + .slick-slide img {
	transform: scale(0.6666) translateX(-18%);
}

.lp-main .section02 .sec02_slick .slick-slide.slick-current img {
	transform: scale(1) translateX(0);
}

.lp-main .section02 .sec02_slick .slick-arrow{
	position: absolute;
	bottom: 0;
	width: calc(100vw / 430 * 50);
	cursor: pointer;
}

.lp-main .section02 .sec02_slick .slick-arrow.prev-arrow {
	left:0;
}

.lp-main .section02 .sec02_slick .slick-arrow.next-arrow {
	right:0;
	transform: rotate(180deg);
}

.video-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
}

.video-modal-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	cursor: pointer;
}

.video-modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	max-width: 800px;
}

.video-modal-content video {
	width: 100%;
	height: auto;
	display: block;
}

.modal-close {
	position: absolute;
	top: -3rem;
	right: 0;
	color: #fff;
	font-size:2rem;
	cursor: pointer;
}

.lp-main .section03{
	background:#fe4701;
	height:calc(100dvh - (100vw / 430 * 72.36) - (100vw / 430 * 87.5));
	padding-bottom:calc(100vw / 430 * 150);
	position:relative;
	align-items: center;
}

.lp-main .section03 .inner{
	width:100%;
}

.lp-main .section03 .inner h3{
	width: calc(100vw / 430 * 281);
	margin:0 auto calc(100vw / 430 * 25);
}

.lp-main .section03 .inner p{
	font-size:1.333rem;
	font-weight:700;
	margin-bottom:calc(100vw / 430 * 40);
}

.lp-main .section03 .inner .youtube{
	position: relative;
	width:100%;
	padding-top: 56.25%;
}

.lp-main .section03 .inner .youtube iframe{
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

.lp-main .section03 .img{
	position:absolute;
	bottom:0;
	left:0;
	width:100%;
}

.lp-main .section04{
	padding:calc(100vw / 430 * 85) 0 calc(100vw / 430 * 15);
}

.lp-main .section04 h3{
	width: calc(100vw / 430 * 222.5);
	margin:0 auto calc(100vw / 430 * 50);
}

.lp-main .section04 .toggle_wrap{
	margin-bottom:calc(100vw / 430 * 15);
	background:#8db1fb;
}

.lp-main .section04 .toggle_wrap:last-child{
	margin-bottom:0;
	background:#ffa310;
}

.lp-main .section04 .toggle_wrap .toggle_btn{
	font-size:2rem;
	font-weight:700;
	line-height:1;
	padding:calc(100vw / 430 * 47.5) calc(100vw / 430 * 40);
	cursor:pointer;
	position:relative;
}

.lp-main .section04 .toggle_wrap .toggle_btn::before,
.lp-main .section04 .toggle_wrap .toggle_btn::after{
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	right:calc(100vw / 430 * 40);
	content:"";
	width:calc(100vw / 430 * 30);
	height:calc(100vw / 430 * 4);
	background:#000;
	border-radius:2px;
	transition:.5s;
}

.lp-main .section04 .toggle_wrap .toggle_btn::after{
	transform:translateY(-50%) rotate(90deg);
}

.lp-main .section04 .toggle_wrap .toggle_btn.active::after{
	transform:translateY(-50%);
}

.lp-main .section04 .toggle_wrap .toggle_content{
	display:none;
	padding:0 calc(100vw / 430 * 40) calc(100vw / 430 * 47.5);
}

.lp-main .section04 .toggle_wrap .toggle_content p{
	margin-bottom:1em;
	font-weight:700;
}

.lp-main .section04 .toggle_wrap .toggle_content p a{
	color:#4a4ac8;
}

.lp-main .section04 .toggle_wrap .toggle_content p:last-child{
	margin-bottom:0;
}

.lp-main .section05{
	background:#fe4701;
	padding:calc(100vw / 430 * 45) 0;
	margin-bottom:calc(100vw / 430 * 15);
}

.lp-main .section06{
	background:#4a4ac8;
}

.lp-main .section05 .inner{
	width:calc(100vw / 430 * 370);
	margin:0 auto;
}

.lp-main .section05 .inner h3{
	font-size:2rem;
	color:#fff;
	font-weight:700;
	margin-bottom:calc(100vw / 430 * 40);
}

.lp-main .section05 .inner ul li{
	background:#fff;
	font-size:1.166rem;
	font-weight:700;
	color:#4a4ac8;
	line-height:1;
	padding:calc(100vw / 430 * 28.75) 0;
	margin-bottom:calc(100vw / 430 * 30);
	transform-origin:center;
}

.lp-main .section05 .inner ul li span{
	color:#ffa310;
}

.lp-main .section05 .inner ul li:first-child{
	transform:rotate(-5deg);
}

.lp-main .section05 .inner ul li:nth-child(3),
.lp-main .section05 .inner ul li:nth-child(5){
	transform:rotate(-5deg);
}

.lp-main .section05 .inner ul li:nth-child(2) span{
	color:#8db1fb;
}

.lp-main .section05 .inner ul li:nth-child(3) span,
.lp-main .section05 .inner ul li:nth-child(5) span{
	color:#fe4701;
}

.lp-main .section06{
	background:#4a4ac8;
	padding:calc(100vw / 430 * 45) 0;
}

.lp-main .section06 .inner{
	width:calc(100vw / 430 * 360);
	margin:0 auto;
}

.lp-main .section06 .inner h3{
	font-size:2rem;
	color:#fff;
	font-weight:700;
	margin-bottom:calc(100vw / 430 * 40);
}

.lp-main .section06 .inner .content_wrap{
	justify-content: space-between;
	gap:calc(100vw / 430 * 40);
}

.lp-main .section06 .inner .content_wrap .circle{
	width:calc(100vw / 430 * 160);
	height:calc(100vw / 430 * 160);
	background:#fff;
	border-radius:50%;
	justify-content: center;
	align-items: center;
}

.lp-main .section06 .inner .content_wrap .circle .child .icon{
	height:calc(100vw / 430 * 40);
	margin-bottom:calc(100vw / 430 * 10);
}

.lp-main .section06 .inner .content_wrap .circle .child .icon img{
	height:100%;
	width:auto;
	margin:0 auto;
}

.lp-main .section06 .inner .content_wrap .circle .child p{
	color:#fe4701;
	font-weight:700;
	line-height:1.4;
}

.lp-main .section07{
	padding:calc(100vw / 430 * 85) 0 0;
}

.lp-main .section07 h3{
	width:calc(100vw / 430 * 194.5);
	margin:0 auto calc(100vw / 430 * 60);
}

.lp-main .section07 .inner{
	background:#ddd;
	padding:calc(100vw / 430 * 50) 0 calc(100vw / 430 * 60);
}

.lp-main .section07 .inner h4{
	width:calc(100vw / 430 * 370);
	margin:0 auto;
}

.lp-main .section07 .inner .content_wrap{
	width:calc(100vw / 430 * 380);
	margin:0 auto;
	justify-content: space-between;
	gap:calc(100vw / 430 * 20);
}

.lp-main .section07 .inner .content_wrap .faq{
	width:calc(100vw / 430 * 180);
	background:#4a4ac8;
	color:#fff;
	cursor:pointer;
}

.lp-main .section07 .inner .content_wrap .faq .child{
	width:100%;
	height:calc(100vw / 430 * 216);
	position:relative;
}

.lp-main .section07 .inner .content_wrap .faq .child .question{
	width:100%;
	height:100%;
	background:#4a4ac8;
	align-items: center;
	padding:0 calc(100vw / 430 * 20);
	position:absolute;
	z-index:2;
	transition:.5s;
}

.lp-main .section07 .inner .content_wrap .faq.active .child .question{
	z-index:1;
}

.lp-main .section07 .inner .content_wrap .faq .child .question h5{
	width:100%;
	font-size:1.133rem;
	font-weight:700;
	line-height:1.4;
}

.lp-main .section07 .inner .content_wrap .faq .child .answer{
	width:100%;
	height:100%;
	background:#4a4ac8;
	align-items: center;
	padding:0 calc(100vw / 430 * 30);
	position:absolute;
	z-index:1;
	transition:.5s;
}

.lp-main .section07 .inner .content_wrap .faq.active .child .answer{
	z-index:2;
}

.lp-main .section07 .inner .content_wrap .faq .child .answer p{
	width:100%;
	line-height:1.6;
}

.lp-main .section07 .inner .content_wrap .faq .arrow{
	justify-content: center;
	align-items: center;
	gap:calc(100vw / 430 * 5);
	padding:0 0 calc(100vw / 430 * 15);
}

.lp-main .section07 .inner .content_wrap .faq .arrow i{
	font-size:1.133rem;
	color:#ffa310;
	transition:.5s;
}

.lp-main .section07 .inner .content_wrap .faq .arrow .img{
	transition:.5s;
	width:0;
}

.lp-main .section07 .inner .content_wrap .faq.active .arrow i{
	transform:rotate(180deg);
}

.lp-main .section07 .inner .content_wrap .faq.active .arrow .img{
	width:calc(100vw / 430 * 52.5);
}

.lp-main .section07 .inner .content_wrap .faq:nth-child(2),
.lp-main .section07 .inner .content_wrap .faq:nth-child(2) .child .question,
.lp-main .section07 .inner .content_wrap .faq:nth-child(2) .child .answer{
	background:#fff;
	color:#000;
}

.lp-main .section07 .inner .content_wrap .faq:nth-child(2) .arrow i{
	color:#000;
}

.lp-main .section07 .inner .content_wrap .faq:nth-child(3),
.lp-main .section07 .inner .content_wrap .faq:nth-child(3) .child .question,
.lp-main .section07 .inner .content_wrap .faq:nth-child(3) .child .answer{
	background:#8db1fb;

}

.lp-main .section07 .inner .content_wrap .faq:nth-child(3) .arrow i{
	color:#fe4701;
}

.lp-main .section07 .inner .content_wrap .faq:nth-child(4),
.lp-main .section07 .inner .content_wrap .faq:nth-child(4) .child .question,
.lp-main .section07 .inner .content_wrap .faq:nth-child(4) .child .answer{
	background:#fe4701;
}

.lp-main .section07 .inner .content_wrap .faq:nth-child(4) .arrow i{
	color:#000;
}

.lp-main .section07 .inner .content_wrap .faq:nth-child(5),
.lp-main .section07 .inner .content_wrap .faq:nth-child(5) .child .question,
.lp-main .section07 .inner .content_wrap .faq:nth-child(5) .child .answer{
	background:#000;

}

.lp-main .section07 .inner .content_wrap .faq:nth-child(5) .arrow i{
	color:#fe4701;
}

.lp-main .section07 .inner .content_wrap .faq:nth-child(6),
.lp-main .section07 .inner .content_wrap .faq:nth-child(6) .child .question,
.lp-main .section07 .inner .content_wrap .faq:nth-child(6) .child .answer{
	background:#ffa310;

}

.lp-main .section07 .inner .content_wrap .faq:nth-child(6) .arrow i{
	color:#4a4ac8;
}

.lp-main .footer .txt{
	padding:calc(100vw / 430 * 55) 0;
}

.lp-main .footer p{
	font-size:1.333rem;
	font-weight:700;
	line-height:1.6;
}

.lp-main .footer .cta{
	background:url("./../img/footer.webp");
	background-size:cover;
	padding:calc(100vw / 430 * 25) 0;
}

.lp-main .footer .cta a{
	margin:0 auto;
}

.lp-main .footer .copyright{
	padding:calc(100vw / 430 * 40) 0;
}

.lp-main .footer .copyright h6{
	font-size:0.733rem;
}

.lp-main .footer .copyright h6 a{
	display:inline-block;
	text-decoration:underline;
}

.lp-main .fix_silhouette{
	position:fixed;
	bottom:calc(100vw / 430 * 87.5);
	left:0;
	width:100%;
	z-index:998;
	transform: translateY(0);
	transition: transform 0.5s ease, opacity 0.5s ease;
}

.fix_silhouette.is-hidden{
	transform: translateY(100%);
	opacity: 0;
	pointer-events: none;
}

.lp-main .fix_cta {
	position:fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	transition: transform 0.5s ease;
	transform: translateY(0);
}

.lp-main .fix_cta.is-hidden {
	transform: translateY(100%);
}

.lp-main .fix_cta a{
	height:calc(100vw / 430 * 85);
	background:#000;
	justify-content: center;
	align-items: center;
}

.lp-main .fix_cta .img{
	width:calc(100vw / 430 * 81);
}

@media (max-width:400px){

	.lp-main .header,
	.lp-main .header .inner h1{
		transition:.5s;
	}

	.lp-main .header.active{
		background:transparent;
	}
	
	.lp-main .header.active .inner h1{
		opacity:0;
	}

	.lp-main .fv {
		height: calc(100dvh - (100vw / 430 * 72.36) - (100vw / 375 * 89));
		margin: calc(100vw / 430 * 72.36) 0 calc(100vw / 430 * 252.5);
	}
	
	.lp-main .fv .inner h2{
		width:calc(100vw / 375 * 234.5);
		margin:0 auto calc(100vw / 375 * 32);
	}
	
	.lp-main .section03{
		height: 100dvh;
		padding-bottom: calc(100vw / 375 * 89);
	}
	
	.lp-main .section03 .inner p{
		margin-bottom: calc(100vw / 430 * 25);
	}
	
	.lp-main .fix_cta{
		left:auto;
		right:calc(100vw / 375 * -1);
		bottom:calc(100vw / 375 * -1);
		width:calc(100vw / 375 * 105.25);
	}
	
	.lp-main .fix_cta .border{
		display:none;
	}
	
	.lp-main .fix_silhouette{
		bottom:0;
	}
	
	.lp-main .fix_cta a{
		background:transparent;
		height:auto;
		display:block;
	}
	
	.lp-main .fix_cta .img{
		width:100%;
	}
	
}

@media (min-width:751px){
	
	/* common */
	
	html{
		font-size:15px;
	}
	
	.main_wrap{
		width:100%;
		height:100vh;
		justify-content: center;
		position:relative;
		overflow:hidden;
	}
	
	.main_wrap::after{
		position:absolute;
		bottom:0;
		left:0;
		content:"";
		width:100%;
		height:50vh;
		background-image:url("./../img/pc_bg.webp");
		background-size:cover;
		z-index:-1;
	}
	
	.lp-main{
		max-width:100vw;
		width:430px;
		filter: drop-shadow(0 0 10px rgba(0,0,0,0.2));
	}
	
	.cta a{
		width:380px;
		height:85px;
	}
	
	.cta a .img{
		width:81px;
	}
	
	.lp-main .header{
		padding:20px 25px 15px;
	}
	
	.lp-main .header .inner h1{
		width:189px;
	}
	
	.lp-main .header .inner .g_nav .g_nav_btn{
		width:35px;
		height:29px;
	}
	
	.lp-main .header .inner .g_nav .g_nav_btn .menu__line{
		height:6px;
	}
	
	.lp-main .header .inner .g_nav .g_nav_btn .menu__line--center{
		top:11.5px;
	}
	
	.lp-main .header .inner .g_nav .g_nav_btn .menu__line--top.active{
		top:11.5px;
	}
	
	.lp-main .header .inner .g_nav .g_nav_btn .menu__line--bottom.active{
		bottom:11.5px;
	}
	
	.lp-main .header .inner .g_nav .g_nav_content{
		height:calc(100vh - 72.36px);
		padding:80px 30px 0;
	}
	
	.lp-main .header .inner .g_nav .g_nav_content.active{
		top:72.36px;
	}
	
	.lp-main .header .inner .g_nav .g_nav_content ul li{
		margin-bottom:60px;
	}
	
	.lp-main .header .inner .g_nav .g_nav_content .cta{
		height:245px;
	}
	
	.lp-main .header .inner .g_nav .g_nav_content .cta a{
		bottom:25px;
	}
	
	.lp-main .fv{
		height:calc(100vh - 72.36px - 87.5px - 150px);
		margin:72.36px 0 250px;
	}
	
	.lp-main .fv .inner h2{
		width:384px;
		margin:0 auto 56px;
	}
	
	.lp-main .section01 h3{
		width:320px;
		margin:0 auto 48px;
	}
	
	.lp-main .section01 .inner{
		padding:32px 0 90px;
	}
	
	.lp-main .section01 .inner .img{
		width:410.5px;
	}
	
	.lp-main .section02{
		padding:0 0 80px;
	}
	
	.lp-main .section02 .sec02_slick{
		margin-top:-73px;
	}
	
	.lp-main .section02 .sec02_slick .slick-arrow{
		width:50px;
	}
	
	.lp-main .section03{
		height:calc(100vh - 72.36px - 85px);
		padding-bottom:150px;
	}
	
	.lp-main .section03 .inner h3{
		width: 281px;
		margin:0 auto 25px;
	}
	
	.lp-main .section03 .inner p{
		margin-bottom:40px;
	}
	
	.lp-main .section04{
		padding:85px 0 15px;
	}
	
	.lp-main .section04 h3{
		width:222.5px;
		margin:0 auto 50px;
	}
	
	.lp-main .section04 .toggle_wrap{
		margin-bottom:15px;
	}
	
	.lp-main .section04 .toggle_wrap .toggle_btn{
		padding:47.5px 40px;
	}
	
	.lp-main .section04 .toggle_wrap .toggle_btn::before,
	.lp-main .section04 .toggle_wrap .toggle_btn::after{
		right:40px;
		width:30px;
		height:4px;
	}
	
	.lp-main .section04 .toggle_wrap .toggle_content{
		display:none;
		padding:0 40px 47.5px;
	}
	
	.lp-main .section05{
		padding:45px 0;
		margin-bottom:15px;
	}
	
	.lp-main .section05 .inner{
		width:370px;
	}
	
	.lp-main .section05 .inner h3{
		margin-bottom:40px;
	}
	
	.lp-main .section05 .inner ul li{
		padding:28.75px 0;
		margin-bottom:30px;
	}
	
	.lp-main .section06{
		padding:45px 0;
	}
	
	.lp-main .section06 .inner{
		width:360px;
	}
	
	.lp-main .section06 .inner h3{
		margin-bottom:40px;
	}
	
	.lp-main .section06 .inner .content_wrap{
		gap:40px;
	}
	
	.lp-main .section06 .inner .content_wrap .circle{
		width:160px;
		height:160px;
	}
	
	.lp-main .section06 .inner .content_wrap .circle .child .icon{
		height:40px;
		margin-bottom:10px;
	}
	
	.lp-main .section06 .inner .content_wrap .circle .child .icon img{
		height:100%;
	}
	
	.lp-main .section07{
		padding:85px 0 0;
	}
	
	.lp-main .section07 h3{
		width:194.5px;
		margin:0 auto 60px;
	}
	
	.lp-main .section07 .inner{
		padding:50px 0 60px;
	}
	
	.lp-main .section07 .inner h4{
		width:370px;
	}
	
	.lp-main .section07 .inner .content_wrap{
		width:380px;
		gap:20px;
	}
	
	.lp-main .section07 .inner .content_wrap .faq{
		width:180px;
	}
	
	.lp-main .section07 .inner .content_wrap .faq .child{
		height:216px;
	}
	
	.lp-main .section07 .inner .content_wrap .faq .child .question{
		padding:0 30px;
	}
	
	.lp-main .section07 .inner .content_wrap .faq .child .answer{
		padding:0 30px;
	}
	
	.lp-main .section07 .inner .content_wrap .faq .arrow{
		gap:5px;
		padding:0 0 15px;
	}
	
	.lp-main .section07 .inner .content_wrap .faq.active .arrow .img{
		width:52.5px;
	}
	
	.lp-main .footer .txt{
		padding:55px 0;
	}
	
	.lp-main .fix_silhouette{
		bottom:87.5px;
	}
	
	.lp-main .footer .cta{
		padding:25px 0;
	}
	
	.lp-main .footer .copyright{
		padding:40px 0;
	}
	
	.lp-main .fix_cta a{
		height:85px;
	}
	
	.lp-main .fix_cta .img{
		width:81px;
	}
	
}

@media (min-width: 1025px){

	/* common */
	
	.main_wrap{
		align-items: flex-start;
		gap:0 calc(100vw / 1920 * 150);
	}
	
	.main_wrap > h6{
		display:block;
		width:calc(100vw / 1920 * 325);
		height:50vh;
		padding-top:18vh;
	}
	
	.main_wrap .toc{
		display:block;
		width:calc(100vw / 1920 * 325);
		height:50vh;
		padding-top:18vh;
	}
	
	.main_wrap .toc ul{
		font-size:calc(100vw / 1920 * 18);
		font-weight:700;
		line-height:2.2;
	}

}

@media (min-width: 1025px) and (max-height:932px){
	
	.lp-main .fv{
		height: calc(932px - 72.36px - 87.5px - 150px);
	}
	
	.lp-main .section03{
		height: calc(932px - 72.36px - 87.5px);
	}
	
}