@charset "utf-8";
/*=============================================
 * body
 *=============================================*/

body {
	color: #000;
	min-width: inherit;
	max-height: 100%;
	font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-weight: bold;
	line-height: 28px;
	font-size: 14px;
	cursor: auto;
	letter-spacing: 0;
	word-spacing: normal;
	background: url(../img/shared/bg.jpg) repeat center top;
}
.navOpen {
	overflow-y: hidden;
	height: 100vh;
	-webkit-overflow-scrolling: touch;
}
.fnt-mincho {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.fnt-meiryo {
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴシックPro", "ＭＳ ゴシック", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.fnt-gothic {
	font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
.block::after {
	clear: both;
	content: "";
	display: block;
}
.wrap {
    padding: 0 3%;
    position: relative;
}
img{
    width: 100%;
}
/*=============================================
 * header
 *=============================================*/

header {
	position: relative;
    padding-top: 80px;
    background: url(../img/shared/bg_top.png) repeat-x center top;
}
header .logo {
	width: 130px;
	position: absolute;
    left: 10px;
    top: 0;
}

header h1 {
	position: absolute;
	left: 160px;
	width: calc(100% - 160px);
	color: #fff;
	top: 5px;
	font-size: 12px;
	line-height: 1.3;
	z-index: 60;
	-webkit-transition: all .3s;
	transition: all .3s;
}
@media only screen and (max-width: 400px) {
    header .logo {
        width: 110px;
    }
    header h1{
        left: 130px;
	width: calc(100% - 130px);
    }
}
header .inner {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	width: 100%;
	height: 80px;
	background: url(../img/shared/bg-head.jpg) repeat center top;
	-webkit-transition: all .3s;
	transition: all .3s;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/*====================== nav ====================== */

header .menu_toggle {
	z-index: 999;
	padding: 20% 4% 10%;
	-webkit-transition: all .8s;
	transition: all .8s;
	background: url(../img/shared/bg.jpg) repeat center top;
	position: fixed;
	opacity: 0;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: table;
	width: 100%;
	height: 100%;
	margin: auto;
	pointer-events: none;
}
.navOpen header .menu_toggle {
	pointer-events: visible;
	opacity: 1;
}
header .menu_toggle .list-wrap {
	display: table-cell;
	width: 100%;
	-webkit-transition: all 1s;
	transition: all 1s;
	/*
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
*/
	padding-top: 10%;/*	vertical-align: middle;*/
}
.navOpen header .menu_toggle .list-wrap {
	/*
	-webkit-transform: scale(1);
	transform: scale(1);
*/
	padding-top: 0;
}
header .menu_toggle.nav-style01 {
	top: 0px;
	left: -100%;
	display: block;
	transition: all 0.4s ease 0s;
}
.navOpen .menu_toggle.nav-style01 {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	left: 0;
}
header .menu_toggle ul li {
	border-bottom: 1px solid #4d2c20;
	padding: 2px 0;
}
.menu_toggle ul li {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	opacity: 0;
	-webkit-transform: translateX(-40px);
	-ms-transform: translateX(-40px);
	transform: translateX(-40px);
}
.navOpen .menu_toggle ul li {
	opacity: 1;
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}
.navOpen .menu_toggle ul li:nth-child(1) {
 -webkit-transition-delay: calc(0.2s + 0.1s*1);
 -o-transition-delay: calc(0.2s + 0.1s*1);
 transition-delay: calc(0.2s + 0.1s*1);
}
.navOpen .menu_toggle ul li:nth-child(2) {
 -webkit-transition-delay: calc(0.2s + 0.1s*2);
 -o-transition-delay: calc(0.2s + 0.1s*2);
 transition-delay: calc(0.2s + 0.1s*2);
}
.navOpen .menu_toggle ul li:nth-child(3) {
 -webkit-transition-delay: calc(0.2s + 0.1s*3);
 -o-transition-delay: calc(0.2s + 0.1s*3);
 transition-delay: calc(0.2s + 0.1s*3);
}
.navOpen .menu_toggle ul li:nth-child(4) {
 -webkit-transition-delay: calc(0.2s + 0.1s*4);
 -o-transition-delay: calc(0.2s + 0.1s*4);
 transition-delay: calc(0.2s + 0.1s*4);
}
.navOpen .menu_toggle ul li:nth-child(5) {
 -webkit-transition-delay: calc(0.2s + 0.1s*5);
 -o-transition-delay: calc(0.2s + 0.1s*5);
 transition-delay: calc(0.2s + 0.1s*5);
}
.navOpen .menu_toggle ul li:nth-child(6) {
 -webkit-transition-delay: calc(0.2s + 0.1s*6);
 -o-transition-delay: calc(0.2s + 0.1s*6);
 transition-delay: calc(0.2s + 0.1s*6);
}
.navOpen .menu_toggle ul li:nth-child(7) {
 -webkit-transition-delay: calc(0.2s + 0.1s*7);
 -o-transition-delay: calc(0.2s + 0.1s*7);
 transition-delay: calc(0.2s + 0.1s*7);
}
.navOpen .menu_toggle ul li:nth-child(8) {
 -webkit-transition-delay: calc(0.2s + 0.1s*8);
 -o-transition-delay: calc(0.2s + 0.1s*8);
 transition-delay: calc(0.2s + 0.1s*8);
}

header .menu_toggle ul li a {
	color: #4d2c20;
	font-weight: bold;
	font-size: 18px;
	position: relative;
	padding: 18px 0;
    font-family: "source-han-serif-japanese", serif;
}
header .menu_toggle ul li a span {
	color: #8b0202;
	font-size: 16px;
}
/*
header .menu_toggle ul li a:before{
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 20px;
	width: 5px;
	background: #240202;
	display: none;
	
}
*/
header .menu_toggle ul li a, header .menu_toggle ul li a:hover, header .menu_toggle ul li a:focus, header .menu_toggle ul li a:active, header .menu_toggle ul li a:visited {
	text-decoration: none !important;
}
header .menu_toggle ul li.active a {
	color: #c32d19;
}
header .menu_toggle ul li a:after {
	display: none;
}
header .menu_toggle .btn {
	padding: 0 2%;
}

header .topnavi{
	position: absolute;
	right: 70px;
	top: 20px;
	z-index: 60;
	text-align: center;
	color: #000;
}
header .topnavi li{
	display: inline-block;
	width: 52px;
	height: 52px;
	color: #000;
/*	float: left;*/
}
header .topnavi li a{
	font-size: 11px;
    line-height: 21px;
    text-align: center;
    display: block;
    height: 100%;
    width: 100%;
	font-weight: bold;
	padding-top: 6px;
    background: url(../img/shared/bg.jpg) repeat center top;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
header .topnavi li a.icon-phone-1:before, 
header .topnavi li a.icon-location-1:before{
	display: block;
    width: 100%;
    padding-bottom: 0;
    font-size: 25px;
    font-weight: normal;
}

.hamburger {
	position: absolute;
	right: 10px;
	top: 20px;
	z-index: 9999;
	color: #000;
    background: url(../img/shared/bg.jpg) repeat center top;
	padding: 8px 7px 10px;
	transition: all 0.3s ease 0s;
	font-weight: bold;
}
.hamburger:after {
	font-size: 11px;
	content: 'MENU';
	position: absolute;
	bottom: -4px;
	left: 0;
	right: 0;
	text-align: center;
}
.hamburger-box {
	width: 38px;
}
.hamburger-inner, .hamburger-inner:before, .hamburger-inner:after {
	background: #000;
	width: 38px;
}
.hamburger--slider .hamburger-inner::before {
	top: 9px;
}
.hamburger--slider .hamburger-inner::after {
	top: 18px;
}
.hamburger--slider.is-active .hamburger-inner::after {
	transform: translate3d(0, -19px, 0) rotate(-90deg);
}
.navOpen .hamburger:after {
	content: 'CLOSE';
}
/*
.has_nav .hamburger {
	top: 14px;
}
*/
/*====================== end nav ====================== */

/*====================== header key ====================== */


#key{
    
}
.bx-wrapper {
	position: relative;
}
.bx-wrapper .bx-pager {
	color: #ffee00;
	font-family: Arial;
	font-size: 0.85em;
	font-weight: bold;
	text-align: center;
}
.bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto {
	line-height: 10px;
	bottom: 5%;
	left: 0;
	position: absolute;
	right: 0;
	width: 100%;
	z-index: 60;
}
.bx-controls-direction {
	left: 0;
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -20px;
	width: 100%;
	z-index: 60;
}
.bx-wrapper .bx-controls-direction a {
	color: #e75a5a;
	font-family: "fontello";
	font-size: 40px;
	height: 40px;
	line-height: 40px;
	outline: 0 none;
	position: absolute;
	text-indent: -9999px;
	top: 0%;
	width: 26px;
}
.bx-prev::after {
	content: "";
	left: 11px;
	position: absolute;
	text-indent: 0;
	top: 0;
}
.bx-next::after {
	content: "";
	left: 0;
	position: absolute;
	text-indent: 0;
	top: 0;
}
.bx-prev {
	position: absolute;
	top: 0;
	left: 0;
}
.bx-next {
	position: absolute;
	top: 0;
	right: 0;
}
.bx-wrapper .bx-pager .bx-pager-item, .bx-wrapper .bx-controls-auto .bx-controls-auto-item {
	display: inline-block;
}
.bx-wrapper .bx-pager.bx-default-pager a {
	background-color: #000;
	border-radius: 100%;
	display: block;
	height: 11px;
	margin: 0 5px;
	outline: 0 none;
	text-indent: -9999px;
	width: 11px;
/*
	-moz-box-shadow: inset 0 2px 3px rgba(0, 0, 0, .55);
	-webkit-box-shadow: inset 0 2px 3px rgba(0, 0, 0, .55);
	box-shadow: inset 0 2px 3px rgba(0, 0, 0, .55);
*/
}
.bx-wrapper .bx-pager.bx-default-pager a:hover, .bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #be0900 none repeat scroll 0 0;
	box-shadow: none;
}
/*====================== end nav ====================== */


/*=============================================*/
/*                   　footer　　　　　          */
/*=============================================*/


footer {
	overflow: hidden;
	font-size: 13px;
	line-height: 24px;
	padding: 10% 0 50px;
	position: relative;
	background: url(../img/shared/bg4.jpg) repeat center top;
    color: #fff;
}
footer .shopinfo {
	padding: 0 2% 5%;
	position: relative;
}
footer .txt > span{
    font-weight: bold;
    font-size: 16px;
}
footer .vcard {
	padding: 0 1%;
	margin-bottom: 3%;
}
footer .vcard dl {
	margin-bottom: 3%;
}
footer .vcard dt {
	font-weight: bold;
}
footer .vcard dd {
/*	padding-left: 20px;*/
}
#f_logo {
	margin: 0 auto 8%;
	width: 130px;
}
.f_tel {
	position: relative;
	background:  url(../img/shared/tel_br.png) repeat center bottom;
    -webkit-background-size: 100%;
    background-size: 100%;
	padding: 4% 3% 1%;
    width: 90%;
    margin: auto;
}
.f_tel:after{
    position: absolute;
    content: "";
    background: url(../img/shared/tel_bf.png) no-repeat center top, url(../img/shared/tel_at.png) no-repeat center bottom;
    -webkit-background-size: 100%;
    background-size: 100%;
    top: -5%;
    left: 0;
    width: 100%;
    height: 110%;
}
.f_tel .txt span{
	display: block;
}
.f_tel .tel{
	max-width: 500px;
	min-width: 280px;
	margin: 0 auto 2%;
}
.f_tel .tit{
	font-size: 17px;
    margin-bottom: 2%;
}
.f_tel h3{
	border: 1px solid #fff;
	padding: 2% 0;
	font-size: 6.5vmin;
}
.f_tel .txt{
	margin-bottom: 2%;
}
.f_tel .btn{
	width: 80%;
	margin: auto;
}
footer .banner li {
	float: left;
	width: 32%;
	padding: 0 0.5%;
}
footer .link {
	margin: 0 auto 0;
	text-align: center;
	width: 100%;
	font-weight: normal;
}
footer .link p {
	width: 50%;
	min-width: 170px;
	max-width: 210px;
	margin: 7% auto;
	padding: 0 6px;
	line-height: 30px;
}
footer .link p a {
	background: #fff;
	color: #000;
	display: block;
	font-size: 14px;
	letter-spacing: 0;
	padding: 3px 20px;
	text-align: center;
	text-decoration: none;
	box-shadow: inset 0 0 1px #a8a398;
}
footer .link .link-pc a::before {
	margin-right: 9px;
}
footer address {
	color: #fff;
	font-size: 11px;
	text-align: center;
	background: #000;
	-webkit-background-size: 100%;
	background-size: 100%;
	padding: 3% 0 2%;
}
/*=============================================*/
/*                   　index　　　　　          */
/*=============================================*/


.link-archo li {
	width: 49%;
	float: left;
	color: #fff;
	padding: 10px 5px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align: center;
}
.botan {
	color: #fff;
	padding: 3px 5px;
}
.access_btn {
	background: #4C06F7;
	text-align: center;
	font-size: 20px;
	color: #fff;
	margin-bottom: 20px;
}
.access_btn span {
	display: block;
	padding: 10px;
	cursor: pointer;
}
/*
.copied {
	background-color: rgb(61, 38, 18);
	color: rgb(255, 255, 255);
}
*/
#ft_group {
	position: fixed;
	opacity: 0;
	z-index: -9999;
	bottom: 0;
	left: 0;
	right: 0;
	color: #000;

	background: url(../img/shared/bg1.jpg) repeat center top;
		transition: all .5s ease;
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
}

.has_nav  #ft_group {
	position: fixed;
	z-index: 90;
	opacity: 1;
}
#ft_group .box {
	padding: 1% 0 0%;
/*	background: #d1cfce;*/
	-webkit-background-size: 100%;
	background-size: 100%;
	color: #000;
	text-align: center;
	font-size: 12px;
	font-weight: bold;
	line-height: 1.7;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
		border: 2px solid #000;
	position: relative;
}
#ft_group .box a{
	color: #000;
	text-decoration: none;
}

.ft_contact_tel .icon-phone-1:before {
	padding-right: 7px;
	
}
.contact_gr .ft_contact_tel dd {
	font-size: 12px;
} 
.contact_gr .ft_contact_tel dd a{
	font-size: 17px;
    line-height: 1.4;
} 

/*
.contact_gr .fl,.contact_gr .fr {
	width: 50%;
}
*/
.contact_gr .fl dt{
	font-size: 13px;
    line-height: 16px;
}
.contact_gr .fl dd{
	font-size: 16px;
	
}
.contact_gr .fr{
	border-left: none !important;
}
.contact_gr .ft_contact_mail {
	font-size: 14px !important;
    line-height: 21px !important;
} 
.ft_contact_mail .icon-location-1:before {
	display: block;
	text-align: center;
	margin: 3px auto 0;
	font-size: 19px;
}
#ft_group .box  .icon-mail-alt {font-size: 14px;}
#ft_group .box  .icon-mail-alt:before {
	
	font-size: 14px;
	padding-right: 10px;
}
#pagetop {
	right: 7px;
	bottom: 55px;
	z-index: 90;
}
#pagetop img{
    width: 57px;
}
.js_full {
	position: relative;
	overflow: hidden;
	margin: 0 -3%;
	height: 0;
	padding-top: calc(51% + 30px );
}
/*
.js_full .bx-pager {
	position: static;
	padding-top: 10px;
}
*/
.js_full .js_in {
	padding: 0 15%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}
.js_full .bx-viewport {
	overflow: visible !important;
}
.js_full_ext {
	padding-left: 0;
}
.js_full_ext .js_in {
	padding-left: 5%;
}
.js_full_ext img {
	width: 90%;
}
.js_full_ext .bx-prev {
	display: none;
}
.js_full_ext .bx-next {
	right: -18%;
}
.full {
	margin: 0 -3%;
}
.txt {
	margin-bottom: 2%;
}
.text-shadow {
	text-shadow: 1px 1px 2px #080808, 0 0 1em #606067, 0 0 0.2em #0d0d0e;
}
.text-r {
	text-align: right !important;
}
.text-c {
	text-align: center !important;
}
.price {
	/*	color: #b11818;*/
	font-weight: bold;
	font-size: 17px;
/*	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;*/
	line-height: 1.4;
}
.price span {
	font-size: 23px;
}

.mb_2p {
	margin-bottom: 2%;
}
.mb_3p {
	margin-bottom: 3%;
}
.mb_5p {
	margin-bottom: 5%;
}
.mb_7p {
	margin-bottom: 7%;
}
.mb_10p {
	margin-bottom: 10%;
}
.mt_2p {
	margin-top: 2%;
}
.mt_3p {
	margin-top: 3%;
}
.mt_5p {
	margin-top: 5%;
}
.mt_7p {
	margin-top: 7%;
}
.mt_10p {
	margin-top: 10%;
}
.pb_2p {
	padding-bottom: 2%;
}
.pb_3p {
	padding-bottom: 3%;
}
.pb_5p {
	padding-bottom: 5%;
}
.pb_7p {
	padding-bottom: 7%;
}
.pb_10p {
	padding-bottom: 10%;
}
.pt_2p {
	padding-top: 46%;
}
.pt_3p {
	padding-top: 3%;
}
.pt_5p {
	padding-top: 5%;
}
.pt_7p {
	padding-top: 7%;
}
.pt_10p {
	padding-top: 10%;
}
.pl_2p{
    padding-left: 2%;
}
.pr_2p{
    padding-right: 2%;
}
.js_custom .bx-wrapper {
	padding-bottom: 7%;
}
.js_custom .bx-wrapper .bx-pager {
	bottom: 0;
}
.js_custom .bx-wrapper .bx-controls-direction {
  bottom: 7%;
  top: auto; 
}
.js_custom.w-style .bx-wrapper .bx-pager.bx-default-pager a {
  background: none;
  box-shadow: none;
  border: 1px solid #fff;
  height: 10px;
  width: 10px; }
.js_custom.w-style .bx-wrapper .bx-pager.bx-default-pager a.active {
    background: #fff; }
.js_custom.w-style .bx-wrapper .bx-controls-direction {
  bottom: 6%; }
 .js_custom.w-style .bx-wrapper .bx-controls-direction a {
    color: #fff; }
.bx-wrapper .bx-controls-direction a {
/*	background: #fff;*/
	width: 37px;
	height: 37px;
	line-height: 36px;
	
/*
	border-radius: 50%;
	box-shadow: 1px 2px 3px rgba(0, 0, 0, .5);
*/
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.bx-wrapper .bx-controls-direction a.bx-next::after {
	right: 10px;
	left: auto;
}
.bx-wrapper .bx-controls-direction a.bx-prev::after {
	left: 10px;
	right: auto;
}
.toggle_custom .toggle-link {
	padding-bottom: 7%;
}
.toggle_custom .toggle-link:after {
	bottom: 3%;
	font-size: 18px;
	top: auto;
	left: 50%;
	right: auto;
	transform: translateX(-50%);
}



@charset "UTF-8";
.bg1 {
  background: url(../img/shared/bg.jpg) repeat center top;
  color: #000; }

.bg2 {
  background: url(../img/shared/bg2.jpg) repeat center top;
  color: #fff; }

.bg3 {
  background: url(../img/shared/bg3.jpg) repeat center top; }

.bg4 {
  background: url(../img/shared/bg-head.jpg) repeat center top; }

.bg5 {
  background: url(../img/shared/bg5.jpg) repeat center top;
  color: #fff; }

.bg6 {
  background: url(../img/shared/bg6.jpg) repeat center top;
  color: #fff; }

hr.line1 {
  background: url(../img/shared/bg2.jpg) repeat center top;
  height: 20px;
  width: 100%;
  border: none; }

.box_txt {
  background: url(../img/shared/bg-box.png) repeat center top;
  padding: 5% 3% 5%; }

.table-st {
  background: url(../img/index/table_bg.png) repeat center top, url(../img/shared/bg2.jpg) repeat center top;
  background-size: 100%, auto;
  padding: 10% 5%;
  color: #fff;
  z-index: 0;
  position: relative; }
  .table-st:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: -5px;
    left: 0;
    background: url(../img/index/table_bf.png) no-repeat center top;
    background-size: 100%;
    z-index: -1; }
  .table-st:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: -5px;
    left: 0;
    background: url(../img/index/table_at.png) no-repeat center bottom;
    background-size: 100%;
    z-index: -1; }

.board {
  border-radius: 15px;
  padding: 10% 3% 5%;
  position: relative; }
  .board:after {
    content: "";
    position: absolute;
    width: 32px;
    height: 29px;
    top: 10px;
    left: 10px;
    background: url(../img/shared/deco1.png) no-repeat center top; }
  .board:before {
    content: "";
    position: absolute;
    width: 32px;
    height: 29px;
    top: 10px;
    right: 10px;
    background: url(../img/shared/deco1.png) no-repeat center top; }
  .board h3 {
    font-weight: bold;
    font-size: 28px;
    line-height: 1.4; }
    .board h3 span {
      font-size: 17px;
      display: block; }
  .board .price {
    position: relative;
    z-index: 0; }
    .board .price:before {
      background: #ae2309;
      position: absolute;
      bottom: -8px;
      top: 10px;
      left: 50%;
      right: 0;
      width: 280px;
      height: 85%;
      content: '';
      transform: translateX(-50%);
      z-index: -1; }
    .board .price span {
      font-size: 28px; }
  .board .toggle {
    background: rgba(255, 255, 255, 0.1); }
    .board .toggle .toggle-link {
        cursor: pointer;
      padding: 2% 0 7%;
      font-size: 20px; }
      .board .toggle .toggle-link:after {
        bottom: 10%;
        font-size: 17px; }
    .board .toggle .toggle-main {
      padding: 5% 3%; }
  .board.board1 {
    margin-top: -15%; }
    .board.board1 .ttl1 {
      position: absolute;
      width: 24%;
      left: -5%;
      top: 120px; }
    .board.board1 .ttl2 {
      position: absolute;
      width: 24%;
      right: -5%;
      top: 120px;
      z-index: 1; }

#index .key_chat {
  position: absolute;
  top: 90px;
  left: 0;
  z-index: 60; }
#index #sec1 {
  background: url(../img/index/sec1_bg.png) no-repeat center top;
  background-size: 100%; 
	
}
  #index #sec1 h2 {
    margin-top: -57%;
    position: relative;
    z-index: 60; }
  #index #sec1 .box_txt {
    padding: 2% 3% 5%;
    margin-top: -2%; }
#index #sec2 .btn {
  position: absolute;
  bottom: 5%;
  width: 94%;
  left: 3%; }
#index #sec2 #junbi{
	font-size: 20px;
	font-weight: 600;
}


#index #sec3 {
  background: url(../img/shared/bg-head.jpg) repeat center top;
  padding: 15% 3% 10%; }
  #index #sec3 h2 {
    position: absolute;
    top: 4%;
    left: 0;
    width: 100%;
    z-index: 1; }
  #index #sec3 .inner {
    background: url(../img/shared/bg2.jpg) repeat center top;
    padding: 5% 0;
    position: relative; }
    #index #sec3 .inner .btn {
      position: absolute;
      bottom: 10%;
      width: 94%;
      left: 3%; }
#index #sec4 {
  background: url(../img/index/sec4_bg.jpg) no-repeat center top;
  background-size: cover; }
  #index #sec4 h2 {
    position: relative;
    z-index: 1; }
  #index #sec4 .box_txt {
    padding: 10% 3% 5%;
    margin-top: -7%;
    transform: rotate(3deg);
    box-shadow: -1px 3px 7px 3px rgba(94, 50, 19, 0.69);
    background: url(../img/shared/bg1.jpg) repeat center top; }
    #index #sec4 .box_txt .txt span {
      font-size: 20px;
      color: #ae2309; }
#index #sec5 {
  background: url(../img/index/sec5_bg.png) no-repeat center top, url(../img/shared/bg3.jpg) repeat center top;
  background-size: 100%, auto; }
  #index #sec5 .heading {
    position: relative; }
    #index #sec5 .heading .btn {
      position: absolute;
      right: 5%;
      top: 50%;
      width: 45%;
      transform: translateY(-50%); }
  #index #sec5 #feed .img span {
    display: inline-block !important; }
  #index #sec5 #fb_area {
    background: url(../img/index/fb_bg.png) no-repeat center top;
    background-size: 100% 100%;
    text-align: center;
    padding: 2% 0 8%;
    margin-top: 15%; }
    #index #sec5 #fb_area h3 {
      margin: -10% 0 5%; }
  #index #sec5 #insta {
    background: url(../img/index/insta_bg.png) no-repeat center top;
    background-size: 100% 100%;
    margin-top: 10%; }
    #index #sec5 #insta h3 {
      padding-top: 7%; }
    #index #sec5 #insta #instafeed {
      padding: 5%; }
      #index #sec5 #insta #instafeed li {
        width: 50%;
        box-sizing: border-box;
        float: left;
        padding: 0 3%;
        margin-bottom: 6%;
        text-align: center; }
        #index #sec5 #insta #instafeed li a {
          display: block; }
          #index #sec5 #insta #instafeed li a img {
            width: 150px; }

#guide #sec2 {
  background: url(../img/index/sec5_bg.png) no-repeat center center;
  background-size: 100%; }
#guide #sec3 .box_txt {
  background: #fff;
  box-shadow: 0px 7px 17.28px 0.72px rgba(0, 0, 0, 0.32);
  position: relative; }
  #guide #sec3 .box_txt h3 {
    width: 150px;
    margin: auto; }
  #guide #sec3 .box_txt .ttl {
    position: absolute;
    width: 50%;
    left: -4%;
    top: -6%; }
  #guide #sec3 .box_txt .note {
    font-size: 19px; }
  #guide #sec3 .box_txt .list {
    line-height: 1.5;
    font-size: 16px; }
    #guide #sec3 .box_txt .list dl {
      padding-bottom: 4%; }
      #guide #sec3 .box_txt .list dl dt {
        float: left; }
      #guide #sec3 .box_txt .list dl dd {
        float: right;
        text-align: right; }
        #guide #sec3 .box_txt .list dl dd .number {
          font-weight: normal;
          display: block; }
  #guide #sec3 .box_txt .totals {
    font-size: 35px;
    color: #ae2309; }
    #guide #sec3 .box_txt .totals span {
      font-size: 18px; }

#party #sec1 .box_txt {
  background: rgba(255, 255, 255, 0.85); }
#party #sec2 {
  overflow: hidden; }
  #party #sec2 .box-tel {
    background: #a81b05;
    color: #fff; }
    #party #sec2 .box-tel h4 {
      font-size: 5vmin;
      font-weight: normal; }
      #party #sec2 .box-tel h4 span {
        font-size: 3.5vmin; }
    #party #sec2 .box-tel .tel {
      font-size: 38px; }
#party #sec3 {
  background: url(../img/party/sec3_bg.png) no-repeat center top;
  background-size: 100%; }
  #party #sec3 .js_full {
    padding-top: calc(51% + 170px ); }
  #party #sec3 .bx-wrapper {
    padding-top: 13%; }
    #party #sec3 .bx-wrapper .item .inner {
      position: relative;
      padding: 15% 4%;
      z-index: 0;
      width: 90%;
      margin: auto;
      min-height: 252px; }
      #party #sec3 .bx-wrapper .item .inner:before {
        border: 2px solid #f6c3a5;
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        content: '';
        z-index: -1; }
      #party #sec3 .bx-wrapper .item .inner h3 {
        font-size: 25px;
        font-weight: bold;
        line-height: 1.5; }
      #party #sec3 .bx-wrapper .item .inner .price_info2 {
        background: #000;
        border-radius: 20px;
        font-size: 22px;
        width: 90%;
        margin: 0 auto 3%;
        line-height: 35px; }
      #party #sec3 .bx-wrapper .item .inner .price_info3 span {
        font-size: 30px; }
        #party #sec3 .bx-wrapper .item .inner .price_info3 span > span {
          font-size: 22px; }
    #party #sec3 .bx-wrapper .bx-pager {
      top: 2%;
      bottom: auto; }
      #party #sec3 .bx-wrapper .bx-pager.bx-default-pager a {
        text-indent: 1px;
        background: transparent;
        color: #000;
        font-size: 15px;
        margin: 0 10px; }
        #party #sec3 .bx-wrapper .bx-pager.bx-default-pager a.active {
          font-size: 18px;
          color: #be0900; }

#party .oshirase{
    margin: 10px auto 10px;
    background-color: rgba(255,255,255,0.7);
    width: 91%;
    font-size: 22px;
	color: #000000;
    border: #000000 double 3px;
    padding: 13px;
    line-height: 35px;
    text-align: center;
}


#menu #sec1 {
  background: url(../img/menu/sec1_bg1.png) no-repeat center top, url(../img/menu/sec1_bg2.png) no-repeat center bottom;
  background-size: 100%; }
#menu #sec2 .block1 {
  background: url(../img/menu/sec2_bg1.png) no-repeat center top; }
#menu #sec2 .block2 .price {
  color: #f2381f; }
  #menu #sec2 .block2 .price:before {
    display: none; }
#menu #sec3 {
  background: url(../img/index/sec5_bg.png) no-repeat center top;
  background-size: 100%; }
  #menu #sec3 .bx-wrapper {
    padding-bottom: 7%; }
    #menu #sec3 .bx-wrapper .item .heading {
      position: relative; }
      #menu #sec3 .bx-wrapper .item .heading h3 {
        background: url(../img/shared/bg6.jpg) repeat center top;
        color: #fff;
        font-weight: bold;
        font-size: 25px;
        padding: 8px 12px;
        box-sizing: border-box;
        width: 80%;
        float: right;
        margin: -3% 6% 0 0;
        text-align: center; }
    #menu #sec3 .bx-wrapper .item .txt {
      padding: 0 3%; }
    #menu #sec3 .bx-wrapper .item .price {
      color: #ad1b05; }
    #menu #sec3 .bx-wrapper .bx-pager {
      top: auto !important;
      bottom: 0; }
      #menu #sec3 .bx-wrapper .bx-pager.bx-default-pager a {
        text-indent: 1px;
        background: transparent;
        color: #000;
        font-size: 15px;
        margin: 0 10px; }
        #menu #sec3 .bx-wrapper .bx-pager.bx-default-pager a.active {
          font-size: 18px;
          color: #be0900; }
    #menu #sec3 .bx-wrapper .bx-controls-direction {
      margin-top: 42%; }
#menu #sec5 .price {
  color: #f2381f; }
  #menu #sec5 .price:before {
    display: none; }
#menu #sec5 .slide_thm li {
  width: 50%;
  float: left;
  box-sizing: border-box;
  padding: 0 3%;
  margin-bottom: 6%; }
#menu #sec6 h3 {
  font-size: 28px;
  font-weight: bold; }
#menu #sec6 .txt {
  padding: 0 3%; }
#menu #sec6 .price {
  color: #ad1b05; }
#menu #sec6 .bx-wrapper {
  padding-top: 5%; }
  #menu #sec6 .bx-wrapper .bx-pager {
    top: 0; }
#menu #sec7 .toggle .toggle-link:after {
  color: #000; }
#menu #sec7 .toggle .toggle-main .list {
  margin-bottom: 7%; }
  #menu #sec7 .toggle .toggle-main .list h3 {
    background: url(../img/shared/bg6.jpg) repeat center top;
    font-size: 28px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    padding: 2% 0;
    margin-bottom: 3%; }
  #menu #sec7 .toggle .toggle-main .list dl {
    padding-bottom: 2%;
    margin-bottom: 2%;
    border-bottom: 1px solid #887f73; }
    #menu #sec7 .toggle .toggle-main .list dl dt {
      float: left; }
    #menu #sec7 .toggle .toggle-main .list dl dd {
      float: right; }

#menu .oshirase{
    margin: 10px auto 10px;
    background-color: rgba(255,255,255,0.7);
    width: 91%;
    font-size: 22px;
	color: #000000;
    border: #000000 double 3px;
    padding: 13px;
    line-height: 35px;
    text-align: center;
}



#floor #sec3 {
  background: url(../img/floor/sec3_bg.png) no-repeat center center;
  background-size: 100%; }
#floor #sec4 .box-tel .til {
  font-size: 20px; }

#shopinfo #sec1 .box_txt {
  background: url(../img/shared/bg.jpg) repeat center top;
  margin-top: -7%; }
  #shopinfo #sec1 .box_txt dl {
    padding-bottom: 2%;
    margin-bottom: 2%;
    border-bottom: 1px solid #252525; }
    #shopinfo #sec1 .box_txt dl dt {
      color: #ad1b05; }
    #shopinfo #sec1 .box_txt dl dd.tel_info a {
      font-size: 22px; }
#shopinfo #map {
  line-height: 1; }
  #shopinfo #map .btn {
    padding: 0 3%; }
#shopinfo #sec3 {
  position: relative;
  z-index: 0; }
  #shopinfo #sec3 .box_txt {
    background: url(../img/shopinfo/sec3_bg1.png) no-repeat center top;
    background-size: 100% 100%;
    padding: 10% 0;
    position: relative;
    z-index: 1; }
    #shopinfo #sec3 .box_txt .txt {
      padding: 0 8% 5% 12%; }
  #shopinfo #sec3 .pt {
    margin-top: -23%; }
  #shopinfo #sec3:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: url(../img/index/sec5_bg.png) no-repeat center bottom;
    background-size: 100%;
    z-index: -1; }
#shopinfo #sec4 .board {
  padding-bottom: 10%; }
  #shopinfo #sec4 .board dl {
    border-bottom: 1px solid #8a6647;
    padding-bottom: 2%;
    margin-bottom: 2%; }
    #shopinfo #sec4 .board dl dt {
      font-size: 17px;
      position: relative; }
      #shopinfo #sec4 .board dl dt:before {
        content: "■";
        color: #f2381f;
        font-size: 16px; }
  #shopinfo #sec4 .board #comment {
    border: double #fff;
    text-align: center;
    padding: 5px;
    font-size: 20px; }
  #shopinfo #sec4 .board .tel_info .txttel {
    font-size: 18px; }

#drink #sec1 h2 {
  position: relative;
  z-index: 1; }
#drink #sec1 .pt {
  margin-top: -25%; }
#drink #sec2 .table-st {
  position: relative;
  z-index: 0;
  background: url(../img/index/table_bg.png) repeat center top, url(../img/drink/sec2_table_bg.png) no-repeat right top, url(../img/shared/bg2.jpg) repeat center top;
  background-size: 100%, 50%, auto; }
  #drink #sec2 .table-st h3 {
    margin: 10% 0 15%; }
  #drink #sec2 .table-st ul li {
    font-size: 16px;
    padding-bottom: 2%;
    margin-bottom: 2%;
    border-bottom: 1px solid #fff; }
#drink #sec3 {
  background: url(../img/index/sec5_bg.png) no-repeat center top;
  background-size: 100%; }
  #drink #sec3 .price {
    color: #ad1b05; }
  #drink #sec3 .heading {
    position: relative;
    z-index: 0; }
    #drink #sec3 .heading h3 {
      background: url(../img/shared/bg6.jpg) repeat center top;
      font-size: 6.5vmin;
      line-height: 1.2;
      text-align: center;
      font-weight: bold;
      color: #fff;
      padding: 8px 12px 5px;
      box-sizing: border-box; }
  #drink #sec3 .block1 h3 {
    width: 55%;
    position: absolute;
    right: 2%;
    bottom: 0;
    z-index: -1; }
  #drink #sec3 .block2 h3 {
    width: 45%;
    position: absolute;
    right: 0;
    bottom: 40%;
    z-index: -1; }
#drink #sec4 .bx-wrapper .item .heading {
  position: relative; }
  #drink #sec4 .bx-wrapper .item .heading h3 {
    background: url(../img/shared/bg6.jpg) repeat center top;
    color: #fff;
    font-weight: bold;
    font-size: 25px;
    padding: 8px 12px;
    box-sizing: border-box;
    width: 80%;
    float: right;
    margin: -3% 6% 0 0;
    text-align: center; }
#drink #sec4 .price {
  color: #ad1b05; }
#drink #sec5 h3 {
  position: absolute;
  width: 55%;
  top: -30px; }
#drink #sec5 .board {
  padding-bottom: 10%; }
  #drink #sec5 .board .price {
    color: #f2381f; }
    #drink #sec5 .board .price:before {
      display: none; }
  #drink #sec5 .board .toggle {
    background: #482101; }
    #drink #sec5 .board .toggle .toggle-link {
      padding: 3% 0 7%; }
      #drink #sec5 .board .toggle .toggle-link:after {
        font-size: 15px;
        bottom: 5%; }
    #drink #sec5 .board .toggle .toggle-main ul {
      margin-bottom: 3%; }
      #drink #sec5 .board .toggle .toggle-main ul li {
        position: relative;
        padding-left: 16px; }
        #drink #sec5 .board .toggle .toggle-main ul li:before {
          content: "";
          position: absolute;
          top: 9px;
          left: 0;
          background: #fff;
          width: 7px;
          height: 7px;
          border-radius: 50%; }
#drink #sec6 .toggle .toggle-link:after {
  color: #000; }
#drink #sec6 .toggle .toggle-main .list {
  margin-bottom: 7%; }
  #drink #sec6 .toggle .toggle-main .list h3 {
    background: url(../img/shared/bg6.jpg) repeat center top;
    font-size: 28px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    padding: 2% 0;
    margin-bottom: 3%; }
    #drink #sec6 .toggle .toggle-main .list h3 span {
      font-size: 19px;
      display: block; }
  #drink #sec6 .toggle .toggle-main .list h4 {
    border-bottom: 1px solid #887f73;
    font-weight: bold;
    padding-bottom: 2%;
    margin-bottom: 2%; }
  #drink #sec6 .toggle .toggle-main .list dl {
    padding-bottom: 2%;
    margin-bottom: 2%;
    border-bottom: 1px solid #887f73;
    position: relative; }
    #drink #sec6 .toggle .toggle-main .list dl dt {
      float: left; }
    #drink #sec6 .toggle .toggle-main .list dl dd {
      position: absolute;
      right: 0;
      bottom: 7px; }

@media only screen and (max-width: 400px) {
  #instafeed li a img {
    width: 120px !important;
    height: 120px !important; } }
@media only screen and (max-width: 450px) {
  #party #sec3 .js_full {
    padding-top: calc(51% + 200px ); }

  #party #sec3 .bx-wrapper .item .inner h3 {
    font-size: 6vmin; } }


#oshirase{
	z-index: 999;
	text-align: center;
	margin: 10px auto;
	background: rgba(255,255,255,0.79);
	border: rgba(0,0,0,1.00) double 3px;
	width: 90%;
	
	
}

#oshirase .txt{
	font-size: 20px;
	padding: 15px;
	line-height: 28px;
	font-weight: 600;
	border-bottom: #000000 medium 3px;
	
}

#oshirase .txt a{
	color: #FF0004;
}

.insta01{
	text-align: center;
	margin: 10px auto;
}

#sec2 .txt{
	font-size: 20px;
	font-weight: 600;
}

