@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300&family=Open+Sans:wght@300;700&display=swap');

/***************************************************************************
Media Queries
****************************************************************************/


@media all and (min-width: 768px) {
}
@media all and (min-width: 768px) and (max-width: 1063px) {
}
@media all and (max-width:767px) {
}


#top_mv img{
	width: 100%;
}

/*共通*/
.sec{
	padding-top: 60px;
	padding-bottom: 70px;
}
.sec_ttl{
	display: flex;
	flex-direction: column;
	align-items: center;
}
.sec_ttl .ja{
	font-size: 40px;
	font-weight: bold;
}
.sec_ttl .sub {
    font-size: 16px;
    font-weight: 300;
    color: #003b80;
    position: relative;
    letter-spacing: 0;
}
.sec_ttl .sub::before{
	content: '';
	width: 1.2em;
	height: 1px;
	background-color: #003b80;
	position: absolute;
	top: 50%;
	left: -2em;
}
.sec_ttl .sub::after{
	content: '';
	width: 1.2em;
	height: 1px;
	background-color: #003b80;
	position: absolute;
	top: 50%;
	right: -2em;
}
.sec_txt{
	font-size: 20px;
	text-align: center;
	line-height: 1.6;
	margin-top: 15px;
}

#footer_contact{
	display: none;
}

@media all and (min-width: 768px) and (max-width: 1063px) {
	.sec{
		padding-top: 5.6vw;
    	padding-bottom: 6.6vw;
	}
	.sec_ttl .ja {
	    font-size: 3.75vw;
	}
	.sec_ttl .sub {
	    font-size: 1.5vw;
	}
	.sec_txt {
		font-size: 1.85vw;
    	margin-top: 1.4vw;
	}
}
@media all and (max-width:767px) {
	.sec {
	    padding-top: 9.3vw;
	    padding-bottom: 9.3vw;
	}
	.sec_ttl .ja {
	    font-size: 6.7vw;
	}
	.sec_ttl .sub {
	    font-size: 3.2vw;
	    margin-top: -0.4em;
	}
	.sec_txt {
		font-size: 4.3vw;
    	margin-top: 2.6vw;
	}
}


/*nonePC noneSP*/

@media all and (min-width: 768px) {
  .nonePC {
	display: none !important;
  }
}
@media all and (max-width:767px) {
  .noneSP {
	display: none !important;
  }
}

/***************************************************************************
contact_btn
****************************************************************************/
.contact_btn_wrap{
	padding-top: 40px;
	padding-bottom: 70px;
}
.contact_btn_wrap.bg_yellow{
	background-color: #fffbcf;
}
.contact_btn::before{
	content: '';
	width: 68px;
	height: 25px;
	position: absolute;
	top: 0;
	left: calc(50% - 34px);
}
.contact_btn.typeA::before{
	background: url(../../img/start/btn_deco_a.svg) center / 100% no-repeat;
}
.contact_btn.typeB::before{
	background: url(../../img/start/btn_deco_b.svg) center / 100% no-repeat;
}
.contact_btn.typeA p{
	color: #a8272c;
}
.contact_btn.typeB p{
	color: #811418;
}
.contact_btn a{
	width: 100%;
	height: 120px;
	border-radius: 60px;
    color: #fff;
    box-shadow: 3px 0 10px rgba(0, 0, 0, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    position: relative;
}
.contact_btn.typeA a{
	background-color: #a8272c;
	padding-left: 70px;
}
.contact_btn.typeA a::before{
	content: '';
	width: 56px;
	height: 40px;
	background: url(../../img/start/btn_icon_a.svg) center / 100% no-repeat;
	position: absolute;
	top: calc(50% - 20px);
	left: 50px;
}
.contact_btn.typeB a{
	background-color: #811418;
	padding-left: 70px;
}
.contact_btn.typeB a::before{
	content: '';
	width: 48px;
	height: 48px;
	background: url(../../img/start/btn_icon_b.svg) center / 100% no-repeat;
	position: absolute;
	top: calc(50% - 24px);
	left: 40px;
}

@media all and (min-width: 768px) {
	.contact_btn_inner{
		width: 100%;
		max-width: 1040px;
		display: flex;
		justify-content: space-between;
		margin: 0 auto;	
	}
	.contact_btn{
		width: 49%;
		font-weight: bold;
	    font-size: 25px;
	    line-height: 1.28;
	    text-align: center;
	    position: relative;
	    padding-top: 25px;
	}
	.contact_btn a:hover {
	    opacity: 1 !important;
	}
	.contact_btn.typeA a:hover{
		background-color: #751b1f;
	}
	.contact_btn.typeB a:hover{
		background-color: #5a0e11;
	}
}
@media all and (min-width: 768px) and (max-width: 1063px) {
	.contact_btn_wrap{
		padding-top: 3.7vw;
    	padding-bottom: 6.5vw;
	}
	.contact_btn_inner{
		width: 96%;
	}
	.contact_btn{
	    font-size: 2.35vw;
	    padding-top: 2.4vw;
	}
	.contact_btn a{
	    height: 11.25vw;
	}
	.contact_btn::before{
		width: 6.4vw;
	    height: 2.4vw;
	    left: calc(50% - 3.2vw);
	}
	.contact_btn.typeA a{
		padding-left: 6.3vw;
	}
	.contact_btn.typeA a::before{
	    width: 5.2vw;
	    height: 3.8vw;
	    top: calc(50% - 1.9vw);
	    left: 4.7vw;
	} 
	.contact_btn.typeB a{
		padding-left: 6.3vw;
	}
	.contact_btn.typeB a::before{
	    width: 4.5vw;
	    height: 4.5vw;
	    top: calc(50% - 2.25vw);
	    left: 3.7vw;
	}
}
@media all and (max-width:767px) {
	.contact_btn_wrap{
		padding-top: 6.6vw;
    	padding-bottom: 10.6vw;
	}
	.contact_btn_inner{
		max-width: 94%;
		margin: 0 auto;	
	}
	.contact_btn{
		font-weight: bold;
		text-align: center;
		line-height: 1.32;
		padding-top: 3vw;
	}
	.contact_btn + .contact_btn{
		margin-top: 4vw;
	}
	.contact_btn p{
	    font-size: 4.3vw; 
	}
	.contact_btn::before{
		width: 9vw;
	    height: 3.5vw;
	    left: calc(50% - 4.5vw);
	}
	.contact_btn a{
	    height: 18.6vw;
	    border-radius: 9.3vw;
	    font-size: 5vw;
	    margin-top: 1.6vw;
	}
	.contact_btn.typeA a{
		padding-left: 8vw;
	}
	.contact_btn.typeA a::before{
	    width: 7.4vw;
	    height: 5.3vw;
	    top: calc(50% - 2.65vw);
	    left: 5.8vw;
	}
	.contact_btn.typeB a{
		padding-left: 10.6vw;
	}
	.contact_btn.typeB a::before{
	    width: 6.4vw;
	    height: 6.6vw;
	    top: calc(50% - 3.3vw);
	    left: 5.8vw;
	}
}


/***************************************************************************
lead_wrap
****************************************************************************/
.question_wrap{
	background-color: #003b80;
	box-shadow: 3px 0 10px rgb(0 0 0 / 25%);
	padding-top: 55px;
	padding-bottom: 60px;
	position: relative;
	z-index: 1;
}
.question_wrap::before{
	content: '';
    border-color: transparent #003c80 #003c80 transparent;
    border-width: 45px;
    border-style: solid;
    width: 0;
    transform: rotate(45deg);
    box-shadow: 3px 0 10px rgb(0 0 0 / 25%);
    position: absolute;
    bottom: -44px;
    left: calc(50% - 45px);
    z-index: 1;
}
.question_wrap::after{
	content: '';
    width: 200px;
    height: 100px;
    background-color: #003c80;
    position: absolute;
    bottom: 0px;
    left: calc(50% - 100px);
    z-index: 1;
}
.question_wrap h2{
	font-size: 42px;
	font-weight: bold;
	color: #fffbcf;
	text-align: center;
	line-height: 1.25;
}
.question01_list{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 45px;
	position: relative;
}
.question01_list::before{
	content: '';
	width: 176px;
	height: 195px;
	background: url(../../img/start/illust01.png) center / 100% no-repeat;
	position: absolute;
	top: -194px;
	left: 10px;
}
.question01_list::after{
	content: '';
	width: 145px;
	height: 159px;
	background: url(../../img/start/illust02.png) center / 100% no-repeat;
	position: absolute;
	top: -158px;
	right: 40px;
}
.question01_list li{
	width: calc((100% - 10px) / 3);
	height: 90px;
	background-color: #fff;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.33;
	text-align: center;
	color: #003b80;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
}
.question02{
	margin-top: 40px;
	z-index: 2;
}
.question02_ttl{
	font-size: 25px;
	font-weight: bold;
	color: #fffbcf;
}
.question02_list li{
	font-size: 18px;
	color: #fff;
	position: relative;
	padding-left: 40px;
}
.question02_list li + li{
	margin-top: 10px;
}
.question02_list li::before{
	content: '';
	width: 26px;
	height: 24px;
	background: url(../../img/start/check_icon.svg) center / 100% no-repeat;
	position: absolute;
	top: calc(50% - 12px);
	left: 0;
}

.answer_wrap{
	background-color: #fffbcf;
	text-align: center;
	padding-top: 80px;
	padding-bottom: 85px;
	position: relative;
}
.answer_ttl{
	font-size: 50px;
	font-weight: bold;
	color: #003b80;
	line-height: 1.2;
	letter-spacing: 0.1em;
}
.answer_txt{
	font-size: 20px;
	line-height: 1.6;
	margin-top: 25px;
}
.answer_ttl span{
	font-size: 37.5px;
}

@media all and (min-width: 768px) {
	.question_inner{
		width: 100%;
		max-width: 1000px;
		margin: 0 auto;
	}
	.question01_list li + li + li + li{
		margin-top: 5px;
	}
	.question02_list{
		display: flex;
		margin-top: 30px;
	}
	.question02_list ul + ul{
		margin-left: 75px;
	}
	.answer_inner{
		width: 100%;
		max-width: 1160px;
		margin: 0 auto;
	}
	.answer_image{
	    position: initial;
	}
	.img_left{
		width: 328px;
		position: absolute;
		top: -40px;
		left: 0;
	}
	.img_right{
		width: 266px;
		position: absolute;
		top: -45px;
		right: 40px;
	}
}
@media all and (min-width: 1064px) and (max-width: 1180px) {
	.answer_ttl{
		margin-left: 3vw;
	}
	.answer_txt{
		margin-left: 3vw;
	}
	.img_left{
		left: 10px;
	}
}
@media all and (min-width: 768px) and (max-width: 1063px) {
	.question_wrap {
	    padding-top: 5.2vw;
    	padding-bottom: 5.6vw;
	}
	.question_wrap::before{
	    border-width: 4.05vw;
	    bottom: -3.9vw;
	    left: calc(50% - 4.05vw);
	}
	.question_inner{
		width: 94%;
		padding: 0;
	}
	.question_wrap h2{
	    font-size: 3.95vw;
	}
	.question01_list{
	    margin-top: 4.2vw;
	}
	.question01_list::before{
		width: 16.55vw;
	    height: 18.4vw;
	    top: -18.3vw;
    	left: 0.9vw;
	}
	.question01_list::after{
		width: 13.6vw;
	    height: 15vw;
	    top: -14.9vw;
	    right: 4.4vw;
	}
	.question01_list li{
	    height: 8.45vw;
    	font-size: 2.25vw;
	}
	.question02{
	    margin-top: 3.7vw;
	}
	.question02_ttl{
	    font-size: 2.35vw;
	}
	.question02_list li{
	    font-size: 1.65vw;
    	padding-left: 3.75vw;
	}
	.question02_list li::before{
	    width: 2.4vw;
	    height: 2.3vw;
	    top: calc(50% - 1.15vw);
	}
	.question02_list li + li {
	    margin-top: 0.9vw;
	}
	.answer_wrap{
		padding-top: 7.5vw;
    	padding-bottom: 8vw;
	}
	.answer_ttl{
		font-size: 4.7vw;
		margin-left: 3vw;
	}
	.answer_txt{
		font-size: 1.85vw;
		margin-top: 2.35vw;
		margin-left: 3vw;
	}
	.answer_ttl span{
		font-size: 3.5vw;
	}
	.img_left{
		width: 30.85vw;
		top: -3.65vw;
		left: 0.5vw;
	}
	.img_right{
		width: 25vw;
		top: -4.1vw;
    	right: 3.7vw;
	}	
}
@media all and (max-width:767px) {
	.question_wrap {
	    padding-top: 3vw;
	    padding-bottom: 10.7vw;
	}
	.question_wrap::before {
	    border-width: 5vw;
	    bottom: -4.4vw;
	    left: calc(50% - 5vw);
	}
	.question_inner{
		width: 97%;
	    margin: 0 auto;
	}
	.question_wrap h2{
	    font-size: 6.7vw;
	    line-height: 1.2;
	}
	.question01_list{
	    margin-top: 3vw;
	}
	.question01_list::before{
		width: 23.3vw;
	    height: 26.7vw;
	    top: -26.2vw;
	    left: 0.2vw;
	}
	.question01_list::after{
		width: 19.5vw;
	    height: 23vw;
	    top: -22vw;
	    right: 1.5vw;
	}
	.question01_list li{
		width: calc((100% - 1.5%) / 2);
	    height: auto;
	    font-size: 4.3vw;
	    list-style: 1.25;
	    padding: 1.4vw 0;
	}
	.question01_list li + li + li{
		margin-top: 1.5vw;
	}
	.question02{
	    margin-top: 6.6vw;
	    margin-left: 5%;
	    margin-right: 5%;
	}
	.question02_ttl{
	    font-size: 4.85vw;
	    text-align: center;
	}
	.question02_list{
		margin-top: 5.4vw;
	}
	.question02_list ul + ul,
	.question02_list li + li{
	    margin-top: 3.5vw;
	}
	.question02_list li{
	    font-size: 4.3vw;
	    line-height: 1.25;
	    padding-left: 8vw;
	}
	.question02_list li::before{
	    width: 4.55vw;
	    height: 4.2vw;
	    top: 0.3em;
	}

	.answer_wrap{
		padding-top: 10.7vw;
	    padding-bottom: 4vw;
	}
	.answer_inner{
		width: 85%;
    	margin: 0 auto;
	}   
	.answer_ttl{
		font-size: 8vw;
	}
	.answer_txt{
		font-size: 4.3vw;
		text-align: justify;
		margin-top: 4vw;
	}
	.answer_ttl span{
		font-size: 6vw;
	}
	.answer_image{
		display: flex;
		justify-content: center;
		margin-top: 6vw;
	}
	.img_left{
		width: 43.8vw;
		margin-right: -1.5vw;
	}
	.img_right{
		width: 35.3vw;
		margin-left: -1.5vw;
	}
}


/***************************************************************************
works_wrap
****************************************************************************/
.accordion{
    margin-top: 25px;
}
.works_wrap .accordion-title {
    width: 100%;
    height: 125px;
    background: url(../../img/start/btn.png) center / 100% no-repeat;
    padding-left: 20px;
    padding-top: 10px;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}
.case_ttl_wrap{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.case_ttl_wrap .case{
	width: 100%;
	font-size: 20px;
	font-weight: 300;
	color: #fffbcf;
	font-family: 'Open Sans', sans-serif;
}
.case_ttl_wrap .case_ttl01{
	width: 170px;
	height: 60px;
	background-color: #fffbcf;
	font-size: 18px;
	color: #003c80;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 5px;
	text-align: center;
	line-height: 1.25;
}
.case_ttl_wrap .case_ttl02{
	font-size: 20px;
	color: #fff;
	margin-left: 15px;
}
.accordion {
    margin-top: 2.4vw;
}
.works_wrap .accordion-content{
	display: none;
    margin-left: 0.9%;
    margin-right: 0.9%;
}
.accordion_wrap .box .ba_icon{
	width: 120px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	color: #fff;
	position: absolute;
	top: 0;
	left: 0;
}
.accordion_wrap .box.before .ba_icon{
	background-color: #003b80;
}
.accordion_wrap .box.after .ba_icon{
	background-color: #a8272c;
}
.accordion_wrap .box .i_txt{
	display: block;
	font-size: 12px;
	text-align: right;
}
.accordion_wrap .box .li_ttl{
	font-size: 20px;
	font-weight: bold;
	color: #003b80;
	text-align: center;
	border-bottom: 1px solid #003b80;
	padding-bottom: 10px;
	margin-top: 25px;
}
.accordion_wrap .box.after .li_ttl{
	color: #a8272c;
	border-bottom: 1px solid #a8272c;
}
.accordion_wrap .box ul li{
	font-size: 18px;
	line-height: 1.55;
	border-bottom: 1px dashed #003b80;
	position: relative;
	padding: 15px 30px 15px 50px;
}
.accordion_wrap .box.after ul li{
	border-bottom: 1px dashed #a8272c;
}
.accordion_wrap .box ul li::before{
	content: '';
	width: 2.05em;
	height: 2.05em;
	background: url(../../img/start/before_icon.svg) center / 100% no-repeat;
	position: absolute;
	top: 0.6em;
	left: 0;
}
.accordion_wrap .box.after ul li::before{
	background: url(../../img/start/after_icon.svg) center / 100% no-repeat;
}
.accordion_wrap .box .notes{
	display: block;
	text-align: right;
	font-size: 12px;
	margin-top: 10px;
}
.accordion_wrap .box .notes::before{
	content: "※";
}
.accordion-btn{
	position: absolute;
	top: 75px;
	right: 35px;
}
.accordion-btn::before,
.accordion-btn::after {
    content: '';
    display: block;
    width: 32px;
    height: 3px;
    border-radius: 5px;
    background-color: #fffbcf;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
}
.accordion-btn::after {
	background-color: #fffbcf;
	transform: translateY(-50%) rotate(90deg);
}
.open .accordion-btn::before{
	opacity: 0;
}
.open .accordion-btn::after{
	transform: translateY(-50%) rotate(0);
	transition: 0.3s;
}

@media all and (min-width: 768px) {
	.works_inner{
		width: 100%;
    	max-width: 1016px;
	    margin: 0 auto;
	}
	.works_wrap .accordion-item + .accordion-item{
		margin-top: 5px;
	}
	.works_wrap .accordion-title:hover{
		opacity: 0.75;
	}
	.works_wrap .accordion_wrap{
		display: flex;
		justify-content: space-between;
		padding-top: 5px;
		padding-bottom: 20px;
	}
	.accordion_wrap .box{
		width: calc((100% - 4%) / 2);
		position: relative;
	}
	.accordion_wrap .box.after::before{
		content: '';
		width: 150px;
		height: 60px;
		background: url(../../img/start/arrow_red.png) center / 100% no-repeat;
		position: absolute;
		top: 250px;
	    left: -90px;
	    z-index: 10;
	}
	.accordion_wrap .box ul{
		margin-top: 10px;
	}
}
@media all and (min-width: 768px) and (max-width: 1063px) {
	.works_inner {
	    width: 94%;
	    max-width: 1016px;
	    margin: 0 auto;
	}
	.works_wrap .accordion-item + .accordion-item {
	    margin-top: 0.45vw;
	}
	.works_wrap .accordion-title{
		width: calc(100% + 1.6vw);
	    height: 11.8vw;
	    padding-left: 1.9vw;
	    padding-top: 0.9vw;
	    left: -0.8vw;
	}
	.case_ttl_wrap .case{
		font-size: 1.85vw;
	}
	.case_ttl_wrap .case_ttl01{
	    width: 15.95vw;
	    height: 5.65vw;
	    font-size: 1.65vw;
	    margin-top: 0.45vw;
	}
	.case_ttl_wrap .case_ttl02{
	    font-size: 1.85vw;
    	margin-left: 1.4vw;
	}

	.works_wrap .accordion_wrap{
		padding-top: 0.45vw;
		padding-bottom: 1.8vw;
	}
	.accordion_wrap .box + .box::before{
		width: 13.6vw;
		height: 5.5vw;
		top: 14.1vw;
	    left: -8.2vw;
	}
	.accordion_wrap .box .ba_icon{
		width: 10.9vw;
		height: 3.6vw;
		font-size: 1.35vw;
	}
	.accordion_wrap .box .i_txt {
	    font-size: 1.1vw;
	}
	.accordion_wrap .box .li_ttl {
	    font-size: 1.85vw;
        padding-bottom: 0.9vw;
    	margin-top: 2.35vw;
	}
	.accordion_wrap .box ul{
		margin-top: 0.9vw;
	}
	.accordion_wrap .box ul li{
		font-size: 1.65vw;
		padding: 1.4vw 2.8vw 1.4vw 4.7vw;
	}
	.accordion_wrap .box .notes{
		font-size: 1.1vw;
		margin-top: 0.9vw;
	}
	.accordion-btn{
		top: 7.05vw;
    	right: 3.3vw;
	}
	.accordion-btn::before,
	.accordion-btn::after {
	    width: 3vw;
	    height: 0.29vw;
	}

}
@media all and (max-width:767px) {
	.works_inner {
	    width: 94%;
	    margin: 0 auto;
	}
	.works_wrap .accordion-title {
	    height: 37.5vw;
	    background: url(../../img/start/btn_sp.png) center / 100% no-repeat;
	    padding-left: 3.5vw;
	    padding-right: 3.5vw;
	    padding-top: 6vw;
	}
	.case_ttl_wrap .case{
		width: initial;
		font-size: 5.3vw;
	}
	.case_ttl_wrap .case_ttl01 {
	    width: auto;
	    height: 8vw;
	    font-size: 3.6vw;
	    margin-top: 0;
	    padding: 0 3.2vw;
	    margin-left: 2vw;
	}
	.case_ttl_wrap .case_ttl02{
		font-size: 4.65vw;
		margin-left: 0;
		margin-top: 2vw;
	}
	.accordion {
	    margin-top: 2.4vw;
	}
	.works_wrap .accordion-content{
	    margin-left: 6%;
	    margin-right: 6%;
	    margin-top: 2.6vw;
	}
	.accordion_wrap .box.after{
		margin-top: 9.3vw;
		position: relative;
	}
	.accordion_wrap .box.after::before{
		content: '';
		width: 6.8vw;
		height: 10.8vw;
		background: url(../../img/start/arrow_red_sp.png) center / 100% no-repeat;
		position: absolute;
		top: -9.6vw;
		left: 6vw;
	    z-index: 10;
	}
	.accordion_wrap .box .ba_icon{
		width: 20vw;
	    height: 6.7vw;
	    font-size: 2.6vw;
	}
	.accordion_wrap .box .i_txt {
	    font-size: 2.6vw;
	}
	.accordion_wrap .box .li_ttl {
        font-size: 4vw;
    	padding-bottom: 2vw;
    	margin-top: 2.7vw;
	}
	.accordion_wrap .box ul li{
		font-size: 3.2vw;
		padding: 2.6vw 1.3vw 2.6vw 9.3vw;
	}
	.accordion_wrap .box .notes{
		font-size: 2.6vw;
		margin-top: 1.3vw;
	}
	.accordion-btn{
		top: 12vw;
	    right: 4.8vw;
	}
	.accordion-btn::before,
	.accordion-btn::after {
	    width: 4.2vw;
	    height: 0.5vw;
	}

}


/***************************************************************************
support_wrap
****************************************************************************/
.support_wrap{
	text-align: center;
}
.support_list{
	display: flex;
	justify-content: space-between;
    margin-top: 40px;
}
.support_list li{
	width: 166px;
}
.support_list li:nth-child(6){
	width: 146px;
}
.support_list li p{
	font-size: 20px;
	font-weight: bold;
	color: #1d95d2;
	text-align: center;
	margin-top: 5px;
}
.support_point_subtxt{
	margin-top: 30px;
	font-size: 24px;
	font-weight: 700;
}
.support_point_subtxt span{
	font-size: 30px;
	color: #a8272c;
}
.support_point h3{
	font-size: 30px;
	font-weight: bold;
	color: #003b80;
	text-align: center;
	margin-top: 10px;
	padding-top: 15px;
	position: relative;
}
.support_point h3::before{
	content: '';
	width: 144px;
	height: 12px;
	background: url(../../img/start/support_deco.svg) center / 100% no-repeat;
	position: absolute;
	top: 0;
	left: calc(50% - 72px);
}
.point_wrap{
	width: 320px;
	position: relative;
	padding-top: 50px;
}
.point_wrap::before{
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 160px 50px 160px;
	border-color: transparent transparent #003c80 transparent;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}
.point_wrap > div{
	width: 100%;
	height: 220px;
	background-color: #003b80;
	box-shadow: 3px 0 10px rgb(0 0 0 / 25%);
}
.point_wrap.point_wrap_ex > div{
	position: relative;
}



.point_wrap > div > *{
	position: relative;
	top: -15px;
	z-index: 20;
}
.point_wrap .point_number{
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #fffbcf;
	font-family: 'Open Sans', sans-serif;
	line-height: 1;
}
.point_wrap .point_number .eng {
    font-size: 14px;
    position: relative;
    letter-spacing: 0;
}
.point_wrap .point_number .eng:before,
.point_wrap .point_number .eng:after {
  position: relative;
  display: inline-block;
  content: '';
  background: #fff;
  width: 0.15em;
  height: 1.3em;
  margin: 0 1em;
  margin-top: -.2em;
  vertical-align: middle;
}
.point_wrap .point_number .eng:before {
  transform: rotate(-35deg);/*角度調整*/
}
.point_wrap .point_number .eng:after {
  transform: rotate(35deg);/*角度調整*/
}
.point_wrap .point_number .num{
	font-size: 35px;
}
.point_wrap .point_name{
	font-size: 30px;
	font-weight: bold;
	color: #fffbcf;
	margin-top: 15px;
}
.point_wrap .point_txt{
	font-size: 15px;
	color: #fff;
	line-height: 1.75;
	margin-top: 10px;
}
.thanks{
	margin-top: 60px;
}
.thanks > img{
	width: 494px;
}
.thanks .thanks_ttl{
	font-size: 28px;
	font-weight: bold;
	color: #a8272c;
	margin-top: 10px;
}
.thanks .thanks_ttl span{
	font-size: 38px;
	font-weight: 700;
}
.thanks .thanks_list{
	display: flex;
	justify-content: center;
	margin-top: 30px;
}
.thanks .thanks_list li{
	width: 300px;
	flex-shrink: 0;
}
.thanks .thanks_txt{
	font-size: 72px;
	font-weight: bold;
	font-family: 'Open Sans', sans-serif;
	color: #a8272c;
	line-height: 1;
	position: relative;
}
.thanks .thanks_txt span{
	font-size: 36px;
}
.thanks .thanks_txt sup{
	color: #000;
    font-size: 14px;
    font-weight: 400;
    margin-left: -25px;
    position: absolute;
    top: 10px;
}
.thanks .thanks_map{
	width: 773px;
	display: block;
	margin: 50px auto 0;
}
.thanks .notes{
	font-size: 14px;
	display: flex;
	justify-content: center;
	margin-top: 25px;
}
.support_wrap .contents{
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-top: 50px;
}
.support_wrap .contents li{
	width: calc((100% - 2%) / 3);
}

@media all and (min-width: 768px) {
	.support_inner{
		width: 100%;
	    max-width: 1000px;
	    margin: 0 auto;
	}
	.support_point ul{
		display: flex;
		justify-content: center;
		margin-top: 20px;
	}
	.support_point ul li + li{
		margin-left: 20px;
	}
	.thanks .thanks_list li + li{
		margin-left: 50px;
	}

	.point_wrap.point_wrap_ex > div::before {
	    content: '';
	    width: 50px;
	    height: 50px;
		background: url(../../img/start/plus_ico.svg) center / contain no-repeat;
	    left: -35px;
	    bottom: 85px;
	    position: absolute;
	    z-index: 10;
	}
	.point_wrap.point_wrap_ex > div::after {
	    content: '';
	    width: 50px;
	    height: 50px;
		background: url(../../img/start/arrow_r_b.svg) center / contain no-repeat;
	    position: absolute;
	    right: -35px;
	    bottom: 85px;
	    z-index: 10;
	}
}
@media all and (min-width: 768px) and (max-width: 1063px) {
	.support_inner{
		width: 94%;
	}
	.support_list{
	    margin-top: 3.8vw;
	}
	.support_list li{
		width: 15.6vw;
	}
	.support_list li:nth-child(6){
		width: 13.73vw;
	}
	.support_list li p{
		font-size: 1.85vw;
		margin-top: 0.45vw;
	}
	.support_point h3{
		font-size: 2.8vw;
	    margin-top: 3.3vw;
	    padding-top: 1.4vw;
	}
	.support_point h3::before{
		width: 13.5vw;
	    height: 1.1vw;
		left: calc(50% - 6.75vw);
	}
	.support_point ul{
		margin-top: 1.8vw;
	}
	.support_point ul li + li {
	    margin-left: 2vw;
	}
	.point_wrap{
		width: 30vw;
	    flex-shrink: 0;
	    padding-top: 4.55vw;
	}
	.point_wrap::before{
		border-width: 0 15vw 4.55vw 15vw;
	}
	.point_wrap > div{
		width: 100%;
		height: 20vw;
	}
	.point_wrap > div > *{
		top: -1.4vw;
	}
	.point_wrap .point_number .eng{
		font-size: 1.3vw;
	}
	.point_wrap .point_number .num{
		font-size: 3.25vw;
	}
	.point_wrap .point_name{
		font-size: 2.8vw;
		margin-top: 1.4vw;
	}
	.point_wrap .point_txt{
		font-size: 1.4vw;
		margin-top: 0.5vw;
	}
	.thanks{
		margin-top: 5.6vw;
	}
	.thanks > img{
		width: 46.45vw;
	}
	.thanks .thanks_ttl{
		font-size: 3.25vw;
		margin-top: 0.9vw;
	}
	.thanks .thanks_list{
		margin-top: 2.8vw;
	}
	.thanks .thanks_list li{
		width: 24.45vw;
	}
	.thanks .thanks_list li + li{
		margin-left: 4.7vw;
	}
	.thanks .thanks_list .round{
		height: 24.45vw;
	    padding: 0 3.8vw;
	}
	.thanks .thanks_txt{
		font-size: 5.6vw;
	}
	.thanks .thanks_txt span{
		font-size: 2.8vw;
	}
	.thanks .thanks_txt sup{
	    font-size: 1.3vw;
	    margin-left: -2vw;
	    top: 1vw;
	}
	.thanks .thanks_map {
	    width: 72.7vw;
	    margin: 4.7vw auto 0;
	}
	.thanks .notes{
		font-size: 1.3vw;
		margin-top: 2.35vw;
	}
	.support_wrap .contents{
		margin-top: 4.7vw;
	}

}
@media all and (max-width:767px) {
	.support_inner{
		width: 94%;
	    margin: 0 auto;
	}
	.support_list{
		flex-wrap: wrap;
		/*justify-content: center;*/
		margin-left: 0;
	    margin-right: 0;
	    margin-top: 8vw;
	}
	.support_list li{
		width: 30vw;
	}
	.support_list li:nth-child(6) {
	    width: 26.2vw;
	}
	.support_list li:nth-child(n + 4) {
	    margin-top: 4vw;
	}
	.support_list li:not(:nth-child(1)):not(:nth-child(4)){
		margin-left: 2vw;
	}
	.support_list li p{
		font-size: 4vw;
		white-space: nowrap;
		margin-top: 1.3vw;
	}
	.support_point_subtxt{
		margin-top: 30px;
			font-size: 4.9vw;
	}
	.support_point_subtxt span{
			font-size: 6.1vw;
	}
	.support_point h3{
		font-size: 6.1vw;
		margin-top: 3vw;
		padding-top: 2vw;
		position: relative;
	}
	.support_point h3::before{
		width: 20vw;
		height: 2vw;
		left: calc(50% - 10vw);
	}
	.support_point ul{
		width: 88vw;
		margin-left: auto;
		margin-right: auto;
	}
	.point_wrap{
		width: 100%;
		padding-top: 6.7vw;
		margin-top: 5.3vw;
	}
	.point_wrap::before{
		border-width: 0 44vw 6.7vw 44vw;
		top: 0.12px;
	}
	.point_wrap > div {
	    width: 100%;
	    height: auto;
	    padding-bottom: 3vw;
	}
	.point_wrap > div > *{
		top: -2vw;
	}
	.point_wrap .point_number .eng{
		font-size: 4vw;
	}
	.point_wrap .point_number .eng:before, .point_wrap .point_number .eng:after {
	    width: 0.1em;
	    height: 1em;
	}
	.point_wrap .point_number .num{
		font-size: 8vw;
	}
	.point_wrap .point_name{
		font-size: 6.7vw;
		margin-top: 1.3vw;
	}
	.point_wrap .point_txt {
	    font-size: 4.3vw;
	    margin-top: 1.3vw;
	    line-height: 1.5;
	}
	.thanks{
		margin-top: 5.3vw;
	}
	.thanks > img{
		width: 65.85vw;
	}
	.thanks .thanks_ttl {
	    font-size: 5.8vw;
	    line-height: 1.4;
	}
	.thanks .thanks_ttl span{
	    font-size: 7.5vw;
	}
	.thanks .thanks_list{
		flex-wrap: wrap;
		margin-top: 2.6vw;
	}
	.thanks .thanks_list li{
		width: 42.5vw;
	}
	.thanks .thanks_list li:first-child{
		margin: 0 5vw 5.3vw;
	}
	.thanks .thanks_list li:nth-child(3){
		margin-left: 5.3vw;
	}
	.thanks .thanks_list .round{
		height: 42.5vw;
	    padding: 0 6.7vw;
	}
	.thanks .thanks_txt{
		font-size: 9.8vw;
	}
	.thanks .thanks_txt span{
		font-size: 4.8vw;
	}
	.thanks .thanks_txt sup{
	    font-size: 2.6vw;
	    margin-left: -3.6vw;
	    top: 1.6vw;
	}
	.thanks .thanks_map {
	    width: 96%;
	    margin: 4vw auto 0;
	}
	.thanks .notes{
		font-size: 2.6vw;
		line-height: 1.4;
		text-align: justify;
		margin-top: 2.6vw;
		display: block;
	}
	.thanks .notes p{
		text-indent: -1em;
		padding-left: 1em;
	}
	.support_wrap .contents{
		width: 70%;
		flex-direction: column;
		margin-top: 8vw;
	}
	.support_wrap .contents li{
		width: 100%;
	}
	.support_wrap .contents li + li{
		margin-top: 2.6vw;
	}
	.point_wrap.point_wrap_ex > div::before {
	    content: '';
	    width: 14vw;
	    height: 14vw;
	    background: url(../../img/start/plus_ico_sp.svg) center / contain no-repeat;
	    position: absolute;
	    left: 50%;
	    top: -47%;
	    transform: translateX(-50%);
	    z-index: 10;
	}
	.point_wrap.point_wrap_ex > div::after {
	    content: '';
	    width: 14vw;
	    height: 14vw;
		background: url(../../img/start/arrow_r_b_sp.svg) center / contain no-repeat;
	    position: absolute;
	    left: 50%;
	    bottom: -34%;
	    transform: translateX(-50%);
	    z-index: 10;
	}
		.point_wrap + .point_wrap{
			margin-top: 20%;
		}

}


/***************************************************************************
review_wrap
****************************************************************************/
.review_wrap .sec_txt{
	font-size: 24px;
	font-weight: 700;
}
.review_wrap .sec_txt span{
	color: #a8272c;
}
.review_box{
	background-color: #003b80;
	box-shadow: 3px 0 10px rgb(0 0 0 / 25%);
	color: #fff;
	display: flex;
	align-items: center;
	margin-top: 30px;
	padding: 10px 45px 10px 0;
}
.review_box + .review_box{
	margin-top: 10px;
}
.review_box img{
	width: 221px;
	flex-shrink: 0;
}
.review_box dl {
    margin-left: 65px;
    position: relative;
    margin-top: 2.2em;
}
.review_box dl::before{
	content: '';
	width: 46px;
	height: 36px;
	background: url(../../img/start/review_icon.svg) center / 100% no-repeat;
	position: absolute;
	top: -35px;
    left: -60px;
}
.review_ttl{
	font-size: 25px;
	font-weight: bold;
}
.review_txt{
	width: 100%;
	font-size: 16px;
	line-height: 2;
	margin-top: 20px;
}
.review_txt.ls{
	letter-spacing: 0;
}
.more_btn{
	width: 320px;
	height: 60px;
	border: 1px solid #003b80;
	font-size: 18px;
	color: #003b80;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin: 30px auto 0;
}
.more_btn::after{
	content: '';
    width: 0.6em;
    height: 0.6em;
    border-right: 2px solid #003b80;
    border-top: 2px solid #003b80;
    transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 0.3em);
    right: 0.6em;
    transition: 0.3s;
}
dd.review_name {
    text-align: right;
    margin-top: 0.5em;
}


@media all and (min-width: 768px) {
	.review_inner{
		width: 100%;
	    max-width: 1000px;
	    margin: 0 auto;
	}
	.more_btn:hover{
		background-color: #003b80;
		color: #fff;
		opacity: 1 !important;
	}
	.more_btn:hover::after{
	    border-right: 2px solid #fff;
	    border-top: 2px solid #fff;
	}
}
@media all and (min-width: 768px) and (max-width: 1063px) {
	.review_inner{
		width: 94%;
	}
	.review_box{
		margin-top: 2.8vw;
		padding: 0.9vw 4.2vw 0.9vw 0;
	}
	.review_box + .review_box{
		margin-top: 0.9vw;
	}
	.review_box img{
		width: 20.75vw;
	}
	.review_box dl{
		margin-left: 6.1vw;
	}
	.review_box dl::before{
	    width: 4.3vw;
	    height: 3.4vw;
	    left: -5.6vw;
	}
	.review_ttl{
		font-size: 2.35vw;
	}
	.review_txt{
		font-size: 1.5vw;
		margin-top: 1.8vw;
	}
	.more_btn{
		width: 30.1vw;
	    height: 5.8vw;
	    font-size: 1.65vw;
	    margin: 2.8vw auto 0;
	}
}
@media all and (max-width:767px) {
	.review_wrap .sec_txt {
	    font-size: 4.3vw;
	}
	.review_box{
		align-items: flex-start;
		margin-top: 5.3vw;
		padding: 1.3vw 5.3vw 5.3vw 0;
	}
	.review_box + .review_box{
		margin-top: 2.6vw;
	}
	.review_box img{
		width: 29.3vw;
		position: absolute;
	}
	.review_box dl{
		margin-left: 0;
		padding-top: 9.3vw;
		padding-left: 5.3vw;
	}
	.review_box dl::before{
		width: 6.1vw;
	    height: 4.85vw;
	    top: 1.6vw;
	    left: 30.7vw;
	}
	.review_ttl{
		font-size: 5vw;
    	height: 22.6vw;
		margin-left: 28vw;
	}
	.review_txt{
		font-size: 4.3vw;
		line-height: 1.5;
	}
	.more_btn{
		width: 64.5vw;
	    height: 11.2vw;
		font-size: 3.7vw;
		margin: 8vw auto 0;
	}
	.more_btn::after{
	    border-right: 1px solid #003b80;
	    border-top: 1px solid #003b80;
	}

}

/***************************************************************************
step_inner
****************************************************************************/
.step_inner img{
	margin-top: 30px;
}
.step_txt{
	width: 100%;
    font-size: 18px;
    line-height: 1.6;
    text-align: justify;
    margin-top: 5px;
    padding-left: 1%;
    padding-right: 1%;
}
@media all and (min-width: 768px) {
	.step_wrap.sec{
		padding-top: 20px;
	}
	.step_inner {
	    width: 100%;
	    max-width: 1016px;
	    margin: 0 auto;
	}
}
@media all and (min-width: 768px) and (max-width: 1063px) {
	.step_wrap.sec{
		padding-top: 1.9vw;
	}
	.step_inner {
	    width: 94%;
	    max-width: 1016px;
	    margin: 0 auto;
	}
	.step_inner img{
		max-width: initial;
		width: calc(100% + 1.6vw);
	    left: -0.8vw;
	}
	.step_txt {
	    font-size: 1.65vw;
	    margin-top: 0.5vw;
	    padding-left: 0.3vw;
    	padding-right: 0.3vw;
	}
}
@media all and (max-width:767px) {
	.step_wrap.sec{
		padding-top: 4vw;
	}
	.step_inner {
	    width: 94%;
	    margin: 0 auto;
	}
	.step_inner img{
		margin-top: 5.3vw;
	}
	.step_txt {
	    font-size: 4vw;
	    margin-top: 1.3vw;
		padding-left: 2%;
    	padding-right: 2%;
	}
}

/***************************************************************************
Media Queries
****************************************************************************/
.faq_wrap .accordion-item + .accordion-item{
	margin-top: 10px;
}
.faq_wrap .accordion-title{
	width: 100%;
	height: 80px;
	background-color: #003b80;
    box-shadow: 3px 0 10px rgb(0 0 0 / 25%);
    display: flex;
    align-items: center;
	position: relative;
	padding-left: 20px;
	cursor: pointer;
}
.faq_wrap .accordion-btn {
    position: absolute;
    top: 50%;
    right: 20px;
}
.question{
	font-size: 22px;
	color: #fff;
	display: flex;
    align-items: center;
}
.faq_wrap .accordion-content{
	display: none;
	padding-left: 20px;
	padding-top: 10px;
	padding-bottom: 20px;
}
.answer{
	font-size: 16px;
	line-height: 2;
	text-align: justify;
	display: flex;
    align-items: flex-start;
}

.answer a{
    position: relative;
}

.answer a::after {
    content: '';
    height: 0;
    border-top: 1px solid #000;
    left: 0;
    width: 100%;
    bottom: -0.2em;
    position: absolute;
}
.accordion .icon{
	width: 2em;
	height: 2em;
	border-radius: 50%;
	font-family: 'Open Sans', sans-serif;
	font-size: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-right: 15px;
}
.accordion .question .icon{
	background-color: #fff;
	color: #003b80;
}
.accordion .answer .icon{
	background-color: #a8272c;
	color: #fff;
	margin-top: 0.3em;
}
.accordion small{
	display: block;
    font-size: 12px;
    padding-left: 65px;
    margin-top: 5px;
}
@media all and (min-width: 768px) {
	.faq_wrap.sec{
		padding-top: 20px;
	}
	.faq_inner{
		width: 100%;
	    max-width: 1000px;
	    margin: 0 auto;
	}
}
@media all and (min-width: 768px) and (max-width: 1063px) {
	.faq_wrap.sec{
		padding-top: 1.9vw;
	}
	.faq_inner{
	    width: 94%;
	    max-width: 1016px;
	    margin: 0 auto;
	}
	.faq_wrap .accordion-item + .accordion-item{
		margin-top: 0.9vw;
	}
	.faq_wrap .accordion-title{
		width: 100%;
		height: 7.5vw;
		padding-left: 1.8vw;
	}
	.faq_wrap .accordion-btn {
	    right: 1.8vw;
	}
	.question{
		font-size: 2.05vw;
	}
	.faq_wrap .accordion-content{
		padding-left: 1.8vw;
		padding-top: 0.9vw;
		padding-bottom: 1.8vw;
	}
	.answer{
		font-size: 1.5vw;
	}
	.accordion .icon{
		font-size: 2.35vw;
		margin-right: 1.4vw;
	}
	.accordion small{
	    font-size: 1.1vw;
	    padding-left: 6.1vw;
	    margin-top: 0.45vw;
	}
}
@media all and (max-width:767px) {
	.faq_wrap.sec{
		padding-top: 4vw;
	}
	.faq_wrap .accordion{
		margin-top: 5.3vw;
	}
	.faq_wrap .accordion-item + .accordion-item{
		margin-top: 2.6vw;
	}
	.faq_wrap .accordion-title{
		/*height: 17.3vw;*/
		height: auto;
	    padding-left: 4vw;
	    padding-right: 17.6vw;
	    padding-top: 2vw;
	    padding-bottom: 2vw;
	}
	.question{
		font-size: 4.85vw;
		line-height: 1.27;
	}
	.faq_wrap .accordion-content{
		padding-left: 4vw;
		padding-top: 5.3vw;
		padding-bottom: 20px;
		padding-right: 5.3vw;
	}
	.answer{
		font-size: 4.3vw;
		line-height: 1.5;
	    align-items: flex-start;
	}
	.accordion .icon{
		width: 10.1vw;
	    height: 10.1vw;
	    font-size: 5vw;
		margin-right: 4vw;
	}
	.accordion small {
	    font-size: 3.2vw;
	    padding-left: 14.1vw;
	    margin-top: 1.35vw;
	}

}

/* フェード
***************************************************************/

@media all and (min-width: 768px) {
  .action.up {
	opacity: 0;
	transform: translate(0, 25px);
	transition: opacity 1000ms ease 0.1s, transform 1000ms ease 0.1s;
  }
  .action.left {
	opacity: 0;
	transform: translate(-100px, 0);
	transition: opacity 1000ms ease 0.25s, transform 1000ms ease 0.25s;
  }
  .action.right {
	opacity: 0;
	transform: translate(100px, 0);
	transition: opacity 1000ms ease 0.25s, transform 1000ms ease 0.25s;
  }
  .action.up.scrollin,
  .action.left.scrollin,
  .action.right.scrollin {
	opacity: 1;
	transform: translate(0, 0);
  }
  .action.delay1 {
	transition: opacity 1000ms ease 0.2s, transform 1000ms ease 0.2s;
  }
  .action.delay2 {
	transition: opacity 1000ms ease 0.3s, transform 1000ms ease 0.3s;
  }
  .action.delay3 {
	transition: opacity 1000ms ease 0.4s, transform 1000ms ease 0.4s;
  }
  .action.delay4 {
	transition: opacity 1000ms ease 0.5s, transform 1000ms ease 0.5s;
  }
  .action.delay5 {
	transition: opacity 1000ms ease 0.6s, transform 1000ms ease 0.6s;
  }
}

@media all and (max-width: 767px) {
  .action.up_sp {
	opacity: 0;
	transform: translate(0, 50px);
	transition: opacity 750ms ease 0.25s, transform 750ms ease 0.25s;
  }
  .action.left_sp {
	opacity: 0;
	transform: translate(-50px, 0);
	transition: opacity 750ms ease 0.25s, transform 750ms ease 0.25s;
  }
  .action.right_sp {
	opacity: 0;
	transform: translate(50px, 0);
	transition: opacity 750ms ease 0.25s, transform 750ms ease 0.25s;
  }
  .action.up_sp.scrollin,
  .action.left_sp.scrollin,
  .action.right_sp.scrollin {
	opacity: 1;
	transform: translate(0, 0);
  }
  .action.delay1_sp {
	transition: opacity 750ms ease 0.5s, transform 750ms ease 0.5s;
  }
  .action.delay2_sp {
	transition: opacity 750ms ease 0.75s, transform 750ms ease 0.75s;
  }
  .action.delay3_sp {
	transition: opacity 750ms ease 1s, transform 750ms ease 1s;
  }
  .action.delay4_sp {
	transition: opacity 750ms ease 1.25s, transform 750ms ease 1.25s;
  }
}