@charset "utf-8";
/* ======================================
	base
====================================== */
html{
	background: #f5f5f5;
}
html.fixed {
	overflow: hidden;
}
body {
	font-family: "Noto Sans JP", sans-serif;
	color: #333;
	font-size: 15px;
	line-height: 2;
	background-color: #fff;
	max-width: 1920px;
	width: 100%;
	margin: 0 auto;
}
a {
	color: inherit;
	text-decoration: none;
}
section {
	position: relative;
	padding: 2em 0;
}
section::after { content: ""; display: block; clear: both; }
@media only screen and (min-width: 768px) {
	body {
		font-size: 16px;
	}
	a {
		transition: all .3s;
	}
	a:hover {
		opacity: .5;
	}
}
/* ======================================
	print
====================================== */
@media print {
	.header {
		display: none;
	}
}
/* ======================================
	common
====================================== */
.inner {
	width: 92%;
	max-width: 500px;
	margin: 0 auto;
}
.btnBox {
	display: inline-block;
	color: #fff;
	text-align: center;
	background: #de0039;
	font-size: 26px;
	min-width: 10em;
	border-radius: .3em;
	box-shadow: 0 0 8px rgba(0, 0, 0, .1);
	margin-bottom: .5em;
	padding: .3em 1em;
}
.btnBox-white{
	background: #fff;
	color: #de0039;
}
.btnTxt {
	position: relative;
	font-size: 15px;
	color: #0077d2;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
}
.btnTxt::after {
	position: absolute;
	content: '';
	font-weight: bold;
	display: inline-block;
	width: 1.5em;
	height: .5em;
	border-bottom: solid 1px;
	border-right: solid 1px;
	transform: skew(45deg);
	top: 50%;
	margin-top: -.3em;
	margin-left: .1em;
}
.categoryHeading {
	position: relative;
	padding-left: 1em;
	padding-bottom: 1em;
}
.categoryHeading h2 {
	color: #666;
	line-height: 1;
}
.categoryHeading .en {
	font-size: 30px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 100;
	color: #0077d2;
	padding-bottom: .4em;
	line-height: 1;
}
.container::after { content: ""; display: block; clear: both; }
@media only screen and (max-width: 767px) {
	.pc {
		display: none;
	}
	.lead br {
		display: none;
	}
}
@media only screen and (min-width: 768px) {
	.sp {
		display: none;
	}
	.inner {
		max-width: 1100px;
	}
	.btnBox {
		font-size: 32px;
		padding: .35em 1em;
	}
	.categoryHeading {
		padding-left: 4%;
	}
	.categoryHeading h2 {
		font-size: 18px;
	}
	.categoryHeading .en {
		font-size: 50px;
		padding-bottom: 6px;
	}
}
/* ======================================
	kv
====================================== */
.kv {
	position: relative;
	background: #edf2f7;
	z-index: 1;
	padding: 24px 0 280px;
	margin-top: 40px;
}
.kv::after{
	position: absolute;
	content: '';
	height: 270px;
	width: 100%;
	bottom: 0;
	right: 0;
	background: url(../img/kv_img.png) no-repeat center right / cover;
	z-index: -1;
}
.kv-subTtl{
	background: #78AEBF;
	display: inline-block;
	color: #fff;
	font-weight: bold;
	text-align: center;
	font-size: 15px;
	padding: 0 22px 1px;
}
.kv-ttl{
	position: relative;
	font-weight: bold;
	font-size: 26px;
	letter-spacing: .1em;
	line-height: 1.36;
	margin-top: 10px;
	padding-bottom: 20px;
	color: #000;
}
.kv-ttl::after{
	position: absolute;
	content: '';
	width: 50px;
	height: 4px;
	background: #333;
	left: 0;
	bottom: 0;
}
.kv-ttl span{
	font-size: 1.5em;
}
.kv-txt{
	font-size: 14px;
	line-height: 1.85;
	margin: 12px 0;
	color: #000;
	text-align: justify;
}
.kv .contactBtn ul li a {
	font-size: 21px;
	width: 192px;
	min-width: auto;
}
@media only screen and (max-width: 767px){
	.kv::after{
		background-size: 150%;
	}
	.kv .contactBtn{
		display: none;
	}
}
@media only screen and (min-width: 768px) {
	.kv {
		padding: 50px 0;
	}
	.kv::after{
		height: 100%;
    width: 77%;
		background-position: center left;
	}
	.kv .inner{
		width: 83%;
		max-width: 1150px;
	}
	.kv-subTtl{
		font-size: 18px;
		padding: 0 24px;
	}
	.kv-ttl{
		padding-bottom: 30px;
		font-size: 32px;
	}
	.kv-txt{
		font-size: 16px;
		margin: 22px 0 32px;
	}
	.kv .contactBtn ul {
		display: flex;
		gap: 20px;
	}
	.kv .contactBtn ul li a {
		font-size: 20px;
		height: 54px;
    width: 220px;
	}
}
@media only screen and (min-width: 1024px){
	.kv {
		height: 540px;
	}
	.kv-subTtl{
		font-size: 20px;
	}
	.kv-ttl{
		font-size: 42px;
	}
	.kv .contactBtn ul li a {
		font-size: 24px;
		height: 70px;
		width: 270px;
		padding: .4em 1em;
	}
}
@media only screen and (min-width: 1280px){
	.kv{
		margin-top: 60px;
	}
	.kv::after{
		width: 57.6%;
		background-position: center right;
	}
}
/* ======================================
	intro
====================================== */
.intro {
	padding: 32px 0;
}
.intro-lead{
	text-align: center;
	font-weight: bold;
	color: #666;
	font-size: 24px;
	line-height: 1.47;
}
.intro-lead span{
	font-size: .8em;
}
.intro-list{
	margin-top: 45px;
}
.intro-item{
	max-width: 334px;
	width: 100%;
	margin: 0 auto 20px;
}
.intro-img{
	max-width: 230px;
	width: 60%;
	margin: 0 auto 20px;
}
.intro-txt{
	text-align: center;
	font-weight: bold;
	background: #fff;
	font-size: 18px;
	line-height: 1.5;
	border: 2px solid #00418d;
	border-radius: 8px;
	padding: 13px 10px;
	position: relative;
}
.intro-txt::before{
	position: absolute;
	content: '';
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	width: 26px;
  height: 17px;
	background: url(../img/intro_deco.png) no-repeat center center / 100%;
	z-index: 1;
}
.intro-txt span{
	font-size: .8em;
}
@media only screen and (min-width: 768px) {
	.intro{
		padding: 32px 0 68px;
	}
	.intro-lead{
		font-size: 34px;
	}
	.intro-img{
		width: 80%;
	}
}
@media only screen and (min-width: 1024px){
	.intro-list{
		display: flex;
		justify-content: space-between;
	}
	.intro-item{
		width: 32%;
		margin: 0;
	}
}
@media only screen and (min-width: 1200px){
	.intro-txt{
		font-size: 20px;
	}
}
/* ======================================
	feature
====================================== */
.feature{
	background: #d7f3f2 url(../img/feature_bg_sp.jpg) no-repeat center bottom / 100%;
	position: relative;
	z-index: 2;
	padding: 32px 0;
	overflow-x: hidden;
}
.feature::after{
	position: absolute;
	content: '';
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	background: url(../img/feature_bg2.png) no-repeat top center / 100%;
	z-index: -1;
	width: 720px;
  height: 200px;
}
.feature-ttl{
	text-align: center;
	font-weight: bold;
	color: #000;
	font-size: 22px;
	line-height: 1.58;
}
.feature-lead{
	text-align: center;
	margin-top: 25px;
	color: #000;
}
.feature-list{
	margin: 32px auto 0;
	max-width: 920px;
	width: 100%;
}
.feature-item{
	text-align: center;
	background: rgb(255 255 255 / .9);
	/* max-width: 270px; */
	max-width: 270px;
	width: 100%;
	padding: 15px 5px 22px;
	margin: 0 auto 15px;
}
.feature-img{
	max-width: 181px;
	margin: 0 auto 10px;
}
.feature-txt{
	font-weight: bold;
	font-size: 16px;
	line-height: 1.88;
}
@media only screen and (min-width: 768px) {
	.feature{
		padding: 62px 0 85px;
		background: url(../img/feature_bg_pc.jpg) no-repeat center center / cover;
	}
	.feature::after{
		width: 882px;
		height: 220px;
	}
	.feature-ttl{
		font-size: 30px;
	}
	.feature-list{
		display: flex;
		justify-content: space-between;
		margin: 30px auto 0;
	}
	.feature-item{
		width: 32%;
		margin: 0;
	}
	.feature-txt{
		font-size: 18px;
	}
}
@media only screen and (min-width: 1024px){
	.feature-ttl{
		font-size: 34px;
	}
}
/* ======================================
	about
====================================== */
.about {
	padding: 30px 0 20px;
}
.about .inner{
	max-width: 1065px;
}
.about-list{
	margin-top: 40px;
}
.about-item{
	margin-bottom: 40px;
}
.about-item-left{
	display: flex;
}
.about-item:nth-child(2) .about-item-left{
	margin-top: 28px;
}
.about-item:nth-child(3) .about-item-left{
	margin-top: 45px;
}
.about-num{
	color: #0077D2;
	font-family: 'Montserrat', sans-serif;
	font-size: 80px;
	font-weight: 100;
	margin: -20px 20px 0 0;
	line-height: 1;
}
.about-ttl{
	font-weight: bold;
	font-size: 20px;
	line-height: 1.66;
	position: relative;
	padding-bottom: 12px;
  margin-bottom: 12px;
}
.about-ttl::after{
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	background: #0077D2;
	height: 1px;
	width: 100%;
  z-index: 2;
}
.about-item:nth-child(even) .about-ttl::after{
	width: 100%;
	right: 0;
	left: auto;
}
.about-img{
	flex-shrink: 0;
	max-width: 250px;
	position: relative;
	margin: 20px auto 0;
	width: 56%;
}
.about-icn{
	position: absolute;
	left: -56px;
	top: -10px;
	width: 70px;
}
.about-item:nth-child(2) .about-icn{
	right: -50px;
  bottom: -22px;
	left: auto;
	top: auto;
}
.about-item:nth-child(3) .about-icn{
	left: -20px;
  top: 140px;
}
.about-info{
	background: #EBF0F6;
	border-radius: 8px;
	margin-top: 20px;
	padding: 20px 25px;
}
.about-info-ttl{
	color: #0077D2;
	font-weight: bold;
}
.about-info-list{
	margin-top: 8px;
}
.about-info-list li{
	font-size: 14px;
	line-height: 1.714;
	padding-left: 20px;
	background: url(../img/icon_check.svg) no-repeat top .5em left / 11px;
}
@media only screen and (min-width: 768px) {
	.about{
		padding: 40px 0 64px;
	}
	.about-list{
		margin-top: 70px;
	}
	.about-item{
		margin-bottom: 0;
	}
	.about-item:not(:last-child){
		margin-bottom: 50px;
	}
	.about-item:nth-child(even){
		flex-direction: row-reverse;
	}
	.about-num{
		font-size: 137px;
		margin: -20px 35px 0 0;
	}
	.about-item:nth-child(2) .about-num{
		margin: -20px 25px 0 0;
	}
	.about-ttl{
		font-size: 28px;
		padding-bottom: 15px;
		margin-bottom: 24px;
	}
	.about-txt {
		line-height: 2.352;
		font-size: 17px;
	}
	.about-img{
		max-width: 380px;
		width: 36%;
		margin: 40px auto 0;
	}
	.about-icn{
		left: -80px;
    top: -30px;
		width: 100px;
	}
	.about-item:nth-child(2) .about-icn{
		right: -80px;
    bottom: -25px;
	}
	.about-item:nth-child(3) .about-icn{
		left: -29px;
    top: 192px;
	}
	.about-info{
		padding: 20px 34px;
	}
}
@media only screen and (min-width: 1024px){
	.about-item{
		display: flex;
		justify-content: space-between;
	}
	.about-ttl{
		font-size: 30px;
	}
	.about-ttl::after{
		width: 118%;
	}
	.about-item:nth-child(2) .about-ttl::after{
		width: 121%;
	}
	.about-item:nth-child(3) .about-ttl::after{
		width: 125%;
	}
	.about-img{
		margin: 0 0 0 6%;
	}
	.about-item:nth-child(2) .about-img{
		margin: 0 30px 0 4%;
	}
	.about-icn{
		left: -120px;
    top: -70px;
		width: 140px;
	}
	.about-item:nth-child(2) .about-icn{
		right: -105px;
    bottom: -25px;
	}
	.about-item:nth-child(3) .about-icn{
		left: -42px;
    top: 276px;
	}
}
/* ======================================
	service
====================================== */
.service{
	padding-bottom: 0;
}
.service-catch{
	text-align: center;
	font-weight: bold;
	font-size: 22px;
	line-height: 1.562;
}
.service-lead{
	text-align: center;
	margin-top: 15px;
}
.service-list{
	margin-top: 24px;
}
.service-item{
	border: 1px solid #78aebf;
	padding: 20px;
}
.service-item:nth-child(n+2){
	margin-top: 24px;
}
.service-item-left{
	display: flex;
	max-width: 611px;
	margin: 0 auto;
}
.service-item-icn{
	max-width: 56px;
	margin-right: 5%;
}
.service-item-main{
	position: relative;
	width: 100%;
}
.service-item-main::after{
	position: absolute;
	content: '';
	width: 107%;
	height: 2.5px;
	background: #003575;
	bottom: -10px;
	right: 0;
}
.service-item-cat{
	font-family: 'Montserrat', sans-serif;
  font-weight: 100;
	color: #0077d2;
	font-size: 16px;
}
.service-item-ttl{
	color: #003575;
	font-size: 22px;
	font-weight: bold;
	line-height: 1;
}
.service-item-right{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 611px;
	margin: 30px auto 0;
}
.service-item-right li{
	text-align: center;
	font-weight: bold;
	font-size: 14px;
	line-height: 1.4375;
	background: #ebf0f6;
	width: 48.5%;
	min-height: 70px;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.service-item-right li:nth-child(n+3){
	margin-top: 10px;
}
.service-bottom{
	background: #edf2f7;
	margin-top: 50px;
	padding: 40px 0;
}
.service-bottom-img{
	margin-top: 20px;
}

@media only screen and (min-width: 768px) {
	.service-catch{
		font-size: 32px;
	}
	.service-list{
		margin-top: 48px;
	}
	.service-item-icn{
		max-width: 76px;
	}
	.service-item-right li{
		width: 32%;
		max-width: 197px;
		font-size: 16px;
	}
	.service-item-right li:nth-child(3){
		margin-top: 0;
	}
	.service-item-right li:nth-child(n+4){
		margin-top: 10px;
	}
	.service-bottom{
		padding: 70px 0;
	}
	.service-bottom-img{
		margin-top: 50px;
	}
}
@media only screen and (min-width: 1024px){
	.service-item{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.service-item-left{
		max-width: 100%;
		width: 39%;
		margin: 0 1%;
	}
	.service-item-right{
		width: 58%;
		margin: 0;
	}
}
/* ======================================
	results
====================================== */
.results{
	background: linear-gradient(97deg, #00418d 0%, #00418d 44%, #2ea7e0 100%);
	position: relative;
	padding: 40px 0;
	overflow-x: hidden;
}
.results-ttl{
	position: absolute;
	top: -9px;
  left: -20px;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
  font-weight: 100;
	font-size: 65px;
	line-height: 1;
	opacity: .2;
}
.results-catch{
	color: #fff;
	font-size: 22px;
	font-weight: bold;
	line-height: 1.44;
}
.results-list{
	margin-top: 30px;
}
.results-item{
	background: #edf5fc;
	max-width: 334px;
	width: 100%;
	margin: 15px auto 0;
}
.results-item-img{

}
.results-item-body{
	padding: 15px 20px;
}
.results-item-ttl{
	text-align: center;
	font-size: 22px;
	font-weight: bold;
	line-height: 1.54;
}
.results-item-txt{
	font-size: 16px;
	line-height: 1.875;
	margin-top: 15px;
}
@media only screen and (min-width: 768px){
	.results{
		padding: 70px 0;
	}
	.results-ttl{
		font-size: 115px;
	}
	.results-catch{
		font-size: 34px;
	}
	.results-list{
		display: flex;
		justify-content: space-between;
	}
	.results-item{
		width: 32%;
		margin: 0;
	}
	.results-item-ttl{
		min-height: 68px;
	}
	.results-item-ttl.--s{
		padding: 17px 0;
	}
}
/* ======================================
	flow
====================================== */
.flow{

}
.flow-catch{
	color: #666;
	text-align: center;
	font-size: 22px;
	font-weight: bold;
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 20px;
}
.flow-catch::after {
	position: absolute;
	content: '';
	width: 100px;
	height: 1px;
	border-bottom: #0077d2 1px solid;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
}
.flow .chart ol::after { content: ''; display: block; clear: both; }
.flow .chart ol>li {
	width: 50%;
	float: left;
	padding: 1em 0;
}
.flow .chart ol>li .step {
	padding-bottom: .8em;
}
.flow .chart ol>li ul>li {
	text-indent: -1em;
	font-size: 14px;
	line-height: 1.7;
	padding-left: 1em;
	padding-right: .5em;
}
.flow .chart ol>li ul>li::before {
	content: '・';
}
.flow .chart ol>li:nth-child(3) {
	clear: both;
}
@media only screen and (min-width: 768px) {
	.flow-catch{
		font-size: 32px;
		margin-bottom: 55px;
	}
	.flow .chart ol>li {
		width: 25%;
		padding: 0;
	}
	.flow .chart ol>li ul>li {
		font-size: 14px;
		padding-right: 2em;
	}
	.flow .chart ol>li:nth-child(3) {
		clear: inherit;
	}
}
/* ======================================
	faq
====================================== */
.faq{
	background: #f2f2f2;
	padding: 32px 0 40px;
}
.accordion{
	margin-top: 20px;
	line-height: 1.5;
}
.accordion-item{
	background: #fff;
	padding: 5px 15px;
	border-bottom: 2px solid #F5F5F5;
}
.accordion .accordion-item:last-child{
	border-bottom: 0;
}
.accordion-header{
	font-size: 15px;
	font-weight: bold;
	padding: 10px 0;
}
.accordion-trigger{
	display: flex;
	align-items: center;
	width: 100%;
	padding-right: 30px;
	cursor: initial;
}
.accordion .icon{
	font-weight: 100;
	font-family: 'Montserrat', sans-serif;
	font-size: 28px;
	margin-right: 20px;
	line-height: 1.2;

	width: 25px;
  text-align: center;
	flex-shrink: 0;
}
.accordion-trigger .icon{
	color: #0077D2;
}
.accordion-panel{
	padding: 0 0 10px;
}
.accordion-txt{
	font-size: 15px;
	display: flex;
  /* align-items: center; */
	line-height: 2;
}
@media only screen and (min-width: 768px){
	.faq{
		padding: 48px 0 70px;
	}
	.accordion{
		margin-top: 32px;
	}
	.accordion-item{
		padding: 5px 70px;
	}
	.accordion-header{
		font-size: 18px;
	}
	.accordion-trigger{
		padding-right: 40px;
	}
	.accordion .icon{
		font-size: 30px;
		margin-right: 30px;
	}
	.accordion-txt{
		font-size: 16px;
		padding-right: 6%;
	}
}
/* ======================================
	column
====================================== */
#column{
	padding: 30px 0;
}
.columnList{
	margin-top: 32px;
}
#column ul li {
	max-width: 320px;
	margin: 0 auto;
	padding-bottom: 2em;
}
#column ul li a {
	display: block;
}
#column ul li a .img {
	padding-bottom: .8em;
}
#column ul li a .img img {
	object-fit: cover;
	width: 100%;
	max-height: 192px;
	height: 54vw;
}
#column ul li a p {
	font-weight: bold;
	padding-bottom: .5em;
	line-height: 1.75;
}
@media only screen and (min-width: 768px) {
	#column{
		padding: 48px 0 30px;
	}
	#column ul::after { content: ''; display: block; clear: both; }
	#column ul li {
		float: left;
		width: 29%;
		margin-left: 6.5%;
	}
	#column ul li:nth-child(3n+1) {
		clear: both;
		margin-left: 0;
	}
}
/* ======================================
	cta
====================================== */
.cta {
	background: #78aebf;
	padding: 2em 0;
}
.cta .catch {
	color: #fff;
	font-weight: bold;
	font-size: 20px;
	text-align: center;
	line-height: 1.5;
	padding-bottom: 1em;
}
.cta .btn {
	text-align: center;
	border-bottom: #fff 1px solid;
	margin-bottom: 1em;
	padding-bottom: .3em;
}
.cta .btnList li .btnBox{
	min-width: 283px;
	height: 68px;
}
.cta .btnList li .btnBox-white strong{
	line-height: 1;
}
.cta .tel {
	color: #fff;
	text-align: center;
	line-height: 1.5;
}
.cta .tel .heading strong {
	font-size: 120%;
}
.cta .tel .heading .time {
	display: block;
	padding-bottom: .5em;
}
.cta .tel .num {
	display: inline-block;
	font-size: 34px;
	padding-left: .8em;
	background: url("../img/icon_tel_w.png") 0 .4em / .7em auto no-repeat;
}
@media only screen and (min-width: 768px) {
	.cta .inner {
		max-width: 50em;
	}
	.cta .catch {
		color: #fff;
		font-size: 26px;
	}
	.cta .btnList li .btnBox{
		min-width: 10em;
		width: 350px;
		height: 90px;
	}
	.cta .tel .heading {
		position: relative;
		top: .2em;
		display: inline-block;
		margin-right: 1em;
	}
	.cta .tel .heading strong {
		font-size: 140%;
	}
	.cta .tel .num {
		display: inline-block;
		font-size: 53px;
		line-height: 1;
		background-position: 0 .15em;
	}
}
@media only screen and (min-width: 1024px){
	.cta .catch{
		font-size: 29px;
	}
	.cta .btnList{
		display: flex;
		justify-content: center;
		gap: 40px;
	}
}
