@charset "utf-8";

:root {
--bg: #F9F9F9;
--white: #FFF;
--black: #121212;
--gray: #333;
--lightgray: #D3D3D3;
--ultralightgray: #F7F7F7;
--blue: #0080C8;
--lightblue: #00C4FF;
--gradient: linear-gradient(0deg, rgba(0,180,234,1) 0%, rgba(0,126,253,1) 100%);
}

/*-------------- init --------------*/

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}

body {
	background: var(--white);
	color: var(--gray);
	font-size: 1.4rem;
	line-height: 1.8;
	letter-spacing: 0.05em;
	font-family: "Noto Sans JP",sans-serif;
}

*{
	box-sizing: border-box;
}

.img_responsive{
	max-width:100%;
}

p strong{
	font-weight:700;
}

.cf:before,
.cf:after {
	content: " ";
	display: table;
}

.cf:after {
	clear: both;
}

.cf {
	*zoom: 1;
}

.spbr{
	display:none;
}

.text_white{
	color: var(--white);
}
.text_blue{
	color: var(--blue);
}
.bg_black{
	background-color: var(--black);
}
.bg_blue{
	background-color: var(--blue);
}
.bg_ultralightgray{
	background-color: var(--ultralightgray);
}

.fs_13{
	font-size: 1.3rem;
}
.fs_14{
	font-size: 1.4rem;
}
.fs_15{
	font-size: 1.5rem;
}
.fs_16{
	font-size: 1.6rem;
}
.fs_17{
	font-size: 1.7rem;
}
.fs_18{
	font-size: 1.8rem;
}
.fs_20{
	font-size: 2.0rem;
}
.fs_22{
	font-size: 2.2rem;
}
.fs_24{
	font-size: 2.4rem;
}
.fs_28{
	font-size: 2.8rem;
}
.fs_40{
	font-size: 4.0rem;
}


.lh_s{
	line-height:1.25;
}
.lh_m{
	line-height:1.5;
}
.lh_l{
	line-height:1.8;
}


.pd_4{
	padding: 4px;
}
.pd_8{
	padding: 8px;
}
.pd_16{
	padding: 16px;
}
.pd_24{
	padding: 24px;
}
.pd_32{
	padding: 32px;
}
.pd_40{
	padding: 40px;
}
.pd_48{
	padding: 48px;
}
.pd_64{
	padding: 64px;
}
.pd_80{
	padding: 80px;
}

.mg_4{
	margin: 4px;
}
.mg_8{
	margin: 8px;
}
.mg_16{
	margin: 16px;
}
.mg_24{
	margin: 24px;
}
.mg_32{
	margin: 32px;
}
.mg_40{
	margin: 40px;
}
.mg_48{
	margin: 48px;
}
.mg_64{
	margin: 64px;
}
.mg_80{
	margin: 80px;
}

.b{
	font-weight:bold;
}
.section_head{
	padding: 4.8rem 1.6rem 7.2rem;
	text-align: center;
}
.section_head .mid_en{
	position: relative;
	font-size: 1.4rem;
	font-family:'open sans';
	font-weightL bold;
	padding-bottom: 1.8rem;
	margin-bottom: 1.8rem;
}
.section_head .mid_en:after{
	content:'';
	position: absolute;
	bottom: 0;
	left: calc(50% - 1.5rem);
	display: block;
	width: 3.0rem;
	height: 1px;
	background: var(--blue);
}
.section_head .mid_en.text_white:after{
	background: var(--white);
}
.section_head .mid{
	position: relative;
	font-size: 2.0rem;
	font-weight: bold;
	letter-spacing: 0.15em;
}
.text_link{
	padding-right: 3rem;
	background: url(../images/arrow_r.png) no-repeat right center;
	background-size: 23.5px 9px;
	text-decoration:none;
	color:var(--blue);
}

sup {
	font-size: 80%;
	vertical-align: top;
	position: relative;
	top: -0.1em;
}
/*-------------- header --------------*/

.header{
	display: flex;
	position: fixed;
	top: 0;
	left:0;
	justify-content: center;
	align-items: center;
	width:100%;
	height: 80px;
	background: rgba(255,255,255,0.9);
	backdrop-filter: blur(10px);
	z-index: 1000;
}
.header_content{
	display:flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}
.header_logo{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap:4px;
	height: 80px;
	padding:0 16px 0 16px;
}
.header_logo_img{
	height: 36px;
	margin-top: 4px;
}
.header_logo_name{
	border-left: 1px solid #C6C6C6;
	padding-left:12px;
	font-size: 1.3rem;
}
.header_logo_name a{
	text-decoration:none;
	color:#333;
}
.header_menu{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-grow:1;
}
.header_menu ul{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 24px;
	padding-right:32px;
}
.header_menu ul li{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 80px;
	padding-top: 4px;
	border-bottom: 4px solid transparent;
	transition: .2s;
}
.header_menu ul li:hover{
	border-bottom: 4px solid var(--blue);
}
.header_menu ul li.active{
	border-bottom: 4px solid var(--blue);
}
.header_menu ul li a{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	text-decoration: none;
	color: var(--gray);
	font-size:1.4rem;
}
.header_menu ul li a:hover{
	color: var(--blue);
}
.header_menu ul li.active a{
	color: var(--blue);
}
.header_cta{
	display:flex;
	justify-content: flex-end;
	align-items: center;
	gap: 10px;
	flex-grow:0;
	padding-right: 12px;
	z-index:1001;
}

.header_cta_tel{
	display:flex;
	flex-direction:column;
	justify-content: center;
	align-items: center;
	gap: 2px;
	flex-grow:0;
}

.header_cta_tel a{
	text-decoration:none;
	color: var(--blue);
	font-weight:bold;
	font-size: 2rem;
	background: url(../images/icon_tel.svg) no-repeat left center;
	background-size:22px;
	padding-left:26px;
}

.header_cta_tel span{
	font-size:1.15rem;
	line-height:1;
	letter-spacing:0;
	text-align:center;
	padding-left:8px;
}
.header_cta_btn{
	display:flex;
	justify-content:center;
	align-items:center;
	color: var(--white);
	background: var(--gradient);
	font-weight: 500;
	font-size: 13px;
	line-height: 13px;
	padding: 9px 16px;
	text-decoration:none;
	border-radius:64px;
	z-index: 1011;
	transition: .3s;
}

.header_cta_btn:hover{
	opacity: 0.6;
}

.header_sp_menu_icon{
	display:none;
}

.sp_menu{
	display:none;
}
/*-------------- main --------------*/

.main{
	padding-top: 80px;	
}

/*-------------- page --------------*/

.page_head{
	width: 100%;
}
.page_head_body{
	position:relative;
	width: 100%;
	max-width: 124.0rem;
	margin: 0 auto;
	padding:2rem 0;
}
.page_contents{
	width:100%;
	background: #EFEFEF;
	padding:4rem 1.6rem 3rem;
}

.page_title{
	font-size:3.2rem;
	font-weight:600;
}
.page_card{
	background:var(--white);
	width: 100%;
	max-width: 124.0rem;
	margin: 0 auto;
	padding:3rem;
	margin-bottom:4rem;
}


/*-------------- kv --------------*/

.kv{
	background: url(../images/kv_bg.jpg) no-repeat center bottom;
	background-size: cover;
	height: 62vw;
	max-height:120rem;
	margin-top: -80px;
	padding-top: 80px;
}
.kv_body{
	position:relative;
	width: 100%;
	max-width: 88vw;
	margin: 0 auto;
	padding-top:4vw;
}
.kv_texts{
	display:flex;
	flex-direction:column;
	gap:1.2rem;
}
.kv_text_head1{
	font-size:2.4rem;
	font-weight:400;
	color:var(--white);
	text-shadow: 1px 1px 14px rgba(65,211,255,0.6) ,
	-1px 1px 14px rgba(65,211,255,0.6) ,
	1px -1px 14px rgba(65,211,255,0.6) ,
	-1px -1px 14px rgba(65,211,255,0.6);
	margin-bottom:1rem;
	margin-left:0.3rem;
	letter-spacing:0.1em;
}
.kv_text_head2 p{
	display:inline-block;
	padding: 0.2rem 1rem;
	background:var(--black);
	color:var(--white);
	font-size:1.7rem;
}
.kv_text_title{
	font-size:2.777777777vw;
	line-height:1.5;
	font-weight:600;
	margin-bottom:1rem;
	color:var(--white);
}
.kv_text_read{
	width:40%;
	font-size:1.4rem;
	line-height:1.8;
	color:var(--white);
}
.kv_price{
	margin: 20px 0;
}
.kv_price_fig{
	width: 15%;
	max-width: 400px;
	min-width: 211px;
}
.kv_ring_1{
	display:flex;
	position:absolute;
	top:17vw;
	left:41.5vw;
	width:12.5vw;
	height:12.5vw;
}
.kv_ring_2{
	display:flex;
	position:absolute;
	top:3.6vw;
	left:66.5vw;
	width:12vw;
	height:12vw;
}
.kv_ring_3{
	display:flex;
	position:absolute;
	top:32vw;
	left:69.5vw;
	width:11.5vw;
	height:11.5vw;
}
.kv_ring_text{
	display:flex;
	position:absolute;
	width:100%;
	height:100%;
	justify-content:center;
	align-items:center;
	color:var(--white);
	font-weight:400;
	text-align:center;
}
.kv_ring_1 .kv_ring_text{
	font-size:1.52vw;
	line-height:1.3;
}
.kv_ring_2 .kv_ring_text{
	font-size:1.4vw;
	line-height:1.3;
}
.kv_ring_3 .kv_ring_text{
	font-size:1.2vw;
	line-height:1.3;
}
.kv_ring{
	mix-blend-mode: Screen;
}

/*-------------- about --------------*/

.about{
	width: 100%;
	margin-bottom: 1px;
	padding: 4.0rem;
	background: #000 url(../images/about_bg.jpg) no-repeat center center;
	background-size: cover;
	color: var(--white);
}
.about_body{
	width: 100%;
	max-width: 100.0rem;
	margin: -2rem auto 0;
	padding-bottom: 4.0rem;
}
.about_body p strong{
	font-weight:500;
	text-shadow: 1px 1px 14px rgba(65,211,255,0.7), -1px 1px 14px rgba(65,211,255,0.7), 1px -1px 14px rgba(65,211,255,0.7), -1px -1px 14px rgba(65,211,255,0.7);
}
.about_body_main{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 6.0rem 0;
}
.about_body_fig{
	width: 43%;
}
.about_body_texts{
	width: 47%;
}
.about_body_texts ul{
	display:flex;
	flex-direction:column;
	gap:1.4rem;
	margin: 2rem 0 3rem;
}
.about_body_texts li{
	display:flex;
	gap:1.6rem;
	align-items:center;
	min-height:7.4rem;
	padding:1rem 1.6rem;
	background:rgba(0,0,0,0.5);
	border:1px solid #B4B4B4;
	font-size:1.8rem;
	font-weight:500;
}

/*-------------- feature --------------*/

.feature_body{
	margin-bottom: 1px;
	width: 100%;
}
.feature_box{
	display: flex;
	justify-content:space-between;
	align-items:stretch;
	width: 100%;
	min-height: 68.0rem;
	margin-bottom: 1px;
}
.feature_box:nth-child(even){
	flex-direction: row-reverse;
}
.feature_image{
	width: calc(66%);
}
.feature_image_cost{
	background: url(../images/feature_image_cost.jpg) no-repeat right bottom;
	background-size: cover;
}
.feature_image_charge{
	background: url(../images/feature_image_charge.jpg) no-repeat left bottom;
	background-size: cover;
}
.feature_image_eco{
	background: url(../images/feature_image_eco.jpg) no-repeat right bottom;
	background-size: cover;
}
.feature_desc{
	display: flex;
	flex-direction: column;
	gap: 3.2rem;
	width: calc(34%);
	min-width:36.0rem;
	padding: 4.8rem 6.4rem 5.4rem;
}
.feature_desc_no{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 7.2rem;
	height: 7.2rem;
	background: #333333;
	color: var(--white);
	font-size: 28px;
	font-family: 'open sans';
}
.feature_desc_catch{
	font-size: 2.4rem;
	line-height: 1.5;
	font-weight: bold;
}
.feature_desc_read{
	font-size: 1.5rem;
	line-height: 1.8;
}
.feature_desc_fig{
	margin: 8px auto;
	max-width: 400px;
}

/*-------------- cta --------------*/

.cta{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2.4rem;
	width: 100%;
	margin-bottom: 1px;
	padding: 5.2rem 1.6rem 4.8rem;
	background: var(--black);
	color: var(--white);
}
.evo_boxes{
	display: flex;
	justify-content: space-between;
	align-items :stretch;
	gap: 3.4rem;
	position: relative;
	width: 100%;
	max-width: 120.0rem;
}
.evo_box{
	background: #242424;
	border: 2px solid var(--blue);
	width: 100%;
	padding: 2.0rem;
}
.evo_evo{
	display:flex;
	justify-content:center;
	align-items:center;
	position: absolute;
	width:19rem;
	height: 9.6rem;
	background: url(../images/evo_evo_fig.png) no-repeat center center;
	background-size: contain;
	top: calc(50% - 5rem);
	left: calc(50% - 9.5rem);
	color: #FFF;
	font-size:2.7rem;
	font-weight:700;
	padding-bottom: 0.6rem;
	padding-left:1rem;
}
.evo_head{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 1.26em;
}
.evo_head_step{
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--blue);
	width: 7.0rem;
	height:7.0rem;
	font-size: 1.6rem;
	line-height: 1;
	font-weight: bold;
	color: var(--white);
	flex-shrink:0;
}
.evo_head_mid{
	font-size: 2.2rem;
	line-height: 1.5;
	color: #1B96DB;
	font-weight: 600;
}
.evo_body{
	padding: 1.6rem 5.0rem 0.2rem 7.0rem;
}
.evo_body_mid{
	color: #d5d5d5;
	font-size: 1.6rem;
	line-height: 1.5;
	font-weight: 600;
}
.evo_body_body1{
	display:flex;
	align-items: flex-end;
	flex-wrap: wrap;
	padding: 0 0;
}
.evo_body_body1 .evo_body_fig{
	width: 105%;
    margin-left: -10%;
    margin-bottom: -48px;
}
.evo_body_body1 .evo_body_memo{
	width: 40%;
	padding: 0 0 0.8rem 1.2rem;
	font-size: 1.3rem;
	color: #FF8B8B;
	line-height:1.5;
}
.evo_body_body1 .evo_body_name{
	width: 100%;
	margin-top: -80px;
	padding: 0 1rem 1rem;
	text-align: center;
	font-size: 1.8rem;
	font-weight:500;
}
.evo_body_body2{
	display:flex;
	flex-direction:column;
	padding: 1rem 0 0;
}
.evo_body_body2 .evo_body_fig{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.8rem;
	padding-right: 2rem;
}
.evo_body_body2 .evo_body_fig:before{
	content:'+';
	color: var(--white);
	font-size: 3.6rem;
}
.evo_body_body2 .evo_body_fig img{
	height: 18rem;
}
.evo_body_body2 .evo_body_name{
	padding: 0 1rem 1rem;
	text-align: center;
	font-size: 1.8rem;
	font-weight:500;
}
.evo_body_body2 .evo_body_name span{
	font-size: 1.4rem;
	padding-left:0.8rem;
	color:#CBCBCB;
	font-weight:300;
}
.evo_body_link{
	padding: 0.4rem;
	text-align:center;
}
.evo_btn{
	display:inline-flex;
	justify-content:center;
	align-items:center;
	color: var(--white);
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1.4rem;
	padding: 1rem 4rem 1.2rem;
	text-decoration:none;
	border-radius:6.4rem;
	border: 1px solid var(--blue);
	background:var(--blue);
	transition: 0.3s;
}
.evo_btn:hover{
	border: 1px solid var(--white);
}
.cta_read{
	text-align:center;
	font-size:1.6rem;
	line-height:1.8;
}
.cta_read span{
	border-bottom: 3px solid var(--blue);
}
.cta_read strong{
	font-size:1.9rem;
	font-weight:500;
}
.cta_btns{
	width:100%;
	display:flex;
	justify-content: center;
	align-items: center;
	gap: 1.8rem;
}
.cta_btn{
	display:flex;
	justify-content:center;
	align-items:center;
	color: var(--white);
	background: var(--gradient);
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 1.8rem;
	padding: 1.6rem 3.2rem;
	text-decoration:none;
	border-radius:8rem;
	border:1px solid rgba(255,255,255,1);
	transition: .3s;
	min-width:30rem;
}
.cta_btn:hover{
	border:1px solid rgba(255,255,255,1);
	box-shadow: 0 0 10px 3px #1CE7EF;
}


/*-------------- lineup --------------*/

.lineup{
	background: radial-gradient(circle, rgba(51,51,51,1) 100%, rgba(22,22,22,1) 100%);
	color: var(--white);
	padding-bottom:7rem;
	margin-bottom: 1px;
}
.lineup_body{
	position: relative;
	width: 100%;
	max-width: 97rem;
	margin: -3rem auto 0;
	text-align: center;
}
.lineup_catch{
	margin-top:-2rem;
	padding:2rem;
	font-size:1.7rem;
	font-weight: 600;
}
.lineup_boxes{
	display: flex;
	justify-content: space-between;
	align-items :stretch;
	gap: 3.4rem;
	padding: 1.2rem;
}
.lineup_box{
	display: flex;
	flex-direction: column;
	align-items:center;
	justify-content:stretch;
	gap:0.8rem;
	width:100%;
	background: var(--white);
	color: var(--gray);
	padding: 2.8rem 2.4rem;
}
.lineup_box h3{
	margin-top: 1.2rem;
	font-size: 1.8rem;
	line-height: 1.4;
	font-weight: bold;
	color: #0080C8;
}
.linup_message{
	width: 96%;
	margin-bottom: 1rem;
	border: 1px solid #0080C8;
	padding: 1rem 1.6rem;
	font-size: 1.6rem;
	font-weight: bold;
	color: #0080C8;
}


.lineup_figs{
	padding: 2rem;
	width: 90%;
}
.lineup_figs img:first-child{
	display: inline-block;
	width: 60%;
	height: auto;
}
.lineup_figs img:last-child{
	display: inline-block;
	width: 35%;
	height: auto;
}
.lineup_name{
	display:flex;
	align-items:stretch;
	font-size: 1.9rem;
	font-weight: 600;
}
.lineup_fig{
	display:flex;
	align-items:stretch;
}
.lineup_fig img{
	width:21.0rem;
	max-width: 100%;
	margin: 0 auto;
}
.lineup_sped{
	display:flex;
	align-items:stretch;
	font-weight:600;
}
.lineup_desc{
	display:flex;
	align-items:stretch;
	text-align:left;
	font-size:1.3rem;
}
.lineup_flow{
	display: flex;
	justify-content:center;
	align-items:center;
	flex-direction:column;
	margin-top:3.6rem;
}
.lineup_flow:before{
	content:'';
	display:block;
	width:calc(100% - 2.4rem);
	height:2.2rem;
	border:3px solid #fff;
	border-top:none;
}
.lineup_flow:after{
	content:'+';
	font-size: 4rem;
	font-weight: 400;
}
.lineup_push{
	display:flex;
	justify-content:space-between;
	align-items:center;
	max-width:98rem;
	margin: -1rem auto 0;
	gap: 2rem;
	padding: 0 4rem;
}
.lineup_push_fig{
	display:flex;
	flex-direction:column;
	justify-content:center;
	width:20rem;
	text-align:center;
}
.lineup_push_fig img{
	margin: 0.8rem auto;
	width: 12rem;
}
.lineup_push_texts{
	flex-grow:1;
}
.lineup_push_catch{
	position:relative;
	padding: 1rem 0 0;
	font-size:2.1rem;
	font-weight:600;
}
.lineup_push_catch span{
	position:relative;
	font-size:4.5rem;
	line-height:1.5;
	padding:0.8rem 0.8rem 0;
}
.lineup_push_catch span:after{
	content:'無料';
	font-size:1.2rem;
	font-weight:400;
	position:absolute;
	top:0.3rem;
	left:0.75em;
	white-space:nowrap;
	text-align:center;
	letter-spacing:0.1em;
}
.lineup_push_read{
	display:block;
	width:100%;
	background: var(--blue);
	padding: 1.2rem 2.4rem;
	font-size:1.5rem;
	text-align:left;
}

/*-------------- merit --------------*/
.merit_body{
    width: 100%;
    max-width: 97.1rem;
    margin: -2rem auto 0;
    padding-bottom: 4rem;
}
.merit_body_head{
	display:flex;
	flex-direction:column;
	align-items: center;
	gap: 12px;
	border: 1px solid #1B96DB;
	padding: 2.4rem 1.6rem 3.2rem;
	text-align:center;
	color:#1B96DB;
	font-weight: bold;
	font-size: 2.5rem;
	line-height:3.2rem;
}
.merit_body_head span{
	font-size: 3.2rem;
	border-bottom: 4px solid #1B96DB;
}
.merit_body_head img{
	width: 39px;
}
.merit_figs{
	display:flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 0;
	margin-top: 2.8rem;
}
.merit_fig_alpha img{
	width: 532px;
	margin-top: 3rem;
}

.merit_fig_beta{
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap:0;
	position: relative;
}
.merit_fig_beta img{
	width: 349px;
}
.merit_fig_beta:before{
	content:'';
	display: block;
	width: 88px;
	height: 48px;
	margin-top: 100px;
	margin-right:-1px;
	background: url(../images/merit_fig_arrow_1.png) no-repeat right center;
	background-size: cover;
}
.merit_fig_memo{
	margin-top: -9rem;
	width: 532px;
	max-width: 100%;
	font-size: 1.2rem;
	color: #454545;
}
.merit_compare{
	margin-top: 5.8rem;
	text-align:center;
}
.merit_compare h4{
	font-size:2rem;
	font-weight: bold;
	color: #1380C3;
}
.merit_compare_table{
	margin-top: 3.2rem;
	width: 100%;
}
.merit_compare_table tr.thtr .c2{
	border-top: 20px solid #1380C3;
	vertical-align: middle;
	background: #1380C3;
	padding-bottom: 16px;
	color: #FFF;
	font-weight: bold;
	font-size: 1.8rem;
	line-height:1.4;
}
.merit_compare_table tr.thtr .c3{
	background: #DCE3E8;
	vertical-align: middle;
	color: #333333;
	font-weight: bold;
	font-size: 1.6rem;
	line-height:1.4;
}
.merit_compare_table .c1{
	width: 307px;
	height: 74px;
	vertical-align: middle;
	background: #707070;
	color: #fff;
	border-bottom: 1px solid #FFF;
	text-align:left;
	padding-left:2rem;
	font-size: 1.6rem;
}
.merit_compare_table .c2{
	width: 342px;
	height: 74px;
	vertical-align: middle;
	border-right: 16px solid #1380C3;
	border-left: 16px solid #1380C3;
	border-bottom: 1px solid #1380C3;
	color: #1380C3;
	font-weight: bold;
	font-size: 1.7rem;
	line-height: 1.4;
}
.merit_compare_table .c3{
	width: 304px;
	height: 74px;
	vertical-align: middle;
	background: #F7F7F7;
	border-bottom: 1px solid #FFF;
	font-size: 1.6rem;
}
.merit_compare_table tr.last .c2{
	border-bottom: 16px solid #1380C3;
}
.merit_memo{
	margin-top: 3rem;
	color: #454545;
	font-size: 1.2rem;
	text-align:left;
}
.merit_link{
	margin: 4rem auto 2rem;
}
.merit_link .btn{
	padding: 1rem 3rem;
	border: 1px solid #1380C3;
	text-decoration: none;
	border-radius: 3rem;
	font-size: 1.5rem;
	color: #1380C3;
}

/*-------------- install --------------*/

.install{
	display:flex;
	justify-content:flex-start;
	align-items:stretch;
	width:100%;
	min-height:40rem;
	margin-bottom: 1px;
}
.install_image{
	width:calc(50% - 14.5rem);
	background: url(../images/install_image.jpg) no-repeat right center;
	background-size: cover;
}
.install_main{
	width:calc(50% + 14.5rem);
	max-width:84rem;
}
.install_body{
	position:relative;
	padding:0 6rem 7rem;
	text-align:center;
}
.install_catch{
	margin-top:-3.2rem;
	margin-bottom:5rem;
	font-size:2.1rem;
	line-height:1.5;
	color:var(--blue);
	font-weight:600;
}
.install_point{
	display:inline-flex;
	justify-content:center;
	align-items:center;
	position:absolute;
	top:1.4rem;
	right:7rem;
	width:12.4rem;
	height:12.4rem;
	color:var(--white);
	background: var(--gradient);
	border-radius:100%;
	font-size:1.65rem;
	line-height:1.4;
	font-weight:600;
}
.install_omakase{
	padding:1rem;
	font-size:1.9rem;
	font-weight:600;
}
.about_rexev{
	border: 1px solid #DDDDDD;
	background:#F9F9F9;
	margin: 1rem auto;
	padding: 2.4rem 4rem;
	max-width:66rem;
}
.about_logo_img{
	width:18.2rem;
}
.about_rexev p{
	padding:1rem;
	text-align:left;
	font-size:1.5rem;
}

/*-------------- campaign --------------*/

.campaign{
	background: var(--blue);
	color: var(--white);
	padding-bottom:5rem;
	margin-bottom: 1px;
}
.campaign_body{
	position: relative;
	width: 100%;
	max-width: 78.6rem;
	margin: -4.8rem auto 0;
	text-align: center;
}
.campaign_info{
	display:flex;
	justify-content:center;
	align-items:center;
	gap:2.4rem;
}
.campaign_point{
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	width:12.8rem;
	height:12.8rem;
	background: var(--white);
	border-radius:12.8rem;
	color:var(--gray);
	text-align:center;
	font-size:2.4rem;
	line-height:3rem;
	font-weight:600;
	flex-shrink:0;
}
.campaign_point span{
	display:inline;
	color: var(--blue);
}
.campaign_catch{
	margin:2rem 2rem 1rem;
	padding:0.2rem 0.8rem;
	background:var(--black);
}
.campaign_catch h4{
	font-size:2rem;
}
.campaign_term{
	display:none;
	margin:1rem 2rem 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--white);
	font-size:1.8rem;
}
.campaign_memo{
	line-height:1.5;
	opacity:0.9;
}
.campaign .cta_btns{
	margin-top: 4.8rem;
}

/*-------------- footer --------------*/

.footer{
	width:100%;
}
.footer_body{
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction:column;
	gap:2rem;
	width: 100%;
	max-width: 124rem;
	margin: 3rem auto 1rem;
	text-align: center;
}
.footer_logo{
	padding:1rem;
}
.footer_logo_img{
	height: 5rem;
}
.footer_copyright{
	width:100%;
	border-top:1px solid #C0C3CA;
	padding:2.4rem;
	font-family: 'Open Sans', sans-serif;
	font-size:1rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.footer_pagetop{
	display:flex;
	width:100%;
	justify-content:flex-end;
}
.footer_pagetop_link{
	display:flex;
	gap:0.4rem;
	flex-direction:column;
	align-items:center;
	text-decoration:none;
	color:var(--gray);
}
.footer_pagetop_icon{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width:6rem;
	height:6rem;
	border:1px solid var(--gray);
	border-radius:6rem;
	transition:.3s;
}
.footer_pagetop_link:hover .footer_pagetop_icon{
	background:var(--gray);
	color:var(--white);
}
.footer_pagetop_link span{
	font-size:1.2rem;
}


/*-------------- usecase --------------*/


.uc_box{
	width: 100%;
	padding: 0;
}
.uc_head{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 1.26em;
}
.uc_head_step{
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--blue);
	width: 7.0rem;
	height:7.0rem;
	font-size: 1.6rem;
	line-height: 1;
	font-weight: bold;
	color: var(--white);
}
.uc_head_mid{
	font-size: 2.2rem;
	line-height: 1.5;
	color: #1B96DB;
	font-weight: 600;
}
.uc_body{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 2rem 0rem 0rem 0rem;
}
.uc_body_read{
	width:50%;
}
.uc_body_mid{
	color: #d5d5d5;
	font-size: 1.6rem;
	line-height: 1.5;
	font-weight: 600;
}
.uc_body_body1{
	margin-top:-8rem;
	width:40%;
	display:flex;
	align-items: flex-end;
	flex-wrap: wrap;
	padding: 0;
}
.uc_body_body1 .uc_body_fig{
	width: 72%;
}
.uc_body_body1 .uc_body_memo{
	width: 40%;
	padding: 0.8rem 0 0.8rem 1.2rem;
	font-size: 1.3rem;
	color: #B10000;
	line-height:1.5;
}
.uc_body_body1 .uc_body_name{
	width: 50%;
	padding: 0.2rem;
	text-align: center;
	font-size: 1.8rem;
	font-weight:500;
}
.uc_evo{
	position:relative;
	display:flex;
	justify-content:center;
	align-items:center;
	width:14.6rem;
	height: 8.9rem;
	background: url(../images/uc_evo_fig.svg) no-repeat center center;
	background-size: contain;
	color: #FFF;
	font-size:2.2rem;
	font-weight:700;
	padding-top: 1.5rem;
	padding-bottom: 0rem;
	margin: -5rem auto -2rem;
	z-index:100;
}
.uc_body_body2{
	margin-top:-5rem;
	width:44%;
	display:flex;
	flex-direction:row;
	padding: 1rem 0 0;
	align-items:center;
}
.uc_body_body2 .uc_body_fig{
	width: 55%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.8rem;
	padding-right: 2rem;
}
.uc_body_body2 .uc_body_fig:before{
	content:'+';
	color: var(--gray);
	font-size: 3.6rem;
}
.uc_body_body2 .uc_body_fig img{
	
}
.uc_body_body2 .uc_body_name{
	width:40%;
	padding: 0 1rem 1rem;
	text-align: center;
	font-size: 1.8rem;
	font-weight:500;
}
.uc_body_body2 .uc_body_name span{
	font-size: 1.4rem;
	padding-left:0.8rem;
	font-weight:300;
}
.uc_cases{
	position:relative;
	margin-top:6rem;
	display:flex;
	justify-content:space-between;
	align-items:stretch;
	gap:2.4rem;
}
.uc_case{
	position:relative;
	display:flex;
	flex-direction:column;
	gap:3.2rem;
	width:50%;
	border:1px solid #B9B9B9;
	padding:3rem;
}
.uc_case:before{
	position:absolute;
	top:-2.6rem;
	right:calc(50% - 4.3rem);
	content:'';
	display:block;
	width:8.6rem;
	height:5.2rem;
	background: url(../images/uc_evo_fig.svg) no-repeat center center;
	background-size:contain;
	z-index:1;
}

.uc_case_h{
	display:inline-block;
	align-self:flex-start;
	padding:1rem 1.4rem 1.2rem;
	background:var(--black);
	color:var(--white);
	font-size:1.8rem;
	line-height:1.2;
}
.uc_case_t{
	font-size:1.6rem;
	font-weight:600;
}
.uc_case_catch{
	font-size:2rem;
	line-height:1.5;
	font-weight:600;
	color:var(--blue);
}
.uc_case_link{
	padding:1.2rem 0;
}
.uc_case_fig{
	padding:2rem;
}


/*-------------- faq --------------*/

.faq_mid{
	margin: 1rem 4rem 0;
	font-size:2rem;
	font-weight:600;
	color: var(--blue);
}
.faq_boxes{
	padding:0rem 4rem 4rem;
}
.faq_box{
	padding:3.2rem 2rem 2.8rem 2rem;
	border-bottom: 1px solid #D5D5D5;
}

.faq_q{
	display:flex;
	align-items:flex-start;
}
.faq_q_q{
	font-size:2.8rem;
	color:var(--blue);
	font-weight:500;
	font-family:Open Sans;
}
.faq_q_text{
	padding:1.2rem;
	font-size: 1.8rem;
	font-weight:500;
}
.faq_a{
	display:flex;
	align-items:flex-start;
	padding-top:1rem;
	padding-left:4.8rem;
}
.faq_a_a{
	font-size:2.8rem;
	font-weight:500;
	font-family:Open Sans;
}
.faq_a_text{
	padding:1.2rem;
	font-weight:400;
}


/*-------------- case --------------*/

.case{
	width:100%;
	padding-bottom:6rem;
	margin-bottom: 1px;
}

.case_body{
	position: relative;
	width: 100%;
	max-width: 108.0rem;
	margin: -3rem auto 0;
}

.case_box{
	display: flex;
	margin: 0 2rem;
	padding: 0;
	gap:4.4rem;
	background: var(--white);
}

.case_desc_no{
	display: flex;
	flex-direction:column;
	justify-content: center;
	align-items: center;
	width: 6.8rem;
	height: 6.8rem;
	flex-shrink: 0;
	background: var(--blue);
	color: var(--white);
	font-size: 2.8rem;
	line-height:1.3;
	font-family: 'open sans';
}
.case_desc_no span{
	font-size: 1.4rem;
	line-height:1.3;
}
.case_data{
	padding:0.4rem 1.6rem;
	border-left:1px solid var(--blue);
}
.case_desc{
	display:flex;
	flex-direction:column;
	gap:2.4rem;
	padding:0 2.4rem 0 0.8rem;
}

.case_desc_catch h3{
	font-size:2.1rem;
	line-height:1.5;
	font-weight:600;
}

.case_desc_fig{
	width: 40rem;
	flex-shrink: 0;
}

.case_desc_read{

}

.case_desc_read strong{
	font-weight: 600;
}

/*-------------- subsidy --------------*/

.subsidy{
	background: transparent linear-gradient(180deg, #007EFD 0%, #00B4EA 100%) 0% 0% no-repeat padding-box;
	padding-bottom: 2.4rem;
	color: var(--white);
	max-width:100%;
	overflow: hidden;
}

.subsidy_head{
	padding: 2.4rem 1.6rem 1.6rem;
}

.subsidy_head .mid{
	posiiton:relative;
	font-size:2.5rem;
	font-weight:500;
	letter-spacing:0.1em;
}
.subsidy_head .mid:before{
	position:relative;
	content: "╲";
	margin-right:1rem;
}

.subsidy_head .mid:after{
	position:relative;
	content: "╱";
	margin-left:1rem;
}

.subsidy_body{
	position: relative;
	width: 100%;
	max-width: 78.6rem;
	margin: 0rem auto 0;
	text-align: center;
}
.subsidy_info{
	position:relative;
	display:flex;
	justify-content:center;
	align-items:center;
	gap:2rem;
	margin-left:-80px;
}
.subsidy_point{
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	width:12rem;
	height:12rem;
	background: var(--white);
	border-radius:12rem;
	color:var(--blue);
	text-align:center;
	font-size:2.2rem;
	line-height:2.8rem;
	font-weight:600;
	flex-shrink:0;
}
.subsidy_point span{
	display:inline;
	color: var(--gray);
}
.campaign_balloon{
	position:absolute;
	right:-45px;
	bottom:-4px;
	width:152x;
	height:91px;
}
.subsidy_catch{
	margin:2rem 2rem 1rem;
	padding:0.2rem 0.8rem;
	background:var(--black);
}
.subsidy_catch h4{
	font-size:2rem;
}
.subsidy_term{
	display:none;
	margin:1rem 2rem 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--white);
	font-size:1.8rem;
}
.subsidy_memo{
	margin-top:1.5rem;
	line-height:1.5;
	opacity:1;
}



