@charset "utf-8";
/* ======================================
	base
====================================== */
html{
	background: #f5f5f5;
}
html.fixed {
	overflow: hidden;
}
body {
	font-family: "Noto Sans JP", sans-serif;
	color: #000;
	font-size: 15px;
	line-height: 1.75;
	background-color: #fff;
	max-width: 1920px;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	overflow-y: auto;
}
main{
	overflow-x: hidden;
}
a {
	color: inherit;
	text-decoration: none;
}
section {
	position: relative;
	padding: 2em 0;
}
@media only screen and (min-width: 768px) {
	body {
		font-size: 16px;
	}
	a {
		transition: all .3s;
	}
	a:hover {
		opacity: .5;
	}
}
/* ======================================
	common
====================================== */
.inner {
	width: 92%;
	max-width: 500px;
	margin: 0 auto;
}

.tac {
	text-align: center;
}

.secTtl {
	margin-bottom: 2em;
}
.secTtl h2 {
	font-size: 24px;
	letter-spacing: .05em;
	font-weight: 600;
	color: #114061;
}

@media only screen and (min-width: 768px) {
.secTtl h2 {
		font-size: 32px;
	}
}
@media only screen and (min-width: 1024px) {
	.secTtl {
		margin-bottom: 2em;
	}
	.secTtl h2 {
		font-size: 36px;
	}
}
.secTtl p.en{
	font-size: 16px;
	color: #2195de;
	position: relative;
}
@media only screen and (min-width: 768px) {
	.secTtl p.en{
		font-size: 24px;
	}
}
.secTtl p.en::before{
	content: '';
	display: inline-block;
	height: 8px;
	width: 8px;
	background-color: #2195de;
	border-radius: 50px;
	margin-right: .5em;
	vertical-align: middle;
	margin-bottom: 4px;
}

.secHeading{
	text-align: center;
	color: #297fb2;
	font-weight: 600;
	font-size: 20px;
	letter-spacing: .2em;
	margin-bottom: 25px;
}
.secHeading span{
	padding: 0 24px;
	position: relative;
	display: inline-block;
}
.secHeading span::before,
.secHeading span::after{
	position: absolute;
	content: '';
	bottom: 0;
	width: 14px;
  height: 28px;
}
.secHeading span::before{
	left: 0;
	background: url(../img/icn_deco_left.svg) no-repeat center center / 100%;
}
.secHeading span::after{
	right: 0;
	background: url(../img/icn_deco_right.svg) no-repeat center center / 100%;
}

.catch{
	text-align: center;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.88;
}

.txt{
	font-family: "Noto Sans JP", sans-serif;
	font-size: 15px;
	line-height: 1.93;
	text-align: justify;
}

@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: 1152px;
	}

	.secHeading{
		font-size: 26px;
	}
	.secHeading span{
		padding: 0 35px;
	}
	.secHeading span::before,
	.secHeading span::after{
		width: 16px;
		height: 35px;
	}

	.catch{
		font-size: 26px;
	}

	.txt{
		font-size: 15.5px;
	}
}
@media only screen and (min-width: 1024px){
	.secHeading{
		font-size: 30px;
	}
	.catch{
		font-size: 30px;
	}
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  height: 64px; 
  border-radius: 32px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
.btn span {
  position: relative;
  background: none;
}
.btn::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: translateY(-50%) rotate(45deg);
}
.btn-white {
  background-color: #fff;
  color: #2195de;
  border: 2px solid #2195de;
}
.btn-white span::after {
  border-color: #2195de;
}
.btn-blue {
  background-color: #2195de;
  color: #fff;
  border: 2px solid #2195de;
}
.btn-blue::after {
  border-color: #fff;
}

/* --- スマホ時の調整 --- */
@media screen and (max-width: 767px) {
  .btn {
    min-width: 100%;
    height: 56px;
    font-size: 18px;
  }
}
.en{
	font-family: "Sen", sans-serif;
  font-weight: 700;
}
/* ======================================
	kv
====================================== */
.kv {
	background: linear-gradient(-90deg, #e0f2ff 20%, #bfe4ff 80%);
  padding: 80px 0 0;
  position: relative;
  overflow: visible;
}

.kv-inner {
  max-width: 1260px;
  position: relative;
}

.kv-category {
  display: inline-block;
  color: #2195de;
  font-weight: 700;
  font-size: 22px;
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.kv-category::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #2195de;
}

.kv-ttl h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.3;
  color: #114061;
  margin-bottom: .8em;
}
.kv-txt {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin: 2em auto 0;
	padding-bottom: 1em;
}

/* --- btn --- */
.kv-btn-wrap {
  display: flex;
  gap: 15px;
}
.kv-btn-wrap .btn{
	min-width: 200px;
	width: 45%;
}

.kv-img-area div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}
.kv-img-area {
  max-width: none;
	min-width: auto;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 15px;
	height: 80vw;
}
/* 左下 */
.kv-img-main {
  grid-area: 1 / 1 / 3 / 6; 
}
/* 右上 */
.kv-img-sub1 {
  grid-area: 3 / 4 / 5 / 9; 
}
/* 中右の画像 */
.kv-img-sub2 {
  grid-area: 2 / 9 / 3 / 6;
}
/* 右下 */
.kv-img-sub3 {
  grid-area: 3 / 1 / 4 / 4;
}

@media only screen and (max-width: 1023px) {
  /* 固定 */
  .kv-btn-wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 10px 15px;
    margin: 0 !important;
    display: flex;
    gap: 10px;
  }

  /* 非表示状態（フッター到達時） */
  .kv-btn-wrap.is-hidden-sp {
    transform: translateY(100%);
    opacity: 0;
    transition: 0.3s;
  }
}

@media screen and (max-width: 479px) {
	.kv-txt{
		font-size: 15px;
	}
	.kv-btn-wrap .btn {
		font-size: 14px;
		height: 46px;
	}
	.kv-btn-wrap .btn::after{
		right: 12px;
		width: 8px;
    height: 8px;
	}
	.kv-img-area div img {
		border-radius: 8px;
	}
}
@media screen and (max-width: 767px) {
  .kv { padding: 60px 0 0; }
  .kv-inner { display: block; }
	.kv-ttl h1 {
		font-size:9vw;
	}
	.kv-img-area {
		height: 85vw;
		gap: 8px;
	}
}
@media screen and (max-width: 1023px) {
	.kv-btn-wrap {
		background: #f5f5f5;
		width: 100vw;
		margin: 0 calc(50% - 50vw);
		justify-content: center;
		padding: 15px 0;
	}
	.kv-btn-wrap .btn{
		min-width: auto;
	}
	.kv-img-area {
		width: 115vw;
		margin-left: 50%;
    transform: translateX(-50%);
		overflow: visible;
	}
}
@media only screen and (min-width: 1024px){
	.kv {
		margin-bottom: 60px;
	}
	.kv-inner {
		display: grid;
		grid-template-columns: 45% 55%;
		grid-template-rows: repeat(2, 1fr);
	}
	.kv-body.cont01 {
		grid-area: 1 / 1 / 2 / 2;
		padding-top: 2em;
	}
	.kv-body.cont02 {
		grid-area: 2 / 1 / 3 / 2;
	}
	.kv-img-area {
		grid-area: 1 / 2 / 3 / 3;
		max-width: 750px;
		min-width: 750px;
		margin-bottom: -30px;
		height: auto;
	}
	.kv-ttl h1 {
		font-size: 4vw;
		margin-bottom: 20px;
	}
	.kv-txt {
		margin: 0 auto 2em;
		padding-bottom: 0;
	}
	.kv-btn-wrap .btn{
		font-size: 16px;
		height: 54px;
	}
	.kv-img-main {
		grid-area: 3 / 1 / 5 / 5; 
	}
	.kv-img-sub1 {
		grid-area: 1 / 5 / 3 / 9; 
	}
	.kv-img-sub2 {
		grid-area: 2 / 3 / 3 / 5;
	}
	.kv-img-sub3 {
		grid-area: 3 / 5 / 3 / 7;
	}
}
@media only screen and (min-width: 1200px){
	.kv-img-area {
		width: 900px;
		min-width: 900px;
		margin-bottom: -60px;
	}
	.kv-btn-wrap .btn{
		min-width: 230px;
		font-size: 18px;
	}
}
@media screen and (min-width: 1380px) {
	.kv-ttl h1 {
		font-size: 56px;
	}
}
/* ======================================
	point
====================================== */
.point-list{
	margin: 0 0 40px;
}
.point-item{
	width: 100%;
	margin: 0 auto 30px;
	max-width: 340px;
}
.point-item-ttl{
	text-align: center;
	color: #2195de;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.75;
	position: relative;
	padding: 0 0 13px;
  display: inline-block;
  width: 100%;
  margin: 0 auto 30px;
  padding: 14px 20px;
  border: 2px solid #2195de;
  border-radius: 8px;
  background-color: #fff;
}
.point-item-ttl span{
	font-size: 140%;
}
.point-item-ttl::after {
  content: "";
	position: absolute;
	bottom: -36px;
	left: 50%;
	transform: translateX(-50%);
	width: 38px;
	height: 36px;
	background: url(../img/fukidashi.png) no-repeat center / contain;
	z-index: 2;
}
.point-img{
	width: 100%;
	margin: 10px auto 10px;
	text-align: center;
}
.point-img img{
	max-height: 200px;
}
.point-txt {
	font-size: 16px;
	font-weight: 700;
	text-align: center;
}
.point-catch{
	position: relative;
	z-index: 2;
}
.point-catch span{
	color: #2195de;
}
.point-catch::after{
	position: absolute;
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-color: #e0f2ff transparent transparent transparent;
	border-width: 80px 160px 0px 160px;
	left: 50%;
	transform: translateX(-50%);
	top: -10px;
	z-index: -1;
}

@media only screen and (min-width: 768px) {
	.point-item{
		margin: 0 auto 45px;
	}
	.point-lead span{
		font-size: 18px;
	}
	.point-ttl{
		font-size: 28px;
	}
	.point-catch::after{
		border-width: 80px 275px 0px 275px;
		top: -15px;
	}
	.point-txt {
		font-size: 18px;
	}
	.point-img{
		margin: 15px auto 20px;
	}
}
@media only screen and (min-width: 1024px){
	.point-lead span{
		font-size: 22px;
	}
	.point-list{
		margin: 0 0 70px;
	}
	.point-ttl{
		font-size: 34px;
	}
	.point-ttl span::before{
		top: 13px;
	}
	.point-list{
		display: flex;
		justify-content: space-between;
		gap: 2em;
	}
	.point-item{
		flex: 1;
		margin: 0;
		max-width: 340px%;
		width: 31%;
	}
	.point-item-ttl{
		font-size: 15px;
		padding: 14px 10px;
	}
	.point-txt {
		font-size: 16px;
	}
	.point-catch::after{
		border-width: 150px 480px 0px 480px;
		top: -32px;
	}
}
@media only screen and (min-width: 1200px){
	.point {
		padding: 54px 0;
	}
	.point-txt {
		font-size: 18px;
	}
	.point-item-ttl{
		font-size: 16px;
		padding: 14px 20px;
	}
}


/* ======================================
	feature
====================================== */
.feature{
	background: #2195de;
	border-radius: 50px 50px 0 0;
	margin-top: 2em;
}
.feature .secTtl{
	text-align: left;
}
.feature .secTtl h2, .feature .secTtl p.en{
	color: #fff;
}
.feature .secTtl p.en::before {
	background: #fff;
}
.feature-list{
	margin: 25px 0 0;
}
.feature-item{
	border-top: 1px solid #e0f2ff;
	margin-bottom: 5px;
	position: relative;
	z-index: 2;
	padding: 1.5em 0 2em;	
	max-width: 700px;
	margin: 0 auto;
}
.feature-item-left{
}
.feature-item-center{
	flex: 3;
	padding: 1em 0 0 1.5em;
	position: relative;
}
.feature-item-center::before{
	content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 80px 80px 0 0;
  border-color: #1c80bf transparent transparent transparent;
  z-index: 0;
}
.feature-item-right{
	flex: 2;
}
.feature-item-right img{
	border-radius: 20px;
}
.feature-item-head{
}
.feature-item-category{
	color: #a6d5f2;
	font-size: 14px;
	font-weight: 700;
	font-family: "sen", sans-serif;
	text-align: center;
	letter-spacing: .2em;
}
.feature-item-num{
	color: #fff;
	font-size: 50px;
	font-weight: 700;
	font-family: "Lato", sans-serif;
	letter-spacing: .2em;
	line-height: 1;
	text-align: center;
}
.feature-item-ttl{
	font-size: 22px;
	line-height: 1.66;
	font-weight: 600;
	color: #fcee21;
	position: relative;
	z-index: 1;
}
.feature-item-txt{
	font-weight: bold;
	margin: 15px 0 20px;
	font-size: 15px;
	color: #fff;
}
@media only screen and (min-width: 768px) {
	.feature-item {
		padding: 3em 0;
	}
	.feature-item-num{
		font-size: 78px;
	}
	.feature-item-ttl{
		font-size: 28px;
	}
	.feature-item-txt{
		margin: 15px 0 30px;
		font-size: 20px;
	}
}
@media only screen and (min-width: 1024px){
	.feature-item{
		display: flex;
		align-items: start;
		gap: 3em;
		max-width: 100%;
	}
	.feature-item-left{
		flex-shrink: 0;
	}
	.feature-item-center{
		margin-right: -2em;
	}
	.feature-item-right{
		padding-right: 1.5em;
	}
	.feature-item-num{
		font-size: 104px;
	}
	.feature-item-ttl{
		font-size: 29px;
		letter-spacing: .1em;
	}
}

/* ======================================
	flow
====================================== */
.flow {
	overflow: hidden;
}
.flow .secTtl{
	position: relative;
}
.flow .secTtl::before {
    content: '';
    position: absolute;
    top: -20px;
    right: 0;
    background: url(../img/flow_ill.png) no-repeat;
    background-size: contain;
    width: 170px;
    height: 120px;
    z-index: 0;
}
.flow-catch{
	margin: 30px 0 20px;
	font-size: 18px;
	z-index: 1;
	position: relative;
}
.flow-catch span {
	color: #2195de;
}
.flow-list{
	margin-bottom: 27px;
}
.flow-item{
	max-width: 330px;
	width: 100%;
	margin: 0 auto 20px;
}
.flow-item2 .flow-item-head{
	background: #83b1d3;
}
.flow-item3 .flow-item-head{
	background: #649ec8;
}
.flow-item-head{
	text-align: center;
	color: #fff;
	background: #a2c5de;
	line-height: 1.5;
	
	position: relative;
	margin: 0 0 20px;
	padding: 6px 10px 0;
}
.flow-item-head::after{
	position: absolute;
	content: '';
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-color: #a2c5de transparent transparent transparent;
	border-width: 15px 165px 0px 165px;
}
.flow-item2 .flow-item-head::after{
	border-color: #83b1d3 transparent transparent transparent;
}
.flow-item3 .flow-item-head::after{
	border-color: #649ec8 transparent transparent transparent;
}
.flow-item-num{
	font-size: 18px;
	font-weight: 400;
	letter-spacing: .2em;
	line-height: 1.5;
	display: inline-block;
	vertical-align: middle;
	margin-right: .5em;
}
.flow-item-ttl{
	font-size: 22px;
	letter-spacing: .1em;
	font-weight: 700;
	display: inline-block;
	vertical-align: middle;
}
.flow-item-content li{
	font-size: 16px;
	font-weight: 700;
	line-height: 1.6;
	border-bottom: 1px solid #649ec8;
	padding: 9px 6px 9px 35px;
	background: url(../img/icon_check.svg) no-repeat top 14px left 7px / 18px;
}

@media only screen and (max-width: 479px) {
	.flow .secTtl::before {
		top: 0px;
		width: 140px;
    height: 105px;
	}
	.flow-item-num{
		font-size: 16px;
	}
	.flow-item-ttl{
		font-size: 20px;
	}
}
@media only screen and (min-width: 768px) {
	.flow .secTtl::before {
		content: '';
		top: 0;
		right: 0;
		width: 200px;
		height: 140px;
	}
	.flow-item{
		max-width: 420px;
	}
	.flow-item-head::after{
		border-width: 15px 210px 0px 210px;
	}
	.flow-item-content li{
		font-size: 18px;
	}
	.flow-catch{
		font-size: 22px;
		margin: 30px 0;
	}
}
@media only screen and (min-width: 1024px){
	.flow .secTtl::before {
		content: '';
		right: -100px;
		width: 350px;
		height: 250px;
	}
	.flow-catch{
		font-size: 25px;
	}
	.flow-list{
		display: flex;
	}
	.flow-list2{
		justify-content: flex-end;
	}
	.flow-item{
		flex: 1;
		margin: 0 30px 0 0;
	}
	.flow-item-head{
		margin: 2em auto;
		padding: 14px 10px;
		line-height: 2;
	}
	.flow-item-head::after{
		top: 0;
		left: 100%;
		transform: none;
		border-color: transparent transparent transparent #a2c5de;
		border-width: 40px 0px 40px 30px;
		z-index: 2;
	}
	.flow-item2 .flow-item-head::after{
		border-color: transparent transparent transparent #83b1d3;
	}
	.flow-item3 .flow-item-head::after{
		border-color: transparent transparent transparent #649ec8;
	}
	.flow-item:not(:first-child) .flow-item-head::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 40px 0 40px 30px;
		border-color: transparent transparent transparent #fff;
		z-index: 1;
		margin-left: -28px;
	}
	.flow-item2 .flow-item-head::before {
		background: #83b1d3;
	}
	.flow-item3 .flow-item-head::before {
		background: #649ec8;
	}
	.flow-item-ttl {
		font-size: 26px;
	}
}

/* ======================================
	case
====================================== */
.case{
	background: #2195de;
}
.case-container{
	background: #e0f2ff;
	border-radius: 60px 0 0 60px;
	margin: 1em auto;
	width: 90%;
	max-width: 1240px;
	position: relative;
	z-index: 2;
	padding-bottom: 1em;
}
.case-container::after{
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background: #e0f2ff;
	top: 0;
	left: 99%;
	z-index: -1;
}
.case .secTtl {
	text-align: right;
	width: calc(100% + (50vw - 50%));
	margin-right: calc(50% - 50vw);
	margin-left: 0;
	margin-bottom: 3em;
	position: relative;
}
.case .secTtl p.en {
	color: #fff;
	font-size: 100px;
	line-height: .9;
}
.case .secTtl p.en::before{
	content: none;
}
.case .secTtl h2 {
	font-size: 30px;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
}
.case-item {
	background: #fff;
	border-radius: 10px;
	padding: 2em;
	display: flex;
	flex-direction: column;
	margin-bottom: 4em;
	max-width: 500px;
	margin: 0 auto 3em;
}
.case-item-img{
	height: 150px;
	margin: -60px auto 15px;
	text-align: center;
}
.case-item-img img{
	height: 100%;
}
.case-item2 .case-item-img{
	margin-bottom: 0;
}
.case-item-head {
	margin-bottom: .5em;
}
.case-item-ttl{
	color: #2195de;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
}
.case-item-lead{
	font-size: 15px;
	text-align: justify;
	margin-bottom: 1em;
}
.case-item-content{
	font-size: 15px;
	font-weight: 700;
}
.case-item-content li {}
.case-item-content li::before{
	content: '';
	display: inline-block;
	height: 8px;
	width: 8px;
	background-color: #2195de;
	border-radius: 50px;
	margin-right: 1em;
	vertical-align: middle;
	margin-bottom: 4px;
}

@media only screen and (min-width: 768px){
	.case-container{
		margin: 2em auto;
		padding-bottom: 0;
	}
	.case .secTtl{
		margin-bottom: 5em;
	}
	.case-item {
		margin: 0 auto 4em;
	}
	.case-item-img{
		height: 200px;
		margin: -80px auto 20px;
	}
	.case-item-head {
		margin-bottom: 1em;
	}
}

@media only screen and (min-width: 1024px){
	.case-list {
		display: flex;
		justify-content: space-between;
		gap: 2em;
	}
	.case .secTtl h2 {
	font-size: 36px;
	}
	.case .secTtl p.en {
	font-size: 148px;
	}
	.case-item2 .case-item-img{
		margin: -80px auto 20px;
	}
}

/* ======================================
	faq
====================================== */
.faq{
	background: #f5f5f5;
	padding: 32px 0 40px;
}
.faq .secTtl{
	color: #fff;
}
.faq .secTtl span::before,
.faq .secTtl span::after{
	border-color: #fff;
}
.accordion{
	margin-top: 20px;
	line-height: 1.5;
}
.accordion-item{
	margin-bottom: 18px;
}
.accordion-header{
	font-size: 16px;
	font-weight: 600;
	background: #fff;
	color: #114061;
}
.accordion-trigger{
	display: flex;
	align-items: center;
	width: 100%;
	position: relative;
	padding: 10px 55px 10px 15px;
}
.accordion .icon{
	font-weight: 700;
	font-family: "Sen", sans-serif;
	font-size: 26px;
	margin-right: 20px;
	line-height: 1.2;
	width: 25px;
  text-align: center;
	flex-shrink: 0;
	color: #2195de;
}
.accordion .tgl{
	width: 30px;
	height: 30px;
	border-radius: 40px;
	border: 1px solid #2195de;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 15px;
}
.accordion .tgl::before{
	position: absolute;
	content: '';
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 10px;
	height: 1px;
	background: #2195de;
}
.accordion .tgl::after{
	position: absolute;
	content: '';
	left: 50%;
	top: 50%;
	height: 10px;
	width: 1px;
	background: #2195de;
	transition: .2s;
	transform: translate(-50%,-50%);
}
.accordion-trigger.is-active .tgl::after {
	transform: translate(-50%,-50%) rotate(90deg);
}

.accordion-panel{
	padding: 10px 25px 10px 15px;
	color: #000;
	background: #fff;
	margin-top: 1px;
	display: none;
}
.accordion-txt{
	font-size: 16px;
	line-height: 2;
	display: flex;
}
.accordion-txt-cont .txt{
	display: block;
	margin-top: 10px;
}
@media only screen and (min-width: 768px){
	.faq{
		padding: 48px 0 70px;
	}
	.accordion{
		margin-top: 32px;
	}
	.accordion-header{
		font-size: 18px;
	}
	.accordion-trigger{
		padding: 22px 85px 22px 45px;
	}
	.accordion .icon{
		font-size: 30px;
		margin-right: 45px;
	}
	.accordion .tgl{
		width: 40px;
		height: 40px;
		right: 30px;
	}
	.accordion .tgl::before{
		width: 14px;
	}
	.accordion .tgl::after{
		height: 14px;
	}
	.accordion-panel{
		padding: 22px 45px;
	}
	.accordion-txt{
		font-size: 18px;
		padding-right: 6%;
	}
}
/* ======================================
	support
====================================== */
.support{
	padding: 20px 0 60px;
}
.support-item{
	background: #eceae6;
	margin: 20px 0 0;
	padding: 20px;
}
.support-item-img{
	max-width: 358px;
	width: 100%;
	margin: 0 auto 10px;
	position: relative;
  z-index: 3;
}
.support-item-body{
	width: 100%;
}
.support-item-ttl{
	font-weight: 600;
	font-size: 20px;
	letter-spacing: .15em;
	
	padding-bottom: 5px;
	line-height: 1.5;
	position: relative;
	z-index: 2;
}
.support-item-content{
	padding: 15px 0 0;
}
.support-item-desc{
	max-width: 471px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.support-item-desc span{
	display: inline-block;
	background: #fff;
	text-align: center;
	width: calc(33.3% - 1px);
	margin-bottom: 2px;
	padding: 6px;
}
.support-item-link{
	display: block;
	font-size: 16px;
	letter-spacing: .2em;
	font-weight: 600;
	margin: 15px auto 0;
}
.support-item-link span{
	padding-right: 28px;
	background: url(../img/icn_arrow_bk.svg) no-repeat center right 10px / 15px;
}
@media only screen and (max-width: 767px){
	.support-item-desc.txt{
		font-size: 12px;
	}
}
@media only screen and (min-width: 768px){
	.support-item{
		display: flex;
		padding: 0 0 26px 26px;
		margin: 80px 0 0;
	}
	.support-item-img{
		width: 32%;
		flex-shrink: 0;
		margin: 0;
	}
	.support-item-body{
		margin: 0 0 0 3.6%;
	}
	.support-item-ttl{
		font-size: 26px;
		padding-bottom: 20px;
		background: #fff;
	}
	.support-item-ttl::after{
		position: absolute;
		content: '';
		right: 100%;
		top: 0;
		width: 100%;
		height: 100%;
		background: #fff;
	}
	.support-item-content{
		padding: 26px 26px 0 0;
	}
	.support-item-desc{
		margin-right: 3%;
	}
}
@media only screen and (min-width: 1024px){
	.support-item-ttl{
		font-size: 32px;
	}
}
@media only screen and (min-width: 1200px){
	.support-item-ttl{
		font-size: 36px;
	}
	.support-item-content{
		display: flex;
		align-items: center;
		padding: 26px 0 0;
	}
	.support-item-txt{
		max-width: 419px;
		width: 58%;
		margin-right: 3%;
	}
	.support-item-link{
		font-size: 18px;
		margin: 0 auto;
	}
}
/* ======================================
	cta
====================================== */
.cta-box {
  background-color: #fff;
  border-radius: 30px; 
  padding: 40px 20px;
  text-align: center;
}
.cta-logo {
	margin-bottom: 2em;
}
.cta-logo img {}
.cta-lead {
  color: #114061;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 1em;
}
.cta-btn-wrap {
	max-width: 300px;
	margin: 0 auto 25px;
}

.cta-num {
  font-family: "Lato", sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #000;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.cta-num::before {
  content: "";
	display: inline-block;
	width: 32px;
	height: 34px;
	margin-right: 6px;
	background: url(../img/icn_tel_bk.svg) no-repeat center / contain;
	position: relative;
	top: -0;
}
@media only screen and (max-width: 767px) {
	.cta-box {
		padding: 30px 20px;
	}
	.cta-btn-wrap .btn:not(:last-child){
		margin-bottom: 15px;
	}
}

@media only screen and (min-width: 768px) {
	.cta{
		padding: 40px 0 54px;
	}
	.cta-wrap{
		display: flex;
		margin: 30px auto 0;
	}
	.cta-left{
		width: 50%;
	}
	.cta-right{
		width: 50%;
	}
	.cta-right::after{
		left: 0;
		top: 50%;
		transform: translate(0,-50%);
		height: 76%;
		width: 2px;
		border-left: 2px dotted #bbb;
		border-top: none;
	}
	.cta-btn-wrap {
		display: flex;
		justify-content: center;
		gap: 20px;
		max-width: 100%;
		margin: 0 auto 45px;
	}
	.cta-lead {
		font-size: 18px;
	}
	.cta-tel-wrap {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 25px;
	}
	.cta-num {
		font-size: 42px;
	}
}
@media only screen and (min-width: 1024px){
	.cta-left{
		padding: 40px;
	}
	.cta-right{
		padding: 40px;
	}
	.cta-num{
		font-size: 48px;
	}
	.cta-note{
		font-size: 16px;
	}
	.cta-lead {
		font-size: 20px;
	}
}
@media only screen and (min-width: 1200px){
	.btn{
		font-size: 20px;
		padding: 18px 36px;
	}
}

.cta.last{
	background: #2195de;
	padding: 5em 0;
}
.cta.last .inner{
	position: relative;
}
.cta.last .inner::before{
	content: "";
	position: absolute;
	top: -30px;
	left: -30px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 300px 300px 0 0;
	border-color: #1c80bf transparent transparent transparent;
	z-index: 0;
}
.cta.last .cta-box{
	position: relative;
	z-index: 1;
}
