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


@font-face{
	
font-family: "Noto Sans JP", sans-serif,"Roboto";
font-weight: 100,200,300,400,500,600;
-webkit-font-feature-settings: "palt";
font-feature-settings: "palt";
font-style: normal;
}

/* <uniquifier>: Use a unique and descriptive class name
 <weight>: Use a value from 100 to 900*/
.roboto-thin {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.roboto-light {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-medium {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.roboto-black {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.roboto-thin-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.roboto-light-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.roboto-regular-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.roboto-medium-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.roboto-bold-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.roboto-black-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
}
 

.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100,200,300,400,500,600;
  font-style: normal;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
}


*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html{
	-webkit-box-sizing: border-box;
    box-sizing: border-box;
	font-size:62.5%; /*16px×62.5%=10px*/
}

body{
	color: #707070;
    background-color: #FFFFFF;	
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	letter-spacing: 0.025rem;
}

li{
	list-style: none;
}

img{
	max-width: 100%;
	height: auto;
	width: auto;
}

a{
	color: #ffffff;
	text-decoration: none;

}

p{
	text-align: center;
	letter-spacing: 0.13em;
	
}

.btn,
a.btn,
button.btn {
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: left;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;

}

.en{
 text-transform: uppercase;
 font-family: "Roboto", sans-serif;
 font-weight: 400;
}

.font15{
	font-size: 1.5rem;
	padding-top: 2px;
}

.mt8{
	margin-top: 8px;
}

.mt64{
	margin-top: 64px;
}

.mt88{
	margin-top: 88px;
}

.title{
	text-align: center;
}

.fadeIn{
	opacity: 0;
	transition: all 2s; 
}

.fadeIn.animated{
	opacity: 1;
}


/*---------------------
header
---------------------*/
.header{
	position: fixed;
	height: 100px;
	width: 100%;
	z-index: 10;
	display: flex;
	padding: 15px 10px 15px 30px;
	align-items: center;
	justify-content: space-between;
	transition: 0.3s;
	

}


.header_logo{
	cursor: pointer;
	max-width: 170px;
	height: auto;
	display: none;
	
}




/* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
header.scroll-nav {
 background-color: #fff;
 border-bottom: 1px solid #F5A200;
  
}

header.scroll-nav a {
  display: block;
  
}









/* 「scroll-navクラス」がヘッダーについたとき */
header.scroll-nav {
  

}






.tab{
	display: flex;
	align-items: flex-end;
}



.tab-outer{
	padding: 0 30px;
	
}

.tab-outer-line{
	display: none;
}

.tab-inner{
	cursor: pointer;
	font-size: 1.5rem;
	font-weight: 500;
	color: #4E4E4E;
	position: relative;
	letter-spacing: 0.2rem;
}

a.tab-inner:hover{
	color: #F5A200;
	transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

a.tab-inner::after{
	/*border-bottom: 1px solid #F5A200;*/
	position: absolute;
	left: 0;
	bottom: -4px;
	display: block;
	content: "";
	width: 0%;
	height: 2px;
	background: #F5A200;
	transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
	
}

a.tab-inner:hover::after{
	width: 100%;
}

/*---------------------
header-sub
---------------------*/

.header-sub{
	position: fixed;
	-moz-position: fixed;
	-webkit-position: fixed;
	-ms-position: fixed;
	-o-position: fixed;
	background: #fff;
	height: 100px;
	width: 100%;
	z-index: 1;
	border-bottom: 1px solid #F5A200;
	display: flex;
	padding: 15px 10px 15px 30px;
	align-items: center;
	justify-content: space-between;
	transition: 0.3s;

}

.header_logo-sub{
	max-width: 170px;
	height: auto;
	cursor: pointer;
}




hr{
	color:  #F5A200;
	border-width:1px 0 0 0; /*線の太さの指定*/
	border-color: #F5A200;
}

/*---------------------
FV
---------------------*/
.fv-visual{
	position: relative;
	display:table;
	max-width: 100%;
	height: 100vh;
	background: url("../images/top/FV.png");
	background-size: cover;
    background-position: center;
	z-index:-1;

}

.fv-box{
	text-align: center;
	display:table-cell;
  	vertical-align:middle;
	width: 100vw;
	
}

.fv-logo{
	margin-bottom: 5%; 
	
	}





.fv-text{
	color: #F5A200;
	font-size: 2rem;
	font-weight: 300;
	letter-spacing: 0.15em;
	line-height: 2;
	margin-bottom: 32px;
}

.fv-br{
		display: none;
	}

.fv-br2{
		display: none;
	}

.fv-mainlogo{
	width: 17vh;
    
	
}


/*---------------------
phirosophy
---------------------*/

.fullsize_wrap{
	background: #fff;
	display: relative;
	padding: 104px 60px;
	z-index: 98;
	
}

.phirosophy-box{
	display: flex;
	justify-content:center;
	align-items: flex-start;
	width: 980px;
	max-width: 100%;
	margin: 0 auto;
}


.p-photo{
	width: 35%;
	height: auto;
	max-width: 35%;
}

.p-text-box{
	width: 58%;
	max-width: calc(100% - 56px);
	margin: 0 0 0 56px;
	
}


.title-en{
	text-align: left;
	font-size: 2rem;
	letter-spacing: 0.2rem;
	color: #F5A200;
	margin-top: 100px;
}

.p-title{
	text-align: left;
	font-size: 4.8rem;
	font-weight: 400;
	letter-spacing: 0.08em;
	color: #F5A200;
	margin-bottom: 56px;
	
}

.p-title-br{
	display: none;
}



.p-text2{
	
	text-align: justify;
	font-size: 1.8rem;
	font-weight: 400;
	letter-spacing: .1em;
    line-height: 2.2;
	margin: 0 auto 40px;
	
}

.p-text-br{
		display: none;
	}

.sp-img {
	display: none;
}



a.btn--red.btn--cubic {
  border-bottom: 5px solid #F5A200;
}

a.btn--red.btn--cubic:hover {
  margin-top: 3px;
  border-bottom: 2px solid #F5A200;
}

a.btn--radius {
  border-radius: 100vh;
}

.fa-position-right {
  position: absolute;
  top: calc(50% - .5em);
  right: 2rem;
}

.btn-box{
	text-align: center;
	margin: 0 auto;
}


.yellow{
	background: #FFD800;
	text-align: left;
}

.lite-yellow{
	background: #FDF4D5;
}





/*---------------------
notice
---------------------*/

.notice-box{
	background: #F5A200;
	display: flex;
	padding: 40px 56px;
	width: 1050px;
	max-width: 100%;
	border-radius: 30px;
	margin: 0 auto;
	align-items: center;
	justify-content:center;
}

.n-title-box{
	position: relative;
	height: auto;
	width: 85%;
	max-width: 530px;
	padding-right: 48px;
}

.n-title{
	color: #fff;
	text-align: left;
	font-size: 4rem;
	font-weight: 500;
	letter-spacing: 0.3rem;
	line-height: 1.5em;
	margin-bottom: 16px;
}

.n-text{
	text-align: justify;
	color: #000;
	font-size: 1.7rem;
	letter-spacing: .08em;
    line-height: 2.2;
	
}

.n-img-box{
	width: 45%;
	max-width: 45%;
}

.n-img{
	width: 100%;
	max-width: 100%;
	height: auto;
	
}




.site-inner-2{
	width: 1100px;
	max-width: 100%;
	margin: 0 auto;
}

.point-cover{
	position: relative;

	
}

.point{
	z-index: 5;
	position: absolute;
	left: 81px;
	top: -16px;
	
	
}

.point-text{
	width: 200px;
	padding: 10px 14px;
	border-radius: 10px;
	background: #FFD800;
	color: #000;
	font-size: 1.8rem;
}

.polygon{
	position: absolute;
	left: 24px;
	bottom: -12px;
}






/*---------------------
worries
---------------------*/

.sb{
	position: relative;
	width: 100%;
	max-width: 100%;
	padding: 140px 70px 70px;
	
}

.bg-y{
	background: #FDF4D5;
	
}

.sb-wrapper-box{
	background: #FDF4D5;
	margin-top: 160px;
	padding: 0px 70px 0px 70px;
}


.sb-box{
	display: flex;
	justify-content: center;
	
}



.sb-box2{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin: 0 auto;
	width: 1200px;
    max-width: 100%;
}

.sb-service-box{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin: 0 auto;
	width: 1200px;
    max-width: 100%;
}

div.sb-box2.top-100{
	top: -100px;
	position: relative;
	
}

.section-title{
	font-size: 3.5rem;
	color: #F5A200;
	font-weight: 500;
	letter-spacing: 0.3rem;
	margin: 0 16px;
	padding-bottom: 3px;
}

.fadein_a {
  opacity : 0;
  transition : all 1s;
}
  
.fadein_a.active{
  opacity : 1;
}

.sb_inner{
	/*margin: 0px 48px 0px 48px;*/
	width: 30%;
	max-width: 30%;
	position: relative;
}

.sb-photo{
	width: 85%;
	max-width: 85%;
	height: auto;
	margin: 0 auto;
}

.step-text{
	font-size: 1.7rem;
	text-align: justify;
	letter-spacing: 0.08em;
	line-height: 2;
	ont-weight: 400;
	margin: 0 auto;
}


p.step-text.verA{
	width: 90%;
	max-width: 90%;

}

.btn-center{
	text-align: center;
	padding-bottom: 56px;
}

a.m-btn{
	background: #F5A200;
    font-size: 2.5rem;
	color: #fff;
	padding: 1.6rem 3rem;
	letter-spacing: 0.1em;
	border: 5px solid #fff;
	transition: .4s cubic-bezier(0.37, 0, 0.63, 1);
	top: -20px;
}

a.m-btn:hover{
	background: #fff;
  	color: #F5A200;
  	letter-spacing: 0.15em;
	border: 5px solid #F5A200;
}

.sukima{
	padding: 0 0 0 16px;
}

/*---------------------
service
---------------------*/

.h-title{
	text-align: center;
	font-size: 3.5rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
	color: #F5A200;
	margin-bottom: 8px;
}

.h-title_en{
	font-size: 1.8rem;
	letter-spacing: 0.2rem;
	color: #F5A200;
	margin-bottom: 64px;
}

.fadein_b {
  opacity : 0;
  transition : all 1s;
}
  
.fadein_b.active{
  opacity : 1;
}

.h-inner{
	width: 22%;
	max-width: 22%;
	text-align: center;
	
}

.h-inner_text{
	font-size: 2.5rem;
	font-weight: 500;
	color: #F5A200;
}

a.s-btn{
	background: #FFD800;
    font-size: 2rem;
	color: #4E4E4E;
	padding: 1.6rem 5rem 1.6rem 3rem ;
	letter-spacing: 0.1em;
	transition: .2s cubic-bezier(0.37, 0, 0.63, 1);
	
}

a.s-btn:hover{
  	letter-spacing: 0.15em;
}

.attention{
	font-size: 1.3rem;
}


/*---------------------
consultation 
---------------------*/

.step{
	width: 80px;
	color: #fff;
	font-size: 1.3rem;
	padding: 4px 8px;
	background: #F5A200;
	margin: 0 auto;
	border-radius: 100vh;

}

.jc-sb{
	justify-content: space-between;
	
}

.fadein_c {
  opacity : 0;
  transition : all 1s;
}
  
.fadein_c.active{
  opacity : 1;
}


.step-inner{
	width: 29.5%;
    max-width: 29.5%;
}

.step-title{
   color: #F5A200;
   font-size: 2.5rem;
   font-weight: 500;
   margin: 24px 0;
	
}

p.step-text.verB{
	max-width: 300px;
	
	
}

.next-box{
	position: relative;
	margin: 10% auto auto;
}

.next{
	color: #F5A200;
	font-size: 32px;
	margin: 0 20px;
}


/*---------------------
sub-service
---------------------*/
.flame{
	padding: 200px 110px 200px;
	align-content: center;
    align-items: center;
	position: relative;
}

.s-line{
	display: flex;
	justify-content: center;
	margin-bottom: 56px;
}


.s-line-inner{
	align-items: center;
	width: 160px;
	height: 60px;
	margin: 0 16px;
	text-align: center;
	cursor: pointer;
	z-index: 0;
	
}

a.s-line-inner>p:hover{
	background: #F5A200;
  	color: #fff;
  	letter-spacing: 0.2em;
	margin-bottom: 3px;
	transition : 0.3s;
	
}


.s-name{
	color: #F5A200;
	font-size: 1.6rem;
	background: #fff;
	border-radius: 100vh;
	border: 2px solid #F5A200;
	padding: 4px 8px;
}

.triangle{
	width: 14px;
	max-width: 14px;
	height: auto;
}

.s-contents{
	position: relative;
	width: 950px;
	max-width: 100%;
	background: #fff;
	margin: 0 auto 104px;
	padding: 72px;
	border-radius: 3vh;
}

.s-1{
	display: flex;
	width: 100%;
	max-width: 100%;
	margin-bottom: 40px;
	align-items: center;
	
	
}

.s-image{
	width: 250px;
	max-width: calc(100% - 56px);
	height: auto;
	padding: 0 56px 0 0;
	
}

.s-text-box{
	max-width:80%;
}

p.s-title{
	text-align: justify;
	font-size: 4rem;
	font-weight: 500;
	color:  #F5A200;
	margin-bottom: 24px;
}
	
.s-text{
	text-align: justify;
	font-size:1.6rem;
	line-height: 1.9;
	font-feature-settings: 'palt' 1;
	
}

.price{
	color:  #F5A200;
	font-weight: 300;
	text-align: left;
	margin-bottom: 8px;
	padding: 0 0 0 24px;
}

.price-box{
	position: relative;
}

.price-inner-top{
	border-top:1px solid #F5A200;
	
}

.price-inner{
	display: flex;
	padding: 24px 24px 24px 24px;
	font-size: 1.5rem;
	border-bottom:1px solid #F5A200;

}

.pb{
	width: 226px;
	max-width: 226px;
	text-align: left;
	font-weight: 400;
}

.p-text{
	text-align: justify;
	width: calc(100% - 226px);
	max-width: calc(100% - 226px);
}

.attend{
	font-size: 1.3rem;
}

div.s-contents.s2{
	margin: 0 auto 180px;
	padding: 32px 72px 32px 72px;
	border-radius: 3vh;
	position: relative;
	background: #FFFBEF;
}

.s2-box{
	display: flex;
	justify-content: center;
}

p.s2-title{
	color:  #F5A200;
	font-weight: 500;
	font-size: 1.8rem;
	padding-right: 80px;
}




.b-copy-box{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 24px;
}

.wa{
	width: 14px;
	height: auto;
	
}

.b-copy{
	color: #F5A200;
	font-weight: 500;
	font-size: 2rem;
	padding: 0 16px;
	letter-spacing: 0.15em;
}


a.service-btn{
	background: #F5A200;
	font-size: 2.5rem;
	color: #fff;
	padding: 1.6rem 3rem;
	letter-spacing: 0.1em;
	border: 5px solid #fff;
	transition: .4s cubic-bezier(0.37, 0, 0.63, 1);
	
}

a.service-btn:hover{
	background: #fff;
  	color: #F5A200;
  	letter-spacing: 0.15em;
	border: 5px solid #F5A200;
}

.center{
	text-align: center;
	
}

/*---------------------
sub-about
---------------------*/

.top-fadeIn{
	display: none;
}

.a-box{
	width: 1000px;
	max-width: calc(100% - 50px);
	height: auto;
	margin: 0 auto 160px;
	position: relative;
	text-align: center;
}

.a-box:last-of-type{
	margin: 0 auto 0px;
	
}

.a-title{
	display: inline;
	font-size: 3.5rem;
	font-weight: 400;
	letter-spacing: 0.5rem;
	line-height: 2.2em;
	padding: 8px;
	border-radius: 5px;
	background: linear-gradient(transparent 0%, #fff 0%);
  	-webkit-box-decoration-break: clone;
  	box-decoration-break: clone;
}


.a-inner{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 80px;
}




.a-a{
	width: 45%;
	max-width: calc(45% - 10px);
	height: auto;
	padding: 0 50px 0 0;

}

.logo-box{
	width: 750px;
	margin-top: 48px;
	margin: 0 auto;
}

.logo-inner{
	width: 100%;
	margin-top: 48px;
	
	
}


.about-logo{
	width: 750px;
	max-width: 100%;
	border-radius: 30px;
	background: #FFFBEF;
	
	
}


.about-logo-img{
	width: 160px;
	max-width: 160px;
	height: auto;
	margin: 64px auto;
	
	
	
}

.about-textline>p{
	text-align: justify;
}

.logo-title{
	font-size: 3.5rem;
	font-weight: 500;
	color: #F5A200;
	margin: 32px 0;
	
}



.a-b{
	width: 65%;
	padding: 0 0 0 50px;
}

.a-b-2{
	width: 38%;
	max-width: calc(38% - 10px);
	height: auto;
	padding: 0 0 0 50px;
	
}


.a-b>p{
	text-align: justify;
}

.a-inner-title{
	font-size: 2.5rem;
	color: #F5A200;
}

.a-inner-name{
	font-size: 5rem;
	font-weight: 500;
}

.a-inner-en{
	font-size: 1.5rem;
	letter-spacing: 0.1em;
	margin-bottom: 40px;
}

.a-inner-text{
	font-size: 1.6rem;
	line-height: 2em;
	font-feature-settings: 'palt' 1;
	text-align: justify;
	
}

div.list-box.first{
    border-top: 1px solid #F5A200;
	
}

.list-box{
	justify-content: flex-start;
	align-items: flex-start;
    border-bottom: 1px solid #F5A200;
	display: flex;
	padding: 30px 30px 30px 30px;
	width: 100%;
    max-width: 100%;
}

.list-title{
	color: #F5A200;
	width: 150px;
    max-width:200px;
    justify-content: flex-start;
	text-align: left;
	font-size: 1.5rem;
	font-feature-settings: 'palt' 1;
}

.list-text{
	width: 100%;
	max-width: calc(100% - 150px);
}

.list-text>p{
	text-align: left;
	font-size: 1.5rem;
	font-feature-settings: 'palt' 1;
}

.p16{
	padding-bottom: 16px;
}

/*---------------------
sub-partner
---------------------*/
.partner{
	width: 900px;
	max-width: 100%;
	background: #fff;
	border-radius: 30px;
	margin: 0 auto 72px;
	padding: 48px;	
	position: relative;
}

.partner:last-of-type{
	margin: 0 auto ;
}

.p-box{
	display: flex;
	align-items: flex-start;
}

.partner-photo{
	width: 350px;
	height: 240px;
	object-fit: cover;
	margin: 0 40px 0 0 ;
}

.p-box-inner>p{
	text-align: justify;
}



.p-1{
	font-size: 1.4rem;
	color: #F5A200;

}

.p-2{
	font-size: 2.8rem;
	letter-spacing: 0.1em;
	font-weight: 500;
	color: #F5A200;
	margin: 0 0 8px;
}

.p-3{
	font-size:1.8rem;
	margin-bottom:  16px;
}

.p-4{
	font-size: 1.5rem;
	line-height: 1.8;
	letter-spacing: 0.12em;
}

.another-link{
	color: #F5A200;
	font-size: 1.4rem;
	background: #fff;
	border-radius: 100vh;
	border: 1px solid #F5A200;
	padding: 0.6rem 1.3rem;
	margin: 16px 0 0 0;
	transition: 0.3s;
}

.another-link:hover{
	color: #fff;
	background: #F5A200;
}


.next-2{
	padding-left: 5px;
}


/*---------------------
sub-contact 
---------------------*/


.formrun-box{
		padding-top: 176px;
        padding-bottom: 100px;
		background: #FDF4D5;
		z-index: 100;
	}

.line-btn{
	width: 300px;
	margin: 80px auto 0 ;
	text-align: center;
	border-bottom: 1px solid #06C755;
	border-top: 1px solid #06C755;
	padding: 40px 0;
}

a.line{
	width: 190px;
	display: block;
	margin: 0 auto;
	padding: 6px;
	justify-content: center;
	align-items: center;
	background: #fff;
	border-radius: 20px;
	border: 1px solid #06C755;
	margin-top: 16px;
	transition: 0.2s;
	font-size: 1.4rem;
	color: #06C755;
	letter-spacing: 0.06em;
}

a.line:hover{
	background: #06C755;
	color: #fff;
}

.line>p{
	letter-spacing: 0.06em;
}



.line-sukima{
	padding-left: 4px;
}




/*---------------------
footer 
---------------------*/



.footer{
	position: relative;
	text-align: center;
	width: 100%;
	padding: 100px 0 8px 0 ;
}


.footer.sub{
	background: #FDF4D5;
}




.footer-tab-outer{
	max-width: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	margin: 0 auto 48px;
	
}

.footer-tab-outer>li{
	padding: 0 40px;
}

a.footer-tab-inner{
	font-size: 1.4rem;
	color: #4E4E4E;
	letter-spacing: 0.1em;
	cursor: pointer;
	position: relative;
}


a.footer-tab-inner:hover{
	color: #F5A200;
	transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

a.footer-tab-inner::after{
	position: absolute;
	left: 0;
	bottom: -4px;
	display: block;
	content: "";
	width: 0%;
	height: 2px;
	background: #F5A200;
	transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
	
}

a.footer-tab-inner:hover::after{
	width: 100%;
}

.footer-line{
	color: #4E4E4E;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: auto;
	padding: 8px 0;
	border-bottom: 1px solid #06C755;
	border-top: 1px solid #06C755;
	margin: 0 auto;
	margin-bottom: 80px;
	
}

.footer-line>p{
	font-size: 1.4rem;
	letter-spacing: 0.08em;
	
}


.footer-line:hover{
	color: #06C755;
	
}

.footer-line>img{
	width: 30px;
	height: auto;
	margin-right: 8px;
	
}

.ft-logo{
	max-width: 250px;
	width: 250px;
	margin-bottom: 16px;
}

.copy{
	font-size: 1rem;
	
}




@media screen and (max-width: 1235px) {
	
/*---------------------
top-FV
---------------------*/	
	.p-photo{
    margin-right: 0px;
    max-width: 100%;
	}
	
/*---------------------
top-notice
---------------------*/
	
	.n-title{
	font-size: 3.5rem;
	margin-bottom: 16px;
	
}
	
	

}


@media screen and (max-width: 1180px) {
	
/*---------------------
top-notice
---------------------*/
	
	.notice-box{
		width: 1000px;
		max-width: 100%;
	}
	
	.n-title{
	font-size: 3rem;
	margin-bottom: 16px;
}
	
	.n-text{
		line-height: 2;
	}
	
	.pc-br{
		display: none;
	}
	
/*---------------------
top-worries
---------------------*/
	.sb-box2{
	width: 1000px;
	max-width: 100%;
	}
	
/*---------------------
top-service
---------------------*/
	
	.sb-service-box{
	width: 1000px;
	max-width: 100%;
	}
	
/*---------------------

---------------------*/
	
	
	.step-title{
		font-size: 2.3rem;
	}
	

	
}


@media screen and (max-width: 1050px) {
	
/*---------------------
top-FV
---------------------*/
	
	.fv-logo{
		margin-bottom: 8%;
	}
	
	
/*---------------------
top-notice
---------------------*/
	
	.n-title{
	font-size: 2.7rem;
}
	
/*---------------------
sub-about
---------------------*/
	
	.flame{
		padding: 200px 0 200px 0;
	}
	
	.a-box{
		width: 750px;
		max-width: 80%;
		margin: 0 auto 160px;
	}
	
	.a-title{
		font-size: 3rem;
	}
	
	.a-inner{
		display: block;
		max-width: 100%;
		margin: 48px auto 0;
	}
	
	.a-a{
		width: 80%;
		max-width: 80%;
		padding: 0 0 0 0;
		margin-bottom: 40px;
	}
	
	.a-b{
		width: 100%;
		padding: 0 0 0 0;
	}
	
	.about-textline>p{
		text-align: center;
	}
	
	.logo-box{
		width: 750px;
		max-width: 100%;
	}
	
	
/*---------------------
sub-service
---------------------*/	
	
	.s-contents{
		width: 86%;
		max-width: 86%;
		border-radius:1.5vh;
	}
	
	
	div.s-contents.s2{
		border-radius:1.5vh;
	}
	
	
	
/*---------------------
sub-partner
---------------------*/	
	
	
	.partner{
		width: 86%;
		max-width: 86%;
		padding: 40px;
	}
	
/*---------------------
common
---------------------*/
	.step-title{
		font-size: 2rem;
	}
	
	.step-text{
		line-height: 1.8;
	}
	
	
	
}


@media screen and (max-width: 960px) {
	
	
/*---------------------
top-profile
---------------------*/	
	
	.phirosophy-box{
		display: block;
		text-align: center;
		margin: 0 auto;
		padding: 0 60px;
	}
	
	.title-en{
		margin-top: 0;
	}
	
	.p-photo{
		display: none;
		
	}
	
	.p-text-box{
		width: 100%;
		max-width: 100%;
		margin: 0 auto;
	}
	
	.title-en{
		font-size: 1.4rem;
	}
	
	.p-title{
		font-size: 4rem;
		
	}
	
	
	.p-title-br{
		display: block;
	}
	
	.p-text-br{
		display: block;
	}
	
	
	
	.sp-img.sp-top-photo{
		display:block;
		width: 70%;
		max-width: 70%;
		height: auto;
		margin-left: -60px;
		margin-bottom: 40px;
	}
	
	.sp-img.sp-top-illust{
		display: inline-block;
		width: 100%;
        max-width: 100%;
		position: relative;
		text-align: right;
		margin: 0 0 40px;
	}
	
	.sp-top-illust-inner{
		width: 60%;
		max-width: 60%;
		height: auto;
		
		right: 0;
		
	}
	
	
/*---------------------
top-notice
---------------------*/
	.fullsize_wrap{
		padding: 88px 0 ;
	}
	
	
	.point{
		left: 15%;
	}
	
	.notice-box{
		display: block;
		width: 80%;
		max-width: 80%;
		border-radius: 20px;
		
	}
	
	
	.n-title-box{
		width: 100%;
		max-width: 100%;
		padding-right: 0;
		
	}
	
	.n-title{
	font-size: 3.5rem;
	text-align: justify;
	margin-top: 16px;
}
	
	
	.n-text{
		font-size: 1.8rem;
	}
	
	
	.n-img-box{
		width: 100%;
		max-width: 100%;
		position: relative;
		text-align: center;
		margin-top: 16px;
	}
	
	.n-img{
		width: 80%;
		max-width: 80%;
		padding-left: 0 auto;
		
	}
	
	
/*---------------------
top-worrie
---------------------*/
	
	.sb-box{
		padding: 64px 0;
		background: #FDF4D5;
	}
	
	
	div.sb-box2.top-100{
		top: 0px;
	}
	.sb-wrapper-box{
		margin-top: 0;
		padding: 0  0 40px 0;
	}
	
	.sb-box2{
		position: relative;
		width: 80%;
     	max-width: 80%;
		margin-bottom: 40px;
	}
	
	.sp{
		display: block;
		
	}
	
	.sb_inner{
		display: flex;
		width: 100%;
		max-width: 100%;
		align-items: center;
		justify-content: flex-end;
		margin: 0 0 40px 0;
	}
	
	.sb-photo{
		margin-right: 40px;
		width: 30%;
		height: auto;
		max-width: 30%;
		
	}
	
	.sb-text-box{
		width: 70%;
		max-width: 70%;
	}
	
	
	.step-title{
		font-size: 2.6rem;
		text-align: left;
		margin: 0 0 16px 0;
	}
	
	.step-text{
		margin: 0 0;
	}
	
	p.step-text.verA{
		width: 100%;
		max-width: 100%;
	}
	
	
/*---------------------
top-service
---------------------*/	
	
	.sb-service-box{
		flex-wrap: wrap;
		justify-content: space-around;
		width: 80%;
		max-width: 80%;
	}
	
	.h-inner{
		width: 40%;
		max-width: 40%;
		padding-bottom: 64px;
	}
	
	.mt64{
		margin-top: 0;
	}
	.attention{
		margin-top: 0;
	}
	
/*---------------------
top-consultation
---------------------*/
	
	.step-inner{
		width: 100%;
		max-width: 100%;
		display: flex;
		align-items: center;
		padding: 32px;
		border-radius: 20px;
		background: #FFFBEF;
	}
	
	.step-inner>img{
		width: 50%;
		max-width: 50%;
		height: auto;
		padding-right: 40px;
		
	}
	
	.step{
		margin: 0 0 16px 0;
	}
	
	p.step-text.verB{
		width: 100%;
		max-width: 100%;
	}
	
	
	.next-box{
		margin: 32px 0 ;
		position: relative;
		text-align: center;
	}
	
	.next{
		margin: 0 auto;
		transform: rotate(90deg)
	}
	
/*---------------------
sub-partner
---------------------*/	
	
	.partner-photo{
	width: 300px;
	height: 250px;	
	}
	
}



@media screen and (max-width: 900px) {
	
/*---------------------
header
---------------------*/
	
	.header{
		padding: 0;
		
	}
	
	header.scroll-nav{
		border-bottom: 0px;
		background:rgba(0,0,0,0.0);
		
	}
	
	header.scroll-nav img {
		display: none;
	}

	.header-sub{
		background:rgba(0,0,0,0.0);
		border-bottom: 0px ;
		padding: 0;
		height: 0;

	}
	
	.header_logo-sub{
		display: none;
	}
	

hr{
	display: none;
}
	
	.menu{
		padding: 0;
		
	}
	
	.header-logo{
		display: none;
	}
	
	#g-nav{
		/*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
	  	position:fixed;
	  	z-index: -999;
	  	opacity: 0;/*はじめは透過0*/
		/*ナビの位置と形状*/
	  	top:0;
	  	width:100%;
		
	  	background:#FDF4D5;
		/*動き*/
	  	transition: all 0.3s;
	}

		#g-nav.panelactive{
	  opacity: 1;
	  z-index:999;
	  height: 100vh;
	}

	/*ナビゲーション*/
	#g-nav ul {
		display: none;
		/*ナビゲーション天地中央揃え*/
		position: absolute;
		z-index: 999;
		top:50%;
		left:50%;
		transform: translate(-50%,-50%);
	}


	#g-nav.panelactive ul {
		display: block;
	}

	/*リストのレイアウト設定*/

	#g-nav li{
	  list-style: none;
		text-align: center; 
	}
	
	.tab-outer{
		padding: 0 0 40px;
	}
	
	.tab-outer-line{
	display: block;
	}
	
	.sp-line{
		margin: 0 0 0 0;
	}

	
	#g-nav li:last-child {
		padding: 0 0 0 0;
		
	}


	#g-nav li a{
	  color: #F5A200;
	  text-decoration: none;
	  padding:0px;
	  display: block;

	}
	
	.tab-inner{
		font-size: 1.8rem;
	}

/*========= ボタンのためのCSS ===============*/
	.openbtn1{
	  position:fixed;
	  z-index: 9999;/*ボタンを最前面に*/
	  top: 13px;
	  right: 13px;
	  cursor: pointer;
	  width: 50px;
	  height:50px;
	}


		/*×に変化*/  
	.openbtn1 span{
		display: inline-block;
		transition: all .4s;
		position: absolute;
		left: 9px;
		height: 2px;
		border-radius: 2px;
		background-color: #666;
		width: 32px;
	  }


	.openbtn1 span:nth-of-type(1) {
	  top: 10px;
	}

	.openbtn1 span:nth-of-type(2) {
	  top: 23px;
	}

	.openbtn1 span:nth-of-type(3) {
	  top: 36px;
	}
	
	.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 9px;
    transform: translateY(6px) rotate(-45deg);
    width: 32px;
	}

	.openbtn1.active span:nth-of-type(2) {
	  opacity: 0;
	}

	.openbtn1.active span:nth-of-type(3){
		top: 30px;
		left: 9px;
		transform: translateY(-6px) rotate(45deg);
		width: 32px;
	}
	
	
	
/*---------------------
top-service
---------------------*/	
	
	.attention{
		width: 80%;
		max-width: 80%;
		margin: 0 auto;
		line-height: 1.8em;
	}
	
/*---------------------
sub
---------------------*/
	.flame{
		padding: 100px 0 100px;
	}
	
	
/*---------------------
sub-service
---------------------*/
	
	.s-line{
		width: 85%;
		max-width: 85%;
		flex-wrap : wrap;
		justify-content:center;
		margin: 0 auto;
		
	}
	
	.s-line-inner{
		margin: 0 24px 16px ;
		width: 35%;
		height: 70px;
	}
	
	.s-name{
		padding: 8px;
	}
	
	.s-contents{
		padding: 56px 64px 64px;
	}
	
	div.s-contents.s2{
	margin: 0 auto 100px;
	}
	
	
	.s-1{
		display: block;
		position: relative;
		text-align: center;
	}
	
	.s-image{
		padding: 0 0 0 0;
		width: 130px;
		max-width: 130px;
	}
	
	.s-text-box{
		width: 100%;
		max-width: 100%;
	}
	
	
	p.s-title{
		text-align: center;
		font-size: 3rem;
		margin: 16px 0;
	}
	
/*---------------------
sub-partner
---------------------*/	
	
	.partner-photo{
	width: 250px;
	height: 250px;	
	}
	
	.p-1{
		font-size: 1.3rem;
	}
	
	
	.p-2{
		font-size: 2.5rem;
	}
	
	
/*---------------------
sub-contact
---------------------*/
	
	.formrun-box{
		padding: 76px 0 100px 0;
	}
	
/*---------------------
footer
---------------------*/	
	.footer-tab-outer>li{
		padding: 0 16px;
	}	
	

}

@media screen and (max-width: 800px) {

.partner-photo{
	width: 250px;
	height: 280px;	
	}
	
}






@media screen and (max-width: 700px) {
	
/*---------------------
FV
---------------------*/
	
	.fv-br{
		display: block;
	}
	
/*---------------------
top-worries
---------------------*/
	 .worries_wrap{
		padding: 0px 0 88px 0;
	}
	
	.section-title{
		font-size: 3rem;
		margin: 0 8px;
		padding-bottom: 0;
	}
	
	.wa-worries{
		width: 18px;
		height: auto;
	}
	
	.step-title{
		font-size: 2.3rem;
		margin: 0 0 8px 0;
	}
	
	.step-text{
		font-size: 1.6rem;
		line-height: 2;
	}
	
	
/*---------------------
top-service
---------------------*/
	
	.h-inner_text{
		font-size: 2.3rem;
	}
	
/*---------------------
sub-service
---------------------*/
	.price{
		padding: 0 0 0 0;
	}
	
	.price-inner{
		display: block;
		padding: 24px 0;
	}
	
	.pb{
		width: 100%;
		max-width: 100%;
		padding: 0 0 6px;
	}
	
	.p-text{
		width: 100%;
		max-width: 100%;
	}
	
	div.s-contents.s2{
		padding: 24px;
		margin:  0 auto 80px;
	}
	
	.s2-box{
		display: block;
	}
	
	p.s2-title{
		padding: 0 0 8px;
	}
	
	.s2-text{
		font-size: 1.6rem;
	}
	
/*---------------------
sub-partner
---------------------*/
	.p-box{
		display: block;
	
	}
	
	.partner-photo{
		width: 100%;
		max-width: 100%;
		margin: 0;
	}
	
	.p-box-inner{
		margin-top: 24px;
	}
	
	.p-box-inner>p{
		text-align: center;
	}
	
	.p-box-inner>p:last-of-type{
		text-align: justify;
		letter-spacing: 0.08em;
	}
	
	.link-btn{
		position: relative;
		text-align: center;
	}
	
	
	
	
	
}

@media screen and (max-width: 600px) {
	
/*---------------------
top-phirosophy
---------------------*/
	.fullsize_wrap{
		padding: 72px 0 72px 0;
	}
	
	.worries_wrap{
		padding: 0px 0 72px 0;
		}
		
	
	.phirosophy-box{
		padding: 0 40px;
	}
	
	.site-inner{
		padding: 88px 0;
	}
	
	.title-en{
		font-size: 1.3rem;
	}
	
	.p-title{
		font-size: 3.5rem;
		margin-bottom: 32px;
	}
	
	
	.p-text2{
		font-size: 1.6rem;
	}
	
	
	.sp-img.sp-top-photo{
		width: 90%;
		max-width: 90%;
	}
	
	
	.sp-top-illust-inner{
		width: 75%;
		max-width: 75%;
		
	}
	
/*---------------------
top-notice
---------------------*/
	
	
	.notice-box{
		width: 80%;
		max-width: 80%;
		margin: 0 auto;
		padding: 32px 0 32px;
	}
	
	.n-title-box{
		width: 86%;
		max-width: 86%;
		margin: 0 auto;
	}
	
	.n-title{
		text-align: center;
	}
	
	.n-text{
		font-size: 1.6rem;
	}
	
	.n-img-box{
		text-align: center;
		margin-top: 16px;
	}
	
	.n-img{
		width: 80%;
		max-width: 80%;
		
	}
	
	
/*---------------------
top-worrie
---------------------*/
	
	
	.section-title{
		font-size: 3rem;
	}
	
	
	
	.sb-wrapper-box{
		padding: 0 0 0 0;
		background: #fff;
	}
	
	.sp-yellow{
		background: #FDF4D5;
	}
	
	.sb-box{
		padding: 72px 0 64px;
	}
	
	.sb-box2{
		width: 100%;
		max-width: 100%;
		margin: 0 0 0 0;
	}
	
	.sb_inner{
		display: block;
		margin: 0;
		padding-bottom: 80px;
	}
	
	.sb_inner:last-child{
		margin: 0 0 0 0;
		padding-bottom: 40px;
		
	}
	
	
	.sb-photo{
		width: 60%;
		max-width: 60%;
		position: relative;
		padding: 0;
		top: 0px;
		margin: 0 auto;
		
	}
	
	.sb-text-box{
		width: 80%;
		max-width: 80%;
		position: relative;
		top: 0px;
		margin: 24px auto 0;
		
	}
	
	.step-title{
		font-size: 2.8rem;
		margin: 0 auto 16px auto;
		text-align:center;
	}
	
	
	
	
	.btn-center{
		padding-top: 40px;
		padding-bottom:72px;	
	}
	

	
	a.m-btn{
		top: 0;
	}
	
/*---------------------
top-service
---------------------*/
	
	.s-line{
		margin-bottom: 16px;
	}
	
	.s-line-inner{
		margin: 0 8px 8px;
		width: calc(50% - 16px);
		max-width: calc(50% - 16px);
	}
	
	.s-contents{
		padding: 32px 32px 40px 32px;
	}
	
	.sb{
		padding: 120px 0;
	}
	
	
	.sb-service-box{
		width: 80%;
		max-width: 80%;
		justify-content:space-between;
		
	}
	
	.h-inner{
		width: 45%;
		max-width: 45%;
	}
	
	
	.h-inner:nth-child(3){
		padding-bottom: 32px;
		
	}
	
	.h-inner:nth-child(4){
		padding-bottom: 32px;
		
	}
	
	
	
	.attention{
		width: 80%;
		max-width: 80%;
		margin: 0 auto 0;
		line-height: 2;
	}
	
	
/*---------------------
top-consultation
---------------------*/
	
	.step-inner{
		width: 80%;
		max-width: 80%;
		margin: 0 auto;
		display: block;
	}
	
	
	.step-inner>img{
		width: 100%;
		max-width: 100%;
		padding: 0;
	}
	
	.step{
		margin: 0 auto 16px;
	}
	
	.btn-center:last-child{
		padding-top: 0px;
		
	}
	
	

/*---------------------
sub-about
---------------------*/
	
	.sp-about-br{
		display: none;
	}
	
	.list-box{
		display: block;
	}
	
	.list-title{
		padding-bottom: 16px;
	}
	
	.list-text{
		width: 100%;
		max-width: 100%;
	}
	
	
/*---------------------
sub-partner
---------------------*/
	.partner-photo{
		height: 250px;
	}
	
	.another-link{
		font-size: 1.3rem;
		padding: 6px 16px;
	}
	
/*---------------------
sub-contact
---------------------*/
	
	.line{
	width: 250px;
	}
	
	
	
/*---------------------
footer
---------------------*/
	
	.footer{
		padding-top: 48px;
	}
	
	.footer-tab-outer{
		display: block;
		padding: 0;
		margin: 0 0 20px 0;
	}
	
	.footer-tab-outer>li{
		padding: 0 0 24px 0;
	}
	
	.footer-line{
	margin-bottom: 60px;
	
}
	
	.ft-logo{
		width: 54%;
	}
	
	
	
@media screen and (max-width: 500px) {
	
	
/*---------------------
FV
---------------------*/
	
	.fv-logo{
		width: 100%;
		max-width: 100%;
		height: 100%;
		text-align: center;
		line-height: 100%;
		padding-top: 21vh;
		margin-bottom: 0;
		
	}
	
	.fv-br2{
		display: block;
	}
		
	
	.fv-text{
		font-size: 1.8rem;
		margin-bottom: 16px;
	}
	
/*---------------------
top-phirosophy
---------------------*/
	
	.phirosophy-box{
		padding: 0 32px;
	}
	
	.p-title{
		font-size: 3rem;
		width: 100%;
		max-width: 100%;
	}
	
/*---------------------
top-notice
---------------------*/
	
	.notice-box{
		width: 86%;
		max-width: 86%;
	}
	
	.point-text{
		font-size: 1.5rem;
		width: 160px;
		padding: 8px 12px;
	}
	
	
	.n-title{
		font-size: 2.5rem;
	}
	
	.n-text{
		font-size: 1.5rem;
	}
	
/*---------------------
top-worries
---------------------*/
	.sb-box{
		padding: 64px 0 56px;
	}
	
	.section-title{
		font-size: 2.5rem;
	}
	
	
	.wa-worries{
		width: 17px;
	}
	
	.sb_inner{
		padding-bottom: 40px;
	}
	
	.sb-text-box{
		width: 86%;
		max-width: 86%;
		
	}
	
	.step-title{
		font-size: 2.5rem;
		margin-bottom: 12px;
	}
	
	.step-text{
		font-size: 1.5rem;
	}
	
	a.m-btn{
		font-size: 2rem;
		padding: 1.4rem 3rem;
	}
	
/*---------------------
top-service
---------------------*/
	.sb-service-box{
		width: 86%;
		max-width: 86%;
		
	}
	
	.s-name{
		font-size: 1.3rem;
		letter-spacing: 0.08em;
	}
	
	.s-contents{
		width: 90%;
		max-width: 90%;
		margin-bottom: 48px;
		padding: 24px 24px 32px 24px;
	}
	
	.s-image{
		width: 100px;
		max-width: 100px;
	}
	
	p.s-title{
		font-size: 2rem;
	}
	
	.s-text{
		font-size: 1.5rem;
		letter-spacing: 0.08em;
	}
	
	.price{
		font-size: 1.4rem;
		
	}
	
	.pb{
		font-size: 1.4rem;
	}
	
	.p-text{
		font-size: 1.3rem;
		text-align: left;
	}
	
	.attend{
		line-height: 1.7;
	}
	
	p.s2-title{
		font-size: 1.6rem;
	}
	
	.s2-text{
		font-size: 1.5rem;
	}
	
	.h-inner_text{
		font-size: 1.5rem;
	}
	
	.b-copy-box{
		margin-bottom: 16px;
	}
	
	.wa{
	width: 12px;
	height: auto;
	
	}

	.b-copy{
		font-size: 1.6rem;
		padding: 0 4px;
	}


	a.service-btn{
		font-size: 2rem;
		padding: 1.4rem 3rem;


	}
	
	.attention{
		font-size: 1.2rem;
		width: 86%;
		max-width: 86%;
		line-height:1.6;
		text-align: justify;
			
		}
	
/*---------------------
top-consultation
---------------------*/
	
	
	.step-inner{
		width: 86%;
		max-width: 86%;
	}
	
	.step{
		padding: 2px 3px;
		font-size:1.2rem;
		width: 65px;
		margin-bottom: 10px;
	}
		

	
/*---------------------
sub-common
---------------------*/	
	
	.h-title{
		font-size: 2.8rem;
	}
	
	.h-title_en{
		font-size: 1.2rem;
		margin-bottom: 48px;
	}
	
		
	
/*---------------------
sub-about
---------------------*/	
	.a-box{
		width: 86%;
		max-width: 86%;
	}
	
	
	.a-inner{
		margin-top: 32px;
	}
	
	.a-title{
		font-size: 2rem;
		line-height: 1.6em;
		letter-spacing:0.3rem;
		background: none;
		
	}
	
	
	.a-a{
		width: 100%;
		max-width: 100%;
		margin-bottom: 24px;
	}
	
	.a-inner-title{
		font-size: 1.3rem;
	}
	
	
	.a-inner-name{
		font-size: 2.5rem;
	}
	
	.a-inner-en{
		font-size: 1.1rem;
		margin-bottom: 24px;
	}
	
	.a-inner-text{
		font-size: 1.5rem;
		line-height: 2em;
		letter-spacing: 0.08em;
	}
	
	.logo-inner{
		margin-top: 32px;
	}
	
	
	.logo-title{
		font-size: 2rem;
		margin: 24px 0;
	}
	
	.about-logo-img{
		margin: 32px 0;
		width: 120px;
		max-width: 120px;
	}
	
	
	.list-box{
		padding: 30px 8px;
	}
	
	.list-text>p{
		font-size: 1.3rem;
		letter-spacing: 0.08em;
		line-height: 1.7;
		text-align: justify;
	}
	
	
/*---------------------
sub-partner
---------------------*/
	
	.partner{
		width: 90%;
		max-width: 90%;
		padding: 24px;
	}
	
	.partner-photo{
		height: 200px;
	}
	
	.p-1{
		font-size: 1.2rem;
	}
	
	.p-2{
		font-size: 1.9rem;
	}
	
	.p-3{
		font-size: 1.3rem;
		margin-bottom: 8px;
	}
	
	.p-4{
		font-size: 1.3rem;
	}
	
/*---------------------
sub-contact
---------------------*/
	
	.line-btn{
		width: 80%;
		max-width: 80%;
		margin-left: auto;
		margin-right: auto;
	}
		
		
		
	}
	
	
	@media screen and (max-width: 450px) {
		
/*---------------------
top
---------------------*/	
		
		.fullsize_wrap{
			padding: 56px 0 64px;
		}
		
		.worries_wrap{
		padding: 0px 0 64px 0;
		}
		
		.p-title{
			letter-spacing: .08em;
		}
		
		.n-title{
			font-size: 2.3rem;
		}
		
		.sp-img.sp-top-photo{
			width: 100%;
			max-width: 100%;
		}
		
		.sp-top-illust-inner{
			width: 85%;
			max-width: 85%;
		}
		
		.sb-box{
			padding-bottom: 40px;
		}
		
		.section-title{
			font-size: 2.3rem;
			margin: 0 6px;
		}
		
		.wa-worries{
			width: 15px;
		}
		
		
		.step-title{
			font-size: 2.3rem;
		}
		
		.btn-center{
			padding-bottom: 64px;
		}
		
		
/*---------------------
sub-partner
---------------------*/
		
	.p-1{
		font-size: 1.1rem;
	}
	
	.p-2{
		font-size: 1.8rem;
	}
	
	.p-3{
		font-size: 1.2rem;
		margin-bottom: 8px;
	}
	
	.p-4{
		font-size: 1.3rem;
	}
		

/*---------------------
sub-service
---------------------*/	
		
	.wa{
	width: 10px;
	height: auto;
	
	}

	.b-copy{
		font-size: 1.3rem;
		padding: 0 4px;
	}


	a.service-btn{
		font-size: 1.8rem;
		padding: 1.4rem 3rem;


	}

		
		
	}
	
	
	@media screen and (max-width: 360px) {	
	
	.section-title{
			font-size: 2.1rem;
			margin: 0 4px 2px;
		}
		
	.wa-worries{
			width: 13px;
		}
	}
}




