@charset "UTF-8";
@import url("grid.css");

:root { /* 色変更される場合は、#以降のカラーコードを変更してください IE非対応 */
    --base-color: #000;
    --link-color: #666;
    --linkhover-color: #999;
    --back-color: #f7f7f7;
    --border-color: #ccc;
    --white-color: #fff;
}

img {
	max-width:100%;
	height: auto;/*高さ自動*/
}
a {
    display:block;
    color: var(--link-color);
    text-decoration-line: none;
}
a:hover { 
    color: var(--linkhover-color);
}

.anchor{
    display: block;
    padding-top: 70px;
    margin-top: -70px;
}

.indent-1 {
	padding-left:1em;
	text-indent:-1em;
}

.padding10{padding: 10px;}
.padding20{padding: 20px;}

.inline{display: inline;}

@media (min-width: 769px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
	}

@media screen and (min-width: 801px){	
  .br-pc { display:block; }
  .br-sp { display:none; }
	
  .pc-only { display:block; }
  .sp-only { display:none; }	
}
@media screen and (max-width: 800px){	
  .br-pc { display:none; }
  .br-sp { display:block; }
	
  .pc-only { display:none; }
  .sp-only { display:block; }
	
}

/*ヘッダー
-------------------------------------*/
.header {
	background-color: #c5fcff;
	position: relative;
	padding-bottom: 4rem;
}

.header-logo{
	text-align: center;
	margin: 0 auto;
}

.head-left-img{
	position: absolute;
	left: 0;
	top: 0;
}

.head-right-img{
	position: absolute;
	right: 0;
	top: 0;
}

.head-ttl{
	text-align: center;
}

.nav-container {
    margin: 0 auto;
    max-width: 1450px;
    padding: 0;
    position: relative;
	display: flex;
  justify-content: center;
  align-items: center;
}

.nav {
    /*position: fixed;*/
    background-color:rgba( 255, 255, 255, 1.0 );
    width: 100%;
	/*z-index: 9999;
	padding: 1rem;*/
}

/*.nav.transform{
    background: rgba(255,255,255,0.9);
    padding: 0;
}*/

.nav_list li{
    position: relative;  
  }

.nav_item a:hover::before{
		content:"";
		padding-right: 2px;
		background-image: url("../images/nav_arrow.png");
	    display: block;
	    width: 21px; 
        height: 23px;
	    background-size: contain;
        background-repeat:no-repeat;
        position:absolute;
        top:20px;
        left:0;
	}
	
	
	
	.hover_bt a:hover {
		opacity: 0.5;
	}	




@media only screen and (min-width: 1351px) {
  
 
  .nav_list{
    text-align: center;
	margin: 0 auto;
	display: flex; 
	align-items: center; 
	justify-content: center;  
  }
  .nav_list li{
    display: inline-block;
    text-align: center;
    position: relative;  
  }
  .nav_list li a{
    color: #333333;
    font-weight: 600;
	padding: 20px 5px;  
  }
	
	.nav_item {
    padding: 0 14px;
    display: inline-block;
    }
	
  
	
	
	
	.hover a:hover {
		opacity: 0.5;
	}	
	
		
}/* pc */

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

.nav {
    width: 70%;
    height: 40vh;
    }
	
}

@media only screen and (max-width: 1350px) {
  
	.head-left-img{
	width: 15%;
}

.head-right-img{
	width: 15%;
}
	
	
	.nav {
    position: fixed;
    right: -1350px;
    top: 0;
    width: 70%;
    height: 70vh;
    padding: calc(((100vw - 360px) / 14.6667) + 10px);
    background-color: #fff;
    transition: all .6s;
    z-index: 200;
    overflow-y: auto;
  }
	
	#js-hamburger{
		position: fixed;
	}
	
 .hamburger {
    position: absolute;
    right: 15px;
    top: 8px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 300;
	background-color: rgba( 114, 203, 193, 1.0 ); 
	border-radius: 10%; 
}
  .nav_list {
    margin: 0;
    padding: 0;
    list-style: none;  
  }
	
	.nav_list li{
		text-align: center;
	}	
	
.nav_item a:hover::before {
    top: 10px;
    left: 20px;
}	
	
 .nav_item {
    text-align: center;
    padding: 0 14px;
    display: inline-block;
    width: 48%;
}
		
  .nav_item a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
  }
	
.nav_item2 {
    text-align: center;
	}	
	
  /*.nav_item a:hover {
    background-color: #eee;
  }*/
  .hamburger_border {
    position: absolute;
    right: 10px;
    width: 30px;
    height: 2px;
    background-color: #fff;
    transition: all .6s;
}
  .hamburger_border_top {
    top: 12px;
  }
 /* .hamburger_border_center {
    top: 20px;
  }*/
  .hamburger_border_bottom {
    top: 20px;
  }
	
.hamburger_border_bottom::after {
    content: "Menu";
    position: absolute;
    top: 5px;
    left: -2px;
    color: #fff;
    font-size: 1.2rem;
    text-transform: uppercase;
}
	
  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }

  /* 表示された時用のCSS */
  .nav-open .nav {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	width: 50%;  
  }
  .nav-open .black_bg {
    opacity: .8;
    visibility: visible;
  }
  .nav-open .hamburger_border_top {
    transform: rotate(25deg);
    top: 17px;
	background-color: #fff;
  }
  /*.nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }*/
  .nav-open .hamburger_border_bottom {
    transform: rotate(-25deg);
    top: 17px;
	background-color: #fff;  
  }
	
	.nav-open .hamburger_border_bottom::after {
    content: "Close";
    transform: rotate(25deg);
    top: 7px;
    left: -9px;
    color: #fff;
}
	
	.sp-nav-logo{
		text-align: center;
		margin: 4rem auto;
	}	
 
	
}/* sp */

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

.nav {
    height: 80vh;
      }	

.nav_item {
    width: 100%;
}

}
    


/*キャッチコピー
-------------------------------------*/
.catch {
    text-align: center;
	margin: 2rem auto;
}
.catch h2 {
   	font-size: calc(((100vw - 360px) / 156) + 26px);
	color: #171c61;
	font-weight: bold;
}
.under {
    line-height: 1.8;
  padding-bottom: 1px;
  display: inline; 
  background:linear-gradient(transparent 70%, #f8e645 0%);
}

/*メインコンテンツ
-------------------------------------*/
main {
    margin: 4rem auto;
	padding: 2rem 0;
}
section {
	margin: 0 auto;
	}


.center {
	text-align: center;
	margin-bottom: 4rem;
}

.yellow-bg{
	background-color: #ffffee;
	padding: 4rem 0;
}

.area-ttl{
	text-align: center;
	margin: 4rem auto;	
}

.features-list{
	width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.features-list li {
  width: calc( 50% - 6px ) ;
  margin-bottom: 40px;
	text-align: center;	
   list-style: none;	
}


.features_bg {
    background-image: url(../images/features_bg.png);
    position: relative;
    background-position: center;
    width: 100%;
    height: 362px;
	padding: 2rem 1rem;
}

.features-icon{
	position: absolute;
	top: -40px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.features-ttl{
	text-align: center;
	margin: 3rem auto 1rem;
	font-size: calc(((100vw - 360px) / 260) + 18px);
	font-weight: bold;
}

.yellow-box{
	background-color: #ffffee;
	border: solid 3px #97cc1d;/*線*/
    border-radius: 20px;/*角の丸み*/
	padding: 20px 10px;
}

.green-line{
	border-bottom: solid 2px #97cc1d;
}

.free-info-ttl{
	font-size: calc(((100vw - 360px) / 390) + 28px);
	font-weight: bold;
	text-align: center;
	color: #323970;
}

.free-text{
	padding: 2rem 1rem;
}

.difference-flex{
	display: flex;
	justify-content: center;
	vertical-align: top;
}

.pd6{padding: 0 6px;}

.realization-img{
	margin: 2rem auto;
	text-align: center;
}

.box-y {
    margin: 2em 0;
    background: #f8e645;
	border: solid 6px #f8e645;
    border-radius: 15px;
}
.box-y .box-title {
    font-size: calc(((100vw - 360px) / 195) + 20px);
    padding: 4px;
    text-align: center;
    color: #171c61;
    font-weight: bold;
    letter-spacing: 0.05em;
}
.box-y p {
    padding: 15px 20px;
    margin: 0;
    background-color: #fff;
    border-radius: 0 0 15px 15px;
}

.support-sub{
	color: #171c61;
	font-weight: bold;
	text-align: center;
	margin: 2rem auto;
	font-size: calc(((100vw - 360px) / 520) + 18px);
}

.box-y .white-box {
    padding: 15px 20px;
    margin: 0;
    background-color: #fff;
    border-radius: 0 0 15px 15px;
}

.balloon2 {
    position: relative;
    display: inline-block;
    margin: 1.5em auto;
    padding: 7px 10px;
    /* min-width: 120px; */
    max-width: 100%;
    color: #323970;
    font-size: calc(((100vw - 360px) / 260) + 18px);
    font-weight: bold;
    background: #FFF;
    border: solid 3px #231815;
    box-sizing: border-box;
    border-radius: 30px;
    width: 100%;
    text-align: center;
}

.balloon2:before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 12px solid #FFF;
  z-index: 2;
}

.balloon2:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #231815;
  z-index: 1;
}

.balloon2 p {
  margin: 0;
  padding: 0;
}


/*お問い合わせ
-------------------------------------*/
.contact-area {
    border: solid #97cc1d 3px;
    margin: 10rem auto;
    position: relative;
    padding: 0 0 4rem;
	background-color: #ffffee;
	border-radius: 20px; 
}

/*.contact-ttl img{
	position: absolute;
	left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	top: -25px;
	margin: 0 auto;
	width: 100%;
	max-width: 800px;
}

.contact-text25{
	font-size: calc(((100vw - 360px) / 195) + 17px);
	font-weight: bold;
	text-align: center;
}*/

.contact-ttl{
	background-color: #97cc1d;
	color: #fff;
	font-size: 25px;
	font-weight: bold;
	text-align: center;
	padding: 2rem 0;
	border-radius: 16px 16px 0 0; 
}

.black-hr{
	border-bottom: 1px solid #000;
}

.contact-box {
	border: 1px solid var(--border-color);
	text-align: center;
	padding: 2rem 0;
}
.table {
	margin: 4rem 0;
}
.table th {
	width: 25%;
}

/* 送信ボタン */
.submit-btn {
  /* buttonタグのリセットCSS */
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;

  color: #fff;
  padding: 8px 24px;
  background-color: #3abec1;
  cursor: pointer; /* ポインターカーソルを表示 */
}

.submit-btn[disabled] {
  background-color: #ccc;
  cursor: not-allowed; /* クリック不可のカーソルを表示 */
}

.flex-check{
	display: flex;
	vertical-align: top;
	justify-content: center;
}

.button-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    margin:0 auto 4rem;
    padding: .9em 2em;
    border: 1px solid #f8e645;
    border-radius: 25px;
    background-color: #f8e645;
    color: #171c61;
    font-size: 1em;
	font-weight: bold;
}

.button-1::after {
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    margin-left: 10px;
    border-top: 2px solid #171c61;
    border-right: 2px solid #171c61;
    content: '';
}

.button-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    margin: 0 auto 4rem;
    padding: 0.5em 0.5em;
    border: 1px solid #97cc1d;
    border-radius: 25px;
    background-color: #97cc1d;
    font-size: 14px;
    font-weight: bold;
}

.button-2::after {
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    margin-left: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
}

.white-text{ color: #fff;}

/*フッター
-------------------------------------*/
footer {
    background-color: #72cbc1;
    padding: 5rem 0;
}
/*footer h4 {
    border-bottom: 3px solid var(--border-color);
}*/

.foot-info table{
  width: 100%;
  color: #fff;		
}

.foot-info table th{
  /*position: relative;*/
  text-align: left;
  width: 25%;
　color: #fff;	
 padding: 0 0 2px;
 font-weight: 400;	
 vertical-align: top;
}

/*.foot-info table th:after{
  display: block;
  content: "／";
  color: #fff;
  position: absolute;
  top:calc(7% - 1px);
  right:-15px;
}*/

.foot-info table td {
    text-align: left;
    padding: 0 0 10px 30px;
    width: 75%;
    color: #fff;
	font-size: calc(((100vw - 360px) / 780) + 16px);
}

.foot-info table td a{
	color:#fff;
}

.nowrap{
white-space: nowrap;
}

.foot-nav{
  /*init*/
  margin: 0;
  padding: 0;
  list-style: none;
}
.foot-nav{
  display: flex;
  align-items: center;
  margin: 2rem auto 4rem;
  }

.foot-nav li{
  flex-grow: 1;
  text-align: center;
}

.foot-nav li a{
	color:#fff;
}

/*.foot-nav li:hover{
  background-color: #ff9a9a;
}*/

.foot-nav li + li{
  border-left: 2px solid #fff;
}


.foot-flex{
	display: flex;
	vertical-align: top;
	justify-content: flex-start;
}


/*コピーライト
-------------------------------------*/
.copyright {
    text-align: center;
    padding: 1rem 0;
    background-color: #72cbc1;
	color: var(--white-color);
	font-size: 12px;
}
/*.copyright a {
    color: var(--white-color);
    text-decoration: none;
	display: inline;
}*/

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
	
}
#pagetop a {
    display: block;
    /*background-color: var(--base-color);
    color: var(--white-color);
    width: 50px;*/
    padding: 10px 5px;
    text-align: center;
	width: calc(((100vw - 360px) / 26) + 60px);
}
/*#pagetop a:hover {
    background-color: var(--link-color);
}*/

.site-header{
    background: #fff;
    display: flex;
    justify-content: space-between;
    /*padding: 20px;*/
    /*position: relative;*/
    width: 100%;
}

.header-change{
    background: #333;
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: -1000px;
    transition: .5s;
    width: 100%;
}
.header-change.show{
    top: 0;
}
.header-change .gnav__menu__item a{
    color: #fff;
    text-decoration: none;
}



/* 幅1700px以下の表示
-------------------------------------*/
@media screen and (max-width: 1700px){
	
	.catch {
    margin: 13rem auto 5rem;
}

	.main-left-img{
		display: none;
	}
	
	.main-right-img{
		display: none;
	}
	
}

/* 幅1350px以下の表示
-------------------------------------*/
@media screen and (max-width: 1350px){
.site-header{
    width: 80%;
}
}

/* 幅1000px以下の表示
-------------------------------------*/
@media screen and (max-width: 1000px){

.nav-open .nav {
    width: 80%;
}	
	
.features-list li {
  width: 100% ;
  margin-bottom: 40px;
}
	
.foot-nav{
  display: block;
    }
	
.foot-nav li + li{
  border-left: 0px;
}	
	
}

/* 幅800px以下の表示
-------------------------------------*/
@media screen and (max-width: 800px){
	
/*ヘッダー
-------------------------------------*/
.header-box {
	display: none;
}
	
	
	
.mainimg .batch img{
		width: 30%;
		margin: 0 auto;
		bottom: -30%;
	}
	
.catch {
    margin: 10rem auto 5rem;
}	
	
/* .example4{
        flex-wrap: wrap;
    }
    .example4 li{
        width: 50%;
    }
	
	.mark img{
		width: 15%;
		margin: 0 auto;
	}	
	
.point-area {
    padding: 1rem;
   }	
	
.point-info2 {
    display: block;
    text-align: center;
    padding: 0 0 0 15rem;
}
	
.wind-area {
    margin: 0rem auto 0;
    padding: 2rem 0;
}
	
.area-sub-ttl {
    margin-top: 0rem;
}	
	
.vehicle-bg {
       padding: 0 2rem;
}
	
.vehicle-check {
    margin: 0 0 4rem;
}*/
	

	
/*.col_3 > *{
        width: calc( 50% - 6px ) ;
    }
    .col_3 > *:nth-child(3n){
        margin-right: 12px;
    }
    .col_3 > *:nth-child(2n){
        margin-right: auto;
    }	*/
	

/*お問い合わせ
-------------------------------------*/
.table th {
	width: 100%;
	display: block;
}	
.table td {
	display: block;
}
}

/* 幅560px以下の表示
-------------------------------------*/
@media screen and (max-width: 560px){
	
.padding10{padding: 5px;}
.padding20{padding: 10px;}

	
.catch {
    margin: 1rem auto 5rem;
}
	
/*.vehicle-area {
    padding: 2rem;
}	
	
.vehicle-check {
    margin: 0 0 4rem;
}	
	
.point-info2 {
    display: block;
    text-align: center;
    padding: 0 0 0 6rem;
}	*/
	
/*  .col_3 > *{
        width: 100%;
        margin-right: auto;
    }
    .col_3 > *:nth-child(3n){
        margin-right: auto;
    }	*/
	
.case-list li {
   width: 100% ;	
  margin-bottom: 20px;
	text-align: center;	
  border-left: 0px solid #fff;
  border-right: 0px solid #fff;
  border-bottom: 1px solid #fff;	
  list-style: none;	
}
.case-list li+ li {
  border-left: 0;
  border-right: 0px solid #fff;
}	
	
  
	
.contact-area {
    margin: 5rem auto;
   }	
	
.contact-ttl img {
    top: -15px;
    }	
	
.features_bg {
    height: auto;
    background-size: cover;
}	
	
.difference-flex{
	display: block;
	}
	
.anchor {
    padding-top: 10px;
    margin-top: -10px;
}	
	

}



@media only screen and (max-width: 1350px) {
	
	.header-change{
		display: none;
	}	
}

@media only screen and (min-width: 1920px) {

	.catch h2 {
   	font-size: 36px;
	}
	
	.features-ttl{
	font-size: 24px;
	}
	
	.free-info-ttl{
	font-size: 32px;
	}
	
	.box-y .box-title {
    font-size: 28px;
}
	
	.support-sub{
		font-size: 21px;
	}
	
	.balloon2 {
		font-size: 24px;
	}
	
	.foot-info table td{
		font-size: 18px;
	}
	
}





