﻿@charset "UTF-8";

/*=============================
		共通
=============================*/
body {
	-webkit-text-size-adjust: 100%;/* スマホレイアウト防止 */
	margin: 0px;
	padding: 0px;
	color:#000000;
	-webkit-font-smoothing: antialiased;
	font-family: 'Kosugi Maru', sans-serif; /* WEBフォント */
}
img{max-width: 100%;
	height:auto;
	}
.center{text-align: center;}
.right{text-align: right;}
li img,dt img,dd img{vertical-align:bottom;}/* 隙間をなくす */

/* box ------------------*/
.box{
	width: 90%;
	max-width:1000px;
	margin:0 auto;
	overflow:hidden;
	box-sizing: border-box;
}
.box_maru{
	width: 90%;
	max-width:1000px;
	margin:0 auto 30px;
	overflow:hidden;
	box-sizing: border-box;
	background: #FFF;
	padding: 30px;
	border-radius: 20px;
}

@media screen and (max-width: 600px) {
.box_maru{padding: 20px;}
}


/* フェードイン ------------------*/
.fadein {
  opacity : 0;
  transform: translateY(20px);
  transition: all 1s;
}

/* PC表示・SP表示  ------------------*/
.pc { }
.sp { display:none;}
@media screen and (max-width: 600px) {
.pc{ display:none;}
.sp {display:block; }
}

/* ホバー  ------------------*/
.hover:hover{
	opacity:0.7;
	filter: alpha(opacity=70);
	transition-duration: 0.3s;
}
.hover2{background: #000;}
.hover2 img:hover{
	opacity: 0.9;	/* 小さくするほど暗くなります */
	transition-duration: 0.3s;
	padding:0px;
}

/*=============================
		リンク
=============================*/
a{ outline: none;}
a:link,
a:visited {
	color: #0B79C4;
	font-weight: normal;
}
a:hover,
a:active {
	text-decoration: none;
	color: #7C7C7C;
}
a img {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}

/*=============================
		header
=============================*/
header{
	width: 100%;
	margin-top: 0px;
	background: #FFFFFF;
}
.header_in{
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 5px 0px 0px;
	overflow: hidden;
}
.header_r{
	float: right;
	width: 60%;
	margin-top: 5px;
}
.logo{
	width: 40%;
	float: left;
	margin-top: 20px;
	overflow: hidden;
}
.logo img{max-width: 400px;width: 100%;}

.h_telmail{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-top: 5px;
}
.h_telmail li{margin-left: 20px;}
.h_tel{
	max-width: 250px;
	text-align: center;
	font-size: 15px;
	line-height: 80%;
}

.nav_sp{display: none;}
.sp_tel{border: none !important;}

@media screen and (max-width:1000px){
.header_in{width: 100%;padding: 5px 0px 0px;}
ul.h_telmail{display: none;}
.logo{width: 60%;margin-top: 20px;padding-left: 10px;}
.nav_sp{display:block;}
}


@media screen and (max-width:500px){
.header_in{padding: 8px 0px 0px;}
.logo{margin-top: 10px;}
}

/* -------------------ヘッダーBTN-------------- */
.yoyaku_btn{
	background: #399D26!important;
	padding: 10px 25px;
	letter-spacing: 1px;
	border-radius: 40px;
	display: inline-block;
	color:#FFFFFF!important;
	font-size: 18px !important;
	font-weight: bold !important;
	transition: all .2s;/* ふんわり */
	text-decoration:none!important;
}
.yoyaku_btn a:hove{
	background:#06c755!important;
}
.yoyaku_btn:hover{
	opacity: 0.8;/* 透過 */
	filter: alpha(opacity=70);
	transition-duration: 0.3s;
}
.yoyaku_btn i{padding-right: 5px;}


@media screen and (max-width:1000px){
.yoyaku_btn{
	padding: 1em 2em!important;
	font-size: 25px!important;
	display: inline-block!important;/* 横幅を文字に合わせて可変 */
}

}


/*=============================
		サイドメニュー
=============================*/
.side_menu{
	position: fixed;
	top:250px;
	right: 0px;
	z-index: 100;
}
.side_menu ul li{
	margin-bottom: 10px;
	width: 70px;
}
@media screen and (max-width: 1000px) {
.side_menu{top:140px;}
.side_menu ul li{width: 55px;}
}

@media screen and (max-width: 700px) {
.side_menu{display: none;}
}


/*=============================
		footer
=============================*/
footer{width: 100%;margin: 0;}	
.footer_in{
	width: 100%;
	overflow: hidden;
	background: #3A9D26;
	padding: 50px 0px 5px;
}
.f_copy{
	color:#FFFFFF;
	font-size:12px;
	text-align:center;
	padding:30px 0px 0px;
}
.f_logo{
	text-align:center;
	margin:0 auto 30px;
	max-width: 300px;
	width: 50%;
}

@media screen and (max-width: 700px) {
.footer_in{padding: 20px 0px 110px;}
.f_copy{
	font-size:9px;
	padding:0px;
}
.f_logo{
	width:70%;
	margin:0 auto;
	padding:0px 0px 10px;
}
.f_p{width: 90%;padding-left: 0px;}
ul.f_banner{margin:0px;}
ul.f_banner li{width:100px;}
ul.footer_ul{flex-wrap: wrap;}
}


/*fooder_menu（もくじ）-----------*/
ul.f_menu{
	margin-top:20px;
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
}
ul.f_menu li{
	text-align:center;
	font-size: 12px;
	line-height:130%;
	padding:0px 10px;
}
ul.f_menu li i{padding-right: 5px;}

ul.f_menu li a:link,
ul.f_menu li a:visited,
ul.f_menu li a:hover,
ul.f_menu li a:active {
	color:#FFFFFF;
	text-decoration:none;
}

@media screen and (max-width: 700px) {
ul.f_menu{display:none;}
}

/*=============================
		スマホ版フッダーメニュー
=============================*/
.footer_sp{display: none;}

@media screen and (max-width: 700px) {
.footer_sp{
	display: block;
	position: fixed;
	bottom: 0px;
	width: 100%;
	background: #F5F5F5;
	border-top: solid 4px #9E9E9E;
	padding: 20px 0px 5px;
}
ul.sp_menu{
	width: 95%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	text-align: center;
}
ul.sp_menu li{
	width: 25%;
	color: #9E9E9E;
	text-align: center;
	font-size: 20px;
}
ul.sp_menu li i{/* アイコン */
	margin-bottom: 5px;
	font-size: 30px;
	}
ul.sp_menu li a:link,
ul.sp_menu li a:visited,
ul.sp_menu li a:hover{
	color:#727272!important;
	text-decoration: none;
}
ul.sp_menu li:hover{color:#399D26!important;}
}

@media screen and (max-width: 500px) {
ul.sp_menu li{font-size: 14px;}
ul.sp_menu li i{font-size: 22px;}
}


/*=============================
		BG
=============================*/
.bg_space{padding: 70px 0px;}/*スペースのみ*/
.bg1{/*背景白*/
  width: 100%;
  padding: 100px 0px;
}
.bg2{/*背景　灰色*/
	background: #F2F2F2;
	padding: 100px 0px;
}
.bg3{/*背景　写真*/
	padding: 100px 0px;
	background:url("../img/bg3.jpg") no-repeat center center;
	background-color:rgba(255,255,255,0.5);
	background-blend-mode:lighten;
	background-size: cover;/* 画面いっぱいに表示 */
	background-attachment: fixed;/* 背景位置固定 */
}
@media screen and (max-width: 600px) {
.bg_space{padding: 50px 0px;}
.bg1{padding: 40px 0px;}
.bg2{padding: 60px 0px;}
.bg3{
	padding: 60px 0px;
	background:url("../img/bg3_sp.jpg") no-repeat center center;
	background-color:rgba(255,255,255,0.5);
	background-blend-mode:lighten;
	}
}



/*=============================
		文字
=============================*/
.S{
	font-size:16px;
	line-height: 190%;
	color: #000000;
}
.S2{
	font-size:18px;
	line-height: 190%;
	color: #000000;
}
.S b{font-weight: bold;}
.M{
	font-weight: bold;
	color: #0B79C4;
	font-size: 23px;
	line-height: 160%;
	margin-bottom: 10px;
}
.L{
	font-weight: bold;
	color: #6b4017;
	font-size: 25px;
	line-height: 150%;
	margin: 0px 0px 20px;
}
.red{color:#d5115f;font-weight: bold;}
.pink{color:#ec5d6f;}
.green{color:#1f8515;}
.blue{color:#0B79C4;}
.white{color:#FFF;}
.marker{background: linear-gradient(transparent 0%, #ffff66 0%);}
.sen{background: linear-gradient(transparent 60%, #FFFA7E 0%);}

@media screen and (max-width: 600px) {/*PC*/
.S{font-size:12px;line-height: 180%;}
.S2{font-size:16px;line-height: 180%;}
.M{font-size:15px;line-height: 150%;}
.L{font-size:18px;line-height: 180%;}
}
/*=============================
		title
=============================*/
.title1{/*---------------------------文字・白*/
	text-align: center;
	margin-bottom: 50px;
}
.title1 h2{
	color: #FFFFFF;
	font-size: 60px;
	font-family: 'Rubik', sans-serif;
	letter-spacing: 1px;
	margin-bottom: 15px;
	border-bottom:  solid 2px #FFFFFF;
	display: inline-block;
}
.title1 h2 i{padding-right: 10px;}
.title1 p{
	color: #FFFFFF;
	font-size: 25px;
	letter-spacing: 2px;
	font-weight: bold;
	font-family: 'Kosugi Maru', sans-serif;
}

@media screen and (max-width: 600px) {
.title1 h2{font-size: 50px;}
.title1 p{font-size: 18px;}
}


.title2{/*---------------------------文字・みどり*/
	text-align: center;
	margin-bottom: 50px;
}
.title2 h2{
	color: #399D26;
	font-size: 60px;
	font-family: 'Rubik', sans-serif;
	letter-spacing: 1px;
	margin-bottom: 15px;
	border-bottom:  solid 2px #399D26;
	display: inline-block;
}
.title2 h2 i{padding-right: 10px;}
.title2 p{
	color: #399D26;
	font-size: 25px;
	letter-spacing: 2px;
	font-weight: bold;
	font-family: 'Kosugi Maru', sans-serif;
}

@media screen and (max-width: 600px) {
.title2 h2{font-size: 50px;}
.title2 p{font-size: 18px;}
}


/* タイトル文 --------------------*/
.t_text{
	margin-bottom:30px;
	line-height:130%;
	font-size:30px;
	font-weight:bold;
	color:#6e4318;
	text-align:center;
}
@media screen and (max-width: 800px) {/*タブレット*/
.t_text{font-size:25px;}
}

/*=============================
		PT
=============================*/
.pt{
	padding: 80px 0px;
	align-items: center;
	background: #399D26;
	background-size: 100% auto;   /* 横幅に合わせて調整*/
	text-align: center;
	}
.pt_h2{
	font-family: 'Rubik', sans-serif;
	font-size:60px;
	line-height: 100%;
	color:#FFFFFF;
	margin-bottom: 10px;
}
.pt_p{font-size: 20px;color:#FFFFFF;}

@media screen and (max-width: 600px) {
.pt{padding: 30px 0px;}
.pt_h2{font-size:35px;}
}

/*=============================
	配置
=============================*/
.m10{margin:10px;}
.m20{margin:20px;}

.mb10{margin-bottom:10px;}
.mb20{margin-bottom:20px;}
.mb30{margin-bottom:30px;}
.mb50{margin-bottom:50px;}
.mtb20{margin:20px 0px;}
.mt20{margin-top:20px;}


/*=============================
		ページTOPボタン
=============================*/
#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 5%;
  bottom: 5%;
  background: #3A9D26;
  border: solid 2px #FFFFFF;
  opacity: 0.6;
  border-radius: 50%;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
@media screen and (max-width: 700px) {
#page_top{display: none;}
}



/*=============================
		ボタン（大）
=============================*/
.btn1{/* -----みどり色----- */
	background-color:#399D26;
	padding: 1em 3em;
	border-radius: 40px;
	display: inline-block;
	text-decoration: none;
	font-size:20px;
	line-height: 130%;
	color:#FFFFFF!important;
	transition: all .2s;/* ふんわり */
}
.btn1 a:hover{
	color:#FFFFFF!important;
	text-decoration: none;
}
.btn1:hover{
	opacity: 0.8;/* 透過 */
	filter: alpha(opacity=70);
	transition-duration: 0.3s;
}
.btn1 i{padding-left: 10px;}

.btn_mini{
	padding: 1em 2em!important;
	font-size: 14px!important;
}
@media screen and (max-width: 600px) {
.btn1{
	font-size:14px;
	padding: 1em 3em;
	border-radius: 30px;
	white-space: nowrap;
	}
.btn_mini i{padding-left: 3px!important;}
}


.btn2{/* -----白背景ボタン----- */
	background-color:#FFFFFF;
	padding: 1em 2em;
	border-radius: 40px;
	display: inline-block;
	text-decoration: none;
	font-size:18px;
	line-height: 130%;
	color:#3A9D26!important;
	transition: all .2s;/* ふんわり */
}
.btn2 a:hover{
	color:#FFFFFF!important;
	text-decoration: none;
}
.btn2:hover{
	opacity: 0.8;/* 透過 */
	filter: alpha(opacity=70);
	transition-duration: 0.3s;
}
.btn2 i{padding-left: 10px;}
@media screen and (max-width: 600px) {
.btn2{
	font-size:14px;
	padding: 1em 3em;
	border-radius: 30px;
	white-space: nowrap;
	}
}


/*=============================
		table
=============================*/
table.type01 {
	width:95%;
	margin:0 auto 30px;
	border-collapse: separate;
	border-spacing: 0;
	text-align: left;
	border-top: 1px solid #eee;
	border-left: 1px solid #eee;
	background-color:#FFFFFF;
    font-size:16px;
	line-height:140%;
}
table.type01 th {
	padding: 20px;
	border-right: 1px solid #eee;
	border-bottom: 1px solid #eee;
	background: #f5f7f7;
	vertical-align:middle;
	text-align:center;
	white-space: nowrap;
}
table.type01 th br{display: none;}
table.type01 td {
	padding: 20px;
	border-right: 1px solid #eee;
	border-bottom: 1px solid #eee;
	vertical-align:middle;
	text-align:left;
	text-align: center;
}
.nowrap{white-space: nowrap;}
.t_left{text-align: left!important;}

@media screen and (max-width: 800px) {/*タブレット*/
table.type01{width:100%;font-size:12px;}
table.type01 th {padding: 5px;}
table.type01 td {padding: 5px;}
table.type01 th br{display: block;}
}

/*=============================
		スライダーvegas
=============================*/
#vegas_box{
	width: 100%;
	height:600px;
	overflow:hidden;
	font-size:0;
}
.vegas_text{
	max-width: 1000px;
	margin: 150px auto 0px;
	text-align: center;
	}
.vegas_text img{width: 50%;}

@media screen and (max-width: 1000px) {
#vegas_box{height:500px;}
.vegas_text{margin: 100px auto 0px;}
}
@media screen and (max-width: 700px) {
#vegas_box{height:400px;}
.vegas_text{margin: 70px auto 0px;}
}
@media screen and (max-width: 500px) {
#vegas_box{height:300px;}
.vegas_text{margin: 50px auto 0px;}
}

/*----------------------スクロールボタンの指定-------------------*/
.scroll{
  position: absolute;
  width: 100%;
  bottom: 50px;
  text-align: center;
  }
.scroll a{
    position: relative;
    display: inline-block;
    font-size: 20px;
	letter-spacing: 1px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    padding: 0 0 50px;
	}
.scroll :before{/*矢印を作成する*/	
      content: "";
      position: absolute;
      width: 10px;
      height: 10px;
      left: 0;
      right: 0;
      bottom: 25px;
      margin: auto;
      border-bottom: 2px solid #fff;
      border-right: 2px solid #fff;
      transform: rotate(45deg);
      animation: move 2s infinite;
    }

@keyframes move {/*矢印をアニメーションする*/
  0% {
    transform: rotate(45deg) translate(0, 0);
  }
  20% {
    transform: rotate(45deg) translate(10px, 10px);
  }
  40% {
    transform: rotate(45deg) translate(0, 0);
  }
}

/*=============================
		波アニメーション
=============================*/

.editorial {
  display: block;
  width: 100%;
  height: 60px;
  max-height: 60px;
  margin: 0;
  bottom:0;
  position:absolute;
  left:0px;
}

.parallax1 > use {
	animation: move-forever1 10s linear infinite;
  &:nth-child(1) {animation-delay: -2s;
  }
}
.parallax2 > use {
  animation: move-forever2 8s linear infinite;
  &:nth-child(1) {
    animation-delay: -2s;
  }
}
.parallax3 > use {
  animation: move-forever3 6s linear infinite;
  &:nth-child(1) {
    animation-delay: -2s;
  }
}
.parallax4 > use {
  animation: move-forever4 4s linear infinite;
  &:nth-child(1) {
    animation-delay: -2s;
  }
}
@keyframes move-forever1 {
  0% {transform: translate(85px, 0%);}
  100% {transform: translate(-90px, 0%);}
}
@keyframes move-forever2 {
  0% {transform: translate(-90px, 0%);}
  100% {transform: translate(85px, 0%);}
}
@keyframes move-forever3 {
  0% {transform: translate(85px, 0%);}
  100% {transform: translate(-90px, 0%);}
}
@keyframes move-forever4 {
  0% {transform: translate(-90px, 0%);}
  100% {transform: translate(85px, 0%);}
}

/*=============================
		共通
=============================*/
#main{
	width: 100%;
	padding: 100px 0px;
}
.p_top{
	padding-top: 50px;
}
.box{
	width: 95%;
	max-width:1000px;
	margin:0 auto;
	padding-bottom:30px;
	overflow:hidden;
	box-sizing: border-box;
}
.box_in{padding:10px 20px;}

@media screen and (max-width: 1000px) {
#main{padding: 50px 0px;}
.box{
	width: 90%;
	padding-bottom:30px;
}
.box_in{padding:10px 10px;}
}


/*=============================
		top
=============================*/
/* TOP_about---------------------------- */
.about_title{
	max-width: 900px;
	width: 80%;
	margin: 0 auto 100px;
}
.about_box{
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1400px;
	width: 100%;
	margin: 0px auto 0px;
}
.about_img{width: 60%;}
.about_txt{width: 40%;padding: 0 5%}
.about_txt h2{
	color: #00000;
	font-size: 30px;
	line-height: 180%;
	font-weight: bold;
	margin-bottom: 50px;
}
.about_txt p{
	font-size: 20px;
	line-height: 200%;
}
@media screen and (max-width: 1100px) {
.about_img{width: 50%;}
.about_txt{width: 50%;padding: 0 5%}
.about_txt h2{font-size: 25px;margin-bottom: 20px;}
.about_txt p{font-size: 18px;}
}

@media screen and (max-width: 800px) {
.about_title{margin: 0 auto 50px;}
.about_box{
	flex-wrap: wrap;
	justify-content: center;
}
.about_img{width: 80%;margin-bottom: 20px;}
.about_txt{width: 80%;}
.about_txt h2{text-align: center;}
}

@media screen and (max-width: 600px) {
.about_title{width: 90%;margin: 0 auto 30px;}
.about_img{width: 90%;margin-bottom: 20px;}
.about_txt{width: 90%;}
.about_txt h2{font-size: 20px;}
.about_txt p{font-size: 15px;}
}



/* TOP_お客様の声---------------------------- */
ul.top_voice{
	display: flex;
	justify-content: center;
	max-width: 1200px;
	width: 95%;
	margin: 0 auto 50px;
	box-sizing: border-box;
}
ul.top_voice li{
	background: #FFF;
	border-radius: 20px;
	padding: 20px;
	margin: 0px 10px;
	box-sizing: border-box;
	text-align: center;
}
ul.top_voice li p{
	font-size: 16px;
	line-height: 160%;
	text-align: left!important;
}
ul.top_voice li img{
	max-width: 280px;
	margin-bottom: 15px;
}

@media screen and (max-width: 1100px) {
ul.top_voice{
	flex-wrap: wrap;
	justify-content: center;
	width: 90%;
}
ul.top_voice li{
	width: 100%!important;
	margin-bottom: 30px;
	padding: 30px;
}
}
@media screen and (max-width: 700px) {
ul.top_voice li p{font-size: 14px;}
ul.top_voice li img{width: 70%;}
}



/*料金プラン-----------------------------------------*/
.price_box{
	width: 50%;
	max-width: 600px;
	margin: 0 auto;
	padding: 50px 30px;
	background: #FFFFFF;
	text-align: center;
	box-sizing: border-box;
}
@media screen and (max-width: 900px) {
.price_box{width: 80%;}
}


/*製品紹介-----------------------------------------*/
.item_box{display: flex;}
.item_img{
	width: 50%;
	background:url("../img/item.jpg") no-repeat center center #fdfdfd;
}
.item_txt{
	width: 50%;
	background: #399D26;
	padding: 80px 80px;
	box-sizing: border-box;
}
.item_txt h2{
	color: #FFFFFF;
	font-size: 30px;
	margin-bottom: 10px;
}
.item_txt p{
	color: #FFFFFF;
	font-size: 16px;
	line-height: 150%;
	margin-bottom: 50px;
}
ul.item_btn li{text-align: center;margin-bottom: 10px;}

@media screen and (max-width: 900px) {
.item_box{flex-wrap: wrap;}
.item_img{
	width: 100%;
	height: 500px;
	background-size: 70%;
}
.item_txt{width: 100%;}
}

@media screen and (max-width: 600px) {
.item_img{height: 400px;background-size: 90%;}
.item_txt{padding: 50px 30px;}
.item_txt h2{font-size: 28px;}
.item_txt p{font-size: 14px;}
}


/*ご利用の流れ-----------------------------------------*/
.flow_box{
	background: #FFFFFF;
	border-radius: 20px;
	max-width: 900px;
	width: 90%;
	margin: 0 auto 20px;
	padding: 20px 30px;
	box-sizing: border-box;
}
.flow_box h3{
	font-size: 25px;
	line-height: 150%;
	margin-bottom: 10px;
}
.flow_box h3 span{
	font-size: 40px;
	color: #3A9D26;
	padding-right: 15px;
	vertical-align: middle;/*上下中央揃え*/
}
.flow_box p{
	font-size: 18px;
	line-height: 150%;
}
@media screen and (max-width: 600px) {
.flow_box h3{font-size: 18px;margin-bottom: 5px;}
.flow_box h3 span{font-size: 30px;}
.flow_box p{font-size: 14px;}
}


/*よくあるご質問-----------------------------------------*/
.qa_box{
	background: #F2F2F2;
	border-radius: 20px;
	max-width: 900px;
	width: 90%;
	margin: 0 auto 20px;
	padding: 20px 30px;
	box-sizing: border-box;
}

/*==================================================
アコーディオンのためのcss
===================================*/

/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 100%;
    max-width: 900px;
    margin:0 auto;
}

.accordion-area li{
    margin: 10px 0;
}

.accordion-area section {
  border-bottom: 1px solid #ccc;
}

/*アコーディオンタイトル*/
.faq_title{
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1rem;
    font-weight: normal;
    padding: 3% 3% 3% 50px;
    transition: all .5s ease;
}

/*アイコンの＋と×*/
.faq_title::before,
.faq_title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;
}
.faq_title::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
}
.faq_title::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
.faq_title.close::before{
  transform: rotate(45deg);
}
.faq_title.close::after{
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.faq_box{
    display: none;/*はじめは非表示*/
    background: #FFFFFF;
    margin:0 3% 3% 3%;
    padding: 3%;
}

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

}


/*安全の為に-----------------------------------------*/
.howto{
	width: 100%;
	padding: 100px 0px;
	background: #3A9D26;
}
.howto_p{
	text-align: center;
	margin-bottom: 50px;
	font-size: 18px;
	color: #FFFFFF;
}

ul.howto_list{
	max-width: 1100px;
	width: 95%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
ul.howto_list li{width: 23%;text-align: center;}

ul.howto_list li h3{
	color: #FFFFFF;
	font-size: 20px;
	line-height: 150%;
	margin: 10px 0px 15px;
}
ul.howto_list li p{
	color: #FFFFFF;
	font-size: 16px;
	line-height: 150%;
}

@media screen and (max-width: 1000px) {
ul.howto_list{
	flex-wrap: wrap;
	width: 90%;
}
ul.howto_list li{
	width: 45%;
	margin-bottom: 50px;
}
ul.howto_list li img{
	max-width: 300px;
	width: 100%;
}
}

@media screen and (max-width: 1000px) {
.howto_p{padding: 0px 20px;font-size: 16px;}
ul.howto_list li h3{font-size: 17px;}
ul.howto_list li p{font-size: 14px;}
}


/*ご予約ページ-----------------------------------------*/
.shop{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 95%;
	max-width: 1000px;
	margin: 0 auto;
}
.shop_box{
	width: 48%;
	margin-bottom: 20px;
}
.shop_map{text-align: center;}
.shop_info{
	background: #399D26;
	color: #FFFFFF;
	padding: 20px;
}
.shop_info h2{font-size: 22px;}
.shop_info p{font-size: 17px;margin-bottom: 20px;}

@media screen and (max-width: 1000px) {
.shop{width: 90%;}
.shop_box{width: 100%;margin-bottom: 40px;}
}

@media screen and (max-width: 600px) {
.shop_info h2{font-size: 20px;}
.shop_info p{font-size: 14px;}
}
/* MAP -------------------------------------------*/
.ggmap {
	position: relative;
	/*padding-bottom: 56.25%;*/
	padding-bottom: 65%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
	margin:0 auto;
	width: 100%;
}
 
.ggmap iframe,
.ggmap object,
.ggmap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/*予約するBTN------------------------------*/
.reserve_btn{
	background: #FFFFFF!important;
	padding: 10px 25px;
	letter-spacing: 1px;
	border-radius: 40px;
	display: inline-block;
	color:#399D26!important;
	font-size: 18px !important;
	font-weight: bold !important;
	transition: all .2s;/* ふんわり */
	text-decoration:none!important;
}
.reserve_btn a:hove{
	background:#06c755!important;
}
.reserve_btn:hover{
	opacity: 0.8;/* 透過 */
	filter: alpha(opacity=70);
	transition-duration: 0.3s;
}
.reserve_btn i{padding-left: 15px;}

@media screen and (max-width: 600px) {
.reserve_btn{font-size: 14px !important;}
.reserve_btn i{padding-left: 5px;}
}

