@charset"utf-8";
/* ============================================
*
　MV
*
===============================================*/
#top .mv{
	position: relative;
	padding-top: 56.25%;
}
#top .mv:before{
	position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    background: #00000038;
    top: 0;
    z-index: 1;
}
#top .mv h1{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: #fff;
	font-size: 4.2rem;
	z-index: 3;
	width: 100%;
	text-align: center;
	font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",HGS明朝E,メイリオ,Meiryo,serif;
	line-height: 2;
}
#top .mv p.logo{
	position: absolute;
	z-index: +1;
	left: 40px;
	top: 40px;
}
#top .mv iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height:100%;
}
/*
SP用設定
----------------------------------*/
@media only screen and (max-width: 767px){  
	#top .mv{
		position: relative;
		padding-top: 122.25%;
	}
	#top .mv iframe{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height:145%;
	}
	#top main{
		margin-top: 50%;
	}
	#top .mv h1{
		position: absolute;
		top: 70%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		color: #fff;
		font-size: 2.8rem;
		z-index: 3;
		width: 90%;
		text-align: center;
		text-shadow: -3px 1px 7px rgba(0,0,0,0.3);
	}
	#top .mv p.logo{
		display: none;
	}
}/*---------------------SP用ここまで*/



/* ============================================
*
　sec01
*
===============================================*/
#top .sec01 h2 span.un_span{
	color: #56a5d8;
}
#top .sec01 .flex_box{
	justify-content: space-between;
}
#top .sec01 .flex_box div{
	width: 303px;
	background: #e9e9e9;
	padding: 74px 20px 20px;
	box-sizing: border-box;
	border-radius: 20px;
	position: relative;
	margin-top: 63px;
}
#top .sec01 .flex_box div img{
	display: block;
    margin: 0 auto;
    position: absolute;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
#top .sec01 .flex_box div h3{
	font-size: 2.3rem;
	margin-bottom: 6px;
	padding: 0;
	line-height: 1.4;
}
#top .sec01 .flex_box div h3:before{
	display: none;
}
#top .sec01 .flex_box div:nth-child(1){
	background: #eff8f8;
}
#top .sec01 .flex_box div:nth-child(2){
	background: #fdf1f3;
}
#top .sec01 .flex_box div:nth-child(3){
	background: #fff9f0;
}
#top .sec01 .flex_box div:nth-child(1) h3{
	color: #2da4a7;
}
#top .sec01 .flex_box div:nth-child(2) h3{
	color: #e64967;
}
#top .sec01 .flex_box div:nth-child(3) h3{
	color: #ffb33b;
}
#top .sec01 .flex_box div.keireki{
	width: 100%;
	background: none;
	padding: 0;
	margin: 0;
}
#top .sec01 .flex_box div.keireki .list{
	width: 100%;
	background: none;
	padding: 0;
	margin: 0;
}
#top .sec01 .flex_box div.keireki h3{
	margin-bottom: 7px;
	color: #3f2f15;
}
#top .sec01 .flex_box div.keireki h3:before{
	position: absolute;
	background: #73b2dd;
	width: 5px;
	height: 100%;
	content: "";
	left: 0;
	top: 0;
}
#top .sec01 .flex_box div.keireki dl{
	display: flex;
	align-items: center;
	padding: 10px 0;
	border-bottom: 2px dotted #c3c3c3;
}
#top .sec01 .flex_box div.keireki dl dt{
	font-weight: 500;
	padding: 0 15px;
}
#top .sec01 .flex_box div.keireki dl dd{
	line-height: 1.5;
    margin-left: 15px;
}
/*モーダルを開くボタン*/
.modal-open{
	width: 300px!important;
    height: auto!important;
    font-weight: bold!important;
    color: #3f2f15!important;
    background: none!important;
    margin: 20px 0 0!important;
    cursor: pointer!important;
    position: relative!important;
    padding: 0 0 0 15px!important;
}
.modal-open:before{
	background-image: url(../img/arrow_bk.png);
    width: 12px;
    height: 19px;
    content: "";
    left: 0;
    position: absolute;
    top: 8px;
    background-size: 60%;
    background-repeat: no-repeat;
}
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container{
	position: fixed!important;
	top: 0!important;
	left: 0!important;
	width: 100vw!important;
	height: 100vh!important;
	text-align: center!important;
	background: rgba(0,0,0,50%)!important;
	padding: 40px 20px!important;
	overflow: auto!important;
	opacity: 0!important;
	visibility: hidden!important;
	transition: .3s!important;
	box-sizing: border-box!important;
	z-index: 10000000!important;
	border-radius: 0!important;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before{
  content: ""!important;
  display: inline-block!important;
  vertical-align: middle!important;
  height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
	opacity: 1!important;
	visibility: visible!important;
	width: 100vw!important;
	margin-top: 0!important;
}
/*モーダル枠の指定*/
.modal-body{
	position: relative!important;
	display: inline-block!important;
	vertical-align: middle!important;
	max-width: 960px!important;
	width: 100%!important;
	margin-top: 0px!important;
	background: #fff!important;
	padding: 0!important;
}
/*モーダルを閉じるボタンの指定*/
.modal-close{
	position: absolute!important;
	display: flex!important;
	align-items: center!important;
	justify-content: center!important;
	top: -68px!important;
	right: -40px!important;
	width: 40px!important;
	height: 40px!important;
	font-size: 40px!important;
	color: #fff!important;
	cursor: pointer!important;
	width: auto;!important;
	background: none!important;
	padding: 0!important;
	border-radius: 0!important;
}
/*モーダル内のコンテンツの指定*/
.modal-content{
	background: #fff!important;
	text-align: left!important;
	padding: 0px!important;
	width: auto!important;
	margin: 40px!important;
}
/*
SP用設定
----------------------------------*/
@media only screen and (max-width: 767px){  
	#top .sec01 h2 span.un_span{
		color: #56a5d8;
	}
	#top .sec01 .flex_box{
		justify-content: space-between;
	}
	#top .sec01 .flex_box div{
		width: 100%;
		background: #e9e9e9;
		padding: 74px 5% 5%;
		box-sizing: border-box;
		border-radius: 20px;
		position: relative;
		margin-top: 83px;
	}
	#top .sec01 .flex_box div img{
		display: block;
		margin: 0 auto;
		position: absolute;
		position: absolute;
		top: 0;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		width: auto;
	}
	#top .sec01 .flex_box div h3{
		font-size: 2.3rem;
		margin-bottom: 6px;
		padding: 0;
		line-height: 1.4;
	}
	#top .sec01 .flex_box div h3:before{
		display: none;
	}
	#top .sec01 .flex_box div:nth-child(1){
		background: #eff8f8;
	}
	#top .sec01 .flex_box div:nth-child(2){
		background: #fdf1f3;
	}
	#top .sec01 .flex_box div:nth-child(3){
		background: #fff9f0;
	}
	#top .sec01 .flex_box div:nth-child(1) h3{
		color: #2da4a7;
	}
	#top .sec01 .flex_box div:nth-child(2) h3{
		color: #e64967;
	}
	#top .sec01 .flex_box div:nth-child(3) h3{
		color: #ffb33b;
	}
	#top .sec01 .keireki{
		margin-top: 5%;
	}
	#top .sec01 .keireki h3{
		margin-bottom: 7px;
	}
	#top .sec01 .keireki dl{
		display: flex;
		align-items: center;
		padding: 10px 0;
		border-bottom: 2px dotted #c3c3c3;
	}
	#top .sec01 .keireki dl dt{
		font-weight: 500;
		padding: 0 15px;
		font-size:1.3rem;
	}
	#top .sec01 .keireki dl dd{
		line-height: 1.5;
		margin-left: 15px;
		font-size: 1.3rem;
	}
	#top .sec01 .flex_box div.keireki{
		background: none;
	}
	/*モーダルを開くボタン*/
	.modal-open{
		width: 100%!important;
		height: auto!important;
		font-weight: bold!important;
		color: #3f2f15!important;
		background: none!important;
		margin: 20px 0 0!important;
		cursor: pointer!important;
		position: relative!important;
		padding: 0 0 0 15px!important;
	}
	.modal-open:before{
		background-image: url(../img/arrow_bk.png);
		width: 12px;
		height: 19px;
		content: "";
		left: 0;
		position: absolute;
		top: 8px;
		background-size: 60%;
		background-repeat: no-repeat;
	}
	/*モーダル本体の指定 + モーダル外側の背景の指定*/
	.modal-container{
		position: fixed!important;
		top: 0!important;
		left: 0!important;
		width: 100vw!important;
		height:100vh !important;
		text-align: center!important;
		background: rgba(0,0,0,50%)!important;
		padding: 5%!important;
		overflow: auto!important;
		opacity: 0!important;
		visibility: hidden!important;
		transition: .3s!important;
		box-sizing: border-box!important;
		z-index: 10000000!important;
		border-radius: 0!important;
	}
	/*モーダル本体の擬似要素の指定*/
	.modal-container:before{
	  content: ""!important;
	  display: inline-block!important;
	  vertical-align: middle!important;
	  height: 100%;
	}
	/*モーダル本体に「active」クラス付与した時のスタイル*/
	.modal-container.active{
		opacity: 1!important;
		visibility: visible!important;
		width: 100vw!important;
		margin-top: 0!important;
	}
	/*モーダル枠の指定*/
	.modal-body{
		position: relative!important;
		display: inline-block!important;
		vertical-align: middle!important;
		max-width: 960px!important;
		width: 100%!important;
		margin-top: 0px!important;
		background: #fff!important;
		padding: 0!important;
		top: -90%;
		left: 50%;
		-webkit-transform: translate(-50%, 0%);
		transform: translate(-50%, 0%);
		height: 600px;
		overflow: scroll;
	}
	/*モーダルを閉じるボタンの指定*/
	.modal-close{
		display: none!important;
	}
	/*モーダル内のコンテンツの指定*/
	.modal-content{
		background: #fff!important;
		text-align: left!important;
		padding: 0px!important;
		width: auto!important;
		margin: 5%!important;
	}
}/*---------------------SP用ここまで*/



/* ============================================
*
　sec02
*
===============================================*/
#top .sec02{
	background-image: url(../../img/sec02_bg.jpg);
	background-size: cover;
	padding: 70px 0;
	margin-top: 50px;
}
#top .sec02 .ttl{
	margin-bottom: 40px;
}
#top .sec02 h2{
	font-size: 2.5rem;
	border-bottom: 2px dotted;
	padding-bottom: 15px;
	margin-bottom: 7px;
	position: relative;
	padding-top: 23px;
}
#top .sec02 h2:before{
	content: "";
	position: absolute;
	background-image: url(../../img/sec02_before.png);
	width: 30px;
	height: 12px;
	top: 8%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
#top .sec02 .flex_txt_area{
	position: relative;
	align-items: flex-start;
}
#top .sec02 .flex_txt_area01 img.main{
	margin-left: -210px;
}
#top .sec02 .flex_txt_area01 .txt_area{
	width: 525px;
    display: block;
    margin-left: 40px;
}
#top .sec02 .flex_txt_area01 .txt_area p{
	margin-top: 30px;
	font-weight: 600;
	font-size: 1.6rem;
	line-height: 2;
}
#top .sec02 .flex_txt_area01 .txt_area p span{
	font-size: 1.2rem;
}
#top .sec02 .flex_txt_area02 img.main{
	margin-right: -210px;
}
#top .sec02 .flex_txt_area02 .txt_area{
	width: 525px;
    display: block;
    margin-right: 40px;
	margin-bottom: 0;
}
#top .sec02 .flex_txt_area02 p{
	margin-top: 6px;
}
#top .sec02 .flex_txt_area02 div{
	margin-bottom: 30px;
}
#top .sec02 .flex_txt_area02 div:last-child{
	margin-bottom: 0px;
}
#top .sec02 .flex_txt_area02{
	margin-top: 60px;
}
#top .sec02 .flex_box01{
	justify-content: space-between;
}
#top .sec02 .flex_box01 div{
	width: 303px;
	background: #fff;
	border-radius: 20px;
	box-sizing: border-box;
}
#top .sec02 .flex_box01 div .txt{
	padding: 20px 30px;
}
#top .sec02 .flex_box01 div .txt p{
	font-size: 1.5rem;
	font-weight: 600;
	margin-top: 10px;
}
#top .sec02 .txt_wt{
	border-radius: 20px;
	background: #fff;
	padding: 30px;
	margin-top: 20px;
}
#top .sec02 .txt_wt p{
	font-weight: 600;
	margin-top: 10px;
}
#top .sec02 .sec02_2{
	margin-top: 70px;
}
#top .sec02 .flex_box01 div a img{
	width: 100%;
}
/*
SP用設定
----------------------------------*/
@media only screen and (max-width: 767px){  
	#top .sec02{
		background-image: url(../../img/sec02_bg.jpg);
		background-size: cover;
		padding: 10% 0;
	}
	#top .sec02 .ttl{
		margin-bottom: 10%;
	}
	#top .sec02 h2{
		font-size: 2.5rem;
		border-bottom: 2px dotted;
		padding-bottom: 15px;
		margin-bottom: 7px;
		position: relative;
		padding-top: 23px;
	}
	#top .sec02 h2:before{
		content: "";
		position: absolute;
		background-image: url(../../img/sec02_before.png);
		width: 30px;
		height: 12px;
		top: 8%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
	#top .sec02 .flex_txt_area{
		position: relative;
		align-items: flex-start;
	}
	#top .sec02 .flex_txt_area01 img.main{
		margin-left: 0px;
	}
	#top .sec02 .flex_txt_area01 img.img2{
		margin-top: 5%;
		width: 90%;
		margin: 5% auto 0;
		display: block;
	}
	#top .sec02 .flex_txt_area01 .txt_area{
		width: 100%;
		display: block;
		margin-left: 0px;
	}
	#top .sec02 .flex_txt_area01 .txt_area p{
		margin-top: 5%;
		font-weight: 600;
		font-size: 1.6rem;
		line-height: 2;
	}
	#top .sec02 .flex_txt_area01 .txt_area p span{
		font-size: 1.2rem;
	}
	#top .sec02 .flex_txt_area02 img.main{
		margin-right: 0px;
		margin-top: 5%;
	}
	#top .sec02 .flex_txt_area02 .txt_area{
		width: 100%;
		display: block;
		margin-right: 40px;
		margin-bottom: 0;
	}
	#top .sec02 .flex_txt_area02 p{
		margin-top: 6px;
	}
	#top .sec02 .flex_txt_area02 div{
		margin-bottom: 5%;
	}
	#top .sec02 .flex_txt_area02 div:last-child{
		margin-bottom: 0px;
	}
	#top .sec02 .flex_txt_area02{
		margin-top: 10%;
	}
	#top .sec02 .flex_box01{
		justify-content: space-between;
		display: flex;
		width: 670px;
	}
	#top .sec02 .flex_box01 div{
		width: 32%;
		background: #fff;
		border-radius: 20px;
		box-sizing: border-box;
		margin-bottom: 5%;
	}
	#top .sec02 .flex_box01 div .txt{
		padding: 5%;
		width: 100%;
	}
	#top .sec02 .flex_box01 div .txt p{
		font-size: 1.5rem;
		font-weight: 600;
		margin-top: 10px;
	}
	#top .sec02 .txt_wt{
		border-radius: 20px;
		background: #fff;
		padding: 30px;
		margin-top: 20px;
	}
	#top .sec02 .txt_wt p{
		font-weight: 600;
		margin-top: 10px;
	}
	#top .sec02 .sec02_2{
		margin-top: 10%;
	}
}/*---------------------SP用ここまで*/



/* ============================================
*
　sec03
*
===============================================*/
#top .sec03 h2 span.un_span{
	color: #dc992f;
}
#top .sec03 .flex_box{
	justify-content: space-between;
}
#top .sec03 .flex_box div{
	width: 218px;
}
#top .sec03 .flex_box div img{
	width: 100%;
}
#top .sec03 .flex_box div p{
	font-weight: 500;
	margin-top: 12px;
}
/*
SP用設定
----------------------------------*/
@media only screen and (max-width: 767px){  
	#top .sec03 h2 span.un_span{
		color: #dc992f;
	}
	#top .sec03 .flex_box{
		justify-content: space-between;
		display: flex;
		width: 700px;
	}
	#top .sec03 .flex_box div{
		margin-bottom: 5%;
		width: 23%;
	}
	#top .sec03 .flex_box div p{
		font-weight: 500;
		margin-top: 5%;
	}
}/*---------------------SP用ここまで*/




/* ============================================
*
　sec04
*
===============================================*/
#top .sec04{
	margin-top: 120px;
}
#top .sec04 h3{
	margin-bottom: 10px;
}
#top .sec04 h2 span.un_span{
	color: #5ec68c;
}
#top .sec04 .flex_box .flex{
	justify-content: start;
}
#top .sec04 .flex_box .flex div{
	width: 290px;
	position: relative;
	margin-right: 70px;
}
#top .sec04 .flex_box .flex div:last-child{
	margin-right: 0px;
}
#top .sec04 .flex_box .flex div:after{
	background-image: url(../../img/flow_arrow.png);
    position: absolute;
    content: "";
    width: 22px;
    height: 53px;
    top: 50%;
    right: -56px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
#top .sec04 .flex_box .flex div:last-child:after{
	display: none;
}
#top .sec04 .flex_box .flex div img{
	width: 100%;
}
#top .sec04 .flex_box2 .flex div:last-child{
	margin-right: 70px;
}
#top .sec04 .flex_box2 .flex div:nth-last-child(2):after{
	display: none;
	margin-right: 0px;
}
#top .sec04 .flex_box2 .flex div:nth-last-child(2){
	margin-right: 0px;
}
#top .sec04 .flex_box2{
	margin-top: 20px;
}
/*
SP用設定
----------------------------------*/
@media only screen and (max-width: 767px){  
	#top .sec04{
		margin-top: 10%;
	}
	#top .sec04 h3{
		margin-bottom: 10px;
	}
	#top .sec04 h2 span.un_span{
		color: #5ec68c;
	}
	#top .sec04 .flex_box .flex{
		justify-content: start;
	}
	#top .sec04 .flex_box .flex div{
		width: 100%;
		position: relative;
		margin-right: 0;
		margin-bottom: 5%;
	}
	#top .sec04 .flex_box .flex div:last-child{
		margin-right: 0px;
	}
	#top .sec04 .flex_box .flex div:after{
		background-image: url(../../img/flow_arrow.png);
		position: absolute;
		content: "";
		width: 22px;
		height: 53px;
		top: 50%;
		right: -56px;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		display: none;
	}
	#top .sec04 .flex_box .flex div:last-child:after{
		display: none;
	}
	#top .sec04 .flex_box .flex div img{
		width: 100%;
	}
	#top .sec04 .flex_box2 .flex div:last-child{
		margin-right: 0;
	}
	#top .sec04 .flex_box2 .flex div:nth-last-child(2):after{
		display: none;
		margin-right: 0px;
	}
	#top .sec04 .flex_box2 .flex div:nth-last-child(2){
		margin-right: 0px;
	}
	#top .sec04 .flex_box2{
		margin-top: 20px;
	}
}/*---------------------SP用ここまで*/




/* ============================================
*
　sec05
*
===============================================*/
#top .sec05{
	background-image: url(../../img/sec05_bg.png);
	background-size: cover;
	padding: 70px 0;
}
#top .sec05 h2 span.un_span{
	color: #e8697b;
}
#top .sec05 .flex_box{
	justify-content: space-between;
}
#top .sec05 .flex_box div{
	width: 460px;
}
#top .sec05 .flex_box div img{
	display: block;
}
#top .sec05 .flex_box div p{
	font-size: 1.4rem;
}
#top .sec05 .flex_box div strong.check{
	font-size: 1.7rem;
	font-weight: 600;
	display: block;
	margin: 15px 0 3px;
	padding-left: 30px;
	position: relative;
}
#top .sec05 .flex_box div strong.check1:before{
	background-image: url(../../img/check_01.png);
	width: 18px;
	height: 15px;
	content: "";
	position: absolute;
	top: 50%;
	left: 14px;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
#top .sec05 .flex_box div strong.check2:before{
	background-image: url(../../img/check_02.png);
	width: 18px;
	height: 15px;
	content: "";
	position: absolute;
	top: 50%;
	left: 14px;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
#top .sec05 .flex_box div strong.check3:before{
	background-image: url(../../img/check_03.png);
	width: 18px;
	height: 15px;
	content: "";
	position: absolute;
	top: 50%;
	left: 14px;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
#top .sec05 .flex_box div strong.check4:before{
	background-image: url(../../img/check_04.png);
	width: 18px;
	height: 15px;
	content: "";
	position: absolute;
	top: 50%;
	left: 14px;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
#top .sec05 .flex_boxS{
	margin-top: 30px;
}
#top .sec05 .flex_boxS strong.ttl{
	display: block;
	text-align: center;
}
#top .sec05 .flex_boxS strong.ttl1{
	background: #f19ec2;
    padding: 5px;
    color: #fff;
}
#top .sec05 .flex_boxS strong.ttl2{
	background:#65a0d8;
    padding: 5px;
    color: #fff;
}
#top .sec05 table{
	width: 100%;
	text-align: center;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 1.4rem;
	text-align: center;
	margin-top: 60px;
}
#top .sec05 table th{
	padding: 10px;
	border: solid 1px #3f2f15;
	font-weight: 600;
	text-align: center;
} 
#top .sec05 table td{
	padding: 10px;
	border: solid 1px #3f2f15;
	text-align: center;
	font-weight: 600;
} 
#top .sec05 table th.th00{
	background: #e5e5e5;
}
#top .sec05 table th.th01{
	width: 240px;
	background: #e5a139;
	color: #fff;
}
#top .sec05 table th.th02{
	width: 240px;
	background: #6cc8c5;
	color: #fff;
}
#top .sec05 table th.th03{
	width: 137px;
    background: #f19ec2;
    color: #fff;
}
#top .sec05 table th.th04{
	width: 137px;
    background: #65a0d8;
    color: #fff;
}
/*
SP用設定
----------------------------------*/
@media only screen and (max-width: 767px){  
	#top .sec05{
		background-image: url(../../img/sec05_bg.png);
		background-size: cover;
		padding: 10% 0;
	}
	#top .sec05 h2 span.un_span{
		color: #e8697b;
	}
	#top .sec05 .flex_box{
		justify-content: space-between;
	}
	#top .sec05 .flex_box div{
		width: 100%;
		margin-bottom: 5%;
	}
	#top .sec05 .flex_box div img{
		display: block;
	}
	#top .sec05 .flex_box div p{
		font-size: 1.4rem;
	}
	#top .sec05 .flex_box div strong.check{
		font-size: 1.7rem;
		font-weight: 600;
		display: block;
		margin: 15px 0 3px;
		padding-left: 30px;
		position: relative;
	}
	#top .sec05 .flex_box div strong.check1:before{
		background-image: url(../../img/check_01.png);
		width: 18px;
		height: 15px;
		content: "";
		position: absolute;
		top: 50%;
		left: 14px;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
	#top .sec05 .flex_box div strong.check2:before{
		background-image: url(../../img/check_02.png);
		width: 18px;
		height: 15px;
		content: "";
		position: absolute;
		top: 50%;
		left: 14px;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
	#top .sec05 .flex_box div strong.check3:before{
		background-image: url(../../img/check_03.png);
		width: 18px;
		height: 15px;
		content: "";
		position: absolute;
		top: 50%;
		left: 14px;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
	#top .sec05 .flex_box div strong.check4:before{
		background-image: url(../../img/check_04.png);
		width: 18px;
		height: 15px;
		content: "";
		position: absolute;
		top: 50%;
		left: 14px;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
	#top .sec05 .flex_boxS{
		margin-top: 30px;
	}
	#top .sec05 .flex_boxS strong.ttl{
		display: block;
		text-align: center;
	}
	#top .sec05 .flex_boxS strong.ttl1{
		background: #f19ec2;
		padding: 5px;
		color: #fff;
	}
	#top .sec05 .flex_boxS strong.ttl2{
		background:#65a0d8;
		padding: 5px;
		color: #fff;
	}
	#top .sec05 table.sp{
		width: 100%;
		text-align: center;
		border-collapse: collapse;
		border-spacing: 0;
		font-size: 1.4rem;
		text-align: center;
		margin-top: 5%;
		border-collapse: collapse;
		table-layout: fixed;
		width: 100%;
		display: table;
	}
	#top .sec05 table th{
		padding: 10px;
		border: solid 1px #3f2f15;
		font-weight: 600;
		text-align: center;
		width: 33%;
	} 
	#top .sec05 table td{
		padding: 10px;
		border: solid 1px #3f2f15;
		text-align: center;
		font-weight: 600;
	} 
	#top .sec05 table th.th00{
		background: #e5e5e5;
	}
	#top .sec05 table th.th01{
		background: #e5a139;
		color: #fff;
		width: 33%;
	}
	#top .sec05 table th.th02{
		background: #6cc8c5;
		color: #fff;
		width: 33%;
	}
	#top .sec05 table th.th03{
		background: #f19ec2;
		color: #fff;
		width: 33%;
	}
	#top .sec05 table th.th04{
		background: #65a0d8;
		color: #fff;
		width: 33%;
	}
}/*---------------------SP用ここまで*/




/* ============================================
*
　sec06
*
===============================================*/
#top .sec06 h2 span.un_span{
	color: #7d6eb7;
}
#top .sec06 .flow_box span{
	font-size: 1.2rem;
}
#top .sec06 .flow_box dl{
	text-align: center;
	background: #f4f4f4;
	border-radius: 15px;
	margin-bottom: 40px;
	position: relative;
}
#top .sec06 .flow_box dt{
	font-weight: 600;
	font-size: 1.6rem;
	padding: 13px 0;
	line-height: 1;
	background-image: url(../../img/purple_bg_bd.png);
	background-size: cover;
}
#top .sec06 .flow_box dd{
	font-weight: 400;
	font-size: 1.5rem;
	padding: 20px;
	line-height: 1.5;
}
#top .sec06 .flow_box dl:after{
	background-image: url(../../img/flow_arrow2.png);
	width: 45px;
	height: 25px;
	position: absolute;
	bottom:-36px;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	content: "";
}
/*
SP用設定
----------------------------------*/
@media only screen and (max-width: 767px){  
}/*---------------------SP用ここまで*/




/* ============================================
*
　sec07
*
===============================================*/
#top .sec07{
	margin-top: 120px;
}
#top .sec07 h2 span.un_span{
	color: #1e5daa;
}
#top .sec07 .flex_box{
	position: relative;
    align-items: center;
}
#top .sec07 .flex_box img{
	margin-left: -210px;
}
#top .sec07 .flex_box .txt{
	width: 525px;
    display: block;
    margin-left: 40px;
}
#top .sec07 .flex_box2 img{
	margin: 0;
}
#top .sec07 .flex_box2{
	justify-content:space-between;
	align-items: flex-start;
	margin-top: 50px;
}
#top .sec07 .flex_box2 div{
	width: 302px;
}
#top .sec07 .flex_box2 div p{
	font-size: 1.4rem;
	margin-top: 12px;
	line-height: 1.9;
}
#top .sec07 h3{
	margin-bottom: 10px;
}
/*
SP用設定
----------------------------------*/
@media only screen and (max-width: 767px){  
	#top .sec07{
		margin-top: 10%;
	}
	#top .sec07 h2 span.un_span{
		color: #1e5daa;
	}
	#top .sec07 .flex_box{
		position: relative;
		align-items: center;
	}
	#top .sec07 .flex_box img{
		margin-left: 0px;
	}
	#top .sec07 .flex_box .txt{
		width: 100%;
		display: block;
		margin-left: 0;
		margin-top: 5%;
	}
	#top .sec07 .flex_box2 img{
		margin: 0;
	}
	#top .sec07 .flex_box2{
		justify-content:space-between;
		align-items: flex-start;
		margin-top: 5%;
	}
	#top .sec07 .flex_box2 div{
		width: 100%;
		margin-top: 5%;
	}
	#top .sec07 .flex_box2 div p{
		font-size: 1.4rem;
		margin-top: 12px;
		line-height: 1.9;
	}
	#top .sec07 h3{
		margin-bottom: 10px;
	}
}/*---------------------SP用ここまで*/



/* ============================================
*
　sec08
*
===============================================*/
#top .sec08{
	background: #f6f4ee;
	padding: 70px 0;
}
#top .sec08 h2 span.un_span{
	color: #e7c923;
}
/*アコーディオン*/
#top .sec08 .acd-check{
    display: none;
}
#top .sec08 .acd-content p{
	font-size: 1.4rem;
}
#top .sec08 .acd-label{
    background-image: url(../../img/yellow_bg_bd.jpg);
    background-size: cover;
    display: block;
    margin-bottom: 1px;
    padding: 10px;
    position: relative;
    cursor: pointer;
    border-radius: 15px;
	font-size: 1.8rem;
	font-weight: 600;
	text-align: center;
	margin-bottom: 20px;
}
#top .sec08 .acd-check:checked + .acd-label{
	border-radius: 15px 15px 0px 0px;
	margin-bottom: 0px;
}
#top .sec08 .acd-label:after{
	box-sizing: border-box;
	content: '';
	display: block;
	position: absolute;
	right: 0;
	top: 0px;
	background-image: url(../../img/plus.png);
	width: 20px;
	height: 20px;
	background-repeat: no-repeat;
	top: 50%;
	right: 20px;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
#top .sec08 .acd-content{
    border: 1px solid #e7c923;
    display: block;
    height: 0;
    opacity: 0;
    padding: 0 10px;
    transition: .5s;
    visibility: hidden;
}
#top .sec08 .acd-check:checked + .acd-label:after{
    background-image: url(../../img/minus.png);
    content: '';
    position: absolute;
	width: 20px;
	height: 2px;
	background-repeat: no-repeat;
	top: 50%;
	right: 20px;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
#top .sec08 .acd-check:checked + .acd-label + .acd-content{
    height: auto;
    opacity: 1;
    padding: 20px;
    visibility: visible;
	background: #fff;
    border-radius: 0px 0px 20px 20px;
	margin-bottom: 20px;
}
/*
SP用設定
----------------------------------*/
@media only screen and (max-width: 767px){  
	#top .sec08{
		background: #f6f4ee;
		padding: 10% 0;
	}
	#top .sec08 h2 span.un_span{
		color: #e7c923;
	}
	/*アコーディオン*/
	#top .sec08 .acd-check{
		display: none;
	}
	#top .sec08 .acd-content p{
		font-size: 1.4rem;
	}
	#top .sec08 .acd-label{
		background-image: url(../../img/yellow_bg_bd.jpg);
		background-size: cover;
		display: block;
		margin-bottom: 1px;
		padding: 5% 47px 5% 5%;
		position: relative;
		cursor: pointer;
		border-radius: 15px;
		font-size: 1.5rem;
		font-weight: 600;
		text-align: center;
		margin-bottom: 20px;
	}
	#top .sec08 .acd-check:checked + .acd-label{
		border-radius: 15px 15px 0px 0px;
		margin-bottom: 0px;
	}
	#top .sec08 .acd-label:after{
		box-sizing: border-box;
		content: '';
		display: block;
		position: absolute;
		right: 0;
		top: 0px;
		background-image: url(../../img/plus.png);
		width: 20px;
		height: 20px;
		background-repeat: no-repeat;
		top: 50%;
		right: 7px;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
	#top .sec08 .acd-content{
		border: 1px solid #e7c923;
		display: block;
		height: 0;
		opacity: 0;
		padding: 0 10px;
		transition: .5s;
		visibility: hidden;
	}
	#top .sec08 .acd-check:checked + .acd-label:after{
		background-image: url(../../img/minus.png);
		content: '';
		position: absolute;
		width: 20px;
		height: 2px;
		background-repeat: no-repeat;
		top: 50%;
		right: 7px;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
	#top .sec08 .acd-check:checked + .acd-label + .acd-content{
		height: auto;
		opacity: 1;
		padding: 5%;
		visibility: visible;
		background: #fff;
		border-radius: 0px 0px 20px 20px;
		margin-bottom: 20px;
	}
}/*---------------------SP用ここまで*/
