@charset "UTF-8";
/* CSS Document */
/*---------------------------------
* utility
---------------------------------*/
html {
	font-size: 62.5%;
	/*16px×62.5%=10px*/
}

.newssection h2 {
	width: 45%;
	margin: 0 auto;
	display: block;
	font-size: 23px;
	padding-top:50px;
	padding-bottom: 35px;
	
}

.clearfix::after {
	content: “”;
	display: block;
	clear: both;
	}



.newssection span {
	text-align: center;
	width: 40%;
	font-size: 1.1125vw;
	padding-top:10px;
	line-height: 2.5vw;
	
}

.news {
	width: 40%;
	margin: 0 auto;
}



body {
	font-family: source-han-serif-japanese, 'Yu Mincho Demibold', '游明朝', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho Pro', serif;
	font-size: 1.6rem;
	font-weight: 500!important;
	font-style: normal;
	color: #282B2B;
	letter-spacing: 0.01em;
}

img {
	max-width: 100%;
	-webkit-backface-visibility: hidden;
}

a {
	color: #282B2B;
	text-decoration: none;
}


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


.fadein-up {
	opacity: 0;
	transform: translate(0, 50%);
	transition: 2s;
}
.fadein-up.is-show {
	transform: translate(0, 0);
	opacity: 1;
}


.wrapper {
	margin: 0 70px 0 70px;
}

.element {
	display: flex;
}

header {
	position: fixed;
	margin-right: 70px;
	z-index: 10;
	width: 100%;
	box-sizing: border-box;
}


header {
	justify-content: space-between;
	margin-right: 70px;
}

header .header-logo {
	position: fixed;
	top:0;
	left:0;
	background-color: rgb(255, 255, 255);
	width: 162px;
	height: 385px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
header .header-logo img {
	display: flex;
	align-items: center;
	width: 108px;
}
header .header-logo .shop-name {
	writing-mode: vertical-lr;
	display: flex;
	align-items: center;
	font-size: 30px;
	letter-spacing: 0.075em;
	text-align: end;
	margin: 30px auto 0;
}
header .header-logo .shop-name p span {
	display: block;
}
header .header-logo .shop-name p span:last-of-type {
	margin-left: 20px;
}

header .header-logo.common {
	width: 118px;
	height: 340px;
	left: 70px;
}

header .header-logo.common img {
	width: 91px;
}
header .header-logo.common .shop-name {
	font-size: 24px;
}

.header-logo{
	transition: all .3s linear;
}

.header-logo:hover{
	opacity: 0.7;
	cursor: pointer;
}

header .header-menu {
	position: fixed;
	top:0;
	right: 70px;
}
header .header-menu .row-menu {
	display: flex;
	height: 46px;
}
header .header-menu .row-menu li {
	background-color: rgb(110, 15, 11);
	border-right: 1px solid #DCDCDC;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
header .header-menu .row-menu li .sub-menu-button {
	font-size: 14px;
	color: rgb(255, 255, 255);
	line-height: 1.286;
	text-align: center;
	width: 187px;
	cursor: pointer;
	letter-spacing: 0.1em;
}
header .header-menu .row-menu li:last-of-type {
	border-right: none;
}
header .header-menu .col-menu {
	display: flex;
	margin-top: 16px;
}
header .header-menu .col-menu li {
	background-color: rgb(255, 255, 255);
	width: 23px;
	height: 110px;
	margin-right: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}
header .header-menu .col-menu li:nth-of-type(7){
	letter-spacing: 0.05em;
	margin-right: 0;
}

header .header-menu .col-menu li a{
	writing-mode: vertical-rl;
	letter-spacing: 0.2em;
}
header .header-menu .col-menu li:nth-of-type(1) a {
	letter-spacing: 0.45em;
	text-orientation: upright;
}
header .header-menu .col-menu li:nth-of-type(3) a {
	letter-spacing: 0.5em;
}
header .header-menu .col-menu li:nth-of-type(4) a {
	letter-spacing: 0.9em;
}
header .header-menu .col-menu li:nth-of-type(5) a {
	letter-spacing: 0.5em;
}
header .header-menu .col-menu li:nth-of-type(6) a {
	letter-spacing: 0.5em;
}
header .header-menu .col-menu li:nth-of-type(7) a {
	letter-spacing: 0.05em;
}
header .header-menu .col-menu li a:hover {
	color: rgb(110, 15, 11);
}
header .header-menu .col-menu li:hover {
	border-left : 1px solid #6e0f0b;
	border-right: 1px solid #6e0f0b;
	box-sizing: border-box;
}
header .header-menu .col-menu li.active {
	border: 1px solid #6e0f0b;
	box-sizing: border-box;
}
header .header-menu .col-menu li.active a {
	color: rgb(110, 15, 11);
}

.header_btn{
	display: none;
}


.slide-top {
    position: fixed;
    right: 1.4375vw;
    bottom: 3.4375vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    opacity: 0;
}
.slide-top.active {
    opacity: 1;
}
.slide-top .arrow {
    margin-bottom: 2vw;
    animation: move_arrow 2s ease-in-out infinite;
}
@keyframes move_arrow {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
  to {
    transform: translateY(0);
  }
}
.slide-top:hover {
  opacity: 0.6;
  transition: opacity .5s ease-in-out;
}


.slide-top .logo {

}

/*---------------------------------
  * btn
---------------------------------*/

button{
	border: none;
	outline: none;
}

.btn-trigger button{
	display: block;
	appearance:none;
	-webkit-appearance:none;
	-moz-appearance: none;
	background-color: transparent;
	border:none;
	stroke: #fff;
	stroke-width: 1px;
	width: 69px;
	height: 43px;
    margin: 10px 0 0 -8px;
}

.btn-trigger svg{
	cursor: pointer;
}


.btn-trigger.active use:nth-of-type(1) {
  -webkit-transform: translateX(-4px) translateY(33px) rotate(-45deg);
  transform: translateX(-4px) translateY(33px) rotate(-45deg);
}

.btn-trigger.active use:nth-of-type(2) {
  opacity: 0;
}

.btn-trigger.active use:nth-of-type(3) {
  -webkit-transform: translateX(33px) translateY(-17px) rotate(45deg);
  transform: translateX(33px) translateY(-17px) rotate(45deg);
}

.header_btn_menu{
	width: 39px;
	position: absolute;
	top: 22px;
	left: 50%;
	transform: translateX(-50%);
}

.close_img{
	display: none;
}

.btn-trigger.active .menu_img{
	display: none;
}

.btn-trigger.active .close_img{
	display: block;
}

.btn-trigger.active .header_btn_menu{
	top: 34px;
	margin-top: 15px;
}
.header_btn.active{
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	width: 54px;
	height: 54px;
	z-index: 1000;
}

footer{
	font-size: 12px;
	line-height: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20.625vw;
	margin-bottom: 4.6875vw;
}


.eyecatch {
	margin-top: 195px;
}
.eyecatch div {
	position: relative;
}
.eyecatch img {
	width: 100%;
}
.eyecatch .page-name {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	width: 100px;
	height: 216px;
	background-color: rgb(255, 255, 255);

	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;

}
.eyecatch .page-name .main {
	writing-mode: vertical-rl;
	font-size: 24px;
	width: fit-content;
}

#banquet .eyecatch .page-name .main{
	letter-spacing: 0.4em;
}

.eyecatch .page-name .sub {
	margin-top: 17px;
	font-size: 10px;
}

.side-bar {
	width: 6.25vw;
	padding-left: 15.75%;
	margin-top: 4.0625vw;
	margin-right: 3.125vw;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.side-bar .main {
	writing-mode: vertical-rl;
	font-size: 1.875vw;
	letter-spacing: 0.4em;
	width: fit-content;
}
.side-bar .sub {
	writing-mode: vertical-rl;
	font-size: 0.95vw;
	letter-spacing: 0.075em;
	width: fit-content;
}


#sub-menu {
	display: none;
	width: 100%;
	height: 100%;
	background-color: rgba(119, 34, 25, 0.9);
	position: fixed;
	top: 0;
}
#sub-menu .content {
	display: flex;
	width: 60vw;
	margin: 0 auto;
	margin-top: 9.375vw;
}
#sub-menu .content .list {
	width: 57.159%;
	display: flex;
	flex-wrap: wrap;
	margin-right: 2vw;
}
#sub-menu .content .list li {
	margin-bottom: 2.125vw;
	overflow: hidden;
}
#sub-menu .content .list li.margin {
	margin-right: 2.125vw;
}
#sub-menu .content .list li a {
	position: relative;
	display: block;
}
#sub-menu .content .list li a:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity .5s ease-in-out;
	background-color: rgba(110, 15, 11, 0.67);
	z-index: 1;
}
#sub-menu .content .list li a:hover:before {
	opacity: 1;
}
#sub-menu .content .list li a .back-img {
	transition: transform .5s ease-in-out;
	will-change: transform;
	min-width: 150px;
}
#sub-menu .content .list li a:hover .back-img {
	transform: scale(1.1);
}

#sub-menu .content .list li a .back-img{
	width: 14.5625vw;
}
#sub-menu .content .list li a .text-img{
	position: absolute;
	width: 30px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}
#sub-menu .content .text {
	color: #fff;
}
#sub-menu .content .text h3 {
	font-size: 1.5vw;
	margin-bottom: 1vw;
    font-weight: 500;
}
#sub-menu .content .text h4 {
	font-size: 1.125vw;
	margin-bottom: 4.875vw;
	font-weight: 500;
}
#sub-menu .content .text .baner {
	background-color: #fff;
	color: #000;
	display: flex;
	height: 1.5vw;
	justify-content: center;
	align-items: center;
	font-size: 0.875vw;
}

#sub-menu .content .text .baner.line1 {
	width: 11.125vw;
	margin-bottom: 0.6875vw;
}
#sub-menu .content .text .baner.line2 {
	width: 6.75vw;
	margin-bottom: 0.8125vw;
}
#sub-menu .content .text .baner.line3 {
	width: 4.5vw;
	margin-bottom: 0.9375vw;
}

#sub-menu .content .text .data.line1 {
	font-size: 1.5vw;
	margin-bottom: 2.8125vw;
}
#sub-menu .content .text .data.line2 {
	font-size: 0.875vw;
	letter-spacing: 0.2em;
	line-height: 1.71;
	margin-bottom: 2.75vw;
}
#sub-menu .content .text .data.line3 {
	font-size: 0.875vw;
	letter-spacing: 0.2em;
	line-height: 1.71;
}

#top .slider_wrapper{
	height: 100vh;
    position: relative;
    background-color: #fff;
    padding: 20px;
    box-sizing: border-box;
}

#top .slider{
	position: relative;
    width: 100%;
    height: 100%;
}

#top .slider .slick-list{
	height: 100%;
}

#top .slider .slick-track{
	height: 100%;
}


#top .slider .slider_img.slick-slide{
	position: relative;
}

#top .slider .slider_img.slick-slide>img{
	width: 100%;
	height: 100%;
    object-fit: cover;
}


#top .slider .slider_img .slider_text01{
	position: absolute;
    bottom: -5%;
    right: 0;
    z-index: 5;
}

#top .slider .slider_img .slider_text02{
    position: absolute;
    left: 21px;
    bottom: 17px;
    z-index: 5;
}

#top .content {
	margin-top: 6.5625vw;
	padding: 0 3.75vw 0 3.75vw;
}

#top .content .list {
	display: flex;
	width: auto;
	right: 0;
	justify-content: space-between;
	flex-wrap: wrap;
}
#top .content .list li {
	position: relative;
	width: 47%;
	box-sizing: border-box;
	overflow: hidden;
	margin-bottom: 2.5vw;
	margin-right: 0.05%;
}
#top .content .list li:nth-child(2n) {
	margin-right: 0;
}

#top .content .list li a:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity .5s ease-in-out;
	background-color: rgba(110, 15, 11, 0.67);
	z-index: 1;
}
#top .content .list li a:hover:before {
	opacity: 1;
}
#top .content .list li a .back-img {
	transition: transform .5s ease-in-out;
	will-change: transform;
}
#top .content .list li a:hover .back-img {
	transform: scale(1.1);
}
#top .content .list li a .text-img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	width: 15%;
	max-width: 65px;
	min-width: 30px;
}
#top .content .list li a img {
	width: 100%;
}

#top .content .text-area {
	margin-left: 1.125vw;
}
#top .content .text-area h3 {
	margin: 5.25vw 0 3.75vw;
	font-size: 1.75vw;
/*	font-weight: 500;*/
}
#top .content .text-area .text {
	font-size: 1.1125vw;
	line-height: 2.5;
}


#concept .content {
	margin-top: 11.5625vw;
	width: 74%;
}
#concept .content h3{
	font-size: 1.75vw;
	line-height: 1.333;
	margin-bottom: 2.375vw;
	font-weight: 500;
}
#concept .content .text {
	font-size: 1.125vw;
	line-height: 2.5;
	letter-spacing: 0.05em;
	margin-bottom: 8.125vw;
	width: 96.3%;
}
#concept .content .list {
	display: flex;
	flex-wrap: wrap;
}
#concept .content .list li img {
	width: 100%;
}
#concept .content .list li {
	width: 47.685%;
}
#concept .content .list .margin {
	margin-right: 4.6%;
}
#concept .content .list .text.wide {
/*	width: 100%;*/
	font-size: 1.136875vw;
	text-align: right;
	margin-top: 0.8125vw;
	margin-bottom: 4.6875vw;
}

#concept .content .list li .text {
	text-align: right;
	font-size: 1.125vw;
	margin-bottom: 4.6875vw;
	letter-spacing: 0.050em;
}


#menu {

}
#menu .content {
	width: 100%;
}
#menu .content .images {
	margin-top: 13.5%;
	display: flex;
	flex-wrap: wrap;
}
#menu .content .images li {
	width: 48%;
	margin-right: 3.5%;
	margin-bottom: 4.3%;
}
#menu .content .images li:nth-of-type(n+2){
	margin-bottom: 0;
}

#menu .content .images li:nth-child(2n) {
	margin-right: 0;
}
#menu .content .images img {
	width: 100%;
}

#menu .content .list {
	margin-top: 6vw;
	margin-left: 6.63%;
}
#menu .content .list li.margin {
	margin-right: 17.9%;
}
#menu .content .list h3 {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	background-color: rgb(110, 15, 11);
	color: #fff;
	font-size: 2.06vw;
	width: 37.1%;
	height: 3.5vw;
	font-weight: 400;
}

#menu .content .list h3 span{
	letter-spacing: 0.6em;
	margin-right: -0.6em;
}

#menu .content .list h3.bottom {
	margin-bottom: 6vw;
}

#menu .content .list h4 {
	margin: 4.5vw 0;
	font-size: max(1.5vw, 10px);
	text-align: center;
	font-weight: 500;
}
#menu .content .list .category {
	position: relative;
}
#menu .content .list .prices{
	position: absolute;
	right: 0;
	bottom: 0;
	font-size: max(1.5vw, 10px);
}
#menu .content .list ul {
	display: flex;
	flex-wrap: wrap;
}
#menu .content .list ul li {
	width: 34.4%;
}
#menu .content .list ul li dl {
	display: flex;
	justify-content: space-between;
/*	font-size: max(1.1125vw, 10px);*/
	border-bottom: dotted 2px rgba(170, 170, 170, 0.5);
    margin-bottom: 1.4vw;
	align-items: flex-end;
}


#menu .content .list ul li dl dt dd{
    font-size: max(1.1125vw, 10px);
	line-height: 1.2;
	width: 80%;
}

#menu .content .list ul li dl .symbol {
	width: max(1.5625vw, 25px);
}
#menu .content .list ul li .note {
	font-size: max(1.5vw, 10px);
	margin-bottom: 1vw;
	line-height: 1.2;
}
#menu .content .list ul li .cuisine {
	font-size: max(1.5vw, 10px);
	border-bottom: dotted 2px #aaaaaa;
	margin-bottom: 1vw;
	line-height: 1.2;
}
#menu .content .list ul li .price {
	font-size: max(1.5vw, 10px);
	text-align: right;
	border-bottom: dotted 2px #aaaaaa;
	margin-bottom: 1vw;
}
#menu .content .list ul li h5 {
	font-size: max(1.5vw, 10px);
	margin: 1.25vw 0;
}

.no_breaks{
	white-space: nowrap;
}


#banquet .content {
	margin-top: 9.1875vw;
	width: 74%;
}

#banquet .content h3 {
	font-size: 1.5vw;
	margin-bottom: 1.75vw;
    letter-spacing: 0.2em;
    font-weight: 500;
}
#banquet .content .course-image {
	width: 88%;
	min-width: 19.375vw;
}
#banquet .content .course-list {
	margin-top: 7.5vw;
}
#banquet .content .course-list .course .name {
	background-color: rgb(110, 15, 11);
	width: 68%;
	height: 3.5vw;
	display: flex;
	align-items: center;
	min-width: 19.375vw;
}
#banquet .content .course-list .course .name {
   color: rgb(255, 255, 255);
   justify-content: center;
}
#banquet .content .course-list .course .name .item {
	line-height: 1.2;
	letter-spacing: 0.2em;
/*    align-items: center;*/
/*	margin-left:  16.7%;*/
	font-size: max(1.9vw, 14px);
}
/*
#banquet .content .course-list .course .name .price {
	line-height: 2;
	margin-left:  12.4%;
	font-size: max(1.13vw, 14px);
}
*/
#banquet .content .course-list .course .menu {
	margin-top: 5vw;
	font-size: 1.125vw;
	line-height: 2;
	margin-bottom: 7.5vw;
}
#banquet .content .photo-list {
	margin-top: 60px;
}
#banquet .content .photo-list li {
	margin-bottom: 10vw;
}
#banquet .content .photo-list li:last-of-type {
	margin-bottom: 0;
}
#banquet .content .photo-list li .image-name {
	font-size: 1.5vw;
	margin-bottom: 3.75vw;
}

#banquet .content .photo-list li .img1 {
	width: 27%;
	max-width: 292px;
}
#banquet .content .photo-list li .img2 {
	width: 27%;
	max-width: 292px;
}
#banquet .content .photo-list li .img3 {
	width: 27%;
	max-width: 292px;
}
#banquet .content .photo-list li .img4 {
	width: 27%;
	max-width: 292px;
}
#banquet .content .photo-list li .img5 {
	width: 27%;
	max-width: 292px;
}
#banquet .content .photo-list li .img6 {
	width: 27%;
	max-width: 292px;
}
#banquet .content .photo-list li .img7 {
	width: 27%;
	max-width: 292px;
}
#banquet .content .photo-list li .img8 {
	width: 27%;
	max-width: 292px;
}
#banquet .content .photo-list li .img9 {
	width: 27%;
	max-width: 292px;
}


.course-top {
	width: 70%;
	padding-bottom: 90px;
}

.course-left {
	float: left;
	width: 40%;
}

.course-right {
	float: right;
	width: 40%;
}

.course-top ul {
	border-left: 10px solid rgb(112, 36, 36);
}

.course-top ul li {
	margin-left: 10px;
}






#shopinfo {

}

#shopinfo .eyecatch .page-name .main{
	letter-spacing: 0.2em;
}

#shopinfo .content {
	width: 74%;
}
#shopinfo .shop-info {
	margin-top: 8.4375vw;
	padding-left: 2.6875vw;
	display: flex;
	justify-content: space-between;
}

#shopinfo .shop-info > .text {
	width: 39.25vw;
}

#shopinfo .shop-info .shop-name {
	display: flex;
}


#shopinfo .shop-info .shop-mind {
	margin-top: 3.75vw;
	font-size: max(1.11125vw, 10px);
	line-height: 2.5;
}

#shopinfo .shop-info .shop-data {
	width: 25%;
}



#shopinfo .shop-info .shop-data .baner {
	background-color: rgb(101, 14, 6);
	height: auto;
	padding: 7px 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

#shopinfo .shop-info .shop-data .baner .title {
	color: rgb(255, 255, 255);
	font-size: max(0.87vw, 10px);
	letter-spacing: 0.4em;
	margin-right: -0.4em;
}

#shopinfo .shop-info .shop-data .baner.business-hours {
	width: 55.3%;
}

#shopinfo .shop-info .shop-data .baner.address {
	width: 38.4%;
}

#shopinfo .shop-info .shop-data dd {
	font-size: max(0.87vw, 10px);
	line-height: 1.7;
	margin-top: 0.75vw;
	margin-bottom: 2.125vw;
}

#shopinfo .access {
	margin-top: 8.4375vw;
}

#shopinfo .dining-in {
	margin-top: 8.4375vw;
}

#shopinfo .dining-in .list li {
	margin-bottom: 1.25vw;
	width: 89%;
}

#shopinfo .dining-in .list li img {
	width: 100%;
}

#shopinfo .access {
	height: 0;
	overflow: hidden;
	padding-bottom: 56.25%;
	position: relative;
}
#shopinfo .access iframe {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}



#info .content {
	margin-left: 2.1875vw;
	width: 100%;
}

#info .eyecatch .page-name .main{
	letter-spacing: 0.2em;
}

#info .list {
	margin-top: 12.5vw;
	width: 84.3%;
}

#info .list li {
	display: flex;
	border-bottom: dotted 2px #a79c729c;
	width: 100%;
	padding-top: 2.9375vw;
	padding-bottom: 2.5vw;
}

#info .list li:first-of-type {
	border-top: dotted 2px #a79c729c;
}
#info .list li dl {
	width: 64.2%;
	margin-right: 2.1875vw;
}
#info .list li dl dt {
    margin-bottom: 4.5vw;
/*	margin-bottom: 1.875vw;*/
	display: flex;
	justify-content: space-between;
}
#info .list li dl dt {
	font-size: 1.125vw;
	letter-spacing: 0.050em;
}
#info .list li dl dd {
	font-size: 1.125vw;
    line-height: 2.5;
/*	line-height: 3.2;*/
}
#info .list li .img-area {
	width: 39%;
	margin: 0 auto;
}
#info .list li .img-area .image {
	width: 100%;
}

#info .content .button {
	margin-top: 5.9375vw;
	width: 84.3%;
	display: flex;
	align-items: center;
	justify-content: center;
}
#info .content .button .more {
	font-size: min(1.125vw, 18px);
	letter-spacing: 0.1em;
	border: solid 1px #000;
	width: 23.2%;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;

	background-color: #fff;
	color: #000;
	transition: background-color .5s ease-in-out;
	will-change: background-color;
}

#info .content .button .more:hover {
	background-color: #6e0f0b;
	color: #fff;
	transition: background-color .5s ease-in-out;
	will-change: background-color;
}


@media screen and (max-width: 1000px){

	#sub-menu .content {
		width: 75vw;
	}

	#shopinfo .shop-info > .text {
	    width: 35.25vw;
	}
	#shopinfo .shop-info .shop-data {
    	width: 36%;
	}


	#menu .content .list ul li dl .symbol {
    	width: 12.5px;
	}

}

@media screen and (max-width: 767px){

  /*---------------------------------
  * utility
  ---------------------------------*/

	body {
	   min-width: initial; /* 初期値 */
	   min-width: 100%;
	}

	.wrapper{
		width: calc(100% - 20px);
		margin: 0 auto;
	}

	.sp-display{
		display: block!important;
	}

	.pc-display{
		display: none!important;
	}

	.slide-top.active{
		opacity: 0;
	}

  /*---------------------------------
  * header
  ---------------------------------*/

	.header-menu{
		display: none;
	}

	.header_btn{
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		background-color: #6e0f0b;
		width: 54px;
		height: 54px;
	}


	header .header-logo img{
		width: 60px;
	}

	header .header-logo{
		width: 80px;
		height: 235px;
		padding-left: 10px;
	}

	header .header-logo .shop-name{
		font-size: 12px;
		margin-top: 10px;
	}

	header .header-logo .shop-name p span:last-of-type{
		margin-left: 7PX
	}

	#top .slider .slider_img .slider_text01{
		width: 70%;
	}

	/*---------------------------------
	  * btn
	---------------------------------*/

	.btn-trigger button{
		display: block;
		appearance:none;
		-webkit-appearance:none;
		-moz-appearance: none;
		background-color: transparent;
		border:none;
		stroke: #fff;
		stroke-width: 2px;
		width: 44px;
		height: 43px;
		margin: 0 auto;
	}


	.header_btn_menu{
		width: 22px;
		position: absolute;
		top: 22px;
		left: 50%;
		transform: translateX(-50%);
	}


	.btn-trigger.active .header_btn_menu{
		top: 34px;
		margin-top: 0;
	}
	.header_btn.active{
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		width: 54px;
		height: 54px;
		z-index: 1000;
		background-color: transparent;
	}


	/*---------------------------------
	 * 下層ページ header
	---------------------------------*/

	header .header-logo.common{
		width: auto;
		height: 54px;
		flex-direction: initial;
		left: 0;
		padding: 8.25px 10px;
		box-sizing: border-box;
		background-color: transparent;
	}

	header .header-logo.common .shop-name{
		writing-mode: initial;
		flex-direction: column;
		margin-left: 15px;
		margin-top: 0;
		justify-content: space-between;
		height: 37.5px;
	}

	header .header-logo.common img{
		width: 37.5px;
	}

	header .header-logo.common .shop-name p span{
		font-size: 12px;
	}

	header .header-logo.common .shop-name p span:first-of-type{
		margin-bottom: 3px;
	}

	header .header-logo.common img.header_sublogo{
		width: 61.5px;
	}

	header .header-logo.common a{
		display: flex;
	}


	/*---------------------------------
	 * top
	---------------------------------*/

	#top .content{
		margin-top: 20px;
		padding: 0;
	}

	#top .content .list{
		flex-direction: column;
	}

	#top .content .list li{
		width: 100%;
		margin-bottom: 32.5px;
	}

	#top .content .text-area{
		margin-left: 0;
	}

	#top .content .text-area h3{
		margin: 27.5px 0 15px;
		font-size: 18px;
        text-align: center;
	}

	#top .content .text-area .text{
		font-size: 14px;
	}

	/*---------------------------------
	 * footer
	---------------------------------*/

	footer{
		margin-top: 56.6px;
		margin-bottom: 35px;
		font-size: 10px;
		line-height: initial;
	}

	footer div{
		transform: scale(0.9);
	}

	/*---------------------------------
	 * section
	---------------------------------*/

	.subpage_sec{
		margin-top: 54px;
	}

	/*---------------------------------
	 * eyecatch
	---------------------------------*/

	.eyecatch{
		margin-top: 0;
	}

	.eyecatch .page-name{
		width: 50px;
		height: 108px;
	}

	.eyecatch .page-name .main{
		font-size: 12px;
		margin-bottom: 8px;
	}

	.eyecatch .page-name .sub{
		font-size: 10px;
		transform: scale(0.5);
		margin-top: 0;
	}

	/*---------------------------------
	 * コンセプト
	---------------------------------*/

	#concept .side-bar{
		display: none;
	}

	#concept .content{
		margin-top: 56px;
		width: 100%;
	}

	#concept .content h3{
		font-size: 18px;
		margin-bottom: 30px;
		font-weight: 600;
	}

	#concept .content .text{
		font-size: 16px;
		margin-bottom: 72.5px;
	}

	#concept .content .list{
		justify-content: center;
	}

	#concept .content .list .margin{
		margin-right: 1%;
	}

	#concept .content .list li{
		width: 49.5%;
	}

	#concept .content .list .text.wide{
		font-size: 14px;
		margin-top: 0;
		margin-bottom: 8px;
		letter-spacing: 0;
		text-align: left;
		line-height: 1.3;
	}

	#concept .content .list .text.wide span{
		transform: scale(0.9);
		display: inline-block;
		margin-left: -3%;
	}

	#concept .content .list li.wide{
		margin-right: 0;
	}

	#concept .content .list li .text{
		font-size: 14px;
		margin-bottom: 8px;
		line-height: 1.3;
		display: flex;
    	justify-content: flex-end;
    	text-align: left;
	}

	#concept .content .list li:nth-of-type(n+5) .text{
		margin-bottom: 0;
	}

	/*---------------------------------
	 * ご宴会
	---------------------------------*/

	.side-bar{
		width: 37.5px;
		margin-right: 7px;
		padding-left: 0;
		margin-top: 50px;
	}

	.side-bar .main{
		font-size: 18px;
	}

	.side-bar .sub{
		font-size: 10px;
		transform: scale(0.9);
	}

	#banquet .content{
		margin-top: 70px;
		width: 100%;
	}

	#banquet .content h3{
		font-size: 22px;
		margin-bottom: 15px;
	}

	#banquet .content .course-image{
		width: 100%;
	}

	#banquet .content .course-list{
		margin-top: 33px;
	}

	#banquet .content .course-list .course .name{
		width: 100%;
		height: 35px;
		font-size: 15px;
	}

/*
	#banquet .content .course-list .course .name .price{
		margin-left: 9%;
		font-size: 9px;
	}
*/

	#banquet .content .course-list .course .menu{
		margin: 40px 0;
		font-size: 14px;
	}

	#banquet .content .photo-list li{
		margin-bottom: 40px;
	}

	#banquet .content .photo-list li .image-name{
		font-size: 14px;
	    line-height: 1.5;
		margin-bottom: 11.5px;
	}

	#banquet .content .photo-list li div:nth-of-type(2){
		display: flex;
		height: auto;
		/* align-items: flex-start; */
	}

	#banquet .content .photo-list li .img1{
		width: 31.5%;
	}

	#banquet .content .photo-list li .img2{
		width: 33.2%;
	}

	#banquet .content .photo-list li .img3{
		width: 35.3%;
	}

	#banquet .content .photo-list li .img4{
		width: 32.7%;
	}

	#banquet .content .photo-list li .img5{
		width: 33.9%;
	}

	#banquet .content .photo-list li .img6{
		width: 33.4%;
	}

	#banquet .content .photo-list li .img7{
		width: 32.25%;
	}

	#banquet .content .photo-list li .img8{
		width: 33%;
	}

	#banquet .content .photo-list li .img9{
		width: 34.75%;
	}

	/*---------------------------------
	 * お品書き
	---------------------------------*/

	.side-bar.side_cuisine{
		margin-top: 20px;
	}

	.side-bar.side_cuisine02{
		margin-top: 10px;
	}

	#menu .content .images{
		margin-top: 80px;
	}

	#menu .content .images li{
		margin-right: 4%;
	}

	#menu .content .list{
		margin-top: 30px;
		margin-left: 0;
	}

	#menu .content .list ul{
	    flex-direction: column;
        align-items: center;
	}

	#menu .content .list h3{
		width: 90%;
		height: 28px;
		font-size: 18px;
		font-weight: 500;
	}

	#menu .content .list ul li{
		width: 90%;
	}

	#menu .content .list li.margin{
		margin-right: 0;
	}

/*
	#menu .content .list ul li dl, #menu .content .list ul li .note{
		font-size: 14px;
		margin-bottom: 8px;
	}
*/
    	#menu .content .list ul li dt dd, #menu .content .list ul li .note{
		font-size: 14px;
		margin-bottom: 8px;
	}

	#menu .content .list h4{
		margin: 43.5px 0 23px;
		font-size: 15px;
	}

	#menu .content .list ul li h5{
		font-size: 14px;
		margin: 8px 0;
	}

	#menu .content .list ul li .cuisine{
		font-size: 14px;
		margin-bottom: 8px;
	}

	#menu .content .list ul li .price{
		font-size: 14px;
		margin-bottom: 8px;
	}

	#menu .content .list ul li .note{
		line-height: 1.2;
	}

	.menu_egg_img{
		width: 26.5px;
	}

	#menu .content .list ul li dl .symbol{
		width: 15px;
	}

	.menu_wine_img{
		width: 8px;
	}

	#menu .content .list .prices{
		font-size: 14px;
	}

	/*---------------------------------
	 * お知らせ
	---------------------------------*/

	#info .eyecatch .page-name .main{
		letter-spacing: 0.2em;
	}

	#info .content{
		margin-top: 70px;
		margin-left: 0;
	}

	#info .list{
		margin-top: 0;
		width: 91%;
	}

	#info .list li:first-of-type{
		border-top: dotted 1.5px #a79c72;
	}

	#info .list li{
	    border-bottom: dotted 1.5px #a79c72;
	    flex-direction: column;
	    padding: 0;
	}

	#info .list li dl{
		width: 90%;
		margin: 25px auto;
	}

	#info .list li img.image{
		width: 32.25%;
	    margin: 0 auto 25px;
    	display: block;
	}

	#info .list li dl dt{
		font-size: 14px;
        margin-bottom: 20px;
/*		margin-bottom: 15px;*/
	}

	#info .list li dl dd{
		font-size: 14px;
		line-height: 1.9;
	}

	#info .content .button{
		margin-top: 50px;
		width: 100%;
	}

	#info .content .button .more{
		width: 106.5px;
		height: 22px;
		font-size: 9px;
	}

	/*---------------------------------
	 * 店舗情報
	---------------------------------*/

	#shopinfo .content{
		width: 100%;
	}

	#shopinfo .shop-info > .text{
		width: 100%;
	}


	#shopinfo .eyecatch .page-name .sub{
		white-space: nowrap;
	}

	#shopinfo .shop-info{
		flex-direction: column;
		padding: 0;
	    margin-top: 74px;
	}

	#shopinfo .shop-info .shop-name{
		height: auto;
    	align-items: flex-start;
	}

	#shopinfo .shop-info .shop-name .logo{
		width: 97%;
	}

	#shopinfo .shop-info .shop-name div{
		margin-left: 13px;
	}

	#shopinfo .shop-info .shop-name .text{
		margin-left: 0;
		font-size: 12px;
	}

	#shopinfo .shop-info .shop-name .logo02{
		width: 55px;
		margin: 5px 0 0 auto;
	}

	#shopinfo .shop-info .shop-mind{
		margin-top: 36px;
		font-size: 14px;
	    line-height: 1.6;
	}

	#shopinfo .shop-info .shop-data{
		width: 100%;
		margin-top: 36.5px;
	}

	#shopinfo .shop-info .shop-data .baner.business-hours{
		width: 119px;
		height: 25px;
		padding: 0;
	}

	#shopinfo .shop-info .shop-data .baner .title{
		font-size: 12px;
	}

	#shopinfo .shop-info .shop-data dd{
		margin: 5px 0 12px;
		font-size: 14px;
	}

	#shopinfo .shop-info .shop-data .baner.address{
		width: 90px;
		height: 25px;
		padding: 0;
	}

	#shopinfo .shop-info .shop-data .baner{
		width: 205px;
		height: 25px;
		padding: 0;
		white-space: nowrap;
	}

	#shopinfo .access{
		margin-top: 90px;
	}

	#shopinfo .dining-in{
		margin-top: 72px;
	}

	#shopinfo .dining-in .list li{
		margin-bottom: 3px;
		width: 100%;
	}

	/*---------------------------------
	 * サブメニュー
	---------------------------------*/

	#sub-menu{
		overflow-y: scroll;
	}

	#sub-menu .content{
		width: 250px;
		margin: 42.5px auto 0;
	    min-width: auto;
        flex-direction: column;
	}

	#sub-menu .content .list{
		width: 100%;
	}

	#sub-menu .content .list li{
		width: 46.6%;
		margin-bottom: 0;
	}

	#sub-menu .content .list li a .back-img{
		width: 100%;
	    min-width: auto;
	}

	#sub-menu .content .list li.margin{
		margin-right: 6.8%;
		margin-bottom: 15px;
	}

	#sub-menu .content .list li a .text-img{
		width: 22px;
	}

	#sub-menu .content .text h3{
		font-size: 18px;
	    margin-top: 13px;
	    text-align: center;
	}

	.submenu_bottom{
		display: flex;
		margin-top: 27.5px;
	}

	.submenu_bottom>div:first-of-type{
/*	    width: 137.5px;*/
    	white-space: nowrap;
	}

	#sub-menu .content .text .baner.line1{
		width: 120px;
		height: 28px;
		margin-bottom: 6.5px;
	}

	#sub-menu .content .text .baner.line1 a{
		font-size: 16px;
        font-weight:bold;
		transform: scale(0.8);
	}

	#sub-menu .content .text .data.line1{
		font-size: 14px;
		margin-bottom: 22.5px;
        text-decoration:none;
	}

	#sub-menu .content .text .baner.line2{
		width: 88px;
		height: 28px;
		margin-bottom: 6.5px;
	}

	#sub-menu .content .text .baner.line2 span{
		font-size: 16px;
        font-weight:bold;
		transform: scale(0.8);
	}

	#sub-menu .content .text .data.line2{
		font-size: 14px;
		letter-spacing: 0.1em;
		margin-bottom: 22px;
	}

	#sub-menu .content .text .baner.line3{
		width: 88px;
		height: 28px;
		margin-bottom: 6.5px;
	}

	#sub-menu .content .text .baner.line3 span{
		font-size: 16px;
        font-weight:bold;
		transform: scale(0.8);
	}

	#sub-menu .content .text .data.line3{
		font-size: 14px;
		letter-spacing: 0.1em;
	}

	.submenu_bottom>div:nth-of-type(2){
		width: 44px;
	}

	.submenu_bottom>div:nth-of-type(2) img{
		margin-bottom: 7.5px;
	}


	.course-top {
		width: 100%;
		padding-bottom: 90px;
	}
	
	.course-left {
		float: none;
		width: 80%;
		margin-bottom: 50px;
		font-size: 13px;
	}
	
	.course-right {
		float: none;
		width: 80%;
		font-size: 13px;
	}
	
	.course-top ul {
		border-left: 4px solid rgb(112, 36, 36);
	}
	
	.course-top ul li {
		margin-left: 10px;
	}


}

@media screen and (max-width: 360px){

	#concept .content .list .text{
		white-space: initial!important;
	}

	.news span {
		font-size: 13px;
	}

}