@charset "UTF-8";
/* CSS Document */
body{
	margin:0;
	padding:0;
	color:#1C2B33;
	background:#F9F9F9;
	font-size:16px;
	font-weight:400;
	line-height: 1.56;
	overflow-x:hidden;
	font-family: "Noto Sans JP", sans-serif;
	-webkit-text-size-adjust: 100%;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}

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

body.open, body.modaal-noscroll{
	overflow: hidden;
}
input, textarea {
    border-radius: 0;
    outline: none;
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-size:16px;
    -webkit-border-radius : 0;
    -webkit-tap-highlight-color : rgba(0,0,0,0);
}

img{
	vertical-align:bottom;
	max-width:100%;
	height:auto;
}

a {
	color:inherit;
	text-decoration:none;
	transition: all 0.3s ease-in-out 0s;
}

a:hover {
	text-decoration:none;
}
.flex_wrap{
	display: -webkit-flex;
    display: flex;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap:wrap;
}
.flex_wrap_between{
	display: -webkit-flex;
    display: flex;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap:wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.flex_wrap_center{
	display: -webkit-flex;
    display: flex;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap:wrap;
	justify-content: center;
}
.flex_wrap_middle{
	display: -webkit-flex;
    display: flex;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap:wrap;
	align-items: center;
}

.sp{display:none !important;}
.note{font-size:14px;font-weight: 400;}

/************************
header
************************/
header{
	position: fixed;
	width: 100%;
	z-index: 1000;
	height: 70px;
	transition: all 0.3s ease-in-out 0s;
}
.hd_sub{
	box-shadow:none;
}
header .logo{
	width: 123px;
}
.inner_header{
	margin: auto;
	width: 100%;
	padding: 0 30px;
	align-items: center;
	height: 100%;
	position: relative;
}
.inner_header nav{
	gap:56px;
	transition: all 0.3s ease-in-out 0s;
}
.inner_header ul{
	gap:54px;
	font-size: 16px;
	font-weight: 700;
}
.inner_header nav a:hover{
	opacity: .5;
}
.btn_hd a{
	background: transparent linear-gradient(90deg, #2750C2 0%, #20B199 100%) 0% 0% no-repeat padding-box;
	border-radius: 100vh;
	height: 48px;
	padding: 0 60px;
	color: #fff;
	font-weight: 700;
	font-size: 18px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
}
.btn_hd a::after{
	position: absolute;
	content: '';
	display: block;
	width: 9px;
	height: 20px;
	margin: auto;
	top: 0;
	bottom: 0;
	right: 16px;
	background: #fff;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

/************************
btn
************************/
.btn{
	width: 100%;
	max-width: 442px;
	margin: auto;
}
.btn_area{
	gap:20px;
}
.btn a{
	padding: 14px;
	color: #fff;
	background: transparent linear-gradient(90deg, #2750C2 0%, #20B199 100%) 0% 0% no-repeat padding-box;
	border-radius: 100vh;
	position: relative;
	font-weight: 700;
	text-align: center;
	font-size: 22px;
	width: 100%;
	display: block;
	line-height: 1.1;
}
.btn a span{
	display: block;
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 6px;
}
.btn a::after{
	content: '';
	display: block;
	width: 8px;
	height: 20px;
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	right: 19px;
	background: #fff;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.btn a:hover{
	opacity: .5;
}


/************************
menu btn
************************/
.menu_btn{
	width: 30px;
	height: 50px;
	text-align: center;
	cursor:pointer;
	transition: all 0.3s ease-in-out 0s;
    z-index: 101;
	top: 0;
	right: 4%;
	margin-left: 15px;
	display: none;
}
.sp_nav_btn{
	width: 100%;
	height: 100%;
	z-index: 1000;
	text-align: center;
	position: relative;
}
#panel-btn{
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: auto;
  position: absolute;
  top:0;
  bottom:0;
  left: 0;
  right: 0;
}
#panel-btn:hover{
}
#panel-btn-icon{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom:0;
  right:0;
  width: 100%;
  height: 2px;
  margin: auto;
  background: #009463;
  transition: .2s;
}
#panel-btn-icon:before, #panel-btn-icon:after{
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #009463;
  transition: .5s;
}
#panel-btn:hover #panel-btn-icon, #panel-btn:hover #panel-btn-icon:before, #panel-btn:hover #panel-btn-icon:after{
}
#panel-btn-icon:before{
  margin-top: -11px;
}
#panel-btn-icon:after{
  margin-top: 8px;
}
#panel-btn .close, #panel-btn:hover #panel-btn-icon.close{
  background: transparent;
}
#panel-btn .close:before, #panel-btn .close:after{
  margin-top: 0;
}
#panel-btn .close:before{
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
#panel-btn .close:after{
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}


/************************
kv
************************/
.kv{
	background: url("../img/bg_kv.png") no-repeat center / cover;
	padding: 200px 0 0px;
}
.inner_kv{
	margin: auto;
	width: 90%;
}
.kv_cnt{
	text-align: center;
	font-weight: 700;
}
.kv_cnt h1{
	font-size: 54px;
	font-weight: 700;
	margin-bottom: 20px;
}
.kv_cnt h1 span.h1_s{
	font-size: 77%;
}
.lead_kv{
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 48px;
}


.list_kv{
	gap:28px;
	margin-bottom: 48px;
}
.list_kv li{
	width: 178px;
}

.inner_kv figure{
	margin-left: -80px;
}




.def_sec{
	padding: 96px 0;
}
.inner_998{
	width: 90%;
	max-width: 998px;
	margin: auto;
}
.ttl_sub_has{
	text-align: center;
	font-size: 30px;
	margin-bottom: 80px;
}
.ttl_sub_has .ttl_en{
	display: block;
	color: rgba(0, 50, 104, .34);
	font-size: 20px;
	line-height: 1;
}

.lead_case{
	text-align: center;
	margin-bottom: 68px;
}
.list_case{
	gap:72px 64px;
}
.list_case li{
	width: 288px;
}
.list_case li h3{
	margin: 0 auto 10px;
	border-radius: 100vh;
	border: 2px solid #1C2B33;
	max-width: 218px;
	text-align: center;
	padding: 6px;
	font-size: 16px;
	font-weight: 700;
}
.list_case li figure{
	margin-bottom: 20px;
}
.list_case li dl dd{
	padding-left: 30px;
	background: url("../img/mark.png") no-repeat left top 3px;
	min-height: 30px;
}
.list_case li dl dd:not(:last-child){
	margin-bottom: 8px;
}



.sec_pro{
	background: #fff;
	background-image: url("../img/pro_bg_01.png"), url("../img/pro_bg_02.png");
	background-position: top left, top right;
	background-repeat: no-repeat, no-repeat;
}
.list_pro{
	margin-bottom: 134px;
}
.list_pro li:not(:last-child){
	margin-bottom: 28px;
}
.list_pro li{
	align-items: center;
}
.list_pro li:nth-child(even){
	flex-direction: row-reverse;
}
.list_pro li figure{
	width: 41%;
}
.list_pro li .pro_cnt{
	width: 52%;
	line-height: 1.9;
}

.func_box{
	background: #F9F9F9;
	padding: 68px 77px;
}
.func_box h3{
	text-align: center;
	font-size: 32px;
	margin-bottom: 42px;
}

.tb_func{
	width: 100%;
	border-collapse: collapse;
	margin-top: 54px;
}
.tb_func td{
	padding: 15px 0;
	text-align: center;
	border-bottom: 1px solid #707070;
}
.tb_func th{
	padding: 15px 0;
	text-align: left;
	border-bottom: 1px solid #707070;
}
.tb_func .tr_01 td{
	vertical-align: bottom;
	text-align: left;
}
.tb_func tr td:not(:last-child) p{
	border-right: 1px solid #D4D4D4;
}
.tb_func p span{
	font-size: 87.5%;
}


.cta{
	padding: 40px 0 60px;
	background: url("../img/bg_cta.png") center / cover;
	color: #fff;
}
.cta h2{
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 36px;
	text-align: center;
}
.ct_wrap{
	justify-content: center;
	gap:54px;
}
.ct_wrap figure{
	margin-top: -30px;
}
.ct_wrap .ct_cnt{
	width: calc(100% - 358px);
	font-size: 15px;
}
.ct_wrap .ct_cnt .btn{
	margin-top: 30px;
}
.ct_wrap .ct_cnt .btn a{
	box-shadow: 0px 3px 6px #00000042;
}


.ttl_lead{
	font-size: 66%;
	display: block;
}
.f_big{
	font-size: 118%;
}
.about_head{
	gap:68px;
	align-items: center;
	margin-bottom: 116px;
}
.ab_h_cnt{
	max-width: 475px;
}

.ttl_about_h3{
	margin:0 auto 48px;
	max-width: 544px;
	text-align: center;
	border: 3px solid #003268;
	border-radius: 100vh;
	position: relative;
	font-size: 30px;
	padding: 12px;
	color: #003268;
}
.ttl_about_h3 span{
	display: block;
	font-size: 73%;
}
.ttl_about_h3::before, .ttl_about_h3::after{
	content: '';
	display: block;
	position: absolute;
	margin: auto;
	left: 0;
	right: 0;
	clip-path: polygon(0 0, 50% 100%, 100% 00%);
	height: 20px;
	width: 20px;
}
.ttl_about_h3::before{
	background: #003268;
	bottom: -20px;
}
.ttl_about_h3::after{
	background: #fff;
	bottom: -14px;
}


.list_about{
	gap:44px;
}
.list_about li{
	max-width: 302px;
}
.list_about li figure{
	text-align: center;
	margin-bottom: 13px;
}
.list_about li h4{
	text-align: center;
	font-size: 20px;
	margin-bottom: 20px;
}

.list_casestdy li{
	background: #fff;
	padding: 36px 45px 50px;
	box-shadow: 0px 0px 6px #00000029;
}
.list_casestdy li:not(:last-child){
	margin-bottom: 50px;
}
.list_casestdy li h3{
	text-align: center;
	font-size: 21px;
	margin-bottom: 42px;
}
.list_casestdy li h3 span{
	border-bottom: 1px solid #1C2B33;
}
.list_casestdy li figure{
	max-width: 295px;
}
.list_casestdy li figure img:first-child{
	margin-bottom: 20px;
}
.case_cnt{
	width: calc(100% - 322px);
}
.case_cnt h4{
	font-size: 18px;
	color: #003268;
	margin-bottom: 24px;
	padding-left: 18px;
	position: relative;
}
.case_cnt h4::before{
	width: 6px;
	height: 100%;
	position: absolute;
	left: 0;
	background: transparent linear-gradient(180deg, #2658BE 0%, #21AB9C 100%) 0% 0% no-repeat padding-box;
	display: block;
	content: '';
}
.case_cnt .btn{
	margin-top: 34px;
	max-width: 240px;
}
.case_cnt .btn a{
	font-size: 14px;
	background: #fff;
	border: 2px solid #003268;
	color: #003268;
	padding: 12px;
	box-shadow: 0px 3px 6px #00000029;
}
.case_cnt .btn a::after{
	background: #003268;
	height: 16px;
}


.box_demo{
	background: #F2F2F2;
	padding: 36px 40px 46px;
	margin-bottom: 70px;
}
.inner_858{
	margin: auto;
	max-width: 858px;
	width: 90%;
}
.box_demo h3{
	text-align: center;
	margin: 0 auto 16px;
	max-width: 435px;
	background: #003268;
	color: #fff;
	font-size: 18px;
	padding: 4px;
}
.list_demo{
	gap:19px 24px;
	margin-top: 24px;
}
.list_demo li{
	width: 376px;
	background: #fff;
	padding: 12px 20px 12px;
	font-size: 14px;
}
.list_demo li h4{
	padding-left: 30px;
	background: url("../img/mark.png") no-repeat left top 3px;
	min-height: 30px;
	font-size: 16px;
	margin-bottom: 8px;
}

.ttl_sroom{
	text-align: center;
	margin-bottom: 28px;
}
.ttl_sroom span{
	position: relative;
}
.ttl_sroom span::before, .ttl_sroom span::after{
	content: '';
	display: block;
	position: absolute;
	height: 2px;
	width: 24px;
	background: #003268;
	margin: auto;
	top: 0;
	bottom: 0;
}
.ttl_sroom span::before{
	left: -36px;
}
.ttl_sroom span::after{
	right: -36px;
}

.s_room_wrap{
	gap:18px;
}
.sr_cnt{
	margin-left: 18px;
	font-size: 14px;
}
.sr_cnt h4{
	font-size: 16px;
}
.sr_add{
	font-size: 10px;
	margin-bottom: 16px;
}

.ex_box{
	border: 3px dashed #003268;
	padding: 27px;
	text-align: center;
	margin-top: 64px;
}
.ex_box h3{
	color: #003268;
	font-size: 22px;
	margin-bottom: 13px;
}
.ex_box .btn{
	margin-top: 22px;
}



.inner_600{
	margin: auto;
	width: 90%;
	max-width: 600px
}
.inner_contact{
	width: 90%;
	max-width: 560px;
	margin: auto;
}

.contact_dl{
	margin-bottom: 18px;
}
.contact_dl dt{
	font-size: 22px;
	margin-bottom: 12px;
}
.contact_dl dt sup{
	font-size: 11px;
	color: #FF0000;
}
.contact_dl input{
	border: 1px solid #1C2B33;
	border-radius: 5px;
	width: 100%;
	padding: 12px 20px;
	font-size: 19px;
}
.contact_dl textarea{
	border: 1px solid #1C2B33;
	border-radius: 5px;
	width: 100%;
	padding: 12px 20px;
	font-size: 19px;
	height: 90px;
}
.policy{
	text-align: center;
}
.policy input{
	margin-right: 12px;
}

.policy a{
	text-decoration: underline;
}

.submit{
	margin-top: 46px;
	position: relative;
}
.submit::after{
	position: absolute;
	content: '';
	display: block;
	width: 9px;
	height: 20px;
	margin: auto;
	top: 0;
	bottom: 0;
	right: 16px;
	background: #fff;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.submit input{
	width: 100%;
	text-align: center;
	background: transparent linear-gradient(90deg, #265ABD 0%, #21AD9B 100%) 0% 0% no-repeat padding-box;
	border-radius: 100vh;
	color: #fff;
	font-size: 21px;
	font-weight: 700;
	letter-spacing: 4px;
	border: none;
	line-height: 54px;
	transition: all 0.3s ease-in-out 0s;
	cursor: pointer;
}
.submit input:hover{
	opacity: .5;
}
.submit input:disabled{
	background: #ccc;
	cursor: not-allowed;
	opacity: 0.6;
}
.submit input:disabled:hover{
	opacity: 0.6;
}

.form_wrap{
	margin-top: 68px;
}

.ft_info{
	background: #fff;
	padding: 36px 0 44px;
}
.ft_info h2{
	text-align: center;
	font-size: 22px;
	margin-bottom: 22px;
}
.ft_i_wrap{
	gap:32px;
}
.logo_ft{
	width: 177px;
}
.list_comp li:not(:last-child){
	margin-bottom: 13px;
}
.list_comp li{
	gap:8px;
}
.ttl_comp{
	min-width: 76px;
	text-align: center;
	border: 1px solid #003268;
	color: #003268;
}

footer{
	background: #003268;
	padding: 34px 0;
}
footer .inner_998{
	align-items: flex-end;
	font-size: 13px;
	color: #fff;
}
.ft_label{
	gap:18px;
}

.ft_copy{
	text-align: right;
}
.ft_copy a{
	text-decoration: underline;
}
.copy{
	margin-top: 14px;
}

.wrap_sp_tab{
	margin-top: 30px;
}
.list_tab{
	gap:16px;
	margin-bottom: 30px;
}
.list_tab li{
	width: calc((100% - 16px) / 2);
	border: 2px solid #003268;
	background: #fff;
	border-radius: 5px;
	text-align: center;
	font-weight: 700;
	color: #003268;
	padding: 16px 2px;
}
.list_tab li.select{
	background: #003268;
	color: #fff;
}
/********************************
sp
********************************/
@media screen and (max-width: 768px) {
	.inner_header{padding: 0 16px;}
	.btn_hd{display: none;}
}

@media screen and (max-width: 1638px) {
	.inner_kv figure{width: calc(100% - 815px);align-self: flex-end;}
}
@media screen and (max-width: 1140px) {
	.inner_kv figure.pc{display: none;}
	.inner_kv figure.sp{display: block !important;width: 100%; margin: 0;}
}
@media screen and (max-width: 768px) {
	body{font-size: 14px;}
	.note{font-size: 12px;}
	.sp{ display:block !important;}
	.pc{display:none !important;}
	.kv{padding: 84px 0 9px; background-image: url("../img/bg_kv_sp.png");}
	.kv_cnt h1{font-size: 36px;}
	.lead_kv{font-size: 16px; margin-bottom: 10px;}
	.list_kv{gap:14px; margin-bottom: 16px;}
	.list_kv li{width: 144px;}
	.inner_kv figure{margin: 0;}
	.def_sec{padding: 40px 0}
	.ttl_sub_has{font-size: 24px;margin-bottom: 48px;}
	.ttl_sub_has .ttl_en{font-size: 24px;}
	.sec_pro{background-image: none, url("../img/pro_bg_02.png"); background-size: auto, 50% auto;}
	.list_pro li{flex-direction: column;}
	.list_pro li figure{width: 100%;}
	.list_pro li .pro_cnt{width: 100%;}
	.func_box{padding: 36px 20px;}
	.func_box h3{font-size: 22px;}
	.func_box .ta_c{text-align: left;}
	.tb_func tr td p{border-left: 1px solid #D4D4D4;}
	.tb_func th{padding-right: 4px;}
	.tb_func td{padding-left: 4px;}
	.tb_func{margin-top: 20px;}
	.tab_body figure img{width: 100%;}
	.cta figure{text-align: center;}
	.cta h2{font-size: 22px;}
	.ct_wrap .ct_cnt{width: 100%;}
	.about_head{gap:30px; margin-bottom: 50px;}
	.ttl_about_h3{font-size: 20px;}
	.list_casestdy li{padding: 26px 20px;}
	.list_casestdy li h3{text-align: left; margin-bottom: 30px;}
	.wrap_case{flex-direction: column-reverse; gap:40px;}
	.case_cnt{width: 100%;}
	.list_casestdy li figure{max-width: 100%;}
	.list_casestdy li figure img{width: 100%;}
	.box_demo{padding: 26px 20px;}
	.sr_cnt{margin:0 0 30px;}
	.s_room_wrap{gap:16px;}
	.s_room_wrap figure{width: calc((100% - 16px) / 2);}
	.ex_box{padding: 26px 20px;}
	.ex_box p{text-align: left;}
	.ex_box .btn a{font-size: 14px;}
	.form_wrap{margin-top: 30px;}
	.list_comp li p{width: calc(100% - 84px);}
	footer .inner_998{gap:20px;}
	.ft_copy{width: 100%;}
}