@charset "UTF-8";

/* リセット */
body,div,
dl,dt,dd,ul,ol,li,
h1,h2,h3,h4,h5,h6,
pre,form,fieldset,input,textarea,p,blockquote,th,td {
	margin: 0;
	padding: 0;
	font-size: 100%;
	list-style: none;
}
img {
  vertical-align: bottom;
	max-width: 100%;
}
body{
	font-family:"ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
}
/* ヘッダーデザイン */
.site-header{
	background: #fff;
	height: 8.4em;
	/* display: flex; */
	position: fixed;
	justify-content: space-between;
	width: 100%;
	z-index: 5;
	transition: .5s;
}
.header-title{
	background: #F4F0DD;
}
.header-title h1{
	font-size: 16px;
	font-weight: normal;
	padding: .6em .6em .6em 2em;
}

.header_wrapper{
	position: relative;
}
.header_left{
	position: absolute;
  left: 0;
	margin-left: 7em;
	float: left;
}
@media (max-width: 1180px){
	.header_left{
		margin-left: 2em;
	}
}
@media (max-width: 1080px){
	header{
		display: none;
	}
}
.header_left img{
	width: 90%;
}
.header_left a:hover{
	opacity: 0.7;
	webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
.header_left h1{
	font-weight: normal;
	font-size: 12px;
}
@media (max-width: 1080px){
	.header_wrapper{
		height: 6em;
	}
	.header_left h1{
		font-weight: normal;
		font-size: 10px;
	}
}
@media (max-width: 880px){
	.site-header{
		height: 4em;
	}
	.header_left img{
		width: 60%;
	}
}
/* header_right */
.header_right{
	position: absolute;
  right: 0;
	width: 890px;
	margin: 0 0  0 auto;
}
@media (max-width: 1280px){
	.header_right{
		width: 885px;
	}
}
/* ナビデザイン */
nav{
	float: left;
}
.menu{
	display: block;
	margin-top: .6em;
}
.menu li a{
	text-decoration: none;
	font-size: 16px;
	color: #6DB300;
	margin-left: 1.2em;
	margin-right: 1.2em;
	text-align: center;
}
.menu_text{
	padding-top: 1em;
}
.menu ul{
	width: 500px;
}
.menu li{
	float: left;
	width: auto;
	margin-left: auto;
	margin-right: auto;
	margin-top: .5em;
}
.menu li a:hover{
	color: #008FCD;
	webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
.menu ul:after{
	content: "";
	display: block;
	clear: both;
}
/* 電話設定 */
.tel{
	text-decoration: none;
	border: 1px solid #4C1769;
	border-radius: 26px;
	padding: .8em 0;
	margin-right: 1em;
	width: 176px;
	float: left;
	text-align: center;
	margin-top: 1em;
}
.tel span{
	color: #68B72E;
}
.tel h3{
	color: #000;
	font-weight: bold;
	letter-spacing: 1px;
}
.tel.transform{
	display: none;
}
/* お問い合わせ */
.reseve a{
	text-decoration: none;
	color: #FFF;
	background-image: linear-gradient(90deg, rgba(247, 93, 139, 1), rgba(254, 220, 64, 1));
	border-radius: 26px;
	padding: .8em 0;
	width: 176px;
	float: left;
	text-align: center;
	margin-top: 1em;
	transition: 0.5s;
}
.reseve :hover{
	color: #6DB300;
	transition: 0.5s;
}

/* sns設定 */
/* .insta{
	float: left;
}
.header_right_text{
	margin-top: 1em;
	float: left;
} */

/*  ハンバーガーメニュー */
.hamburger {
  position: fixed;
  z-index : 3;
  right : 13px;
  top   : 20px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
	z-index: 9999;
	border: 2px solid #000;
	background: #FFF;
	border-radius: 6px;
}
.hamburger{
	display: none;
}
@media (max-width: 1080px){
	.hamburger{
		display: block;
	}
}
@media (max-width: 880px){
	.hamburger{
		top   : 16px;
	}
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #555;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition   : 0.5s ease-in-out;
  transition        : 0.5s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}
/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 21px;
  left: 6px;
  -webkit-transform: rotate(315deg);
  -moz-transform   : rotate(315deg);
  transform        : rotate(315deg);
}
.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 21px;
  -webkit-transform: rotate(-315deg);
  -moz-transform   : rotate(-315deg);
  transform        : rotate(-315deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index : 10;
  top  : 0;
  left : 0;
  color: #000;
  background: #6DB300;
  text-align: center;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 100%;
	opacity: .9;
}

nav.globalMenuSp ul {
  background: #6DB300;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #fff;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
nav.globalMenuSp ul li:hover{
  background :#ddd;
}
nav.globalMenuSp ul li a {
  display: block;
  color: #000;
  padding: 1em 0;
  text-decoration :none;
	color: #FFF;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(0%);
}
.nav_tel{
	margin-top: 2em;
	color: #FFF;
}
.nav_phone h3{
	font-size: 28px;
	color: #FFF;
}
.nav_ad{
	font-size: 16px;
	margin-bottom: 4em;
}

/* トップ画面デザイン */
.top_photo{
    background: url(../images/FV.png)no-repeat center center /cover;
    height: 240px;
    position: relative;
		margin-top: 7em;
}
.top_photo_text h1{
	position: absolute;
	top: 40%;
  left: 10%;
	font-size: 35px;
	color: #492812;
	border-left:5px solid #83BE3F;
	padding: 6px 20px;
}
@media (max-width: 1080px){
	.top_photo{
			margin-top: 0em;
	}
}
@media (max-width: 780px){
	.top_photo{
			margin-top: 0em;
			height: 184px;
	}

	.top_photo_text h1{
		position: static;
		text-align: center;
		font-size: 28px;
		padding-top: 2.8em;
		border-left: none;
		border-right: none;

	}
}

/* 「SlideDown」の動作内容 */
@keyframes SlideDown {
  0% {
    opacity: 0;/* 透明 */
    transform: translateY(50px);/* Y軸方向に50px */
  }
  100% {
    opacity: 1;/* 不透明 */
    transform: translateX(0);
  }
}
body .top_photo, .banner, .content01, .content02, .content03, .content04,
 .content05,.contact, .map, footer, .copyright{
  animation-duration: 2s;/* アニメーション時間 */
  animation-name: SlideDown;/* アニメーション名 */
}

/*  コンテンツ01設定 */
.content01{
	text-align: center;
	margin-bottom: 3em;

}
.content01 .tittle_01{
	/* margin-bottom: 2em; */
}
.content01 h2{
	margin-left: auto;
	margin-right: auto;
	color: #492812;
	width: 160px;
	font-size: 28px;
	padding-bottom: .5em;
	margin-top: 2em;
	border-bottom: 1px solid #82BD3F;
	/* font-weight: normal; */
	/* border-bottom: 1px solid #4C1769; */
}
@media (max-width: 768px){
	.content01 h2{
		margin-top: 1.4em;
		font-size: 24px;
	}
	.content01{
		margin-bottom: 0em;
	}
}
/* ボタン設定 */
.serves_button{
	margin-top: 1em;
	padding-bottom: 3em;
	text-align: center;
}
.serves_button a{
	padding: 14px 120px;
	color: #FFF;
	font-size: 18px;
	background: #93C743;
	text-decoration: none;
	border-radius: 6px;
}
.serves_button a:hover{
	opacity: 0.7;
	webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
@media screen and (max-width: 600px){
	.serves_button a{
		padding: 14px 80px;
		font-size: 16px;
	}
}

/* お問い合わせ設定 */
.contact{
	width: 800px;
	background: #FBE7EC;
	padding:3em 2em 1em 2em;
	border-radius: 16px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 4em;
	position: relative;
}
.illu_kaeru03 {
  position: absolute;
  right: 3em;
  bottom: -3em;
}
@media (max-width: 1000px){
	.contact{
		width :660px;
		background: #FBE7EC;
		padding:3em 2em 1em 2em;
		border-radius: 16px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 3em;
	}
}
@media (max-width: 800px){
	.contact{
		width :auto;
		background: #FBE7EC;
		padding:3em 2em 1em 2em;
		border-radius: 0px;
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 0em;
	}
}
.contact_wrapper{
	text-align: center;
	margin-bottom: 2em;
}
.contact h2 {
    color: #492812;
    font-size: 28px;
    padding-bottom: 0.5em;
}
.contact-tel {
	margin-bottom: 1em;
}
.contact-tel h5 {
	  width:420px;
    color: #492812;
    font-size: 42px;
		padding-top: 0.2em;
    padding-bottom: 0.2em;
		margin-left: auto;
		margin-right: auto;
		border-top: 1px solid #4C1769;
		border-bottom: 1px solid #4C1769;
}

.contact_wrapper p{
	font-size: 18px;
	margin-bottom: .6em;
}
@media screen and (max-width: 600px) {
	.contact-tel h5 {
		  width:320px;
	    color: #492812;
	    font-size: 32px;
			padding-top: 0.2em;
	    padding-bottom: 0.2em;
	}
	.contact_wrapper p{
		font-size: 16px;
	}
	.illu_kaeru03{
		display: none;
	}
}
.contact-time p{
	margin-top: 1em;
}
.contact_button{
	text-align: center;
}
.contact_button a {
	text-decoration: none;
    padding: 14px 50px;
    color: #FFF;
    font-size: 18px;
    background: #93C743;
    text-decoration: none;
    border-radius: 6px;
}
.contact_button:hover{
	opacity: 0.7;
	webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}

/* map設定 */
/* .map {
background: #F4F0DD;
} */
.map:after{
	content: "";
	display: block;
	clear: both;
}
.map-wrapper{
	width: 1012px;
	margin-left: auto;
	margin-right: auto;
}
.map-date{
	float: left;
	width: 400px;
	padding: 3em;
	margin-left: auto;
	margin-right: auto;
}
.map-date h4{
	font-size: 22px;
	padding-bottom: .5em;
	border-bottom: 1px solid #000;
	color: #ff9901;
}
.map-date p{
	font-size: 16px;
	border-bottom: 1px solid #000;
	padding: 1em;
}
.date-table th,.date-table td{
    padding: 10px;
}
iframe {
  width: 400px;
	height: 340px;
	padding: 3em;
  /* aspect-ratio: 16/9; //アスペクト比（縦横比）を指定 */
}
@media (max-width: 1000px){
	.map-wrapper{
		width: 780px;
		margin-left: auto;
		margin-right: auto;
	}
	.map-date{
		float: left;
		width: auto;
		padding: 2em;
		margin-left: auto;
		margin-right: auto;
	}
	.map-date h4{
		font-size: 18px;
		padding-bottom: .5em;
		border-bottom: 1px solid #000;
		color: #ff9901;
	}
	.map-date p{
		font-size: 14px;
		border-bottom: 1px solid #000;
		padding: 1em;
	}
	iframe {
	  width: 320px;
		height: 240px;
		padding: 2em;
	}
}
@media (max-width: 780px){
	.map-wrapper{
		width: auto;
		margin-left: 1.5em;
		margin-right: 1.5em;
	}
	.map-date{
		float: none;
		width: auto;
		padding: 3em 1em 1em 1em;
		margin-left: auto;
		margin-right: auto;
	}
	iframe {
	  width: 90%;
		height: 240px;
		padding: 1em 1em 1em 1em;
	}
}

/* コピーライト設定 */
.copyright{
	background-color: #FFF;
}
.copyright p{
	font-size: 15px;
	padding-top: 1.2em;
	padding-bottom: 1.8em;
	color:#000;
	text-align: center;
}
@media (max-width: 780px){
	.copyright p{
		font-size: 14px;
		margin-left: 1.5em;
		margin-right: 1.5em;
	}
}
