@charset "utf-8";

/**
 *
 *  サイト共通
 *
 */

/*--------------------------------------------------------------------------
   reset
---------------------------------------------------------------------------*/

html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,ins,kbd,q,samp,small,strong,
sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,
figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;}
body{line-height:1;}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}
nav ul{list-style:none;}
ul,ol,li,dl,dt,dd{list-style-type:none;list-style-position:outside;}
blockquote,q{quotes:none;}
blockquote:before,blockquote:after,q:before,q:after{content:none;}
a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;}
img{vertical-align:top;border:0;}
table{border-collapse:collapse;border-spacing:0;}
hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:0;padding:0;}
input,select{vertical-align:middle;}


/*--------------------------------------------------------------------------
   html
---------------------------------------------------------------------------*/

html{
	overflow-y: scroll;
	font-size: 62.5%;
}


/*--------------------------------------------------------------------------
   body
---------------------------------------------------------------------------*/

body{
	color: #333;
	background: #FFF;
	font-family: "UD Shin Go Regular","メイリオ",Meiryo,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","游ゴシック体", "Yu Gothic", YuGothic,"ＭＳ Ｐゴシック" ,"MS P Gothic" ,sans-serif;
	font-size: 1.4rem;
	line-height: 1.8;	
}

/* font */
.maru{
  font-family: "M PLUS Rounded 1c";  
}


/*--------------------------------------------------------------------------
   base link
---------------------------------------------------------------------------*/

a{
	outline: none;
}
a:link,
a:visited{
	text-decoration: none;
	color: #333;
}

.ophover{
	transition: opacity ease .3s;	
}
.ophover:hover{
	opacity: .7;
}

.btn-link {
  color: #337ab7;
  font-weight: normal;
  border-radius: 0;
}
/* line 101, ../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/bootstrap-sass-3.3.6/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* line 109, ../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/bootstrap-sass-3.3.6/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
  border-color: transparent;
}
/* line 115, ../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/bootstrap-sass-3.3.6/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link:hover, .btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent;
}
/* line 123, ../../../../../../../../../Library/Ruby/Gems/2.0.0/gems/bootstrap-sass-3.3.6/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus {
  color: #777777;
  text-decoration: none;
}

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

/*--------------------------------------------------------------------------
   Animation
---------------------------------------------------------------------------*/

.fade,.fade01,.fade02,.fade03,.fade04,
.delay01,.delay02,.delay03,.delay04,.delay05 {
	transition: 1s;
}
.fade {
	opacity: 0;
	transform: translate(0,0); 
	-webkit-transform: translate(0,0);
}
.fade01{
	opacity: 0;
	transform: translate(0,100px); 
	-webkit-transform: translate(0,100px);	
}
 .fade02 {
	opacity: 0;
	transform: translate(0,-100px); 
	-webkit-transform: translate(0,-100px);
}
.fade03 {
	opacity: 0;
	transform: translate(-100px,0); 
	-webkit-transform: translate(-100px,0);	
}
.fade04 {
	opacity: 0;
	transform: translate(100px,0); 
	-webkit-transform: translate(100px,0);	
}
.delay01{
	transition-delay: 0.3s;		
}
.delay02{
	transition-delay: 0.6s;		
}
.delay03{
	transition-delay: 0.9s;		
}
.delay04{
	transition-delay: 1.2s;		
}
.delay05{
	transition-delay: 1.5s;		
}

 .mv {
	opacity: 1;
	transform: translate(0,0); 
	-webkit-transform: translate(0,0);
}


/*--------------------------------------------------------------------------
   PC
---------------------------------------------------------------------------*/
.sp,
.sp-se{
	display: none;	
}
/* box-sizing ---*/	
header, footer, section, div, h1, h2, h3, h4, h5, p, ul, ol, li, dl, dt, dd, th, td, a, span {
	box-sizing: border-box;
}

/*--------------------------------------------------------------------------
   Header
---------------------------------------------------------------------------*/
#Header{
  position:fixed;
  z-index:10000;
  width: 100%;
  top: 30px;
  left: 0;
}
.fixed-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 960px;
  height: 80px;
  margin: 0 auto;
  background: #FFF;
  border-radius: 40px;
  box-shadow:0 0 15px rgba(0,0,0,.1);  
}
.fixed-header > div{
  display: flex;
  align-items: center;
  margin-right: 15px;  
}
#Header .logo{
  margin-left: 25px; 
}
#Header .btn-trigger{
  cursor: pointer;
  transition:.3s;  
}
#Header .btn-trigger:hover{
  opacity: .7;  
}

#breadcrumbs {
	text-align: center;
	font-size: 1.1rem;
	margin: 0 0 30px !important;
}
#breadcrumbs span {
	color: #fff !important;
}
@media screen and (max-width: 768px) {
	#breadcrumbs {
		margin: 0 0 20px !important;
	}	
}

/* ---------------------------------------------------------------------------
			#Hd_Gnav	
				グローバルナビゲーション
--------------------------------------------------------------------------- */
#Hd_Gnav{
  margin-right: 25px;  
}
#Hd_Gnav ul{
	display: flex;
  align-items: center;
}
#Hd_Gnav ul li{
  margin: 0 15px;
  line-height:1.4;
  font-size: 1.4rem;
	text-align:center;  
}


/* ---------------------------------------------------------------------------
			#Menu_Gnav	
				ハンバーガーメニュー
--------------------------------------------------------------------------- */
.navigation{
  display: none;  
  position:fixed;
  z-index:12000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background:#56AD34;
  color: #FFF;  
}
.navigation-inline{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;  
  width: 100%;
  height: 100%;  
}
.navigation .btn-close{
  position: absolute;
  top: 40px;
  right: 40px;
  cursor: pointer;
  transition:.3s;   
}
.navigation .btn-close:hover{
  opacity:.7;  
}
.navigation-cont{
  max-width: 1000px;
  width: 100%;  
}
.navigation .logo{
  margin-bottom: 60px;
  text-align:center;  
}
#Menu_Gnav{
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;  
}
#Menu_Gnav a{
  color: #FFF;  
}
#Menu_Gnav > ul{
  max-width:300px;
  width: calc((100% - 40px)/3);
  border-top: 2px solid #FFF; 
}
#Menu_Gnav > ul > li{
  padding: 15px 0;
  border-bottom: 2px solid #FFF;
  font-size: 1.8rem;
  line-height:1.2;  
}
#Menu_Gnav > ul > li > a{
  display: block;
  background:url(../img/common/btn_arw_w.svg) no-repeat right 8px center;
  transition: .3s;  
}
#Menu_Gnav > ul > li > a:hover{
  opacity: .7;  
}
#Menu_Gnav > ul > li ul{
  margin-top: 18px;  
}
#Menu_Gnav > ul > li ul li+li{
  margin-top: 10px;  
}
#Menu_Gnav > ul > li ul li a{
  display: block;
  padding: 8px 20px;
  background:url(../img/common/btn_arw.svg) no-repeat right 8px center #FFF;
  border:2px solid #FFF;
  border-radius:4px;
  color: #56AD34;
  transition: .3s;
}
#Menu_Gnav > ul > li ul li a:hover{
  background:url(../img/common/btn_arw_w.svg) no-repeat right 8px center #56AD34;
  color: #FFF;
}
.navigation .btn-list{
  display: flex;
  justify-content: space-between;
}
.navigation .btn-list li{
	width: 100%;
/*  max-width: 487px;
  width: calc(50% - 10px);  */
}
.navigation .btn-list li a{
  display: block;
  padding: 12px 15px;
  background: #FFF;
  border-radius:4px;
  text-align:center;
  font-size: 1.8rem;
  font-weight: bold;    
}
.navigation .btn-list li a span{
  display: inline-block;
  padding: 2px 0 2px 40px ;  
}
.navigation .btn-list .tel a{
  color: #60B538;  
}
.navigation .btn-list .tel a span{
  background:url(../img/common/ico_tel.svg) no-repeat left center;
  background-size: 32px auto;   
}
.navigation .btn-list .inq a{
  color: #0DAB67;  
}
.navigation .btn-list .inq a span{
  background:url(../img/common/ico_mail.svg) no-repeat left center;
  background-size: 32px auto;  
}


/*--------------------------------------------------------------------------
   Container
---------------------------------------------------------------------------*/
#Page{
	overflow: hidden;	
}
.inner{
	max-width: 930px;
	padding: 0 15px;
	margin: 0 auto;
}
.layout-box{
  display: flex;
  justify-content: space-between;  
}


/*--------------------------------------------------------------------------
   Content
---------------------------------------------------------------------------*/
#Content {
	
}

.marker_w{
  background:linear-gradient(transparent 55%, #FFF 55%);  
}

/* kv
-----------------------------------------------------------------*/
.kv{
  position: relative;
  height: 350px;
  background:url(../img/common/bg_hd_pc.png) no-repeat center center;
  background-size:cover;  
}
.kv::after{
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  content: "";
  width: 100%;
  height: 105px;
  background:url(../img/common/bg_page.png) no-repeat center top;
  background-size:cover;  
}
.kv h2{
  position: absolute;
  left:  0;
  bottom: 0;
  z-index:10;
  width: 100%;
  text-align:center;
}


/* 見出し
-----------------------------------------------------------------*/
/* sec-lead */
.sec-lead{
  text-align: center;  
  font-size: 2.7rem;
  line-height: 1.6;
}
.sec-lead .ico-ttl{
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height:0;
  letter-spacing: 0.07em;  
}
.sec-lead+.txt{
  font-size: 1.8rem;
  line-height:2.2;
  text-align: center;   
}

/* sec-ttl */
.sec-ttl{
  text-align: center;  
}
.sec-ttl span+span{
  display: block;
  margin-top: 5px;
  font-size: 2.7rem;  
}
.sec-ttl .txt-en{
  font-size: 1.6rem;
  letter-spacing:1px;
  border-bottom: 1px solid #4C4948;  
}


/* ボタン
-----------------------------------------------------------------*/
/* btn-base */
.btn-base a{
  display: block;
  max-width: 400px;
  height: 50px;
  line-height:48px;  
  background: url(../img/common/btn_arw_w.svg) no-repeat right 20px center #56AD34;
  background-size: 7px auto;
  border-radius: 25px;
  color: #FFF;
  text-align:center;
  font-size: 1.5rem;
  font-weight: bold;
  transition: .3s;  
}
.btn-base a:hover{
  opacity: .7;  
}

.btn-white a {
    display: block;
    height: 60px;
    line-height: 58px;
    border-radius: 30px;
    border: 3px solid #FFF;
    background: url(../img/common/btn_arw.svg) no-repeat right 15px center #FFF;
    background-size: 7px auto;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    color: #56AD34;
}
.btn-white a:hover{
  background-image: url(../img/common/btn_arw_w.svg);
  background-color: transparent;
  border-color: #FFF;
  color: #FFF;  
}


/* service-list
-----------------------------------------------------------------*/
.service-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 860px;
  margin: 0 auto;  
}
.service-list li{
  max-width: 410px;
  width: calc(50% - 10px);  
}
.service-list li:nth-child(n+3){
  margin-top: 40px;  
}
.service-list .service-item{
  padding: 30px 15px 35px;
  width: 100%;
  height: 100%;
  background: #FFF;
  border-radius: 10px;
  box-shadow:0 0 15px rgba(0,0,0,0.1);
  text-align:center;
}
.service-list h3{
  margin-bottom: 20px;
  font-size: 2.5rem;  
  line-height: 1.3;
}
.service-list .pic{
  margin-bottom: 25px;
}
.service-list .txt{
  margin-bottom: 20px;
  font-size: 1.5rem;
  line-height:1.6;
}
.service-list .btn-area{
  display: flex;
  justify-content: center;
  align-items: center;  
}
.service-list .btn-area p{
  margin: 0 5px;
  max-width: 150px;
  width: calc(50% - 10px);  
}
.service-list .btn-area a{
  display: block;
  max-width: 150px;
  height: 38px;
  line-height:36px;
  border-radius:19px;
  color: #FFF;
  text-align:center;
  transition:.3s;  
}
.service-list .btn-area a:hover{
  opacity:.7;  
}
.service-list .btn-area p:nth-child(1) a{
  background:url(../img/common/btn_arw_w.svg) no-repeat right 14px center #56AD34;
  background-size:8px auto;  
}
.service-list .btn-area p:nth-child(2) a{
  background:url(../img/common/btn_arw_w.svg) no-repeat right 14px center #0DAB67;
  background-size:8px auto;
}

/* flow-list
-----------------------------------------------------------------*/
.flow-step-list li{
	position: relative;
	width: 100%;
	background: #FFF;
	border-radius: 6px;
	text-align: center;	
}
.flow-step-list li::after{
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%,100%);
  display: block;
  content: "";
  width: 2px;
  height: 18px;
  background:url(../img/home/line_flow.svg) no-repeat;
  background-size:100% auto;  
}
.flow-step-list._ttl-list li::before{
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid #FFF;
  z-index: 2;  
}
.flow-step-list._ttl-list li::after{
  content: "";
  position: absolute;
  bottom: -21px;
  left: 50%;
  width: 0;
  height: 0;
  transform: none;
  margin-left: -11px;
  border: 11px solid transparent;
  border-top: 11px solid #60B538;
  background:transparent;
  z-index: 1;
}
.flow-step-list li:last-child::before,
.flow-step-list li:last-child::after{
  display: none;  
}
.flow-step-list li:nth-child(n+2){
	margin-top: 40px;		
}
.flow-step-list._ico-list li:nth-child(n+2){
	margin-top: 65px;		
}
.flow-step-list li .outline{
	position: relative;
  height: 100%;
}
.flow-step-list li .outline::before,
.flow-step-list li .outline::after{
	position: absolute;
	top: 8px;
	display: block;
	content: "";
	width: 2px;
	height: calc(100% - 16px);
	background: #60B538;
}
.flow-step-list li .outline::before{
	left: 0;	
}
.flow-step-list li .outline::after{
	right: 0;
}
.flow-step-list li .inline{
	position: relative;
	padding: 28px 5% 25px;
  height: 100%;	
}
.flow-step-list li .inline::before,
.flow-step-list li .inline::after{
	position: absolute;
	left: 8px;
	display: block;
	content: "";
	height: 2px;
	width: calc(100% - 16px);
	background: #60B538;
}
.flow-step-list li .inline::before{
	top: 0px;	
}
.flow-step-list li .inline::after{
	bottom: 0px;
}
.flow-step-list .ico{
  position: absolute;
  left: 50%;
  top: 0;
  z-index:15;
  padding: 0 3px;
  transform: translate(-50%,-50%);
  line-height:1; 
}
.flow-step-list .ico::before,
.flow-step-list .ico::after{
  position: absolute;
  top: 50%;
  display: block;
  content: "";
  width: 3px;
  height: 2px;
  background: #FFF;  
}
.flow-step-list .ico::before{
  left:0; 
}
.flow-step-list .ico::after{
  right:0; 
}
.flow-step-list .step-ttl{
	position: absolute;
	left: 50%;
	top: 0;
	z-index:10;
	transform:translate(-50%,-50%);
	padding: 0 7px;	
}
.flow-step-list .step-ttl::after{
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-2px); 
	display: block;
	content: "";
	width: 100%;
	height: 3px;
	background: #FFF;	
}
.flow-step-list .step-ttl span{
	position: relative;
	z-index:20;
	font-size: 1.8rem;
	font-weight: bold;
	color: #60B538;
	background: #FFF;
	padding: 5px 20px;
	border-radius:20px;
  border:2px solid #60B538;	
}
.flow-step-list h3{
  position: relative;
  z-index:20;
	font-size: 1.8rem;
	font-weight: bold;
}
.flow-step-list h3 .marker{
	background: linear-gradient(transparent 70%, #ECFAE4 70%);
}
.flow-step-list h3 .marker.em{
  background: linear-gradient(transparent 70%, #FFEE00 70%);
}
.flow-step-list .txt{
  position: relative;
  z-index:20;  
	font-size: 1.4rem;
	line-height: 1.6;
}
.flow-step-list .txt._left{
  text-align: left;  
}

/* faq-list
-----------------------------------------------------------------*/
.faq-list{
  border-bottom: 1px dashed #DDD;
  background: #FFF;  
}
.faq-list dt{
  position: relative;
  padding: 20px 0 20px 60px;
  background:url(../img/home/ico_q.svg) no-repeat left 15px center;
  border-top: 1px dashed #DDD; 
  font-size: 1.6rem;
  cursor: pointer;
}
.faq-list dt::after{
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  content: "＋";
  color: #60B538;
  font-weight: bold;
  font-size: 3.6rem;
}
.faq-list dt.open::after{
  content: "－";  
}
.faq-list dd{
  display: none;
  padding: 0 60px 20px 60px;
  line-height: 1.5;  
}
.faq-list dd p+p{
	margin-top: 1.2em;	
}


/* service-cont-nav
-----------------------------------------------------------------*/
.service-cont-nav{
  padding: 60px 0;
  background:#F5F5F5;
}
.service-cont-nav h2{
  margin-bottom: 40px;  
}
.service-cont-nav .service-cont-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.service-cont-nav .service-cont-list li{
  max-width: 470px;
  width: calc(50% - 10px);  
}
.service-cont-nav .service-cont-list li:nth-child(n+3){
  margin-top: 30px;  
}
.service-cont-nav .service-cont-list a{
  display: block;
  height: 80px;
  padding-left: 22px;
  line-height:78px;
  border-radius: 8px;
  box-shadow:0 0 10px rgba(0,0,0,.1);
  transition: .3s;  
}
.service-cont-nav .service-cont-list a:hover{
  opacity: .7;  
}
.service-cont-nav .service-cont-list li:nth-child(1) a{
  background:url(../img/common/ico_btn_serrvice01.svg) no-repeat right 22px center #FFF;  
}
.service-cont-nav .service-cont-list li:nth-child(2) a{
  background:url(../img/common/ico_btn_serrvice02.svg) no-repeat right 22px center #FFF;  
}
.service-cont-nav .service-cont-list li:nth-child(3) a{
  background:url(../img/common/ico_btn_serrvice03.svg) no-repeat right 22px center #FFF;  
}
.service-cont-nav .service-cont-list li:nth-child(4) a{
  background:url(../img/common/ico_btn_serrvice04.svg) no-repeat right 22px center #FFF;  
}
.service-cont-nav .service-cont-list span{
  padding-left: 40px;
  background:url(../img/common/btn_arw_r.svg) no-repeat left center;
  background-size:25px auto;
  font-size: 2.3rem;
}


/* line-box
-----------------------------------------------------------------*/
.line-box{
  background: #FFF;
  border-radius:5px;
}
.line-box .outline{
  position: relative;
  height: 100%;
}
.line-box .outline::before,
.line-box .outline::after{
	position: absolute;
	top: 8px;
	display: block;
	content: "";
	width: 2px;
	height: calc(100% - 16px);
	background: #60B538;
}
.line-box .outline::before{
	left: 0;	
}
.line-box .outline::after{
	right: 0;
}
.line-box .inline{
  position: relative;
  height: 100%;	
}
.line-box .inline::before,
.line-box .inline::after{
	position: absolute;
	left: 8px;
	display: block;
	content: "";
	height: 2px;
	width: calc(100% - 16px);
	background: #60B538;
}
.line-box .inline::before{
	top: 0px;	
}
.line-box .inline::after{
	bottom: 0px;
}


/*--------------------------------------------------------------------------
   Cv
---------------------------------------------------------------------------*/
#Cv{
	position: relative;
  padding: 30px 25px;
  background:#0DAB67;  
}
#Cv .ico{
	position: absolute;
	bottom:0;	
}
#Cv .ico01{
	left: 7%;	
}
#Cv .ico02{
	right: 7%;
}
#Cv .outline,
#Cv .inline{
  position: relative;  
}
#Cv .outline::before,
#Cv .outline::after,
#Cv .inline::before,
#Cv .inline::after{
  position: absolute;
  display: block;
  content: "";
  background: #FFF;
}
#Cv .outline::before,
#Cv .outline::after{
	width: calc(100% - 20px);  
  height: 3px;
  left:10px;  
}
#Cv .outline::before{
  top: 0;  
}
#Cv .outline::after{
  bottom: 0;  
}
#Cv .inline::before,
#Cv .inline::after{
  width: 3px;
	height: calc(100% - 20px); 
  top: 10px;
}
#Cv .inline::before{
  left:0;
}
#Cv .inline::after{
  right: 0;
}
#Cv .inline{
  padding: 30px;
  text-align:center;
  color: #FFF;  
}
#Cv h2{
  position: relative;
  z-index:10;
  padding-bottom: 30px;
  margin-bottom: 25px;
  line-height:1;
  font-size: 2.2rem;  
}
#Cv h2 span{
	display: block;
	margin-top: 20px;
	font-size: 1.4rem;	
}
#Cv h2::after{
  position: absolute;
  left: 50%;
  bottom: 0;
  transform:translateX(-50%);
  display: block;
  content: "";
  width: 40px;
  height: 2px;
  background: #FFF;  
}

.cv-btn{
  position: relative;
  z-index:10;  
}
.cv-btn a{
	display: block;
	max-width: 450px;
	height: 90px;
	margin: 0 auto;
  border-radius:45px;
  background:url(../img/common/ico_mail.svg) no-repeat left 20px center #FFF;
  background-size:50px auto; 
	text-align:center;
	font-size: 2.5rem;
	color: #0DAB67;
  transition:.3s; 
}
.cv-btn a span{
	display: block;
	height: 100%;
  padding: 22px 0 0 25px;	
	 background:url(../img/common/btn_arw.svg) no-repeat right 25px center;
  background-size:10px auto; 
}
.cv-btn a:hover{
  opacity:.8;  
}
/*.cv-btn-list{
  display: flex;
  justify-content: center;
  align-items: center;  
}
.cv-btn-list li{
  max-width:390px;
  width: calc(50% - 20px);
  margin: 0 10px;
}
.cv-btn-list a{
  display: block;
  height: 100px;
  padding-top: 18px;
  border-radius:50px;
  background: #FFF;
  transition:.3s; 
}
.cv-btn-list a:hover{
  opacity:.8;  
}
.cv-btn-list .inq a{
  color: #1E8C39;  
}
.cv-btn-list .tel a{
  color: #60B538;
}
.cv-btn-list .ttl{
  display: inline-block;
  padding-left: 45px;
  font-size: 2.5rem;
  font-weight: bold;
}
.cv-btn-list .inq .ttl{
  background:url(../img/common/ico_mail.svg) no-repeat left center;
  background-size:35px auto;  
}
.cv-btn-list .tel .ttl{
  background:url(../img/common/ico_tel.svg) no-repeat left center;
  background-size:35px auto;  
  font-size: 2.7rem;
}
.cv-btn-list .txt{
  display: block;
  font-size: 1.4rem;
}
.cv-btn-list .tel .txt{
  margin-top: -2px;  
}*/



/*--------------------------------------------------------------------------
   Footer
---------------------------------------------------------------------------*/
#Footer{
	margin: 0;
	padding-bottom: 80px;
}
#Footer .inner{
	max-width:none;
  padding: 0 25px;
}
#Footer .sns{
  padding: 30px 0 0;
}
#Footer .sns h3{
  margin-bottom: 12px;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing:2px;
  color: #5EA83B;
}
#Footer .ft-sns-list{
  display: flex;
  justify-content: center;
  align-items: center;
	padding-bottom: 35px;
	border-bottom: 1px solid #E8E8E9;  
}
#Footer .ft-sns-list li{
  margin: 0 15px;
  line-height:0;
}
#Footer .ft-sns-list a{
  transition: .3s;  
}
#Footer .ft-sns-list a:hover{
  opacity: .7;  
}
#Footer .ft-btn-list{
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid #E9E9EA;  
}
#Footer .ft-btn-list li{
  width: calc(50% - 5px);  
}
#Footer .ft-btn-list li a{
  display: block;
  padding: 15px;
  border-radius:6px;
  color: #FFF;
  font-size: 1.5rem;
  font-weight: bold;
  text-align:center;
  transition: .3s;  
}
#Footer .ft-btn-list li a:hover{
  opacity: .7;  
}
#Footer .ft-btn-list .inq a{
  background:#70BC4C;
}
#Footer .ft-btn-list .tel a{
  background:#0DAB67;  
}
#Footer .ft-btn-list li a span{
  display: inline-block;
  min-height:28px;
  line-height:27px;
  padding-left: 35px;  
}
#Footer .ft-btn-list .tel span{
  background:url(../img/common/ico_tel_w.svg) no-repeat left center;
  background-size:27px auto;
}
#Footer .ft-btn-list .inq span{
  background:url(../img/common/ico_mail_w.svg) no-repeat left center;
  background-size:27px auto;  
}
#Footer .ft-sitemap-list{
  padding: 30px;
  display: flex;
  justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
  font-size: 1.4rem;
	
}
#Footer .ft-sitemap-list > li{
  padding-right: 15px;  
}
#Footer .ft-sitemap-list > li > p+p{
  margin-top: 5px;  
}
#Footer .ft-sitemap-list .middle li a{
  padding-left: 12px;
  background:url(../img/common/btn_arw_bk.svg) no-repeat left center;
  background-size:4px auto;  
}

#Footer .ft-sitemap-list-sp{
  display: none;  
}
#Footer .copyright{
  padding: 25px;
  background:#56AD34;
  color: #FFF;
  font-size: 1rem;
  letter-spacing:1px;
  text-align:center;
}
#Footer .copyright .logo{
  display: block;
  margin-bottom: 10px;  
}

#Page .ft-btn{
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 80px;
	z-index: 20;
	transform: translateY(120%);
	background: #FFF;
	border: 2px solid #56AD34;
	text-align:center;
	transition: .4s;
}
#Page.scroll .ft-btn{
	transform: translateY(0);	
}
#Page .ft-btn a{
	display: block;
	padding: 22px;
	font-size: 1.9rem;
	color: #56AD34;
	font-weight: 600;
	transition:.3s;	
}
#Page .ft-btn a:hover{
	background: #56AD34;
	color: #FFF;	
}
#Page .ft-btn span{
	padding: 5px 40px;
	background:url(../img/common/ico_mail_green.svg) no-repeat left center;
	background-size: 30px auto;	
}
#Page .ft-btn a:hover span{
	background-image:url(../img/common/ico_mail_w_g.svg);	
}
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 15px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn-scrolltop {
  position: fixed;
  bottom: -60px !important;
  right: 20px;
  width: 50px !important;
  height: 50px !important;
  transition: bottom 1.5s !important;
  z-index: 30;
  padding: 0;
  background: none;
}
.btn-scrolltop:hover {
	cursor: pointer;
}
.btn-scrolltop img {
	width: 50px !important;
	height: 50px !important;
}

.btn-scrolltop > img {
  transform: scale(0.9) !important;
  transition: transform 0.3s !important;
  transform-origin: center !important;
}
.btn-scrolltop.showing {
  bottom: 70px !important;
}
@media only screen and (min-width: 768px) {
  /* line 128, ../sass/components/button.scss */
  .btn-scrolltop {
    right: 30px !important;
  }
  /* line 146, ../sass/components/button.scss */
  .btn-scrolltop:hover > img {
    transform: scale(1.2) !important;
  }
}
.btn-scrolltop:focus {
  outline: none !important;
}


/* clearfix
-----------------------------------------------------------------*/
.cf:after{
	clear :both;
	content: "";
	display: block;
	height: 0;
}




/*--------------------------------------------------------------------------
   mobile
---------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
body{

}
#Page {
	min-width: 320px;	
}
#Page img{
	width: 100%;
	height: auto;
}
.pc{
	display: none;	
}
.sp{
	display: block;	
}
img.sp,
br.sp{
	display: inline;
}


/*--------------------------------------------------------------------------
   Container
---------------------------------------------------------------------------*/
.inner{
	max-width: initial;	
}


/*--------------------------------------------------------------------------
   Header
---------------------------------------------------------------------------*/
  #Header{
    top: 20px;
    left: 0;
    padding: 0 10px;
  }
  .fixed-header{
    display: flex;
    max-width: none;
    height: 50px;
    border-radius: 25px;
    box-shadow:0 0 10px rgba(0,0,0,.1);  
  }
  .fixed-header > div{
    margin-right: 5px;  
  }
  #Header .logo{
    margin-left: 10px; 
  }
  #Header .logo img{
    width: auto;
    height: 32px;  
  }
  #Header .btn-trigger{
    cursor: pointer;
    transition:.3s;
    width: 40px;  
  }


/* ---------------------------------------------------------------------------
			#Hd_Gnav	
				グローバルナビゲーション
--------------------------------------------------------------------------- */
  #Hd_Gnav{
    display:none;  
  }


/* ---------------------------------------------------------------------------
			#Menu_Gnav	
				ハンバーガーメニュー
--------------------------------------------------------------------------- */
  .navigation-inline {
      position: relative;
      display: block;
      padding: 35px 0;
      overflow:auto;
  }
  .navigation .btn-close{
    top: 10px;
    right: 10px;
    width: 26px;
  }
  .navigation-cont{
    padding: 0 20px 0;
  }
  .navigation .logo{
    width: 140px;
    margin-bottom: 20px;
    text-align:left;  
  }
  #Menu_Gnav{
    display: block;
    margin-bottom: 20px;  
  }
  #Menu_Gnav > ul{
    max-width: none;
    width: 100%;
  }
  #Menu_Gnav > ul+ul{
    border-top: 0; 
  }
  #Menu_Gnav > ul > li{
    padding: 10px 0;
    font-size: 1.4rem;
  }
  #Menu_Gnav > ul > li > a{
    background-size:6px auto;
  }
  #Menu_Gnav > ul > li ul{
    margin-top: 10px;  
  }
  #Menu_Gnav > ul > li ul li+li{
    margin-top: 5px;  
  }
  #Menu_Gnav > ul > li ul li a{
    padding: 5px 15px;
    background-size:6px auto;
  }
  #Menu_Gnav > ul > li ul li a:hover{
    background-size:6px auto;
  }
  .navigation .btn-list li{
    /*max-width: none;
    width: calc(50% - 5px);  */
  }
  .navigation .btn-list li a{
    padding: 12px 10px;
    height: 100%;
    font-size: 1.4rem;
    line-height:1.3;
		text-align:center;
  }
  .navigation .btn-list li a span{
    padding: 8px 20px 8px 40px;
  }
  .navigation .btn-list .tel a span{
    /*background:url(../img/common/ico_tel.svg) no-repeat top center;*/
    background-size: 32px auto;   
  }
  .navigation .btn-list .inq a span{
    /*background:url(../img/common/ico_mail.svg) no-repeat top center;*/
    background-size: 32px auto;  
  }
  


/*--------------------------------------------------------------------------
   Content
---------------------------------------------------------------------------*/

/* kv
-----------------------------------------------------------------*/
  .kv{
    height: 48vw;
  	background:url(../img/common/bg_hd_sp.png) no-repeat center center;
    background-size:100% auto;  
  }
  .kv::after{
    bottom:-1px;
    height: 11.7vw;
    background-size:120% auto;  
  }
  .kv h2{
    bottom: -15px;
  }
  #Page .kv h2 img{
    width: 120px; 
  }


/* 見出し
-----------------------------------------------------------------*/
/* sec-lead */
  .sec-lead{ 
    font-size: 1.8rem;
  }
  .sec-lead .ico-ttl{
    margin-bottom: 10px;
  }
  #Page .sec-lead .ico-ttl img{
    width: auto;
    height: 12px;  
  }
  .sec-lead+.txt{
    font-size: 1.3rem;
    line-height:2;
  }

/* sec-ttl */
  .sec-ttl{
    text-align: center;  
  }
  .sec-ttl span+span{
    font-size: 1.8rem;  
  }
  .sec-ttl .txt-en{
    font-size: 1.2rem;
  }


/* ボタン
-----------------------------------------------------------------*/
/* btn-base */
  .btn-base a{
    max-width: 320px;
    height: 40px;
    line-height:38px;  
    background: url(../img/common/btn_arw_w.svg) no-repeat right 15px center #56AD34;
    background-size: 7px auto;
    border-radius: 20px;
    font-size: 1.3rem;
  }
  .btn-white a {
      height: 40px;
      line-height:36px; 
      font-size: 1.3rem;
      letter-spacing: 1px;
  }

/* service-list
-----------------------------------------------------------------*/
  .service-list{
    display: block;
    max-width: none;  
  }
  .service-list li{
    max-width: none;
    width: 100%;  
  }
  .service-list li:nth-child(n+2){
    margin-top: 15px;  
  }
  .service-list .service-item{
    padding: 20px 15px 25px;
  }
  .service-list h3{
    margin-bottom: 15px;
    font-size: 2rem;  
  }
  .service-list .pic{
    padding: 0 10%;
    margin-bottom: 20px;
  }
  .service-list .txt{
    font-size: 1.3rem;
    line-height:1.5;
  }
  .service-list .btn-area a{
    height: 35px;
    line-height:33px;
    border-radius:18px;
    font-size: 1.2rem;
  }
  .service-list .btn-area p:nth-child(1) a{
    background:url(../img/common/btn_arw_w.svg) no-repeat right 8px center #56AD34;
    background-size:6px auto;  
  }
  .service-list .btn-area p:nth-child(2) a{
    background:url(../img/common/btn_arw_w.svg) no-repeat right 8px center #0DAB67;
    background-size:6px auto;
  }

/* flow-list
-----------------------------------------------------------------*/
  .flow-step-list li:nth-child(n+2){
    margin-top: 40px;		
  }
  .flow-step-list._ico-list li:nth-child(n+2){
    margin-top: 50px;		
  }
  .flow-step-list li .outline::before,
  .flow-step-list li .outline::after{
    top: 6px;
    height: calc(100% - 12px);
  }
  .flow-step-list li .inline{
    padding: 20px 15px 15px;
  }
  .flow-step-list li .inline::before,
  .flow-step-list li .inline::after{
    left: 6px;
    width: calc(100% - 12px);
  }
  .flow-step-list .ico{
    width: 70px;
  }
  .flow-step-list .step-ttl{
	  
    padding: 0 7px;	
  }
  .flow-step-list .step-ttl::after{
    transform: translateY(-1px); 
  }
  .flow-step-list .step-ttl span{
    font-size: 1.5rem;
    padding: 4px 15px;
  }
  .flow-step-list h3{
    font-size: 1.4rem;
  }
  .flow-step-list .txt{
    font-size: 1.2rem;
    line-height: 1.5;
  }

/* faq-list
-----------------------------------------------------------------*/
  .faq-list dt{
    padding: 15px 40px 20px 50px;
    background:url(../img/home/ico_q.svg) no-repeat left 5px center;
    background-size:30px auto;
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .faq-list dt::after{
    right: 5px;
    font-size: 2.6rem;
  }
  .faq-list dt.open::after{
    content: "－";  
  }
  .faq-list dd{
    padding: 0 40px 15px 50px;
    font-size: 1.2rem;
  }


/* service-cont-nav
-----------------------------------------------------------------*/
  .service-cont-nav{
    padding: 40px 0;
  }
  .service-cont-nav h2{
    margin-bottom: 25px;  
  }
  .service-cont-nav .service-cont-list{
    display: block;
  }
  .service-cont-nav .service-cont-list li{
    max-width: none;
    width: 100%;  
  }
  .service-cont-nav .service-cont-list li:nth-child(n+2){
    margin-top: 15px;  
  }
  .service-cont-nav .service-cont-list a{
    height: 70px;
    padding-left: 22px;
    line-height:68px; 
  }
  .service-cont-nav .service-cont-list li:nth-child(1) a{
    background:url(../img/common/ico_btn_serrvice01.svg) no-repeat right 22px center #FFF;
    background-size: auto 54px;  
  }
  .service-cont-nav .service-cont-list li:nth-child(2) a{
    background:url(../img/common/ico_btn_serrvice02.svg) no-repeat right 22px center #FFF;
    background-size: auto 54px;  
  }
  .service-cont-nav .service-cont-list li:nth-child(3) a{
    background:url(../img/common/ico_btn_serrvice03.svg) no-repeat right 22px center #FFF;  
    background-size: auto 54px;
  }
  .service-cont-nav .service-cont-list li:nth-child(4) a{
    background:url(../img/common/ico_btn_serrvice04.svg) no-repeat right 22px center #FFF;  
    background-size: auto 54px;
  }
  .service-cont-nav .service-cont-list span{
    padding-left: 30px;
    background:url(../img/common/btn_arw_r.svg) no-repeat left center;
    background-size:20px auto;
    font-size: 1.5rem;
  }


/* line-box
-----------------------------------------------------------------*/
  .line-box{
    background: #FFF;
    border-radius:5px;
  }
  .line-box .outline{
    position: relative;
    height: 100%;
  }
  .line-box .outline::before,
  .line-box .outline::after{
    position: absolute;
    top: 8px;
    display: block;
    content: "";
    width: 2px;
    height: calc(100% - 16px);
    background: #60B538;
  }
  .line-box .outline::before{
    left: 0;	
  }
  .line-box .outline::after{
    right: 0;
  }
  .line-box .inline{
    position: relative;
    height: 100%;	
  }
  .line-box .inline::before,
  .line-box .inline::after{
    position: absolute;
    left: 8px;
    display: block;
    content: "";
    height: 2px;
    width: calc(100% - 16px);
    background: #60B538;
  }
  .line-box .inline::before{
    top: 0px;	
  }
  .line-box .inline::after{
    bottom: 0px;
  }


/*--------------------------------------------------------------------------
   Cv
---------------------------------------------------------------------------*/
  #Cv{
    padding: 15px;
  }
  #Cv .outline::before,
  #Cv .outline::after{
    width: calc(100% - 16px);  
    height: 2px;
    left:8px;  
  }
  #Cv .inline::before,
  #Cv .inline::after{
    width: 2px;
    height: calc(100% - 16px); 
    top: 8px;
  }
  #Cv .inline{
    padding: 20px 15px;
  }
  #Cv h2{
    padding-bottom: 15px;
    margin-bottom: 15px;
    line-height:1;
    font-size: 1.5rem;  
  }
	#Cv h2 span{
		margin-top: 15px;
		font-size: 1.1rem;
	}
  #Cv h2::after{
    width: 30px;
  }
	#Cv h2 small{
		font-size: 1rem;
	}
  .cv-btn{  
		margin-bottom: 80px;
	}
	.cv-btn a{
	  height: 50px;
    padding: 0;
		line-height:48px;
    border-radius:25px;
		font-size: 1.6rem;
		background-size:35px auto; 
	}
	.cv-btn a span{
		padding: 0 0 0 25px;
		background-position: right 15px center;
		background-size: 8px auto;
	}
  .cv-btn-list{
    display: block;
  }
  .cv-btn-list li{
    max-width:none;
    width: 90%;
    margin: 0 auto;
  }
  .cv-btn-list li+li{
    margin-top: 15px; 
  }
  .cv-btn-list a{
    height: 70px;
    padding-top: 5px;
    border-radius:50px;
  }
  .cv-btn-list .ttl{
    display: inline-block;
    padding-left: 40px;
    font-size: 1.7rem;
  }
  .cv-btn-list .inq .ttl{
    padding: 6px 0 0 40px;
    background:url(../img/common/ico_mail.svg) no-repeat left center;
    background-size:35px auto;  
  }
  .cv-btn-list .tel .ttl{
    background:url(../img/common/ico_tel.svg) no-repeat left center;
    background-size:35px auto;  
    font-size: 2.2rem;
  }
  .cv-btn-list .txt{
    font-size: 1rem;
  }
  .cv-btn-list .tel .txt{
    margin-top: 0;  
  }
	
	#Cv .ico-area{
		position: absolute;
		left: 0;
		bottom: 0;
		text-align:center;
		width: 100%;
	}
	#Cv .ico{
		position: static;
	}
	#Cv .ico03 img{
		width: auto;
		height: 100px;
	}



/*--------------------------------------------------------------------------
   Footer
---------------------------------------------------------------------------*/
	#Footer{
		padding-bottom: 50px;
	}
  #Footer .inner{
    padding: 0 20px;
  }
  #Footer .sns{
    padding: 25px 0 0;
  }
  #Footer .sns h3{
    margin-bottom: 10px;
    font-size: 1rem;
    letter-spacing:1px;
  }
	#Footer .ft-sns-list{
			padding-bottom: 20px;
	}
  #Footer .ft-sns-list li{
    margin: 0 8px;
  }
  #Footer .ft-sns-list img{
    width: auto;
    height: 18px; 
  }
  #Footer .ft-btn-list{
		padding-top: 20px;
    padding-bottom: 20px;
  }
  #Footer .ft-btn-list li{
    width: calc(50% - 3px); 
  }
  #Footer .ft-btn-list li a{
    padding: 10px 5px;
    font-size: 1.1rem;
  }
  #Footer .ft-btn-list li a span{
    padding-left: 25px;  
  }
  #Footer .ft-btn-list .tel span{
    background-size:20px auto;
  }
  #Footer .ft-btn-list .inq span{
    background-size:20px auto;  
  }
  #Footer .sitemap-area > .ft-sitemap-list{
    display: none;
  }
  #Footer .ft-sitemap-list .middle {
    padding-left: 3px; 
  }
  #Footer .ft-sitemap-list .middle li a{
    padding-left: 12px;
    background:url(../img/common/btn_arw_bk.svg) no-repeat left center;
    background-size:4px auto;
  }
  
  #Footer .ft-sitemap-list-sp{
    display: flex;
    padding: 20px 0;  
  }
  #Footer .ft-sitemap-list-sp .ft-sitemap-list{
    display: block; 
    padding: 0;
    font-size: 1.1rem;    
  }
  #Footer .ft-sitemap-list-sp .ft-sitemap-list > li+li{
    margin-top: 5px; 
  }
  #Footer .ft-sitemap-list-sp div{
    width: 50%; 
  }
  #Footer .ft-sitemap-list-sp div+div{
    padding-left: 15px;
    border-left: 1px solid #E9E9EA;  
  }
  #Footer .copyright{
    padding: 15px;
    line-height:1.4;
    letter-spacing:0;
  }
  #Footer .copyright .logo{
    display: block;
    width: 130px;
    margin: 0 auto 10px;  
  }

	#Page .ft-btn{
		height: 50px;
	}
	#Page .ft-btn a{
		display: block;
		padding: 10px;
		font-size: 1.4rem;
	}
	#Page .ft-btn span{
		padding: 8px 20px 8px 40px;
	}


}


@media screen and (max-width: 320px) {
  .sp-se{
    display: block;     
  }
  img.sp-se,
  br.sp-se{
    display: inline; 
  }
  .sec-lead {
    font-size: 1.6rem;
  }
  .sec-lead+.txt {
      font-size: 1.2rem;
  }  
  #Cv h2{
    line-height:1.5; 
  }
  #Cv h2 small {
    display: block;
  }
  .cv-btn a {
    font-size: 1.4rem;
    background-position:left 15px center ;
    background-size: 30px auto;
  }
	#Page .ft-btn a{
		display: block;
		padding: 10px 5px;
		font-size: 1.4rem;
	}  
}