@charset "utf-8";

@font-face {
  font-family: 'diot';
  src: url(fonts/Didot.woff);
}

html {
	font-size: 14px;
}

body {
	margin: 0;
	padding: 0;
	font-family: diot, serif;
	font-kerning: normal;
	letter-spacing: .1em;
	line-height: 1.7;
	color: #000;
	-webkit-text-size-adjust:100%;
	-webkit-font-smoothing: subpixel-antialiased;
}

p,
li,
dt,
dd,
th,
td,
pre {
	-ms-line-break: strict;
	line-break: strict;
	-ms-word-break: break-strict;
	word-break: break-strict;
}

img {
	max-width: 100%;
	vertical-align: top;
	border: 0;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

dd {
	margin: 0;
}

object,
embed {  
  vertical-align: top;  
}

a {
	color: #000;
	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;
}

a:focus {
	outline: none;
}

p {
	display: block;
	margin: 0 0 1em;
}

.layout {
	padding: 0;
	list-style: none;
	overflow: hidden;
}

.m0 {
	margin: 0;
	line-height: 0;
}

.bold {
	font-weight: bold;
}

.cf:before,
.cf:after{
  content:"";
  display: table;
}
.cf:after{
  clear:both;
}

iframe
 {
  -webkit-filter: grayscale(100%)!important;
  -moz-filter: grayscale(100%)!important;
  -ms-filter: grayscale(100%)!important;
  -o-filter: grayscale(100%)!important;
  filter: grayscale(100%)!important;
  -webkit-transition: all 0.7s ease!important;
  -moz-transition: all 0.7s ease!important;
  -o-transition: all 0.7s ease!important;
  transition: all  0.7s ease!important;
}

iframe:hover{
  -webkit-filter: grayscale(0%)!important;
  -moz-filter: grayscale(0%)!important;
  -ms-filter: grayscale(0%)!important;
  -o-filter: grayscale(0%)!important;
  filter: grayscale(0%)!important;
}
/* ----------------------------------------
	Loader
---------------------------------------- */

body.off {
	overflow: hidden;
}

.loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	z-index: 9999;
}

.loader__img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-38%);
	-moz-transform: translate(-50%,-38%);
	-o-transform: translate(-50%,-38%);
	-ms-transform: translate(-50%,-38%);
	transform: translate(-50%,-38%);
	z-index: 9999;
	opacity: 0;
	-webkit-transition: all 1.5s ease;
	-moz-transition: all 1.5s ease;
	-o-transition: all 1.5s ease;
	transition: all  1.5s ease;
/*	-webkit-animation-duration: 1.5s;
	-moz-animation-direction: 1.5s;
	animation-duration: 1.5s;*/
}

.loader__img.on {
	animation-name: loader-in;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	opacity: 1;
}

@keyframes loader-in {
	0% {
		-webkit-transform: translate(-50%,-38%);
		-moz-transform: translate(-50%,-38%);
		-o-transform: translate(-50%,-38%);
		-ms-transform: translate(-50%,-38%);
		transform: translate(-50%,-38%);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		-webkit-transform: translate(-50%,-50%);
		-moz-transform: translate(-50%,-50%);
		-o-transform: translate(-50%,-50%);
		-ms-transform: translate(-50%,-50%);
		transform: translate(-50%,-50%);
		opacity: 1;
	}
}



/* ----------------------------------------
	Header
---------------------------------------- */

.header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 53;
}

.header__logo {
	width: 25%;
	margin: auto;
	padding: 20px 0;
	text-align: center;
}

.btn_menu {
	position: fixed;
	top: 20px;
	right: 20px;
	width: 30px;
	height: 30px;
	z-index: 9999;
}

.btn_menu .open .open {
	display: block;
}

.btn_menu .open .close {
	display: none;
}

.btn_menu .close .open {
	display: none;
}

.btn_menu .close .close {
	display: block;
}

.nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(0,0,0,.7);
	opacity: 0;
	overflow: hidden;
	animation-duration: 0.3s;
}

.nav.on {
	height: 100%;
	opacity: 1;
	animation-name: fade-in;
}

.nav.off {
	height: 0;
	opacity: 0;
	animation-name: fade-out;
}

@keyframes fade-in {
	0% {
		height: 0;
		opacity: 0;
	}
	1% {
		height: 100%;
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fade-out {
	0% {
		height: 100%;
		opacity: 1;
	}
	99% {
		height: 100%;
		opacity: 0;
	}
	100% {
		height: 0;
		opacity: 0;
	}
}

.nav__inner {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	-webkit-transform: translate(0,-50%);
	-moz-transform: translate(0,-50%);
	-o-transform: translate(0,-50%);
	-ms-transform: translate(0,-50%);
	transform: translate(0,-50%);
}

.nav a {
	color: #fff;
}

.nav__j_e {
	text-align: center;
	font-size: 10px;
}

.nav__j_e__item {
	display: inline-block;
}

.nav__j_e__item:after {
	content: "|";
	display: inline-block;
	margin: 0 .6em 0;
	color: #fff;
}

.nav__j_e__item:last-child:after {
	content: none;
}

.nav__list {
	font-size: 12px;
	text-align: center;
	margin: 2em 0;
}

.nav__list__item {
	margin: 0 0 3px;
}

.nav__list__item a {
	display: inline-block;
	padding: 5px;
}

.nav__sns {
	text-align: center;
}

.nav__sns__item {
	display: inline-block;
	margin: 0 5px;
}

/* ----------------------------------------
	News
---------------------------------------- */
section.news {
	overflow:hidden;
	display:block;
	background-color:#000;
	color:#fff;
	text-align:center;
	}
section.news a{
	color:#fff;
	text-align:left;
	}

.news_copy{
	font-size:18px;
	margin:0 0 20px 0;
	letter-spacing:5px;
	}
#news_text{
	width:100%;
	text-align:left;
	display:inline-block;
	vertical-align:middle;
}
#news_read_more{
	display:inline-block;
	}
#news_read_more a{
	border: 1px solid #fff;
	vertical-align:middle;
	}

#instafeed li{
	overflow: hidden;
  	white-space: nowrap;
  	text-overflow: ellipsis;
	}

/* ----------------------------------------
	Contents
---------------------------------------- */

.fix_nav {
	display: none;
}

.top__slide,
.top__slide__item,
.top__slide__item__img {
	width: 100%;
	height: 100%;
}

.top__slide__item__img {
	display: block;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.top__slide__item__img img {
	width: 100%;
	height: 100%;
}

.anchor {
	border: none;
	height: 0px;
	margin: 0;
	padding: 0;
}

.section,
.section--img {
	position: relative;
}

.section__inner {
	padding: 10%;
}

.btn_scroll {
	padding: 20px 0;
	text-align: center;
	height: 17px;
}

.btn_scroll img {
	width: auto;
	height: 100%;
}

.top .btn_scroll,
.section--img .btn_scroll {
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translate(-50%,0);
	-moz-transform: translate(-50%,0);
	-o-transform: translate(-50%,0);
	-ms-transform: translate(-50%,0);
	transform: translate(-50%,0);
	z-index: 52;
}

.section__heading {
	font-size: 28px;
	font-weight: normal;
	letter-spacing: 5px;
}

.section__copy {
	font-size: 22px;
	margin: 0 0 10px;
}

.section__text {
	line-height: 2;
}

.section__img {
	text-align: center;
}

.section__read_more {
	text-align: center;
	margin: 3em 0 0;
}

.section__read_more a {
	display: inline-block;
	padding: 10px 50px;
	border: 1px solid #000;
}


#producemore {
	text-align: center !important;
	margin: 0 0 3px;
}

#producemore a{
	margin: 0 0 3px !important;
	padding: 5px !important;
	font-size:12px !important;
	border:none !important;
	opacity:1 !important;
}

.section--img__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.thumbs {
	margin: 1em 0;
}

.thumbs__list {
	overflow: hidden;
}

.thumbs__list__item {
	width: 49%;
	margin: 0 0 2%;
	float: left;
	text-align: center;
}

.thumbs__list__item:nth-child(even) {
	float: right;
}

.thumbs__list__item:nth-child(n+5) {
	display: none;
}

.thumbs__list__item img {
	width: 100%;
	height: auto;
}

.access__tel {
	font-family: serif;
	font-size: 22px;
	letter-spacing: 2px;
	margin: 50px 0 20px;
}

.access__hour {
	margin: 0;
}

.access__address {
	font-style: normal;
}

.access__to_cal a {
	text-decoration: underline;
}

#map {
	width: 100%;
	height: 200px;
	line-height: 0;
}

#map img {
	max-width: inherit;
	max-width: unset;
}

.btn_reservation {
	position: fixed;
	bottom: 0;
	right: 0;
	width: 25px;
	z-index: 52;
}


/* ----------------------------------------
	Moreコンテンツ
---------------------------------------- */


.more {
	background: rgba(0,0,0,.8);
	color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	overflow: hidden;
	z-index: 999;
	opacity: 0;
	animation-duration: 0.3s;
}

.more2 {
	background: rgba(230,230,230,.8);
	color: #000;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	overflow: hidden;
	z-index: 999;
	opacity: 0;
	animation-duration: 0.3s;
}



.more.on {
	height: 100%;
	opacity: 1;
	overflow: auto;
	animation-name: fade-in;
}

.more.off {
	height: 0;
	opacity: 0;
	animation-name: fade-out;
}


.more__inner {
	padding: 30px;
	position: relative;
}

.more__heading {
	font-size: 28px;
	font-weight: normal;
	letter-spacing: 5px;
	margin: 100px 0 30px;
}

.more__heading:first-child {
	margin: 30px 0;
}

.more__sub_heading {
	font-size: 18px;
	font-weight: normal;
	margin: 100px 0 10px; 
}

.more__sub_heading--first {
	margin: 0 0 10px;
}

.more__menu_name {
	font-size: 18px;
	margin: 0 0 10px;
}

.more__menu_name__en {
	font-size: 10px;
}

.more__menu_name__price {
	display: inline-block;
	margin: 0 0 0 15px;
	font-size: 18px;
}

.more__menu_name__small {
	font-size: 10px;
}

.menu__note {
	font-size: 10px;
	margin: 0 0 10px;
}

.menu__box {
	background: #000;
	margin: 0 0 40px;
	padding: 30px;
}

.menu__box2 {
	background: #fafaf8;
}

.btn_more_close {
	width: 30px;
	height: 30px;
	top: 30px;
	right: 20px;
}

.more.on .btn_more_close {
	position: fixed;
}

.btn_more_close a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}

.btn_more_close a:before {
	content: "";
	display: block;
	width: 1px;
	height: 100%;
	background: #fff;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.btn_more_close a:after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 1px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.btn_more_close2 a:before {
	background: #000;
}
.btn_more_close2 a:after {
	background: #000;
}

.course__name {
	margin: 0 0 20px;
	overflow: hidden;
}

.course__heading {
	font-size: 26px;
}

.course__heading__en {
	font-size: 10px;
}

.course__heading__small {
	font-size: 14px;
}

.course__heading__text {
	display: block;
	font-size: 10px;
	margin: 0;
}

.course__price {
	font-size: 18px;
}
.course__price_2 {
	font-size: 18px;
}

.course__price__small {
	font-size: 10px;
}

.course__price__note {
	font-size: 10px;
	display: block;
	line-height: 1.2;
}

.course__list--line {
	margin: 1em 0 3em;
}

.course__list__small {
	font-size: 10px;
}

.course__list__item {
	margin: 0 0 20px;
}

.course__list__item--inline {
	display: inline-block;
}

.course__list__item__name {
	margin: 0;
}

.course__list__item__name .small {
	font-size: 10px;
}

.course__list__item__detail {
	font-size: 10px;
	margin: 0;
}

.lunch__col--left {
	margin: 0 0 40px;
}

.lunch__heading {
	margin: 0 0 20px;
	font-size: 18px;
	font-weight: normal;
}

.lunch__menu {
	margin: 0 0 20px;
	overflow: hidden;
}

.lunch__menu__name {
	font-size: 16px;
	display: inline-block;
}

.lunch__menu__name .small {
	font-size: 12px;
	display: block;
}

.lunch__menu__name small {
	font-size: 12px;
}

.lunch__menu__price {
	font-size: 16px;
	text-align: right;
	display: inline-block;
	float: right;
	clear: both;
}

.lunch__menu__price__small {
	font-size: 10px;
}

.lunch__menu__detail {
	clear: both;
	font-size: 10px;
}

.drink__heading {
	margin: 30px 0 5px;
	font-size: 18px;
	font-weight: normal;
}

.drink__heading:first-child {
	margin: 0 0 5px;
}

.drink__menu {
	margin: 0;
	overflow: hidden;
}

.drink__menu__name {
	font-size: 14px;
	display: inline-block;
	clear: both;
}

.drink__menu__name2 {
	font-size: 12px;
	display: inline-block;
	margin: 1em 0 0 0;
	clear: both;
}

.drink__menu__price {
	font-size: 14px;
	text-align: right;
	display: inline-block;
	margin: 0 0 0 1em;
	float: right;
	clear: both;
}

.drink__menu__price__sub,
.drink__menu__price__small {
	font-size: 10px;
}

.more__copy {
	font-size: 22px;
	margin: 0 0 10px;
}

.more__text {
	line-height: 2;
}

.cast__list__item {
	margin: 0 0 40px;
}

.cast__category {
	font-size: 13px;
	margin: 0;
}

.cast__name {
	font-size: 20px;
	font-weight: normal;
	margin: 0;
}

.cast__name_en {
	font-size: 10px;
	margin: 0 0 20px;
}

.cast__text {
	font-size: 12px;
}


#more-03 {
  background-image: url(../img/cast_back01.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

#cast_sign {
	padding-top:30px;
}

.producetenpo {
	width:100%;
}

.produceline{
	width:auto;
	margin-bottom:50px;
	}

#setugekka,#jiro,#tsubaki{
	text-align:center;
}

#setugekka-rogo{
	width:200px;
	height:auto;
	margin-bottom:40px;
}

#jiro-rogo{
	width:200px;
	height:auto;
	margin-bottom:40px;
}

#tsubaki-rogo {
	width:130px;
	height:auto;
	margin-bottom:40px;
	}

/* ----------------------------------------
	Footer
---------------------------------------- */

.footer {
	padding: 20px;
}

.footer__logo {
	width: 25%;
	margin: auto;
	padding: 0 0 20px;
	text-align: center;
}

.footer__sns__list {
	text-align: center;
}

.footer__sns__list__item {
	display: inline-block;
	margin: 0 5px;
}

.footer__address {
	margin: 15px 0;
	font-size: 10px;
	font-weight: normal;
	font-style: normal;
}

.footer__copyright {
	font-size: 11px;
	margin-bottom: 30px;
}

/* ----------------------------------------
	インスタ携帯
---------------------------------------- */
@media screen and (max-width: 540px){
.insta a {
	display: inline-block;
	width: 150px;
	height: 150px;
	margin-top: 20px;
}
}
/************************************************************

	PC 540px以上
	
************************************************************/

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

.thumbs__list__item {
	width: 18.333333333%;
	margin: 0 2.0833333333% 0 0;
}

.thumbs__list__item:nth-child(even) {
	float: left;
}

.thumbs__list__item:nth-child(n + 5) {
	display: block;
}

.thumbs__list__item:nth-child(5n) {
	margin: 0;
}

#map {
	height: 300px;
}

.btn_reservation {
	width: 50px;
}

.footer {
	padding: 25px;
	text-align: center;
}

.produceline{
	min-width:500px;
	margin-bottom:80px;
	}

}

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

	PC 940px以上
	
************************************************************/

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

.header__inner {
	width: 900px;
	margin: auto;
	position: relative;
}

.header__logo {
	padding: 25px 0;
}

.nav,
.nav.off {
	position: static;
	display: block;
	height: auto;
	opacity: 1;
	background: none;
}

.nav__inner {
	position: static;
	-webkit-transform: none;
	-moz-transform: none;
	-o-transform: none;
	-ms-transform: none;
	transform: none;
}

.nav__j_e {
	position: absolute;
	top: 80px;
	right: 0;
}

.nav__list {
	margin: 0;
}

.nav__list__item {
	display: inline-block;
}

.nav__list__item:after {
	content: "|";
	display: inline-block;
	margin: 0 .6em 0 1em;
	color: #fff;
}

.nav__list__item:last-child:after {
	content: none;
}

.nav__sns {
	position: absolute;
	bottom: 53px;
	right: 0;
}

.nav__sns__item:last-child {
	margin-right: 0;
}

.fix_nav {
	display: block;
	position: absolute;
	width: 100%;
	background: #fff;
	z-index: 1;
}

.fix_nav.fix {
	position: fixed;
	top: 0;
}

.fix_nav__inner {
	width: 780px;
	height: 121px;
	margin: auto;
	padding: 25px 0;
	position: relative;
}

.fix_nav__logo {
	margin: 0;
	position: absolute;
	left: -144px;
}

.fix_nav__list {
	text-align: center;
	padding: 48px 0;
}

.fix_nav__list__item {
	display: inline-block;
}

.fix_nav__list__item:after {
	content: "|";
	display: inline-block;
	margin: 0 0 0 .4em;
	color: #000;
}

.fix_nav__list__item:last-child:after {
	content: none;
}


.btn_scroll {
	width: 61px;
	height: 34px;
	margin: 10px auto 50px;
	padding: 0;
	position: relative;
	cursor: pointer;
}

.btn_scroll a {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
}

.btn_scroll:hover {
}

.btn_scroll:hover a {
	animation: bounce .5s ease-out 0s 1 normal;
}
/* ----------------------------------------
	インスタ
---------------------------------------- */
.sec_insta {
	text-align: center ;	
}
.insta {
	width: 900px;
	height: auto;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	}

.insta a {
	display: inline-block;
	width: 164px;
	height: 164px;
}
	
/* ----------------------------------------
	キャスト
---------------------------------------- */	
	
	.cast_space {
	width: 900px;
	height: 800px;
	margin: 0 auto ;
	display: flex;
	justify-content: space-around ;
	margin-bottom: 40px;
	}
	
	.cast_naiyou {
		width: 425px ;
		height: 425px ;
		display: inline-block;
		text-align: left;
	}
	
	
	
	
	
	
	
	
	
/* ----------------------------------------
	News
---------------------------------------- */
#news_text{
	width:480px;
	}
#news_read_more a{
	padding:10px 30px;
	margin-left:30px;
	}

@keyframes bounce {
  from {
    bottom: 0;
  }
  10% {
    bottom: -20%;
  }
  to {
    bottom: 0;
  }
}

.btn_menu {
	display: none;
}

.anchor {
	margin: -170px 0 0;
	padding: 170px 0 0;
}

.section {
	text-align: center;
}

.section--1 {
	padding: 171px 0 0;
}

.section__inner {
	padding: 90px;
}

.section__heading {
	font-size: 42px;
}

.section__copy {
	font-size: 30px;
}

.section__body {
	margin: 100px 0 0;
}

.section__text {
	line-height: 3;
}

.section__read_more {
	margin: 80px 0 0;
	font-size: 16px;
}

.section__read_more a {
	padding: 13px 72px;
	opacity: .4;
	
}

.section__read_more a:hover {
	opacity: 1;
}

.thumbs {
	margin: 30px 0;
}

.footer {
	padding: 25px 25px 100px;
	text-align: center;
}

.access__tel {
	font-size: 30px;
	margin: 100px 0 10px;
}

.more {
	text-align: left;
}

.more__inner {
	max-width: 900px;
	margin: auto;
	padding: 100px 0;
}

.more__heading {
	font-size: 42px;
	margin: 200px 0 30px;
}

.more__heading:first-child {
	margin: 0 0 30px;
}

.more__sub_heading {
	font-size: 26px;
	font-weight: normal;
	margin: 280px 0 10px;
}

.more__sub_heading--first {
	margin: 80px 0 10px;
}

.more__menu_name {
	font-size: 30px;
	margin: 0 0 10px;
}

.more__menu_name__en {
	font-size: 14px;
}

.more__menu_name__price {
	margin: 0 0 0 20px;
	font-size: 24px;
}

.more__menu_name__small {
	font-size: 14px;
}

.menu_img {
	padding: 30px;
	background: #000;
}

.menu_img__inner {
	height: 420px;
	display: block;
	text-align: center;
}

.menu_img__inner img {
	width: auto;
	max-height: 100%;
}

.menu__box {
	padding: 45px;
	overflow: hidden;
}

.menu__note {
	font-size: 12px;
}

.course__heading {
	font-size: 30px;
	border-left: 5px solid #969696;
	position: relative;
	padding: 0 0 0 18px;
	float: left;
}

.course__heading:before {
	content: "";
	display: block;
	width: 2px;
	height: 100%;
	background: #969696;
	position: absolute;
	top: 0;
	left: 2px;
}

.course__heading__en {
	font-size: 12px;
}

.course__heading__small {
	font-size: 20px;
}

.course__heading__text {
	font-size: 14px;
}

.course__price {
	font-size: 26px;
	line-height: 51px;
	text-align: right;
}

.course__price_2 {
	font-size: 26px;
	line-height: 51px;
}

.course__price__small {
	font-size: 12px;
}

.course__price__note {
	font-size: 14px;
	margin: -10px 0 0;
}

.course__list__item__name {
	font-size: 18px;
}

.course__list__item__name .small {
	font-size: 12px;
}

.course__list__item__detail {
	font-size: 12px;
}

.more__copy {
	font-size: 30px;
}

.more__text {
	line-height: 3;
}

.more__text_box__left {
	width: 70%;
	float: left;
}

.more__text_box__right {
	width: 28%;
	float: right;
}

.lunch__col {
	width: 45%;
	float: left;
}

.lunch__col--left {
	margin: 0;
}

.lunch__col--right {
	float: right;
}

.lunch__heading {
	font-size: 26px;
}

.lunch__menu {
	margin: 0 0 40px;
}

.lunch__menu__name {
	font-size: 18px;
}

.lunch__menu__price {
	font-size: 20px;
}

.lunch__menu__detail {
	font-size: 12px;
}

.btn_more_close {
	top: 50px;
	right: 50px;
	width: 70px;
	height: 70px;
}

.drink__col {
	width: 45%;
	float: left;
}

.drink__col--right {
	float: right;
}

.drink__heading {
	font-size: 18px;
	margin: 25px 0 5px;
}

.drink__col .drink__heading:first-chidl {
	margin: 0 0 5px;
}

.drink__menu {
	margin: 0;
}

.drink__menu__name {
	font-size: 14px;
}

.drink__menu__price {
	font-size: 18px;
}

.drink__menu__price__sub {
	font-size: 12px;
}

.cast__list__item {
	width: 40%;
	margin: 0 2.7777777778% 2.7777777778% 0;
	float: left;
}

.cast__list__item:nth-child(3n) {
	margin: 0 0 2.7777777778%;
}

.cast__category {
	font-size: 14px;
	margin: 0 0 3px;
}

.cast__name {
	font-size: 22px;
	margin: 0 0 3px;
}

.cast__name_en {
	font-size: 12px;
}

.cast__text {
	font-size: 14px;
}

#setugekka,#jiro,#tsubaki{
	text-align:left;
}

#setugekka-rogo{
	margin-left:80px;
}

#jiro-rogo{
	margin:25px 0 30px 80px;
}

#tsubaki-rogo{
	margin-left:135px;
}


}



/*--------------------------
	bxslider カスタム
--------------------------*/

.bx-wrapper,
.bx-viewport {
	height: 100% !important;
}

.bx-wrapper .bx-viewport {
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	left: inherit;
	background: none;
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	transform: none;
}

.bx-wrapper img {
	width: 100% !important;
}

.bxslider {
	margin: 0;
}

.bx-wrapper .bx-controls-direction a {
	background: none;
	width: 20px;
	height: 40px;
}

.bx-wrapper .bx-prev {
	left: -25px;
}

.bx-wrapper .bx-next {
	right: -25px;
}

.bx-wrapper .bx-controls-direction a:before {
	content: "";
	display: block;
	width: 1px;
	height: 50%;
	background: #fff;
	position: absolute;
	bottom: 50%;
	left: 0;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transform-origin: bottom;
	-moz-transform-origin: bottom;
	-o-transform-origin: bottom;
	-ms-transform-origin: bottom;
	transform-origin: bottom;
}

.bx-wrapper .bx-controls-direction a:after {
	content: "";
	display: block;
	width: 1px;
	height: 50%;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transform-origin: top;
	-moz-transform-origin: top;
	-o-transform-origin: top;
	-ms-transform-origin: top;
	transform-origin: top;
}

.bx-wrapper .bx-controls-direction a.bx-next:before {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	right: 0;
	left: inherit;
}

.bx-wrapper .bx-controls-direction a.bx-next:after {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	right: 0;
	left: inherit;
}


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


	.bx-wrapper .bx-controls-direction a {
		background: none;
		width: 30px;
		height: 70px;
	}

	.bx-wrapper .bx-prev {
		left: -70px;
	}

	.bx-wrapper .bx-next {
		right: -70px;
	}

}



.award{
	margin: 20px 0 20px;
	text-align: center;
}
.award img{
	max-width: 200px;
}
