@charset "UTF-8";
/* CSS Document */

/*template*/


/*幅640px以上に適用されるCSS（スマホ横・小型タブ縦）
------------------------------------------*/
@media print, screen and (min-width:640px) {}

/*幅768px以上に適用されるCSS（タブレット縦）
------------------------------------------*/
@media print, screen and (min-width:768px) {}

/*幅1024px以上に適用されるCSS（タブレット横・PC小型）
------------------------------------------*/
@media print, screen and (min-width:1024px) {}

/*幅1280px以上に適用されるCSS（ノートPC）
------------------------------------------*/
@media print, screen and (min-width:1280px) {}

/*幅1538px以上に適用されるCSS（大型PC）
------------------------------------------*/
@media print, screen and (min-width:1538px) {}



/*全デバイス共通のCSS（スマホ向け）
------------------------------------------*/
/* 共通設定 */

/*----------------------------------------
共通設定_common
------------------------------------------*/
*{
  box-sizing: border-box;
}

html {
	font-size: 16px;
	line-height: 1.5;
	scroll-behavior: smooth;
	box-sizing: border-box;
}


/*----------------------------------------
リンク
------------------------------------------*/
a {
	display: block;
	color:#454545;
	text-decoration: none;
}
a:hover{opacity: 0.8;}



/*----------------------------------------
デバイス on off
------------------------------------------*/

.pc {display: none;}
.sp {display: block;}

/*幅640px以上に適用されるCSS（スマホ横・小型タブ縦）
------------------------------------------*/
@media print, screen and (min-width:640px) {}

/*幅768px以上に適用されるCSS（タブレット縦）
------------------------------------------*/
@media print, screen and (min-width:768px) {}

/*幅1024px以上に適用されるCSS（タブレット横・PC小型）
------------------------------------------*/
@media print, screen and (min-width:1024px) {
	.pc {display: block;}
	.sp {display: none;}
}

/*幅1280px以上に適用されるCSS（ノートPC）
------------------------------------------*/
@media print, screen and (min-width:1280px) {}

/*幅1538px以上に適用されるCSS（大型PC）
------------------------------------------*/
@media print, screen and (min-width:1538px) {}



/*----------------------------------------
横幅
------------------------------------------*/
.content_wrap{
	width:90%;
	margin: 0 auto;
	/*background: #212020;*/
}
/*幅640px以上に適用されるCSS（スマホ横・小型タブ縦）
------------------------------------------*/
@media print, screen and (min-width:640px) {}

/*幅768px以上に適用されるCSS（タブレット縦）
------------------------------------------*/
@media print, screen and (min-width:768px) {}

/*幅1024px以上に適用されるCSS（タブレット横・PC小型）
------------------------------------------*/
@media print, screen and (min-width:1024px) {}

/*幅1280px以上に適用されるCSS（ノートPC）
------------------------------------------*/
@media print, screen and (min-width:1280px) {
	.content_wrap{
		width:1280px;
	}
}

/*幅1538px以上に適用されるCSS（大型PC）
------------------------------------------*/
@media print, screen and (min-width:1538px) {}



/*----------------------------------------
seciton
------------------------------------------*/
section{
	padding: 15% 0;
}

/*幅640px以上に適用されるCSS（スマホ横・小型タブ縦）
------------------------------------------*/
@media print, screen and (min-width:640px) {}

/*幅768px以上に適用されるCSS（タブレット縦）
------------------------------------------*/
@media print, screen and (min-width:768px) {
	section{
		padding: 100px 0;
	}
}

/*幅1024px以上に適用されるCSS（タブレット横・PC小型）
------------------------------------------*/
@media print, screen and (min-width:1024px) {
	section{
		padding: 100px 0;
	}
}

/*幅1280px以上に適用されるCSS（ノートPC）
------------------------------------------*/
@media print, screen and (min-width:1280px) {}

/*幅1538px以上に適用されるCSS（大型PC）
------------------------------------------*/
@media print, screen and (min-width:1538px) {}



/*----------------------------------------
h2
------------------------------------------*/
.title{
	margin-bottom: 10%;
}
h2{
	font-size: 3em;
	margin: 0 0 5px;
	font-weight: bold;
	text-align: center;
	line-height: 1;
	color: #ffffff;
}
h3{
	font-size: 1.2em;
	font-weight: bold;
	text-align: center;
	color: #ffffff;
}

/*幅640px以上に適用されるCSS（スマホ横・小型タブ縦）
------------------------------------------*/
@media print, screen and (min-width:640px) {
	.title{
		margin-bottom: 5%;
	}
}

/*幅768px以上に適用されるCSS（タブレット縦）
------------------------------------------*/
@media print, screen and (min-width:768px) {}

/*幅1024px以上に適用されるCSS（タブレット横・PC小型）
------------------------------------------*/
@media print, screen and (min-width:1024px) {}

/*幅1280px以上に適用されるCSS（ノートPC）
------------------------------------------*/
@media print, screen and (min-width:1280px) {
	.title{
		margin-bottom: 50px;
	}
}

/*幅1538px以上に適用されるCSS（大型PC）
------------------------------------------*/
@media print, screen and (min-width:1538px) {}



/*----------------------------------------
header
------------------------------------------*/
header {
	width: 100%;
	height: 60px;
	background: rgba(18,46,95,0.5);
	position: fixed;
	top: 0;
	z-index: 9999;
}
header .header_wrap{
	width: 100%;
	padding: 0 4%;
	margin: 0 auto;
}
header .header-logo-menu{
	display: flex;
	flex-direction: row;
	margin: 15px 0 0 0;
}
.logo-area{ 
	width:70vw;
}
.logo-area img{
	width: 150px;
}

/*幅640px以上に適用されるCSS（スマホ横・小型タブ縦）
------------------------------------------*/
@media print, screen and (min-width:640px) {}

/*幅768px以上に適用されるCSS（タブレット縦）
------------------------------------------*/
@media print, screen and (min-width:768px) {}

/*幅1024px以上に適用されるCSS（タブレット横・PC小型）
------------------------------------------*/
@media print, screen and (min-width:1024px) {
	
	.logo-area{ 
		width:25vw;
	}
	nav{
		width:75vw;	
	}
	nav ul{
		display: flex;
		flex-direction: row;
		margin-top: 5px;
	}
	nav ul li{
		margin-right:20px;
	}
	nav ul li:last-child{
		margin-right:0;
	}
	nav ul li a{
		width: 100%;
		font-size: 1em;
		color: #ffffff;
	}
}

/*幅1280px以上に適用されるCSS（ノートPC）
------------------------------------------*/
@media print, screen and (min-width:1280px) {
	header .header_wrap{
		width: 1280px;
	}
	.logo-area{ 
		width:500px;
	}
	nav{
		width:780px;	
	}
}

/*幅1538px以上に適用されるCSS（大型PC）
------------------------------------------*/
@media print, screen and (min-width:1538px) {}



/*----------------------------------------
FV
------------------------------------------*/
.fv{
	position: relative;
	width: 100vw;
	height: 100vh;
	background-image: url("../images/fv.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.fv .fv_txt{
	padding: 40vh 0 0 0;
}
.fv p{
	color: #FFFFFF;
	font-size: 4.5em;
	text-align: center;
}
.fv ul{
	width: 90%;
    margin: 0 auto;
	color: #ffffff;
	text-align: center;
}
.fv ul li{
	font-size: 1.7em;
	font-weight: bold;
}
.fv ul li.fv_campaign{
	padding: 2%;
	margin-bottom: 2%;
	font-size: 1.2em;
	font-weight: bold;
	background: yellow;
	color: #122E5F;
}

/*幅640px以上に適用されるCSS（スマホ横・小型タブ縦）
------------------------------------------*/
@media print, screen and (min-width:640px) {
	.fv .fv_txt{
		padding: 35vh 0 0 0;
	}
	.fv p{
		font-size: 8.5em;
	}
	.fv ul li{
		font-size: 2.5em;
	}
	.fv ul li.fv_campaign{
		padding: 1%;
		font-size: 1.8em;
	}
}

/*幅768px以上に適用されるCSS（タブレット縦）
------------------------------------------*/
@media print, screen and (min-width:768px) {}

/*幅1024px以上に適用されるCSS（タブレット横・PC小型）
------------------------------------------*/
@media print, screen and (min-width:1024px) {
	.fv .fv_txt{
		padding: 25vh 0 0 0;
	}
	.fv p{
		font-size: 12em;
	}
	.fv ul{
		width: 80%;
	}
	.fv ul li{
		font-size: 3em;
	}
	.fv ul li.fv_campaign{
		margin-bottom: 1%;
		font-size: 2.5em;
	}
}

/*幅1280px以上に適用されるCSS（ノートPC）
------------------------------------------*/
@media print, screen and (min-width:1280px) {
	.fv .fv_txt{
		padding: 24vh 0 0 0;
	}
	.fv ul{
		width: 70%;
	}
}

/*幅1538px以上に適用されるCSS（大型PC）
------------------------------------------*/
@media print, screen and (min-width:1538px) {
	
	.fv ul{
		width: 50%;
	}
}


/*----------------------------------------
Campaign
------------------------------------------*/
.campaign{}

.campaign h2, .campaign h3{
	color: #122E5F;
}

.campaign h4{
	font-weight: bold;
}
.campaign div.camp_box{
	margin-bottom: 10%;
}
.campaign div.camp_box:last-child{
	margin-bottom: 0;
}

/*camp_point01*/
.campaign .camp_point01{
	padding: 5%;
	text-align: center;
	background: yellow;
}
.campaign .camp_point01 h4{
	font-size: 1.35em;
	color: #ff0000;
}
.campaign .camp_point01 .cp01_txt{
	font-size: 1.3em;
	font-weight: bold;
	color: #122E5F;
}

/*camp_point02*/
.campaign .camp_point02 h4{
	font-size: 1.1em;
	color: #122E5F;
	text-align: center;
	text-decoration: underline;
}
.campaign .camp_point02 ul{
	margin: 5% 0;
	font-weight: bold;
}
.campaign .camp_point02 p{
	text-align: justify;
}

/*camp_point03*/
.campaign .camp_point03 h4{
	margin-bottom: 5%;
	font-size: 1.8em;
	color: #122E5F;
	text-align: center;
}
.campaign .camp_point03 h4 span{
	display: block;
	text-decoration: underline;
	color: #ff0000;
}
.campaign .camp_point03 p{
	text-align: justify;
	font-weight: bold;
	font-size: 1.2em;
}

/*camp_point04*/
.campaign .camp_point04 h4{
	padding: 3% 2%;
	margin-bottom: 2%;
	font-size: 1.5em;
	color: #ff0000;
	text-align: center;
	background: yellow;
	line-height: 1.2;
}

/*camp_point05*/
.campaign .camp_point05 h4{
	margin-bottom: 2%;
	font-size: 1.3em;
	color: #122E5F;
	text-align: center;
}
.campaign .camp_point05 table{
	font-size: 1.5em;
	line-height: 1.2;
}
.campaign .camp_point05 table th{
	font-weight: bold;
}
.campaign .camp_point05 table td{
	font-weight: bold;
}
.campaign .camp_point05 table span{
	font-size: .7em;
	font-weight: normal;
}


/*幅640px以上に適用されるCSS（スマホ横・小型タブ縦）
------------------------------------------*/
@media print, screen and (min-width:640px) {
	
	.campaign div.camp_box{
		margin-bottom: 5%;
	}

	/*camp_point01*/
	.campaign .camp_point01 h4{
		font-size: 2em;
	}
	.campaign .camp_point01 .cp01_txt{
		font-size: 2em;
	}

	/*camp_point02*/
	.campaign .camp_point02 h4{
		font-size: 1.5em;
	}
	.campaign .camp_point02 ul{
		width: 80%;
		margin: 5% auto;
		font-size: 1.2em;
	}
	.campaign .camp_point02 p{
		font-size: 1.2em;
		text-align: center;
	}

	/*camp_point03*/
	.campaign .camp_point03 h4{
		font-size: 2.3em;
	}
	.campaign .camp_point03 h4 span{
		display: block;
	}
	.campaign .camp_point03 p{
		text-align: center;
		font-size: 1.5em;
	}

	/*camp_point04*/
	.campaign .camp_point04 h4{
		font-size: 2em;
	}
	.campaign .camp_point04 p{
		text-align: center;
	}

	/*camp_point05*/
	.campaign .camp_point05 h4{
		margin-bottom: 2%;
		font-size: 1.3em;
	}
	.campaign .camp_point05 table{
		font-size: 1.1em;
		line-height: 1.2;
	}
	.campaign .camp_point05 table span{
		font-size: .8em;
	}
}

/*幅768px以上に適用されるCSS（タブレット縦）
------------------------------------------*/
@media print, screen and (min-width:768px) {

	/*camp_point02*/
	.campaign .camp_point02 ul{
		width: 60%;
	}

}

/*幅1024px以上に適用されるCSS（タブレット横・PC小型）
------------------------------------------*/
@media print, screen and (min-width:1024px) {
	
	.campaign div.camp_box{
		margin-bottom: 50px;
	}

	/*camp_point01*/
	.campaign .camp_point01{
		width: 800px;
		margin: 0 auto;
		padding: 20px;
	}

	/*camp_point02*/
	.campaign .camp_point02 h4{
		font-size: 2em;
	}
	.campaign .camp_point02 ul{
		width: 540px;
		margin: 30px auto;
		font-size: 1.5em;
	}

	/*camp_point03*/
	.campaign .camp_point03 h4{
		margin-bottom: 30px;
	}
	.campaign .camp_point03 p{
		font-size: 1.8em;
	}

	/*camp_point04*/
	.campaign .camp_point04 h4{
		width: 800px;
		margin: 0 auto 10px auto;
		padding: 20px 10px;
	}

	/*camp_point05*/
	.campaign .camp_point05 table{
		width: 800px;
		margin: 0 auto;
	}
	.campaign .camp_point05 table th{
		padding: 15px 0;
	}

}

/*幅1280px以上に適用されるCSS（ノートPC）
------------------------------------------*/
@media print, screen and (min-width:1280px) {}

/*幅1538px以上に適用されるCSS（大型PC）
------------------------------------------*/
@media print, screen and (min-width:1538px) {}



/*----------------------------------------
Service
------------------------------------------*/
.service{
	background: #122E5F;
}
.service p.lead{
	text-align: justify;
	color: #ffffff;
}
.service p.copy01{
	margin: 10% 0;
	font-size: 1.4em;
	font-weight: bold;
	color: #ffffff;
	text-decoration: underline;
	text-align: center;
}
.service p.copy02{
	font-size: 1em;
	font-weight: bold;
	color: #ffffff;
	text-align: center;
}

/*チェックリスト*/
.service ul.service_list01{
	padding: 5%;
	margin-bottom: 5%;
	background-color: #ffffff;
}
.service ul.service_list01 li{
	margin-bottom: 3%;
}
.service ul.service_list01 li:last-child{
	margin-bottom: 0;
}

/*チェックマーク*/
.checkmark000{
	padding-left:24px;
	position:relative;
}
.checkmark000:before,
.checkmark000:after{
	content:"";
	display:block;
	position:absolute;
}
.checkmark000:before{
	width:16px;
	height:16px;
	background:#000000;
    	border:1px solid #000000;
	left:0;top:2px;
}
.checkmark000:after{
	border-left:2px solid #ffffff;
	border-bottom:2px solid #ffffff;
	width:6px;
	height:3px;
	-webkit-transform:rotate(-45deg);
	transform:rotate(-45deg);
	left:5px;
	top:7px;
}

/*幅640px以上に適用されるCSS（スマホ横・小型タブ縦）
------------------------------------------*/
@media print, screen and (min-width:640px) {
	
	.service p.lead{
		text-align: center;
	}
	.service p.copy01{
		margin: 5% 0;
		font-size: 2em;
	}
	.service p.copy02{
		font-size: 1.5em;
	}

}

/*幅768px以上に適用されるCSS（タブレット縦）
------------------------------------------*/
@media print, screen and (min-width:768px) {
	
	/*イラスト*/
	.service ul.service_list02 li p{
		font-size: 1.1em;
	}
	
	/*チェックマーク*/
	.checkmark000:before{
		width:20px;
		height:20px;
		left:0;
		top:2px;
	}
	.checkmark000:after{
		width:8px;
		height:4px;
		left:6px;
		top:8px;
	}
}

/*幅1024px以上に適用されるCSS（タブレット横・PC小型）
------------------------------------------*/
@media print, screen and (min-width:1024px) {
	
	/*チェックリスト*/
	.service ul.service_list01{
		padding: 25px 50px;
	}
	.service ul.service_list01 li{
		margin-bottom: 15px;
		font-size: 1.3em;
	}
	
	/*チェックマーク*/
	.checkmark000:before{
		left:0;
		top:5px;
	}
	.checkmark000:after{
		left:6px;
		top:12px;
	}
}

/*幅1280px以上に適用されるCSS（ノートPC）
------------------------------------------*/
@media print, screen and (min-width:1280px) {

	.service p.copy01{
		margin: 50px 0;
		font-size: 3em;
	}
	.service p.copy02{
		font-size: 2em;
	}

	/*チェックリスト*/
	.service ul.service_list01{
		width: 800px;
		padding: 25px 50px;
		margin: 0 auto 50px auto;
	}
	.service ul.service_list01 li{
		margin-bottom: 15px;
		font-size: 1.5em;
	}

}

/*幅1538px以上に適用されるCSS（大型PC）
------------------------------------------*/
@media print, screen and (min-width:1538px) {}



/*----------------------------------------
6つの特徴
------------------------------------------*/
.features{
	background: #3876AC;
}
.features ul{
	display: flex;
	flex-wrap: wrap;
}
.features ul li{
	width: 48%;
	margin-right: 4%;
	margin-bottom: 5%;
}
.features ul li:nth-child(2n){
	margin-right: 0;
}
.features ul li img{
	margin-bottom: 2%;
}
.features ul li p{
	color: #ffffff;
	text-align: center;
}

/*幅640px以上に適用されるCSS（スマホ横・小型タブ縦）
------------------------------------------*/
@media print, screen and (min-width:640px) {

	.features ul li{
		width: 30.6%;
		margin-bottom: 2%;
	}
	.features ul li:nth-child(2n){
		margin-right: 4%;/*打ち消し*/
	}
	.features ul li:nth-child(3n){
		margin-right: 0;
	}
}

/*幅768px以上に適用されるCSS（タブレット縦）
------------------------------------------*/
@media print, screen and (min-width:768px) {}

/*幅1024px以上に適用されるCSS（タブレット横・PC小型）
------------------------------------------*/
@media print, screen and (min-width:1024px) {}

/*幅1280px以上に適用されるCSS（ノートPC）
------------------------------------------*/
@media print, screen and (min-width:1280px) {

	.features ul{
		width: 990px;
		margin: 0 auto;
	}
}

/*幅1538px以上に適用されるCSS（大型PC）
------------------------------------------*/
@media print, screen and (min-width:1538px) {}



/*----------------------------------------
補助金とは
------------------------------------------*/
.subsidy{
	background-image: url("../images/bg.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.subsidy h2, .subsidy h3{
	color: #172062;
}
.subsidy .lead{
	margin-bottom: 10%;
	text-align: justify;
	color: #202124;	
}
.subsidy .copy03{
	font-size: 1.8em;
	text-align: center;
	font-weight: bold;
	line-height: 1.3;
	color: #122E5F;
}
.subsidy .copy03 span{
	font-size: 1.8em;
}
.subsidy .copy04{
	font-size: 1.5em;
	text-align: center;
	font-weight: bold;
	color: #122E5F;
}
.subsidy p.copy02{
	font-size: 1.4em;
	font-weight: bold;
	color: #122E5F;
	text-decoration: underline;
	text-align: center;
}
.subsidy .copy05{
	font-size: .7em;
	text-align: center;
}
.subsidy .copy04 span{
	font-size: .5em;
}

/*table*/
.chart{
	padding: 4%;
	margin: 10% 0;
	background: #ffffff;
}
.chart p{
	margin-bottom: 2%;
	font-size: .8em;
	text-align: center;
}
.chart table, td, th {
	border: 1px solid #595959;
	border-collapse: collapse;
	text-align: center;
	font-size: .8em;
	padding: 2.5%;
}


/*幅640px以上に適用されるCSS（スマホ横・小型タブ縦）
------------------------------------------*/
@media print, screen and (min-width:640px) {
	.subsidy{}
	.subsidy h2, .subsidy h3{}
	.subsidy .lead{
		margin-bottom: 5%;
		text-align: center;
	}
	.subsidy .copy03{
		font-size: 2em;
	}
	.subsidy .copy03 span{
		font-size: 2.5em;
	}
	.subsidy .copy04{
		font-size: 2em;
	}
	.subsidy p.copy02{
		font-size: 1.8em;
	}

	/*table*/
	.chart{
		margin: 5% 0;
	}
	.chart p{
		font-size: 1em;
	}
	.chart　table , td, th {
		font-size: .9em;
		padding: 1%;
	}
}

/*幅768px以上に適用されるCSS（タブレット縦）
------------------------------------------*/
@media print, screen and (min-width:768px) {}

/*幅1024px以上に適用されるCSS（タブレット横・PC小型）
------------------------------------------*/
@media print, screen and (min-width:1024px) {

	.subsidy .lead{
		margin-bottom: 5%;
	}

	/*table*/
	.chart{
		padding: 2% 4%;
		margin: 2% auto;
	}
	.chart p{
		margin-bottom: 10px;
	}
}

/*幅1280px以上に適用されるCSS（ノートPC）
------------------------------------------*/
@media print, screen and (min-width:1280px) {

	/*table*/
	.chart{
		width: 990px;
	}
}

/*幅1538px以上に適用されるCSS（大型PC）
------------------------------------------*/
@media print, screen and (min-width:1538px) {}



/*----------------------------------------
お申し込みの流れ
------------------------------------------*/
.flow h2, .flow h3{
	color: #172062;
}
.flow .lead{
	margin-bottom: 10%;
	text-align: justify;
	color: #202124;	
}

/*step*/
.step_list{}
.step_list dl{
	position: relative;
	margin-bottom: 12%;
	color: #ffffff;
	text-align: justify;
}
.step_list dl::after{
	content: url("../images/arrow.svg");
	display: inline-block;
	width: 30px;
	height: auto;
	position: absolute;
	top: 105%;
	right: 47%;
}
.step_list dl:last-child::after{
	content: "";
}
.step_list dt{
	padding: 4%;
	font-size: 1.1em;
	font-weight: bold;
	background: #122E5F;
}
.step_list dd{
	padding: 4%;
	background: #A9BDE0;
}
.step_list dd.step01{
	background: #1A98A7;
}

/*吹き出し*/
.btn-copy {
  font-size: 1.1rem;
  font-weight: bold;
  position: relative;
  margin-bottom: .2em;
  text-align: center;
}
.btn-copy:before {
  margin-right: 1rem;
  content: '＼';
}
.btn-copy:after {
  margin-left: 1rem;
  content: '／';
}

/*btn*/
a.btn--yellow {
	color: #000;
  	background-color: #fff100;
}
a.btn--yellow:hover {
  	color: #000;
  	background: #fff20a;
}
a.btn--yellow.btn--cubic {
  	border-bottom: 5px solid #ccc100;
}
a.btn--yellow.btn--cubic:hover {
  	margin-top: 3px;
  	border-bottom: 2px solid #ccc100;
}
a.btn-c {
  	font-size: 1.3rem;
  	position: relative;
  	padding: 1rem 2.5rem 1rem 2.5rem;
	border-radius: 100vh;
	font-weight: bold;
}
a.btn-c i.fa {
  	margin-right: 1rem;
}
a.btn-c:before {
  	font-family: 'Font Awesome 5 Free';
  	font-size: 1.5rem;
  	line-height: 1;
  	position: absolute;
  	top: calc(50% - .7rem);
  	right: 1rem;
	margin: 0;
  	padding: 0;
  	content: '\f054';
}


/*幅640px以上に適用されるCSS（スマホ横・小型タブ縦）
------------------------------------------*/
@media print, screen and (min-width:640px) {
	.flow .lead{
		margin-bottom: 5%;
		text-align: center;
	}
	/*step*/
	.step_list{
		width: 90%;
		margin: 0 auto;
	}
	.step_list dl{
		margin-bottom: 40px;
	}
	.step_list dt{
		padding: 15px;
	}
	.step_list dd{
		padding: 15px;
	}
	
	/*btn*/
	a.btn-c {
		padding: 1.5rem 2.5rem 1.5rem 2.5rem;
		width: 350px;
		margin: 0 auto;
	}
}

/*幅768px以上に適用されるCSS（タブレット縦）
------------------------------------------*/
@media print, screen and (min-width:768px) {

	/*step*/
	.step_list{
		width: 100%;
		margin: 0 auto;
	}
	.step_list dl{
		margin-bottom: 40px;
		display: flex;
		flex-wrap: wrap;
	}
	.step_list dt{
		padding: 28px 15px 15px 15px;
		width: 40%;
		height: 80px;
	}
	.step_list dd{
		width: 60%;
		height: 80px;
	}
	.step_list dd.step01, .step_list dd.step04{
		padding: 28px 15px 15px 15px;
	}
}

/*幅1024px以上に適用されるCSS（タブレット横・PC小型）
------------------------------------------*/
@media print, screen and (min-width:1024px) {

	/*step*/
	.step_list{
		width: 90%;
	}
}

/*幅1280px以上に適用されるCSS（ノートPC）
------------------------------------------*/
@media print, screen and (min-width:1280px) {
	.flow .lead{
		margin-bottom: 50px;
	}
	/*step*/
	.step_list{
		width: 990px;
	}
	.step_list dt{
		padding: 22px 15px 15px 40px;
		font-size: 1.5em;
	}
	.step_list dd{
		font-size: 1.2em;
	}
	/*吹き出し*/
	.btn-copy {
	  font-size: 1.5rem;
	  margin-bottom: .5em;
	}
	/*btn*/
	a.btn-c {
		font-size: 1.8rem;
		width: 450px;
	}
}

/*幅1538px以上に適用されるCSS（大型PC）
------------------------------------------*/
@media print, screen and (min-width:1538px) {}



/*----------------------------------------
その他サービス
------------------------------------------*/
.another{
	background: #122E5F;
}

/*イラスト*/
.another ul.service_list02{
	display: flex;
	flex-wrap: wrap;
}
.another p.lead{
	color: #ffffff;
	margin-bottom: 5%;
}
.another ul.service_list02 li{
	width: 47.5%;
	margin-right: 5%;
	margin-bottom: 5%;
	padding: 3%;
	background-color: #ffffff;
}
.another ul.service_list02 li:nth-child(2n){
	margin-right: 0;
}
.another ul.service_list02 li p{
	font-size: .7em;
	font-weight: bold;
	text-align: center;
	color: #202124;	
}

/*幅640px以上に適用されるCSS（スマホ横・小型タブ縦）
------------------------------------------*/
@media print, screen and (min-width:640px) {
	
	.another p.lead{
		text-align: center;
	}
	
	/*イラスト*/
	.another ul.service_list02 li{
		width: 23.5%;
		margin-right: 2%;
		padding: 1%;
	}
	.another ul.service_list02 li:nth-child(2n){
		margin-right: 2%;
	}
	.another ul.service_list02 li:nth-child(4n){
		margin-right: 0;
	}
	.another ul.service_list02 li p{
		font-size: .6em;
	}
}

/*幅768px以上に適用されるCSS（タブレット縦）
------------------------------------------*/
@media print, screen and (min-width:768px) {
	
	.another ul.service_list02 li p{
		font-size: .7em;
	}
}

/*幅1024px以上に適用されるCSS（タブレット横・PC小型）
------------------------------------------*/
@media print, screen and (min-width:1024px) {
	/*イラスト*/
	.another ul.service_list02 li p{
		font-size: 1em;
	}
}

/*幅1280px以上に適用されるCSS（ノートPC）
------------------------------------------*/
@media print, screen and (min-width:1280px) {
	/*イラスト*/
	.another ul.service_list02{
		margin: 0 auto 50px auto;
		width: 90%;
	}
}

/*幅1538px以上に適用されるCSS（大型PC）
------------------------------------------*/
@media print, screen and (min-width:1538px) {}


/*----------------------------------------
footer_common
------------------------------------------*/
.footer{
	padding: 10% 0 5% 0;
	background: #202124;
	color: #ffffff;
}
.footer img{
	width: 40vw;
}
.footer .link_list_box{
	margin: 5% 0;
	font-size: 0.9em;
}
.footer .f_nav{
	margin: 0 0 6%;
}
.footer .f_nav a{
	margin: 0 0 2%;
	font-size: 0.8em;
	color: #ffffff;
}

/*幅640px以上に適用されるCSS（スマホ横・小型タブ縦）
------------------------------------------*/
@media print, screen and (min-width:640px) {
	.footer{
		padding: 5% 0 5% 0;
	}
	.footer img{
		width: 30vw;
	}
	.footer .link_list_box{
		margin: 3% 0;
		font-size: 1em;
	}
	.footer .f_nav{
		margin: 0 0 6%;
	}
	.footer .f_nav a{
		margin: 0 0 1%;
	}
}

/*幅768px以上に適用されるCSS（タブレット縦）
------------------------------------------*/
@media print, screen and (min-width:768px) {
	.footer{
		padding: 40px 0 40px 0;
	}
	.footer img{
		width: 210px;
	}
	.footer .link_list_box{
		margin: 15px 0;
	}
	.footer .f_nav{
		margin: 0 0 30px;
		display: flex;
		flex-wrap: wrap;
	}
	.footer .f_nav a{
		margin: 0 20px 0 0;
	}
}

/*幅1024px以上に適用されるCSS（タブレット横・PC小型）
------------------------------------------*/
@media print, screen and (min-width:1024px) {
	.footer{
		padding: 40px 0 40px 0;
	}
	.footer img{
		float: left;
		margin-right: 20px;
		margin-bottom: 40px;
	}
	.footer .link_list_box{
		font-size: 1em;
		margin: 0 0 0 0;
		float: left;
		overflow: hidden;
	}
	.footer .f_nav{
		margin: 20px 0 0;
	}
	.footer .f_nav a{
		font-size: 1em;
	}
	.footer .res_copy{
		font-size: 1.2em;
		clear: both;
	}
}

/*幅1280px以上に適用されるCSS（ノートPC）
------------------------------------------*/
@media print, screen and (min-width:1280px) {
	.footer .content_wrap{
		padding: 0 4%;
	}
}

/*幅1538px以上に適用されるCSS（大型PC）
------------------------------------------*/
@media print, screen and (min-width:1538px) {}



/*----------------------------------------
申し込みボタン
------------------------------------------*/

.page-top {
	position: fixed;
	bottom: 20px;
	right: 10px;
	transition: 0.5s;
	z-index: 9997;
}

.page-top_link {
	position: relative;
	display: block;
	width: 100px;
	height: 100px;
	border-radius: 9999px;
	background: #0ca057;
	box-shadow: 4px 4px 5px -2px rgba(0, 0, 0, 0.4);
}

.page-top_link a{
	padding: 33% 0 0 0;
	line-height: 1.2;
	text-align: center;
	font-weight: bold;
	color: #ffffff;
}

.page-top_link a:before {
	content: "";
	display: block;
	position: absolute;
	top: 80%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	width: 8px;
	height: 8px;
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
}

/*footerまでスクロールしたら消す*/
.is-hidden {
	visibility: hidden;
	opacity: 0;
}

/*幅640px以上に適用されるCSS（スマホ横・小型タブ縦）
------------------------------------------*/
@media print, screen and (min-width:640px) {}

/*幅768px以上に適用されるCSS（タブレット縦）
------------------------------------------*/
@media print, screen and (min-width:768px) {}

/*幅1024px以上に適用されるCSS（タブレット横・PC小型）
------------------------------------------*/
@media print, screen and (min-width:1024px) {}

/*幅1280px以上に適用されるCSS（ノートPC）
------------------------------------------*/
@media print, screen and (min-width:1280px) {
	.page-top {
		bottom: 40px;
		right: 40px;
		transition: 0.5s;
		z-index: 9997;
	}
	.page-top_link {
		width: 150px;
		height: 150px;
		font-size: 1.2em;
	}
}

/*幅1538px以上に適用されるCSS（大型PC）
------------------------------------------*/
@media print, screen and (min-width:1538px) {}


/*----------------------------------------
 プライバシーポリシー
------------------------------------------*/

/* FV */
#privacy .fv{
	position: relative;
	width: 100vw;
	height: 30vh;
	background-image: url("../images/privacy_fv.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
#privacy .fv .fv_txt{
	padding: 14vh 0 0 0;
}
#privacy .fv .fv_txt h2{
	font-size: 2em;
}
#privacy .fv .fv_txt h3{
	font-size: 1.2em;
}

/*項目テキスト*/
#privacy .pri_lead{
	margin-bottom: 30px;
	text-align: justify;
}
#privacy .pri_list{}

#privacy .pri_list dl{
	margin-bottom: 30px;
}
#privacy .pri_list dl dt{
	margin-bottom: 15px;
	font-size: 1.2em;
	font-weight: bold;
	color: #122E5F;
}
#privacy .pri_list dl dd{}

#privacy .pri_list dl dd ul{
	width: 100%;
    padding: 0 0 0 13px;
}
#privacy .pri_list dl dd ul li{
	margin: 15px 0 0 0;
	text-indent: -13px;
	text-align: justify;
}
#privacy .pri_list dl dd .text_right{
	margin: 15px 0;
	text-align: right;
}

/*幅640px以上に適用されるCSS（スマホ横・小型タブ縦）
------------------------------------------*/
@media print, screen and (min-width:640px) {}

/*幅768px以上に適用されるCSS（タブレット縦）
------------------------------------------*/
@media print, screen and (min-width:768px) {}

/*幅1024px以上に適用されるCSS（タブレット横・PC小型）
------------------------------------------*/
@media print, screen and (min-width:1024px) {}

/*幅1280px以上に適用されるCSS（ノートPC）
------------------------------------------*/
@media print, screen and (min-width:1280px) {}

/*幅1538px以上に適用されるCSS（大型PC）
------------------------------------------*/
@media print, screen and (min-width:1538px) {}


