@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');

:root{
    --base_font_family: 'Noto Sans CJK JP' , 'Noto Sans JP'  ,sans-serif;
    --base_font_color: #002174;
    --blue: #002174;
    --blue02: #659ABE;
	--light_blue: #E8F0F5;
	--orange: #FF9123;

}



*{
	margin:0;
	padding:0;
	list-style: none;
	box-sizing: border-box;
	text-decoration: none;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

*::before,
*::after{
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	box-sizing: border-box;
}

html {
	-ms-text-size-adjust: none;
	-webkit-text-size-adjust: none;
}


button{
	border: none;
	background: none;
	border-radius: 0;
	cursor: pointer;
}

body{
	font-family: var(--base_font_family);
	color: var(--base_font_color);
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	-ms-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	min-width: 1100px;
}

img{
	display: block;
	object-position: center;
	width: 100%;
}

#body_wrap{
	overflow: clip;
}

a{
	color: var(--base_font_color);
}

.fax a{
	pointer-events: none;
}

@media (any-hover:hover){
	a[href^="tel:"] {
		pointer-events: none;
	}
}

/*
------------------------------------
アニメーション関係
------------------------------------
*/

.c_hover_opa{
	transition: 0.4s;
	transition-property: opacity;
}


@media (any-hover:hover){
	.c_hover_opa:hover{
		opacity: 0.7;
	}
	
}

.anime_fadein_bottom{
	opacity: 0;
	animation-duration: 0.5s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	transform: translateY(70px);
}

.anime_fadein_bottom.anime_active ,
.anime_active .anime_fadein_bottom{
	animation-name:anime_fadein_bottom;
}

@keyframes anime_fadein_bottom {
	0% {
	opacity:0;
	}
	100% {
		opacity:1;
		transform: translateY(0);
	}
}


/*
------------------------------------
共通パーツ
------------------------------------
*/


.container{
	max-width: 1080px;
	margin-inline: auto;
}

.container980{
	max-width: 980px;
	margin-inline: auto;
}


.c_bg_deco{
	position: absolute;
	z-index: -2;
	width:732px;
	aspect-ratio: 1 / 1;
	background-size: contain;
	opacity: 0.1;
}
.c_bg_deco.left{
	background-image: url('../img/bg_deco_left.svg');
	/* right:calc(50% + 250px); */
	left:-347px;
}
.c_bg_deco.right{
	background-image: url('../img/bg_deco_right.svg');
	/* left:calc(50% + 250px); */
	right:-383px;
}



.c_sec_head_area{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.c_sec_head{
	font-weight: bold;
	font-size: 50px;
	line-height: 1;
	text-align: center;
}

.c_sec_head span{
	color:var(--blue02);
}

.c_sec_head_area .head_deco{
	display: flex;
	justify-content: center;
	align-items: center;
	gap:4px;
	margin-top: 28px;
}

.c_sec_head_area .head_deco .bar{
	width:94px;
	height:5px;
	border-radius: 9999px;
	background: linear-gradient(to right, var(--blue02) 0%, var(--blue02) 50%, var(--blue) 50%, var(--blue) 100%);
}

.c_sec_head_area .head_deco::before,
.c_sec_head_area .head_deco::after{
	content:'';
	width:12px;
	height:12px;
	border-radius: 50%;
}

.c_sec_head_area .head_deco::before{
	background-color: var(--blue02)
}
.c_sec_head_area .head_deco::after{
	background-color: var(--blue)
}

.c_border_sec_head{
	font-weight: bold;
	font-size: 34px;
	line-height: 1.4;
	text-align: center;
	padding-bottom: 20px;
	border-bottom:1px solid var(--blue);
}


.c_contact_button{
	display: block;
	max-width: 460px;
	margin-inline: auto;
	margin-top: 64px;
	box-shadow: 7px 7px 7px rgba(60, 107, 142, 0.5);
	border-radius: 9999px;
}

/*
------------------------------------
LP本体
------------------------------------
*/

section{
	position: relative;
}

#main_inner{
	position: relative;
}

.fv_bg_section{
	
}

.fv_bg_section .fv_bg_section_inner{
	position: relative;
	height:100vh;
}



#section_wrap{
	position: relative;
	z-index: 2;
}

#section_bg_wrap{
	position: relative;
	padding-bottom: 72px;
}

#section_bg_wrap::before{
	content:'';
	width:100%;
	height:100%;
	background-color: var(--light_blue);
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -3;
}

.fv_section{
	position: sticky;
	width:100%;
	top:0;
	left:0;
}

.fv_section .header_logo{
	position: absolute;
	width:290px;
	top:30px;
	left:44px;
}

.fv_section .fv_inner{
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 100px;
	padding-bottom: 100px;
	position: relative;
}

.fv_section  video{
	width:100%;
	height:100%;
	object-fit: cover;
	display: block;
	position: absolute;
	z-index: -1;
	top:0;
	left:0;
}

.fv_section .fv_flex{
	width:95%;
	max-width: 1080px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	/* gap:0 20px; */
	gap:0 50px;
	padding-top: 60px; 
}

.fv_section .fv_left{
	width:490px;
}


.fv_section .fv_catch{
	max-width:470px;
}

.fv_section .fv_title{
	max-width:518px;
	margin-top: 56px;
}


.fv_section .header_contact{
	display: block;
	width:272px;
	position: absolute;
	top:32px;
	right:41px;
	border-radius: 9999px;
	box-shadow: 4px 4px 5px rgba(109, 109, 109, 0.4);

}


.lp_worry_section{
	padding-top: 72px;
}

.lp_worry_section .c_bg_deco{
	top:15px;
}

.lp_worry_section .sec_head{
	position: relative;
	font-weight: bold;
	font-size: 34px;
	text-align: center;
}

.lp_worry_section .sec_head::after{
	content:'';
	width: 255px;
	height: 20px;
	border-radius: 9999px;
	background: #fff;
	position: absolute;
	bottom:-3px;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;

}

.lp_worry_section .worry_list{
	margin-top: 56px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap:48px;
}

.lp_worry_section .worry{
	width:473px;
	opacity: 0;
	transform: scale(0);
}

.lp_worry_section .anime_active .worry{
	animation-name: balloon_show;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.lp_worry_section .anime_active .worry img{
	animation-name: balloon_move;
	animation-duration: 2s;
	animation-fill-mode: forwards;
	animation-iteration-count: infinite;
}

.lp_worry_section .worry01{
	animation-delay: 0.2s;
}

.lp_worry_section .worry01 img{
	animation-delay: 1.5s;
}

.lp_worry_section .worry02{
	animation-delay: 0.4s;
}

.lp_worry_section .worry02 img{
	animation-delay: 2.5s;
}

@keyframes balloon_show{
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes balloon_move{

	0%{
		transform: translateY(0);
	}
	10%{
		transform: translateY(-10px);
	}
	20%{
		transform: translateY(0);
	}
	30%{
		transform: translateY(-10px);
	}
	40%{
		transform: translateY(0);
	}

}




.lp_about_section{
	/* padding-top: 130px; */
	padding-top: 160px;
}

.lp_about_section .about_text{
	margin-top: 56px;
	text-align: center;
	font-weight: bold;
}


.lp_about_section .about_text01{
	
	font-size: 28px;
	line-height: 1.7;
}
.lp_about_section .about_text02{
	font-size: 24px;
	font-weight: normal;
	margin-top: 8px;
}

.lp_about_section .about_img{
	max-width: 1050px;
	margin-inline: auto;
	margin-top: 56px;
}

.lp_about_section .about_remark{
	margin-top: 40px;
	font-weight: bold;
	font-size: 30px;
	line-height: 1.5;
	text-align: center;
}

.lp_about_section .about_remark span{
	color:var(--orange);
}

.lp_feature_section{
	padding-top: 180px;
}

.lp_feature_section .c_bg_deco{
	top:12px;
}

.lp_feature_section .feature_list{
	display: flex;
	justify-content: space-between;
	gap:10px;
	margin-top: 120px;
}

.lp_feature_section .feature_item{
	width:348px;
	position: relative;
	padding-top: 118px;
	padding-inline: 24px;
	padding-bottom: 48px;
	background-color: #fff;
}

.lp_feature_section .feature_item::after{
	content:'';
	width:100%;
	height:100%;
	background-color: #DDE5EB;
	position: absolute;
	top:8px;
	z-index: -1;
}

.lp_feature_section .feature01_item::after{
	left:8px;
}
.lp_feature_section .feature02_item::after{
	left:0;
}
.lp_feature_section .feature03_item::after{
	left:-8px;
}

.lp_feature_section .feature_deco{
	background-size: contain;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.lp_feature_section .feature01_deco{
	width:185px;
	aspect-ratio: 1 / calc(166 / 185);
	background-image: url('../img/feature01.svg');
	bottom:calc(100% - 97px);
}
.lp_feature_section .feature02_deco{
	width:169px;
	aspect-ratio: 1 / calc(147 / 169);
	background-image: url('../img/feature02.svg');
	bottom:calc(100% - 90px);
}
.lp_feature_section .feature03_deco{
	width:180px;
	aspect-ratio: 1 / calc(147 / 180);
	background-image: url('../img/feature03.svg');
	bottom:calc(100% - 90px);
}

.lp_feature_section .feature_num{
	display: flex;
	justify-content: center;
}

.lp_feature_section .feature_num img{
	width:auto;
	height:46px;
}

.lp_feature_section .feature_head{
	font-weight: bold;
	font-size: 24px;
	line-height: 1.5;
	text-align: center;
	margin-top: 20px;
	min-height:110px;
}

.lp_feature_section .feature_text{
	margin-top: 20px;
	font-size: 20px;
	line-height: 1.6;
	color: #373737;
}

.lp_compare_section{
	padding-top: 80px;
}

.lp_compare_section .compare_text{
	margin-top: 24px;
	font-size: 26px;
	line-height: 1.6;
	text-align: center;
}

.lp_compare_section .compare_table{
	margin-top: 44px;
}

.lp_plan_section{
	padding-top: 100px;
}

.lp_plan_section .plan_info{
	margin-top: 48px;
	font-size: 36px;
	line-height: 1.5;
	text-align: center;
}

.lp_plan_section .plan_remark{
	margin-top: 20px;
	line-height: 1.5;
	text-align: center;
}

.lp_plan_section .plan_button{
	display: block;
	max-width: 720px;
	margin-inline: auto;
	margin-top: 50px;
	border-radius: 9999px;
	box-shadow: 8px 8px 8px rgba(60, 107, 142, 0.5);

}

.lp_schedule_section{
	padding-top: 85px;
}

.lp_schedule_section .schedule{
	max-width: 910px;
	margin-inline: auto;
	margin-top: 40px;
}

.lp_data_section{
	padding-top: 88px;
}


.lp_data_section .data_text{
	margin-top: 24px;
	font-size: 26px;
	line-height: 1.6;
	text-align: center;
}

.lp_data_section .data{
	margin-top: 44px;
}

.lp_data_section .c_contact_button{
	margin-top: 72px;
}

.lp_example_section{
	padding-top: 180px;
}

.lp_example_section .c_bg_deco{
	top:-110px;
}

.lp_example_section .white_box{
	margin-top: 56px;
	border-radius: 12px;
	background: #fff;
	padding-inline: 32px;
	padding-bottom: 64px;
	position: relative;
}

.lp_example_section .white_box::after{
	content:'';
	width:100%;
	height:100%;
	background-color: #DDE5EB;
	position: absolute;
	top:10px;
	z-index: -1;
	left:0;
	border-radius: 12px;
}

.lp_example_section .example_name{
	width: fit-content;
	min-height:56px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 0 0 8px 8px;
	background-color: var(--blue);
	color:#fff;
	margin-inline: auto;
	font-size: 24px;
	font-weight: normal;
	line-height: 1.3;
	padding:12px 44px;
}

.lp_example_section .example_catch{
	margin-top: 30px;
	font-weight: bold;
	font-size: 36px;
	line-height: 1.4;
	text-align: center;
}

.lp_example_section .example_list{
	margin-top: 36px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap:20px;
}

.lp_example_section .example_item{
	border:2px solid var(--blue02);
	position: relative;
}

.lp_example_section .example_item::after{
	content:'';
	width:20px;
	height:45px;
	background-color: var(--blue);
	position: absolute;
	top:-2px;
	left:calc(100% + 2px);
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.lp_example_section .example_item:last-child:after{
	content:none;
}

.lp_example_section .example_title{
	min-height: 45px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding:2px 8px;
	background-color: var(--blue02);
	font-weight: bold;
	font-size: 24px;
	line-height: 1.3;
	text-align: center;
	color:#fff;
}

.lp_example_section .example_contents{
	padding:20px 12px 20px;
}

.lp_example_section .example_contents li{
	position: relative;
	padding-left: 42px;
	font-size: 20px;
	line-height: 1.5;
	letter-spacing: -0.02em;
}

.lp_example_section .example_contents li::before{
	content:'';
	width:31px;
	height:22px;
	background-image: url('../img/icon_check_orange.svg');
	position: absolute;
	left:0;
	top:8px;
}

.lp_example_section .example_contents li + li{
	margin-top: 15px;
}

.lp_example_section .example_remark{
	margin-top: 24px;
	font-size: 17px;
	line-height: 1.5;
	padding-left: 42px;
}

.lp_example_section .data{
	margin-top: 30px;
}

.lp_contact_section{
	background-color: #fff;
	padding-bottom: 64px;
}

.lp_contact_section .sec_head{
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 116px;
	background: var(--blue);
	padding:12px;
	font-weight: normal;
	font-size: 34px;
	line-height: 1.3;
	text-align: center;
	color: #fff;

}

.lp_contact_section .form_area{
	margin-top: 60px;
}

footer{
	background-color: #000;
}

footer .footer_copy{
	min-height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding:4px 8px;
	font-size: 14px;
	color: #fff;
}