@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: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}

/*　ハンバーガーボタン　*/
#nav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: middle;
	position: absolute;
	right: .8em;
	top: 1.4em;

	position: fixed;
	right: 4px;
    top: 10px;
    width: 42px;
    height: 42px;
  cursor: pointer;
  text-align: center;
	z-index: 9999;
	border: 2px solid #000;
	background: #FFF;
	border-radius: 6px;
}
#nav-open span{
	left: 6px;
	top: 12px;
}
/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  transition: all 0.4s;
  height: 3px;/*線の太さ*/
  width: 30px;/*長さ*/
  border-radius: 3px;
  background: #000;
  display: block;
  content: '';
  cursor: pointer;
  z-index: 9999;/*最前面*/
}
#nav-open span:before {
  bottom: -8px;
}
#nav-open span:after {
  bottom: -16px;
}
/*中身*/
#nav-content {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: .2s ease-in-out;
}
#nav-content.open {
  display: block;
  opacity: 1;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);/*背景色*/
  overflow: hidden;/*ブラー効果でボヤけた部分を非表示*/
}
/*:beforeにぼかし効果を設定する*/
#nav-content.open:before {
  content: '';
  overflow: hidden;
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
  filter: blur(10px);
  z-index: -1;/*重なり順序を一番下にしておく*/
}
/*チェックが入ったら表示する内容*/
.hamburger-top {
  height: 40px;/*×ボタンと被らないように*/
}
.category {
  text-align: left;
}
.category-title {
    padding: 0.25em 2.5em;
    list-style: none;
}
.category-title a{
  color: #2D0902;
	font-size: 18px;
  text-decoration: none;
}
/* リストメニュープルダウン  */
.category li {
   position: relative;
	 text-align: center;
}
.category li a {
   display: block;
   /* width: 340px; */
   padding: 10px;
	 border-radius: 10px;
}
.category li:hover > ul {
   display: block;
}
.category ul {
   display: none;
   position: absolute;
}
.category li a {
    display: block;
    text-decoration: none;
}
.category-title2 {
	margin-left: 5.5em;
}
.category-title2 {
	font-size: 13px;
}
/*子階層以降共通*/
.category li li {
    height: 0;
    overflow: hidden;
    transition: .5s;
		z-index: 999;
		width: 100%;
}
.category li li a {
    /* border-top: 1px solid #eee; */
		margin-top: .5em;
		margin-bottom: .6em;
		font-size: 16px;
		color: #000;
		background: #FFF;
}
.category li:hover > ul > li {
    height: 2em;
    overflow: visible;
}
.category li a:hover{
	/* color: #6C5A3A; */
	transition: color .4s;
}
/*三本線を動かす*/
#nav-open.active span {
  -webkit-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
  background-color: #888;
}
#nav-open.active span:before {
  -webkit-transform: translateY(-8px) rotate(45deg);/*打ち消す*/
  transform: translateY(-8px) rotate(45deg);/*打ち消す*/
  opacity: 0;
}
#nav-open.active span:after {
  -webkit-transform: translateY(-16px) rotate(45deg);
  transform: translateY(-16px) rotate(90deg);
  background-color: #888;
}
	/* トグルSP設定 */
	@media (max-width: 1280px){
		#nav-open{
			display: block;
		}
	}
	@media (min-width: 1281px){
		#nav-open{
			display: none;
		}
	}
/* ヘッダーデザイン */
header{
	width: 100%;
	height: 4.8em;
}
.header-left{
	position: absolute;
	top:0; left:140px;
  z-index: 2;
}
.header-left a:hover {
	opacity: 0.7;
	transition: .4s;
}
.header-right {
	width: 700px;
}
.header_wrapper{
	position: absolute;
	top:10px;
	right:40px;
}
/* リザーブボタン・コンタクトボタン */
.reserved{
	float: left;
	width: 170px;
	background: #BFA056;
	text-align: center;
	margin: .6em;
	padding-top: .4em;
	padding-bottom: .4em;
	border-radius: 4px;
}
.reserved a{
	font-size: 16px;
	color: #FFF;
	text-decoration: none;
}
.contact{
	float: left;
	width: 180px;
	background: #462600;
	text-align: center;
	margin-top: .6em;
	margin-left: .2em;
	margin-right: .2em;
	padding-top: .4em;
	padding-bottom: .4em;
	border-radius: 4px;
}
.contact a{
	font-size: 16px;
	color: #FFF;
	text-decoration: none;
}
/* インスタロゴ */
.insta{
	float: left;
}
.insta img{
	margin: .5em .3em;
}
.fb{
	float: left;
}
.fb img{
	margin: .5em .3em;
}
/* 電話番号 */
.header-right h2{
	font-size: 25px;
	color: #2D0902;
	font-weight: bold;
}
.header-right p{
	font-size: 12px;
	color: #2D0902;
}
.header_contact{
	float: left;
	margin-left: .6em;
}
.header-right i{
	font-size: 34px;
	color: #2D0902;
}
.access{
	float: left;
	margin-left: 1em;
}
.access i{
	margin-left: .4em;
}
.mail i{
	margin-left: .1em;
}
.mail {
	margin-left: 20em;
}
.header-right  a:hover{
	color: #6C5A3A;
	opacity: 0.6;
	transition: .4s;
}
.acces_sp a{
	font-size: 16px;
	color: #FFF;
	text-decoration: none;
}
.acces_sp{
	text-align: center;
	color: #000;
	margin-top: 1em;
	padding-top: .5em;
	width: 20em;
	height: 2em;
	background: #2D0902;
	border-radius: 8px;
	margin-left: auto;
	margin-right: auto;
}
.sns_sp{
	width: 100px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 4em;
}
.sns_sp :after{
	content: "";
	display: block;
	clear: both;
}
.insta_sp{
	float: left;
	margin: .2em
}
.fb_sp{
	float: left;
	margin: .2em
}
.contact_sp{
	text-align: center;
	color: #2D0902;
}
.contact_sp h3{
	margin-top: .6em;
	font-size: 28px;
	font-weight: bold;
}
.contact_sp p{
	margin-top: .4em;
	font-size: 15px;
}
@media (max-width: 1280px){
	header{
		display: none;
	}
}
/* 言語切り替え設定 */
.lang{
	float: left;
	border: 1px solid #2D0902;
	padding: .6em;
	margin-left: 1em;
	margin-top: .2em;
}
.lang a{
	font-size: 18px;
	color: #2D0902;
	text-decoration: none;
	padding: .2em;
}
.lang_sp{
	float: left;
	border: 1px solid #2D0902;
	background: #FFF;
	padding: .5em;
	display: inline-block;
	vertical-align: middle;
	position: absolute;
	right: 3.4em;
	top: .6em;
}
.lang_sp a{
	font-size: 15px;
	color: #2D0902;
	text-decoration: none;
	padding: .2em;
}

@media (min-width: 1281px){
	.lang_sp{
		display: none;
	}
}
/* トップ画面デザイン */
.top_photo_pc img {
	height: auto;
	width: 100%
}
.top_photo_sp img {
  width: 100%;
	height: auto;
}
@media (max-width: 770px){
	.top_photo_pc{
		display: none;
	}
	.top_photo_sp{
		display: block;
	}
}
@media (min-width: 770px){
	.top_photo_sp{
		display: none;
	}
}

/* ナビデザイン */
.top_wrapper{
	width: 100%;
	background: #2D0902;
	height: 48px;
}
.menu {
    display: flex;
    height: 3em;
    margin: 0 auto;
    width: 1280px;
}
.menu > li {
    width: 25%;
}
/*全てのリスト・リンク共通*/
.menu li {
    list-style: none;
    position: relative;
}
.menu li a {
    background: #2D0902;
    /* border-right: 1px solid #eee; */
    color: #fff;
		font-size: 17px;
    display: block;
    line-height: 2.5em;
    text-align: center;
    text-decoration: none;
    /* width: 110%; */
}
@media (max-width: 1280px){
	.top_wrapper{
		display: none;
	}
}
	/* バナーの設定 */
	.bnr{
		margin-top: .8em;
		width: 1150px;
		margin-left: auto;
		margin-right: auto;
	}
	.bnr::after{
		content: "";
		display: block;
		clear:both
	}
	.surf{
		float: left;
		padding: 1.6em;
	}
	.food{
		/* float: left; */
		padding: 1.6em;
	}
	.bnr a:hover{
	  opacity: 0.7;
	}
	.bnr a{
	  transition: opacity .5s;
	}
  .bnr :after{
		content: "";
		display: block;
		clear: both;
	}
	@media (max-width: 1100px){
		.bnr{
			margin-top: .2em;
			width: 360px;
		}
		.surf{
			text-align: center;
			padding: .6em;
		}
		.food{
			text-align: center;
			padding: .6em;
		}
	}

/* 「SlideDown」の動作内容 */
@keyframes SlideDown {
  0% {
    opacity: 0;/* 透明 */
    transform: translateY(50px);/* Y軸方向に50px */
  }
  100% {
    opacity: 1;/* 不透明 */
    transform: translateX(0);
  }
}
body{
  animation-duration: 2s;/* アニメーション時間 */
  animation-name: SlideDown;/* アニメーション名 */
}
/*  コンテンツnewsの設定 */
.content_news{
	margin-top: 3em;
	margin-bottom: 2em;
	width: 800px
	margin-left: auto;
	margin-right: auto;
}
.title{
	font-weight: normal;
	text-align: center;
	font-size: 30px;
	margin-bottom: 0;
	color: #462600;
}
.content_text{
	width: 760px;
	margin-left: auto;
	margin-right: auto;
}
.content_text h3{
	font-size: 18px;
	font-weight: normal;
	color: #2E2E2E;
	line-height: 2em;
	text-align: center;
	margin-top: 1.2em;
	padding-bottom:1em;
}
.line{
	text-align: center;
	padding-bottom: 1em;
	margin-top: 1.2em;
}
@media (max-width: 768px){
	.content_text h3{
		margin-left: 1em;
		margin-right: 1em;
		text-align: justify;
	}
	.title{
		font-size: 23px;
	}
	.content_text{
		width: auto;
		margin: auto;
	}
}
@media (max-width: 580px){
	.content_news br{
		display: block;
	}
	.content_text br{
		display: block;
	}
	.content_text h3{
		text-align: left;
	}
	.content_text h3 br{
		display: none;
	}
}
/* button設定 */
.button{
  margin-top: 1.2em;
	margin-bottom: 7em;
	text-align: center;
}
.button a{
	font-size: 16px;
	padding: 12px 40px;
  color: white;
	border: 1px solid #463200;
	color: #463200;
  text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
		border-radius: 6px;
}
.button a:hover{
	opacity: 0.7;
	color: #FFFFFF;
	background: #463200;
}
@media (max-width: 768px){
	.button{
		margin-bottom: 3em;
	}
	.button a{
		padding: .6em 3.2em;
		font-size: 16px;
	}
}
/* sightseeing設定 */
.sightseeing{
	width: 860px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 6em;
}
.sightseeing_wrapper{
	margin-bottom: 6em;
}
.sightseeing_wrapper::after{
	content: "";
	display: block;
	clear:both
}
.sightseeing_title{
	width: 460px;
	float: left;
}
.sightseeing_title h3{
	font-size: 26px;
	font-weight: normal;
	margin-bottom: .6em;
	color: #462600;
}
.sightseeing_title p{
	font-size: 16px;
	line-height: 2em;
}
.sightseeing_img{
	float: left;
	margin-left: 1.6em;
}
@media (max-width: 880px){
	.sightseeing{
		width: 778px;
		margin-bottom: 6em;
	}
	.sightseeing_title{
		width: 400px;
		float: left;
	}
}
@media (max-width: 786px){
	.sightseeing{
		width: 720px;
		margin-bottom: 6em;
	}
	.sightseeing_title{
		width: 340px;
		float: left;
	}
}
@media (max-width: 680px){
	.sightseeing{
		width: auto;
		margin-bottom: 6em;
		margin-top: 5em;
	}
	.sightseeing_title{
		width: auto;
		float: none;
		margin-left: 1em;
		margin-right: 1em;
	}
	.sightseeing_img{
		float: none;
		margin-left: 0;
		margin-top: 1em;
		text-align: center;
	}
	.sightseeing_title h3{
		font-size: 22px;
		text-align: center;
	}
}
/* button02設定 */
.button_02{
  padding-top: 1.4em;
	margin-top: 1em;
}
.button_02 a{
	font-size: 16px;
	padding: 12px 40px;
  color: white;
	border: 1px solid #463200;
	color: #463200;
  text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
		border-radius: 6px;
}
.button_02 a:hover{
	opacity: 0.7;
	color: #FFFFFF;
	background: #463200;
}
@media (max-width: 768px){
	.button_02{
		margin-bottom: 3em;
	}
	.button_02 a{
		padding: .6em 3.2em;
		font-size: 16px;
	}
}
@media (max-width: 680px){
	.button_02{
		margin-bottom: 2em;
		text-align: center;
	}
}
/* content_box1設定 */
.content_wrapper::after{
	content: "";
	display: block;
	clear:both
}
/* .content_box２設定 */
.content_box2::after{
	content: "";
	display: block;
	clear: both;
}
.parts_food{
	float: left;
	width: 50%;
}
.parts_reserve{
	float: left;
	width: 50%;
}
.content_box2 a:hover{
	opacity: 0.7;
	text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
		/* border-radius: 6px; */
}
@media (max-width: 768px){
	.parts_food{
		float: none;
		width: 100%;
	}
	.parts_reserve{
		float: none;
		width: 100%;
	}
}
/* フッターメニュー設定 */
.footer_left{
	margin-top: 3em;
	margin-bottom: 1.8em;
	margin-left: 3.2em;
	float: left;
	width: 590px;
}
.footer_logo{
	float: left;
}
.adress{
	height: 120px;
	margin-bottom: 2em;
}
.adress::after{
	content: "";
	display: block;
	clear: both;
}
 .adress_inner{
	padding-top: 2em;
	float: left;
}
.adress_inner h3{
	font-size: 16px;
	font-weight: normal;
}
@media (max-width: 780px){
	.adress{
		height: 120px;
		margin-bottom: 0em;
	}
}
.insta_footer img{
	padding-top: 4em;
	margin-left: .8em;
	float: left;
}
.fb_footer img{
	padding-top: 4em;
	margin-left: .4em;
	float: left;
}
@media (max-width: 820px){
	.adress{
		height: 120px;
		margin-bottom: 0em;
	}
	.insta_footer img{
		padding-top: 0em;
	}
	.footer_left{
		margin-top: 0em;
		margin-bottom: 0em;
	}
	.adress_inner{
		padding-top: 0em;
	}
	.insta_footer img {
		padding-top: 0em;
	}
	.fb_footer img {
		padding-top: 0em;
	}
}
@media (max-width: 1652px){
	.footer_left{
		margin-top: 2em;
		margin-bottom: 1em;
		margin-left: 3em;
		float: left;
		width: 420px;
	}
	.adress{
		width: auto;
	}
	.adress_inner{
		padding-top: 1em;
		float: none;
	}
	.insta_footer img {
		padding-top: 2em;
		margin-left: 0em;
	}
	.fb_footer img {
		padding-top: 2em;
		margin-left: 1em;
	}
	.footer_button{
		padding-top: 3.6em;
	}
}
@media (max-width: 1478px){
	.footer_logo{
		width: 50%;
	}
	.insta_footer img {
		padding-top: .8em;
		margin-left: 0em;
		margin-bottom: 1.2em;
	}
	.fb_footer img {
		padding-top: .8em;
		margin-left: 1em;
		margin-bottom: 1em;
	}
	.footer_left {
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 2em;
    float: left;
	}
	.footer_button{
		padding-top: 2.4em;
	}
}
/* footerボタン */
.footer_button{
	margin-top: 1.2em;
}
.reserved_footer{
	float: left;
	width: 170px;
	background: #BFA056;
	text-align: center;
	margin: .4em;
	padding-top: .4em;
	padding-bottom: .4em;
	border-radius: 4px;
}
.reserved_footer a{
	font-size: 16px;
	color: #FFF;
	text-decoration: none;
}
.contact_footer{
	float: left;
	width: 170px;
	background: #462600;
	text-align: center;
	margin: .4em;
  padding-top: 0.4em;
  padding-bottom: 0.4em;
	border-radius: 4px;
}
.contact_footer a{
	font-size: 16px;
	color: #FFF;
	text-decoration: none;
}
@media (max-width: 1290px){
	.footer_logo{
		width: auto;
	}
	.footer_left{
		text-align: center;
		margin-top: 1.2em;
    margin-bottom: 1em;
		width: auto;
		margin-left: auto;
		margin-right: auto;
		float: none;
	}
	.footer_logo{
		float: none;
	}
	.adress_inner {
		padding-top: 0em;
	}
	.adress_inner h3{
		font-size: 18px;
	}
	.sns_footer_sp{
		width: 98px;
		margin-left: auto;
		margin-right: auto;
	}
	.insta_footer img{
		padding-top: 1em;
		margin: .2em;
	}
	.fb_footer img{
		padding-top: 1em;
		margin-left: 0;
		margin: .2em;
	}
}
@media (max-width: 1290px){
	.footer_button{
		margin-top: 2em;
		width: 280px;
		margin-left: auto;
		margin-right: auto;
		padding-top: .4em;
	}
	.reserved_footer{
		width: 280px;
		float: none;
		margin-top: 1em;
		margin:0;
	}
	.contact_footer{
		width: 280px;
		float: none;
		margin: 0;
		margin-top: 1em;
	}
}
@media (max-width: 880px){
	.footer_button{
		margin-top: 0em;
		padding-top: .4em;
	}
}

/* コピーライト設定 */
.copyright{
	font-size: 12px;
	margin-top: 8em;
	margin-left: 2em;
}
@media (max-width: 1652px){
	.copyright{
		margin-top: 4em;
		margin-left: 0;
	}
}
@media (max-width: 1290px){
 .copyright{
	 font-size: 12px;
	 margin-top: 2em;
	 margin-bottom: 3em;
	 margin-left: 0;
	 text-align: center;
 }
}
/* footer写真 */
.footer_right{
	text-align: right;
}
 @media (max-width: 1478px){
	 .footer_right img{
	 	width: 65%;
	 }
 }
 @media (max-width: 1290px){
	 .footer_right{
	 	display: none;
	 }
 }
}
