@charset "UTF-8";

@media screen and (max-width: 999px){
img{
	max-width: 100%;
	height: auto;
	width /***/:auto;
}

.br-sp{display:none;}
.pc{display:none !important;}
.sp{display:block !important;}



/****************************************

	header

*****************************************/
header {}
#header {}

#header-home {
	background-image: url("images/common/visual01.jpg");
	background-position: center top;
	max-width: 100%;
	overflow: hidden;
	margin: 0 auto;
	background-size: cover;
	min-height: 500px;
	position: relative;
}
#header-etc {
	background-image: url("images/common/etc-visual01.jpg");
	background-position: center top;
	max-width: 100%;
	overflow: hidden;
	margin: 0 auto;
	background-size: cover;
	min-height: 250px;
	position: relative;
}

#header-box {}

#header-catch {
	padding: 15px 15px 15px 15px;
}
#header-catch h1 {
	color: #fff;
	font-weight: 400;
	font-size: 12px;
	line-height: 2.2;
}


#header-contents {
	display: none;
}

#header-sub-box {
	display: contents;
	position: relative;
	z-index: 1
}
#header-sub-contents {
	display: none;
}


#header-logo-sp {
	text-align: center;
	margin: 70px 0 0 0;
}
#header-logo-sp img {
	height: 240px;
}

#header-logo-under-sp {
	text-align: center;
	margin: 0;
	position: relative;
	z-index: 2;
}
#header-logo-under-sp img {
	height: 160px;
}



/*ボタン外側*/
.openbtn{
	/*ボタン内側の基点となるためrelativeを指定。
	追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
	cursor: pointer;
	width: 60px;
	height: 67px;
	position: fixed;
	z-index: 9999;/*ボタンを最前面に*/
	right: 0;
	top: 0;
	background: #28241F;
}

/*ボタン内側*/
.openbtn span:nth-of-type(1) {
	display: inline-block;
	transition: all .4s;/*アニメーションの設定*/
	position: absolute;
	top: 24px;
	left: 15px;
	height: 3px;
	border-radius: 5px;
	background: #fff;
	width: 30px;
}
.openbtn span:nth-of-type(2) {
	display: inline-block;
	transition: all .4s;/*アニメーションの設定*/
	position: absolute;
	top: 32px;
	left: 15px;
	height: 3px;
	border-radius: 5px;
	background: #fff;
	width: 30px;
}
.openbtn span:nth-of-type(3) {
	display: inline-block;
	transition: all .4s;/*アニメーションの設定*/
	position: absolute;
	top: 40px;
	left: 15px;
	height: 3px;
	border-radius: 5px;
	background: #fff;
	width: 30px;
}


.openbtn.active{
	background-image: none;
}
/*activeクラスが付与されると線が回転して×に*/
.openbtn.active span:nth-of-type(1) {
	top: 32px;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	transform: rotate(135deg);
	width: 30px;
	background: #fff;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
	top: 32px;
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	transform: rotate(-135deg);
	width: 30px;
	background: #fff;
}



/*ヘッダー(SP)メニュー部分*/
#sp-nav {
	position: fixed;
	z-index: 999;
	top: 0;
	right: -120%;
	width: 100%;
	height: 100vh;
	background: #28241F;
	transition: all 0.6s;
}
/*アクティブクラスがついたら位置を0に*/
#sp-nav.panelactive {
	right: 0;
}
/*ナビゲーションの縦スクロール*/
#sp-nav.panelactive #sp-nav-list {
	/*ナビの数が増えた場合縦スクロール*/
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100vh;
	/*　overflow: auto; （iOSでの表示に不具合を出すので消す） */
	/* -webkit-overflow-scrolling: touch;  （iOSでの表示に不具合を出すので消す） */
	scroll-behavior: smooth; /* ↑の代替 */
}



#sp-logo {
	padding: 30px 0 20px 0;
	text-align: center;
}
#sp-logo img {
	height: 200px;
}

#sp-nav-tel {
	text-align: center;
	padding: 0 0 20px 0;
}
#sp-nav-tel span {
	display: block;
	color: #a52812;
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	padding: 0 0 8px 30px;
}
#sp-nav-tel p {
	color: #a52812;
	font-size: 34px;
	letter-spacing: 0.02em;
	font-weight: 600;
	line-height: 1;
}
#sp-nav-tel p a {
	color: #a52812;
}
#sp-nav-tel p a:hover {
	color: #a52812;
	text-decoration: none;
}
#sp-nav-tel p::before {
	content: '';
	display: inline-block;
	width: 25px;
	height: 25px;
	background-image: url("images/common/header-tel.png");
	background-size: contain;
	vertical-align: middle;
	margin: -9px 12px 0 0;
}

#sp-nav-business-hours {
	padding: 0 0 20px 0;
}
#sp-nav-business-hours h2 {
	text-align: center;
	width: 280px;
	margin: 0 auto 15px auto;
	border: 1px solid #ac965e;
	padding: 10px;
	color: #ac965e;
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 0.05em;
	line-height: 1;
}
#sp-nav-business-hours p {
	text-align: center;
	color: #ac965e;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.8;
}


#sp-nav ul.type01 {
	margin: 0 0 30px 0;
}
#sp-nav ul.type01 li {
	display: block;
	text-align: center;
	color: #fff;
	font-size: 20px;
	line-height: 1.2;
	font-weight: 400;
	padding: 0 0 12px 0;
	letter-spacing: 0.05em;
}
#sp-nav ul.type01 li:last-of-type {
	padding: 0;
}
#sp-nav ul.type01 li a {
	color: #fff;
}
#sp-nav ul.type01 li a:hover {
	color: #fff;
}

#sp-nav ul.type02 {
	width: 100px;
	margin: 0 auto 30px auto;
}
#sp-nav ul.type02 li {
	float: left;
	margin: 0 20px 0 0;
}
#sp-nav ul.type02 li:last-of-type {
	margin: 0;
}
#sp-nav ul.type02 li img {
	width: 40px;
}



/****************************************

	共通

*****************************************/
#contents {
	background-image: url("images/top/drink-bg01.jpg");
	background-repeat: repeat;
	background-position: left top;
	padding: 0 0 60px 0;
}
#contents h2 {
	text-align: center;
	padding: 30px 0 30px 0;
}

.contents-box {
	margin: 0 15px;
	padding: 0 0 30px 0;
}
.contents-box:last-of-type {
	margin: 0 15px;
	padding: 0;
}


#notfound {}
#notfound h2 {}
#notfound h2 img {
	height: 120px;
}
#notfound h3 {
	border-left: 5px solid #A52812;
	color: #A52812;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	padding: 5px 0 5px 15px;
	margin: 0 0 20px 0;
}
#notfound p.txt {
	color: #000;
	font-size: 16px;
	font-weight: 500;
	line-height: 2;
	margin: 0 0 30px 0;
}
#notfound p.txt:last-child {
	margin: 0;
}


#notfound p.btn {}
#notfound p.btn a {
	background: #A52812;
	background-image: url("images/top/btn-bg01.png");
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 225px;
	display: block;
	text-align: center;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	line-height: 70px;
	-moz-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
	-ms-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
}
#notfound p.btn a:hover {
	text-decoration: none;
}



/****************************************

	wordpress側用設定

*****************************************/
.breadcrumbs {
	color: #707070;
	font-size: 12px;
	padding: 15px 15px 0 15px;
}
.breadcrumbs a {
	text-decoration: none;
	color: #3B4043;
}
.breadcrumbs a:hover {
	text-decoration: underline;
}
.breadcrumbs-icon {
	color: #6E8795;
}


.alignright {
	clear: both;
	display: block;
	margin: 0 auto 30px auto;
}
.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto 30px auto;
}
.alignleft {
	clear: both;
	display: block;
	margin: 0 auto 30px auto;
}


.wp-pagenavi {
	text-align: center;
	margin: 20px 0 0 0;
	font-size: 12px;
}



/****************************************

	footer

*****************************************/
#pagetop{
	position: fixed;
	bottom: 20px;
	right: 20px;
	font-size: 77%;
	z-index: 999;
}
#pagetop a{
	background-image: url("images/common/pagetop.png");
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 100%;
	display: block;
	width: 35px;
	height: 35px;
}


footer {}
#footer {
	background-image: url("images/common/footer-bg01.png"),url("images/common/bg01.png");
	background-repeat: no-repeat,repeat;
	background-position: left top,left top;
	background-size: 80%,auto;
}
#footer h2 {
	text-align: center;
	padding: 60px 0 60px 0;
}
#footer h2 img {
	height: 75px;
}


#footer-box01 {
	margin: 0 15px;
}

#footer-instagram {
	margin: 0 0 40px 0;
}
#footer-instagram h3 {
	text-align: center;
	padding: 0 0 30px 0;
}
#footer-instagram h3 img {
	height: 70px;
}
#footer-instagram p.guide {
	text-align: center;
	color: #fff;
	font-size: 18px;
	line-height: 1.6;
	margin: 0 0 35px 0;
}
#footer-instagram-list {
	text-align: center;
}

#footer-facebook {}
#footer-facebook h3 {
	text-align: center;
	padding: 15px 0 50px 0;
}
#footer-facebook h3 img {
	height: 40px;
}
#footer-facebook p.guide {
	text-align: center;
	color: #fff;
	font-size: 18px;
	line-height: 1.6;
	margin: 0 0 35px 0;
}
#footer-facebook-box {}

.facebook_wrap{
	margin: 0 auto;
	width: 100%;
}
.fb-page,
.fb-page span,
.facebook_wrap iframe{
	width: 100% !important;
	height: 470px !important;
}


#footer-box02 {
	padding: 60px 0 60px 0;
	background-image: url("images/common/footer-bg03.png");
	background-repeat: no-repeat;
	background-position: right top 400px;
	background-size: 70%;
}
#footer-box02-inner {
	color: #fff;
}
#footer-guide {
	margin: 0 15px 40px 15px;
}
#footer-contents {
	margin: 0 15px 0 15px;
}


#footer-guide #footer-logo {
	text-align: center;
	padding: 0 0 35px 0;
}
#footer-guide #footer-logo img {
	height: 220px;
}

#footer-guide #footer-tel {
	text-align: center;
	padding: 0 0 30px 0;
}
#footer-guide #footer-tel span {
	display: block;
	color: #a52812;
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	padding: 0 0 8px 30px;
}
#footer-guide #footer-tel p {
	color: #a52812;
	font-size: 34px;
	letter-spacing: 0.02em;
	font-weight: 600;
	line-height: 1;
}
#footer-guide #footer-tel p a {
	color: #a52812;
}
#footer-guide #footer-tel p a:hover {
	color: #a52812;
	text-decoration: none;
}
#footer-guide #footer-tel p::before {
	content: '';
	display: inline-block;
	width: 25px;
	height: 25px;
	background-image: url("images/common/header-tel.png");
	background-size: contain;
	vertical-align: middle;
	margin: -9px 12px 0 0;
}

#footer-guide #footer-cancel {
	border: 1px solid #999;
	padding: 24px;
}
#footer-guide #footer-cancel h4 {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2;
	padding: 0 0 10px 0;
}
#footer-guide #footer-cancel p {
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
}


#footer-contents dl {
	border-bottom: 1px solid #999;
}
#footer-contents dl:last-of-type {
	margin: 0 0 40px 0;
}
#footer-contents dl dt {
	padding: 15px 0 0 0;
	font-size: 18px;
	font-weight: 600;
}
#footer-contents dl dd {
	padding: 0 0 15px 0;
	font-size: 16px;
	font-weight: 400;
}

/* 計算方法　100÷550×350=63.63636363636364% に設定 */
#footer-contents-google {text-align: center; padding: 0 0 63.63636363636364% 0; position: relative; width: 100%;}
#footer-contents-google iframe {position: absolute; top: 0; right: 0; width: 100% !important; height: 100% !important;}


#footer-sub {
	border-top: 5px solid #FBE8C0;
	background-image: url("images/common/copyright-bg01.png");
	background-repeat: repeat;
	background-position: left top;
}
#footer-sub-inner {
	margin: 0 15px;
	padding: 30px 0 25px 0;
}

#footer-sub-contents {}
#footer-sub-contents p.policy {
	float: left;
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.1;
	margin: 0 30px 15px 0;
}
#footer-sub-contents p.policy a {
	color: #fff;
	background-image: url("images/common/footer-prt01.png");
	background-repeat: no-repeat;
	background-position: left top 5px;
	padding: 0 0 0 15px;
}
#footer-sub-contents p.policy a:hover {
	text-decoration: none;
}
#footer-sub-contents p.facebook a {
	float: left;
	margin: -12px 0 0 0;
}
#footer-sub-contents p.facebook a img {
	height: 20px;
}

#footer-sub-copyright {}
#footer-sub-copyright p {
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.1;
}



/****************************************

	home

*****************************************/
#top-section {
	background-image: url("images/common/bg01.png");
	background-repeat: repeat;
	background-position: left top;
}
#top-section-bg {
	background-image: url("images/top/umami-bg01.png");
	background-repeat: no-repeat;
	background-position: center top 400px;
	background-size: contain;
}


#top-news {
	padding: 60px 0 60px 0;
}

#top-news-title {
	width: 147px;
	margin: 0 auto;
}
#top-news-title h2 {
	text-align: center;
	padding: 0 0 30px 0;
}
#top-news-title p.btn {
	display: none;
}


#top-news-list {
	margin: 0 15px;
}
#top-news-list dl {
	margin: 0 0 10px 0;
}
#top-news-list dl dt {
	color: #fff;
	font-size: 16px;
	font-weight: 400;
}
#top-news-list dl dd {
	color: #fff;
	font-size: 16px;
	font-weight: 400;
}
#top-news-list dl dd a {
	color: #fff;
}


#top-news-title-sp {
	width: 147px;
	margin: 0 auto;
}
#top-news-title-sp p.btn {
	margin: 0 0 0 20px;
	display: inline-block;
	color: #fff;
	text-decoration: none;
	outline: none;
	position: relative;
}
#top-news-title-sp p.btn a {
	padding: 0 30px 10px 30px;
	display: block;
	color: #fff;
	text-decoration: none;
}
#top-news-title-sp p.btn::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 15%;
	width: 85%;
	height: 1px;
	background:#fff;
	transition: all .3s;
}
#top-news-title-sp p.btn::after {
	content: '';
	position: absolute;
	bottom: 4px;
	right: 0;
	width: 12px;
	height: 1px;
	background:#fff;
	transform: rotate(35deg);
	transition: all .3s;
}
#top-news-title-sp p.btn:hover::before {
	left: 20%;
}
#top-news-title-sp p.btn:hover::after {
	right: -5%;
}


#top-umami {
	padding: 0 0 60px 0;
}
#top-umami h2 {
	text-align: center;
	padding: 0 0 30px 0;
}
#top-umami h2 img {
	height: 155px;
}
#top-umami-box {
	margin: 0 15px;
}
#top-umami-box p {
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
}


#top-kodawari {
	padding: 0 0 60px 0;
	margin: 0 15px;
}
#top-kodawari h2 {
	text-align: center;
	padding: 0 0 30px 0;
}
#top-kodawari h2 img {
	height: 110px;
}
#top-kodawari ul {}
#top-kodawari ul li {
	width: 100%;
	margin: 0 0 40px 0;
}
#top-kodawari ul li:last-of-type {
	margin: 0;
}
#top-kodawari ul li p.image {
	text-align: center;
	margin: 0 0 15px 0;
}
#top-kodawari ul li p.image img {
	width: 100%;
}
#top-kodawari ul li p.txt {
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
}



#top-menu {
	background-image: url("images/top/menu-bg02.png"),url("images/top/menu-bg01.jpg");
	background-repeat: no-repeat,repeat;
	background-position: left top,left top;
	background-size: 80%,auto;
}
#top-menu h2 {
	text-align: center;
	padding: 60px 0 30px 0;
}
#top-menu h2 img {
	height: 110px;
}

#top-menu-box {
	margin: 0 15px;
	padding: 0 0 40px 0;
}

#top-menu-box-image {
	text-align: center;
}
#top-menu-box-image img {
	width: 100%;
	margin: 0 0 25px 0;
}

#top-menu-box-contents {}
#top-menu-box-contents h3 {
	border-left: 5px solid #A52812;
	color: #A52812;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	padding: 5px 0 5px 15px;
	margin: 0 0 20px 0;
}
#top-menu-box-contents h3 span {
	text-align: right;
	display: block;
}
#top-menu-box-contents p {
	color: #000;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
	margin: 0 0 20px 0;
}
#top-menu-box-contents p:last-of-type {
	margin: 0;
}
#top-menu-box-contents p span {
	color: #A52812;
}


#top-menu-slider {
	margin: 0 auto 60px auto;
}
.top-menu-slider-list {
	margin: 0 50px;
}
.top-menu-slider-list img {
	width: 100%;
	margin: 0 auto;
}

.top-menu-slider-contents {}
.top-menu-slider-contents h3 {
	text-align: center;
	color: #A52812;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	padding: 25px 0 20px 0;
}
.top-menu-slider-contents h3 span {
	display: block;
}
.top-menu-slider-contents p.txt {
	text-align: center;
	color: #000;
	font-size: 16px;
	font-weight: 500;
	line-height: 2;
	margin: 0 0 30px 0;
}

#top-menu-slider .slide-arrow {
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 22%;
	display: block;
	width: 30px;
	height: 30px;
	padding: 0;
	cursor: pointer;
	color: transparent;
	border: none;
	outline: none;
	background: transparent;
}
#top-menu-slider .prev-arrow {
	left: 10px;
	z-index: 1;
}
#top-menu-slider .next-arrow {
	right: 10px;
	z-index: 1;
}

#top-menu-slider .slick-dots li{
	position: relative;
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: 0 2px;
	padding: 0;
	cursor: pointer;
}
#top-menu-slider .slick-dots li button:before {
	font-family: 'slick';
	font-size: 12px;
	line-height: 20px;
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	content: '•';
	text-align: center;
	opacity: 1;
	color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
#top-menu-slider .slick-dots li.slick-active button:before {
	opacity: 1;
	color: #A52812;
}


#top-menu-btn {
	margin: 0 15px;
	padding: 0 0 60px 0;
}
#top-menu-btn p a {
	background: #A52812;
	background-image: url("images/top/btn-bg02.png"),url("images/top/btn-bg01.png");
	background-repeat: no-repeat,no-repeat;
	background-position: right 20px center,left top;
	background-size: 12px,225px;
	display: block;
	text-align: center;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	line-height: 70px;
	-moz-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
	-ms-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
}
#top-menu-btn p a:hover {
	text-decoration: none;
}



#top-drink {
	background-image: url("images/top/drink-bg01.jpg");
	background-repeat: repeat;
	background-position: left top;
}
#top-drink h2 {
	text-align: center;
	padding: 60px 0 30px 0;
}
#top-drink h2 img {
	height: 105px;
}

#top-drink-box {
	padding: 0 0 40px 0;
}

#top-drink-box-contents {
	margin: 0 15px;
}
#top-drink-box-contents h3 {
	text-align: center;
	padding: 0 0 30px 0;
}
#top-drink-box-contents-bg {
	background-image: url("images/common/bg01.png");
	background-repeat: repeat;
	background-position: left top;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-ms-border-radius: 10px;
	border-radius: 10px;
	margin: 0 0 50px 0;
}
#top-drink-box-contents-bg p {
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
	padding: 20px;
}

#top-drink-box-image {
	margin: 0 15px;
	position: relative;
}
#top-drink-box-image p.image {
	text-align: center;
}
#top-drink-box-image p.image img {
	width: 100%;
}
#top-drink-box-image div.txtbox {
	position: absolute;
	top: -30px;
	right: 30px;
	display: flex;
	justify-content: center;
	background: #A52812;
	width: 80px;
}
#top-drink-box-image div.txtbox p {
	writing-mode: vertical-rl;
	padding: 25px 0;
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 5px;
	line-height: 1.4;
	text-indent: 15px;
}


#top-drink-btn {
	margin: 0 15px;
	padding: 0 0 60px 0;
}
#top-drink-btn p a {
	background: #A52812;
	background-image: url("images/top/btn-bg02.png"),url("images/top/btn-bg01.png");
	background-repeat: no-repeat,no-repeat;
	background-position: right 20px center,left top;
	background-size: 12px,225px;
	display: block;
	text-align: center;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	line-height: 70px;
	-moz-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
	-ms-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
}
#top-drink-btn p a:hover {
	text-decoration: none;
}



#top-access {
	background-image: url("images/top/store-bg01.png"),url("images/common/bg01.png");
	background-repeat: no-repeat,repeat;
	background-position: right top,left top;
	background-size: 80%,auto;
}
#top-access h2 {
	text-align: center;
	padding: 60px 0 30px 0;
	margin: 0 15px;
}
#top-access h2 img {
	height: 90px;
}
#top-access p.guide {
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
	padding: 0 0 30px 0;
	margin: 0 15px;
}

#top-access-box {
	margin: 0 15px;
	padding: 0 0 60px 0;
}
#top-access-map {
	margin: 0 0 30px 0;
}
/* 計算方法　100÷550×350=63.63636363636364% に設定 */
#top-access-google {text-align: center; padding: 0 0 63.63636363636364% 0; position: relative; width: 100%;}
#top-access-google iframe {position: absolute; top: 0; right: 0; width: 100% !important; height: 100% !important;}

#top-access-image {
	text-align: center;
}



#top-map {
	background-image: url("images/top/drink-bg01.jpg");
	background-repeat: repeat;
	background-position: left top;
}
#top-map h2 {
	text-align: center;
	padding: 60px 0 30px 0;
}
#top-map h2 img {
	height: 100px;
}


#top-map-box01 {
	margin: 0 15px;
	padding: 0 0 60px 0;
}

#top-map-box01-contents {
	margin: 0 0 80px 0;
}
#top-map-box01-contents h3 {
	margin: 0 0 25px 0;
}
#top-map-box01-contents h3 img {
	height: 40px;
}
#top-map-box01-contents p {
	color: #000;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
	padding: 0 0 30px 0;
}

#top-map-box01-slider {
	margin: 0 auto;
	max-width: 100%;
	width: 100%;
}
#top-map-box01-slider .slick-dots{
	bottom: -35px;
}
#top-map-box01-slider .slick-dots li{
	position: relative;
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: 0 2px;
	padding: 0;
	cursor: pointer;
}
#top-map-box01-slider .slick-dots li button:before {
	font-family: 'slick';
	font-size: 12px;
	line-height: 20px;
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	content: '•';
	text-align: center;
	opacity: 1;
	color: #CCCCCC;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
#top-map-box01-slider .slick-dots li.slick-active button:before {
	opacity: 1;
	color: #A52812;
}

.top-map-box01-slider-list {
	position: relative;
}
.top-map-box01-slider-list img {
	width: 100%;
	margin: 0 auto;
}
.top-map-box01-slider-contents {
	bottom: 0;
	left: 0;
	position: absolute;
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
}
.top-map-box01-slider-contents h4 {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	padding: 10px;
}

#top-map-box01-map {}
#top-map-box01-map p {
	text-align: center;
}


#top-map-box02 {
	margin: 0 15px;
	padding: 0 0 60px 0;
}

#top-map-box02-contents {
	margin: 0 0 30px 0;
}
#top-map-box02-contents h3 {
	margin: 0 0 25px 0;
}
#top-map-box02-contents h3 img {
	height: 40px;
}
#top-map-box02-contents p.txt {
	color: #000;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
	padding: 0 0 30px 0;
}
#top-map-box02-contents p.guide {
	text-align: center;
}
#top-map-box02-contents p.guide img {
	width: 100%;
}

#top-map-box02-image {}

#top-map-box02-slider {
	margin: 0 auto;
	max-width: 100%;
	width: 100%;
}
#top-map-box02-slider .slick-dots{
	bottom: -35px;
}
#top-map-box02-slider .slick-dots li{
	position: relative;
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: 0 2px;
	padding: 0;
	cursor: pointer;
}
#top-map-box02-slider .slick-dots li button:before {
	font-family: 'slick';
	font-size: 12px;
	line-height: 20px;
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	content: '•';
	text-align: center;
	opacity: 1;
	color: #CCCCCC;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
#top-map-box02-slider .slick-dots li.slick-active button:before {
	opacity: 1;
	color: #A52812;
}

.top-map-box02-slider-list {
	position: relative;
}
.top-map-box02-slider-list img {
	width: 100%;
	margin: 0 auto;
}
.top-map-box02-slider-contents {
	bottom: 0;
	left: 0;
	position: absolute;
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
}
.top-map-box02-slider-contents h4 {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	padding: 10px;
}


#top-map-box03 {
	margin: 0 15px;
	padding: 0 0 60px 0;
}

#top-map-box03-a {
	margin: 0 0 40px 0;
}
#top-map-box03-a h3 {
	display: inline-block;
	text-align: center;
	border: 2px solid #000;
	color: #000;
	font-size: 18px;
	line-height: 1.1;
	padding: 10px 30px;
	margin: 0 0 25px 0;
}
#top-map-box03-a p {
	text-align: center;
}
#top-map-box03-b {}
#top-map-box03-b h3 {
	display: inline-block;
	text-align: center;
	border: 2px solid #000;
	color: #000;
	font-size: 18px;
	line-height: 1.1;
	padding: 10px 30px;
	margin: 0 0 25px 0;
}
#top-map-box03-b p {
	text-align: center;
}



/****************************************

	news

*****************************************/
#archives-list {
	margin: 0 15px;
}
#archives-list h2 {}
#archives-list h2 img {
	height: 95px;
}
#archives-list ul {
	margin: 0 auto;
}
#archives-list ul li {
	width: 100%;
	margin: 0 0 35px 0;
}
#archives-list ul li p.image {
	text-align: center;
	margin: 0 0 20px 0;
}
#archives-list ul li p.image img {
	width: 100%;
	height: auto;
}
#archives-list ul li h3 {
	color: #000;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.8;
}
#archives-list ul li p.time {
	background-image: url("images/common/time.svg");
	background-repeat: no-repeat;
	background-position: left top 3px;
	background-size: 12px 12px;
	padding: 0 0 0 18px;
	color: #666;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2;
	margin: 0 0 5px 0;
}
#archives-list ul li a:hover {
	text-decoration: none;
}
#archives-list ul li a:hover h3 {
	text-decoration: underline;
}



#single-contents {
	margin: 0 15px;
}
#single-contents h2 {}
#single-contents h2 img {
	height: 95px;
}
#single-contents h3 {
	border-left: 5px solid #A52812;
	color: #A52812;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	padding: 5px 0 5px 15px;
	margin: 0 0 20px 0;
}
#single-contents .time {
	background-image: url("images/common/time.svg");
	background-repeat: no-repeat;
	background-position: left top 3px;
	background-size: 12px 12px;
	padding: 0 0 0 18px;
	color: #666;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2;
	margin: 0 0 20px 0;
}
#single-contents p {
	color: #000;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
	margin: 0 0 30px 0;
}



#single-contents p.btn {}
#single-contents p.btn a {
	background: #A52812;
	background-image: url("images/top/btn-bg01.png");
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 225px;
	display: block;
	text-align: center;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	line-height: 70px;
	-moz-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
	-ms-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
}
#single-contents p.btn a:hover {
	text-decoration: none;
}



/****************************************

	menu

*****************************************/
.menu-title {}
.menu-title img {
	height: 80px !important;
}
#menu-yakitori-slider {
	margin: 0 auto 60px auto;
}
#menu-yakitori-slider .slick-dots {
	padding: 0 20px 0 20px;
}

#menu-yakitori-slider .menu-yakitori-list {
	margin: 0 50px;
}
#menu-yakitori-slider .slick-track {}
.menu-yakitori-list img {
	height: auto;
	width: 100%;
}

.menu-yakitori-contents {
	margin: 0 0 50px 0;
}
.menu-yakitori-contents h3 {
	text-align: center;
	color: #A52812;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	padding: 25px 0 20px 0;
}
.menu-yakitori-contents h3 span {
	display: block;
}
.menu-yakitori-contents p.txt {
	text-align: center;
	color: #000;
	font-size: 16px;
	font-weight: 500;
	line-height: 2;
	margin: 0 0 30px 0;
}

#menu-yakitori-slider .slide-arrow {
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 29%;
	display: block;
	width: 30px;
	height: 30px;
	padding: 0;
	cursor: pointer;
	color: transparent;
	border: none;
	outline: none;
	background: transparent;
}
#menu-yakitori-slider .prev-arrow {
	left: 10px;
	z-index: 1;
}
#menu-yakitori-slider .next-arrow {
	right: 10px;
	z-index: 1;
}

#menu-yakitori-slider .slick-dots li{
	position: relative;
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: 0 2px;
	padding: 0;
	cursor: pointer;
}
#menu-yakitori-slider .slick-dots li button:before {
	font-family: 'slick';
	font-size: 12px;
	line-height: 20px;
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	content: '•';
	text-align: center;
	opacity: 1;
	color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
#menu-yakitori-slider .slick-dots li.slick-active button:before {
	opacity: 1;
	color: #A52812;
}




#menu-yakitori-guide {
	margin: 0 auto 0 auto;
}
#menu-yakitori-guide p {
	text-align: center;
	color: #A52812;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	padding: 0 15px;
}



#menu-btn {
	margin: 0 15px;
	padding: 0 0 60px 0;
}
#menu-btn a{
	background: #A52812;
	background-image: url("images/top/btn-bg02.png"),url("images/top/btn-bg01.png");
	background-repeat: no-repeat,no-repeat;
	background-position: right 20px center,left top;
	background-size: 12px,225px;
	display: block;
	text-align: center;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	line-height: 70px;
	-moz-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
	-ms-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
}
#menu-btn a:hover {
	text-decoration: none;
}



/*モーダルを開くボタン*/
.menu-modal-open {}
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.menu-modal-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0,0,0,80%);
	padding: 40px 20px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	box-sizing: border-box;
	z-index: 9999;
}
/*モーダル本体の擬似要素の指定*/
.menu-modal-container:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.menu-modal-container.active {
	opacity: 1;
	visibility: visible;
}
/*モーダル枠の指定*/
.menu-modal-body {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	width: 90%;
}
/*モーダルを閉じるボタンの指定*/
.menu-modal-close {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: -30px;
	right: -30px;
	width: 30px;
	height: 30px;
	font-size: 30px;
	color: #fff;
	cursor: pointer;
}
/*モーダル内のコンテンツの指定*/
.menu-modal-content {
	text-align: left;
	background: #F6E2B3;
	color: #000;
	padding: 30px 15px 30px 15px;
}

.menu-modal-content h3 {
	text-align: center;
	color: #000;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
	padding: 0 0 20px 0;
}
.menu-modal-flex-box {}
.menu-modal-flex-item {}
.menu-modal-flex-item .list {
	margin: 0 0 25px 0;
}
.menu-modal-flex-item .list h4 {
	text-align: center;
	background: #000;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	padding: 10px;
	margin: 0 0 15px 0;
}
.menu-modal-flex-item .list dl {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border-bottom: 1px dotted #000;
	color: #000;
	font-size: 16px;
	line-height: 1.4;
	padding: 5px 0 5px 0;
}
.menu-modal-flex-item .list dl dt {
	text-align: left;
}
.menu-modal-flex-item .list dl dd {
	text-align: right;
	min-width: 15%;
}



#drink-btn {
	margin: 0 15px;
	padding: 0 0 60px 0;
}
#drink-btn a{
	background: #A52812;
	background-image: url("images/top/btn-bg02.png"),url("images/top/btn-bg01.png");
	background-repeat: no-repeat,no-repeat;
	background-position: right 20px center,left top;
	background-size: 12px,225px;
	display: block;
	text-align: center;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	line-height: 70px;
	-moz-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
	-ms-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
}
#drink-btn a:hover {
	text-decoration: none;
}



/*モーダルを開くボタン*/
.drink-modal-open {}
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.drink-modal-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0,0,0,80%);
	padding: 40px 20px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	box-sizing: border-box;
	z-index: 9999;
}
/*モーダル本体の擬似要素の指定*/
.drink-modal-container:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.drink-modal-container.active {
	opacity: 1;
	visibility: visible;
}
/*モーダル枠の指定*/
.drink-modal-body {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	width: 90%;
}
/*モーダルを閉じるボタンの指定*/
.drink-modal-close {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: -30px;
	right: -30px;
	width: 30px;
	height: 30px;
	font-size: 30px;
	color: #fff;
	cursor: pointer;
}
/*モーダル内のコンテンツの指定*/
.drink-modal-content {
	text-align: left;
	background: #F6E2B3;
	color: #000;
	padding: 30px 15px 30px 15px;
}

.drink-modal-content h3 {
	text-align: center;
	color: #000;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
	padding: 0 0 20px 0;
}
.drink-modal-flex-box {}
.drink-modal-flex-item {}
.drink-modal-flex-item .list {
	margin: 0 0 25px 0;
}
.drink-modal-flex-item .list h4 {
	text-align: center;
	background: #000;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	padding: 10px;
	margin: 0 0 15px 0;
}
.drink-modal-flex-item .list dl {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border-bottom: 1px dotted #000;
	color: #000;
	font-size: 16px;
	line-height: 1.4;
	padding: 5px 0 5px 0;
}
.drink-modal-flex-item .list dl dt {
	text-align: left;
}
.drink-modal-flex-item .list dl dd {
	text-align: right;
	min-width: 15%;
}






/* 映像背景（東内） */
#back-movie {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	display: contents;
	/*	float: left; */
	z-index: 0;
}
#back-movie > video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	min-width: 100%;
	min-height: 650px;
	height: 100%;
}
/* 映像背景の上にメニューを被せる、それも正常に（東内） */
#header {
	position: relative;
	z-index: 1;
}
#header-home {
	min-height: 500px;
}
#header-box {
	display: contents;
	position: relative;
	z-index: 1
}
#header-contents, #header-catch {
	z-index: 2;
	position: relative;
}
#header-logo-sp {
	position: relative;
	z-index: 2;
}
#sp-nav ul.type02 {
	margin-bottom: 60px;
}
.openbtn {
	display: block;
	position: fixed;
	transform:translateZ(1px);
}
#sp-nav.panelactive #sp-nav-list {
	overflow: scroll;
}
#top-news-list {
	text-align: center;
}
#top-news-list dl dd {
	margin-bottom: 0.8em;
}


/*** 東内追加分 ***/ 
.menu-yakitori-list img {
	height: auto;
	max-height: 400px;
	width: auto;
	margin-left: auto;
	margin-right: auto;
}
#top-access-google iframe {
	position: relative;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}
#top-access-box {
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
}
#top-access-google {
	padding: 0 0 0 0;
}
.toppage-movie {
	width: 100%;
	max-width: 100%;
}
.top-map-box02-slider-list.slick-slide img {
	width: 100%;
	height: auto;
}
#top-map-box02-image {
	width: 100%;
	height: auto;
}
	
/****************************************

	以下レスポンシブ　記述終了用　削除禁止

*****************************************/
}

@media screen and (max-width: 999px) {
	#sp-nav ul.type02 {
		width: 100%;
		display: flex;
		justify-content: center;
		margin: 0 auto 30px auto;
	}
}

/** 東内追加分（被災へのお見舞い等）**/
@media screen and (max-width: 999px) {
	p.omimai {
		width: auto;
		text-align: left;
		margin-left: 15px;
		margin-right: 15px;
	}	
}



/*アクティブクラスがついたら位置を0に*/