@charset "utf-8";
/* CSS Document */

/*---------- ↓↓↓ COMMON ↓↓↓ ----------*/

html{
	font-size: 62.5%; /* 1rem = 10px */
	text-align: justify;
	word-wrap: break-word;
	overflow-wrap: break-word;		
}

body{
	font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}

main{
	width: 100%;
	overflow: hidden;
}

:root{
	/*色設定*/
	--Accent_Color: #a8191e;	
	--Bk_Color: #030303;
	--Wh_Color: #efebe7;
	/*フォント*/
	--Mincho : serif;
	--Xxl_Width : calc(100% - 1320px);
	--Xl_Width : calc(100% - 1140px);
	--L_Width : calc(100% - 720px);
}

.container-fluid.lim{
	max-width: 1500px;
	width: 100vw;
	margin: auto;
}

h1,h2,h3{
	margin-bottom: 0;
}

h4{
	font-weight: 400;
	font-size: 1.6rem;
}

p,a,div{
	margin-bottom: 0;
	font-size: 1.8rem;
	color: var(--Wh_Color);
}

ul{
	padding-left: 0;
	margin-bottom: 0;
}

li{
	list-style: none;
}

a{
	text-decoration: none;
	scroll-behavior: smooth;
}

picture > img{
	width: 100%;
	height: auto;
}



.Padding_X{
	padding-right: 1.6rem;
	padding-left: 1.6rem;
}

.PC_Padding_X{
	padding-right: 1.6rem;
	padding-left: 1.6rem;
}

.Font_14{
	font-size: 1.4rem;
}

.Font_16{
	font-size: 1.6rem;
}

.Font_24{
	font-size: 2.4rem;
}

@media screen and (max-width:768px) { 
/*　画面サイズが768px以下はここを読み込む　*/
	.PC_Padding_X{
		padding-right: 0;
		padding-left: 0;
	}
}

.SubTtl{
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 4.8rem;
	margin: 4.8rem auto 0;
	max-width: 320px;
}



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

.White_Line{
	width: 100%;
	height: 1px;
	background-color: #ffffff;
	display: block;
}

@media screen and (max-width:768px) { 
/*　画面サイズが768px以下はここを読み込む　*/
	.SubTtl > img{
		max-width: 320px;		
	}
}

@media screen and (max-width:576px) { 
/*　画面サイズが768px以下はここを読み込む　*/
	.SubTtl > img{
		max-width: 70%;		
	}
}

/* サブタイトル画像サイズ微調整 */
.SubTtl.Instagram{
	max-width: inherit;
}

.SubTtl.Instagram > img{
	width: auto;
	height: 100%;
	max-height: 4rem;
}

.SubTtl.Master{
	max-width: 540px;
}

.Point_Txt_Wrap > div > .SubTtl > img{
	max-height: 140px;
}

.Txt_Wrap{
	padding: 3.2rem 1.6rem;
}

.SubTtl.Access > img{
	max-width: inherit;
	max-height: 7.2rem;
}

/* ボタン */

.Btn_Line{
	padding: 1.2rem 3.2rem;
	text-align: center;
	display: block;
	border: solid 1px #ffffff;
	position: relative;	
	margin: auto;
	transition: 0.5s;
}

.Btn_Line > span{
	position: absolute;
	top: 50%;
	right: 3.2rem;
	transform: translateY(-50%);
}

.Btn_Line:hover{
	background-color: #ffffff;
	color: #000000;
}

.Btn_Line.Large{
	width: 80%;
}

.Btn_Line.Mid{
	padding: 0.5rem;
}

@media screen and (max-width:768px) { 
	.Btn_Line.Large{
		width: 100%;
		padding: 1.4rem;
	}

	.Btn_Line > span{
		right: 1.4rem;
	}
	
	.Btn_Line.Mid{
		padding: 1.2rem;
	}
}

/* スクロールでふわっと */
/* ----------パターン1：透明度が変化---------- */
/* 画面外 */
.Fade {
    transition: all .3s ease-in;
    opacity: 0;
	transform: translateY(10px);
}
/* 画面に入った時の動き */
.Fade.FadeIn {
    opacity: 1;
	transform: translateY(0px);
}
/*--- ↓↓↓ レスポンシブ基本設定 ↓↓↓ ---*/

.PC{
	display: block!important;
}

.SP{
	display: none!important;
}

.SP_Inline{
	display: none!important;
}


@media screen and (max-width:768px) { 
/*　画面サイズが768px以下はここを読み込む　*/
	.PC{
		display: none!important;		
	}

	.SP{
		display: block!important;		
	}
	
	.SP_Inline{
		display: inline-block!important;
	}

}

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

#Header_Wrap{
	width: 100%;
	height: 80px;
	z-index: 70;
	position: fixed;
	top: 0;
	left: 0;
	background-image: url("../img/overlayDeeezyop.png");
}

.Header_Content{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	padding: 0 1.6rem;
}

.Header_Logo_Wrap{
	width: 150px;
	height: auto;
	z-index: 99;
}

@media screen and (max-width:768px) { 
/*　画面サイズが768px以下はここを読み込む　*/
	#Header_Wrap{
		height: 60px;;		
	}

	.Header_Logo_Wrap{
		width: 120px;		
	}

}

#Header_PCGnav_Wrap > ul{
	display: flex;
	height: 100%;
	align-items: center;
	z-index: 99;
}

#Header_PCGnav_Wrap > ul > li > a{
	color: var(--Wh_Color);
	font-family: var(--Mincho);
	font-weight: 600;
	transition: 0.5s;
	margin: 0 2.4rem 0 0;
	padding-bottom: 0.4rem;
}

#Header_PCGnav_Wrap > ul > li:last-of-type > a{
	margin-right: 0;
}

#Header_PCGnav_Wrap > ul > li > a:hover{
	border-bottom: solid 1px var(--Wh_Color);
}

/*ハンバーガー*/

#SP_Drawer_Wrap{
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	z-index: 99;
}

#SP_Drawer_Wrap > button{
	width: 4.2rem;
	height: 4.2rem;
	padding: 0;
}
#SP_Drawer_Wrap > button > span{
	display: inline-block;
	position: relative;
	width: 4.2rem;
	height: 0.5rem;
	background-color: var(--Wh_Color);
	transition: 0.5s;
	
}

#SP_Drawer_Wrap > button > span::before,
#SP_Drawer_Wrap > button > span::after{
	content: "";
	width: 100%;
	height: 100%;
	background-color: var(--Wh_Color);
	position: absolute;;
	transition: 0.5s;
}

#SP_Drawer_Wrap > button > span::before{
	top: -1.2rem;
	left: 0;
}

#SP_Drawer_Wrap > button > span::after{
	top: 1.2rem;
	left: 0;
}

/*ハンバーガーOPEN*/

#SP_Drawer_Wrap.Open > button > span{
	display: inline-block;
	position: relative;
	width: 4.2rem;
	height: 0.5rem;
	background-color: var(--Wh_Color);
	transform: rotate(45deg);
	
}

#SP_Drawer_Wrap.Open > button > span::before{
	top: -1.2rem;
	left: 0;
	opacity: 0;
}

#SP_Drawer_Wrap.Open > button > span::after{
	top: 1.2rem;
	left: 0;
	transform: translate(0rem , -1.3rem) rotate(90deg);
}

/*SPナビ中身*/

#SP_GNav_Wrap{
	position: fixed;
	top: -120%;
	left: 0;
	width: 100%;
	height: calc(100% - 80px);
	background-color: var(--Bk_Color);
	font-family: var(--Mincho);
	padding: 1.6rem;
	transition: 0.6s;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	z-index: 50;
	opacity: 0;
}

@media screen and (max-width:768px){
	#SP_GNav_Wrap{
		height: calc(100% - 60px);
	}
}

#SP_GNav_Wrap > nav > ul > li > a{
	color: var(--Wh_Color);
	display: block;
	text-align: center;
	padding: 1.6rem 0;
	font-weight: 600;
}

#SP_GNav_Wrap.Open{
	top: 60px;
	opacity: 1;
}

/*ヒーローエリア*/

#Hero_Wrap{
	width: 100%;
	height: calc(var(--vh, 1vh) * 100);
}

.Hero_Inner{
	position: relative;
	width: 100%;
	height: 100%;
}

.Hero_Inner::after{
	content: "";
	width: 100%;
	height: 101%;
	position: absolute;
	top: 0;
	left: 0;
	background-image: linear-gradient(180deg, transparent 0 80%, var(--Bk_Color) 100%);
}

#HeroInner_Position{
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
}

#HeroSlide_Wrap{
	display: block;
	width: 100%;
	height: 100%;
}

#HeroSlide_Wrap > .slick-list{
	height: 100%;
}

#HeroSlide_Wrap > .slick-list > .slick-track{
	height: 100%;
}
.Hero_Img{
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;	
}

.Hero_Img.Hero_Img_1{
	background-image: url(../img/PC_Hero01.webp);
}

.Hero_Img.Hero_Img_2{
	background-image: url(../img/PC_Hero02.webp);
}

.Hero_Img.Hero_Img_3{
	background-image: url(../img/PC_Hero03.webp);
}

.Hero_Img.Hero_Img_4{
	background-image: url(../img/PC_Hero04.webp);
}

@media screen and (max-width:768px) { 
	/*　画面サイズが768px以下はここを読み込む　*/
	.Hero_Img.Hero_Img_1{
		background-image: url(../img/SP_Hero01.webp);
	}
	
	.Hero_Img.Hero_Img_2{
		background-image: url(../img/SP_Hero02.webp);
	}
	
	.Hero_Img.Hero_Img_3{
		background-image: url(../img/SP_Hero03.webp);
	}
	
	.Hero_Img.Hero_Img_4{
		background-image: url(../img/SP_Hero04.webp);
	}
	
	}

/*予約*/
#Hero_Reserve_Wrap{
	position: fixed;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	z-index: 60;
}

.Hero_Reserve_Button{
	height: auto;
	padding: 4rem 1rem;
	border-radius: 2.6rem 0 0 2.6rem;
	background-image: url("../img/overlayDeeezy07a.png");
	writing-mode: vertical-rl;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	color: #ffffff;
	font-size: 1.8rem;
	display: flex;
	align-items: center;
}
.Hero_Reserve_Button_Inner > .material-icons{
	color: #efefef;
}

#Hero_Reserve_Wrap > .Hero_Reserve_Button:last-of-type{
	margin-top: 1.6rem;
}

@media screen and (max-width:768px) { 
/*　画面サイズが768px以下はここを読み込む　*/
	#Hero_Reserve_Wrap{
		top: calc(100% - 4.5rem);
		left: 50%;
		transform: translateX(-50%);
		z-index: 60;
		display: flex;
		width: 100%;
		justify-content: space-between;
	}
	
	.Hero_Reserve_Button{		
		writing-mode: horizontal-tb;
		-webkit-writing-mode: horizontal-tb;
		-ms-writing-mode: horizontal-tb;
		border-radius: 2.6rem 2.6rem 0 0;
		padding: 1rem 1.6rem;
		justify-content: center;
		margin-left: 1rem;
	}
	
	.Hero_Reserve_Button:hover{
		color: var(--Wh_Color);
	}
	
	.Hero_Reserve_Button_Inner:hover{
		color: var(--Wh_Color);
	}
	
	#Hero_Reserve_Wrap > .Hero_Reserve_Button:last-of-type{
		margin-top: 0rem;
	}
	
	.Hero_Reserve_Button.WEB{
		width: 45%;
	}
	
	.Hero_Reserve_Button.TEL{
		width: 55%;
		margin-right: 1rem;
	}
	
	.Hero_Reserve_Button_Inner{
		display: flex;
	}
	
	.Hero_Reserve_Button_Inner > span{
		margin-right: 0.5rem;
	}
}

@media screen and (max-width:350px) { 
	.Hero_Reserve_Button_Inner{
		font-size: 1.4rem;
	}
}

/*ロゴ*/
#Hero_Logo_Wrap{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50% , -50%);
	width: 30%;
	height:auto;
	z-index: 10;
}

/*お知らせ*/
#Hero_News_Wrap{
	position: absolute;
	bottom: 10%;
	left: 0;
	padding-left: 1.6rem;
	width: 20%;
	min-width: 320px;
	display: flex;	
	z-index: 10;
}

#Hero_NewsTxt_Wrap{
	width: 60%;
}

#Hero_NewsTxt_Wrap > div{
	color: var(--Wh_Color);
	margin-bottom: 1.0rem;
	text-shadow: 0 0 1em var(--Bk_Color);
}

#Hero_NewsTxt_Wrap > div > h3{
	border-bottom: solid 1px var(--Wh_Color);
	padding-bottom: 1rem;
	display: inline-block;
}

@media screen and (max-width:768px) { 
/*　画面サイズが768px以下はここを読み込む　*/
	#Hero_News_Wrap{
		width: 100%;
		padding: 1.6rem;
	}
	
	#Hero_NewsTxt_Wrap{
		width: 100%;
	}
}


/*スクロール*/
#Hero_Scroll_Wrap{
	position: absolute;
	bottom: 10%;
	left: 50%;
	transform: translateX(-50%);
	color: var(--Wh_Color);
	z-index: 10;
	
}

#Hero_Scroll_Wrap > div{
	position: relative;
	font-size: 1.6rem;
}

#Hero_Scroll_Wrap > div::after{
	content: "";
	position: absolute;
	top: 120%;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--Wh_Color);
	width: 1px;
	height: 4rem;
	animation: pathmove 1.4s ease-in-out infinite;
	opacity:0;
}



/*Instagram*/
#Instagram_Wrap{
	padding: 4rem 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.75) 100%);
	background-color: var(--Bk_Color);
}



.InstaSP{
	width: 100%;
}

.InstaSP > iframe{
	height: 170%;
}
@media screen and (max-width:768px){
	.Instagram.SubTtl{
		display: flex;
		justify-content: space-around;
	}
	
	.SP.Illust{
		max-width: 90px;
	}
	
	.InstaSP{
		overflow-x: scroll;
		height: 33.333vw;
	}
	
	.InstaSP > iframe{
		width: 170%!important;
		/* height: 80%!important; */
	}
	
	#Spacer{
		width: 110px;
		height: 30px;
	}
}


@media screen and (max-width:350px){
	.Instagram.SubTtl > img{
		max-width: 120px;
	}
	
	.SP.Illust{
		max-width: 80px;
	}
}


#About_Wrap{
	background-color: var(--Bk_Color)!important;
	padding: 4rem 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.75) 100%) ,url("../img/Bg_Paper.png");
	background-repeat: repeat-y;
	background-size: cover;
	position: relative;
}

#About_Wrap::after{
	content: "";
	position: absolute;
	top: -1px;
	left: 0;
	background-color: var(--Bk_Color);
	width: 100%;
	height: 3px;
}



/*------------ マスターこだわりのジンギスカン --------------*/

@media screen and (max-width:768px){
	#About_Txt_Wrap > p{
		margin-bottom: 1.2rem;
	}
}

.One_Point_Wrap{
	display: flex;
	margin: 6rem 0;
	align-items: center;
	flex-wrap: wrap;
}

.Point_Img_Wrap{
	width: 55%;
}

.Point_Txt_Wrap{
	width: 45%;
	padding: 0 3.2rem;
}

@media screen and (max-width:768px){
	.Point_Txt_Wrap{
		padding: 0;
	}
	
}
.Point_Txt_Wrap > div > .SubTtl{
	max-width: 50%;
	margin: auto;
}

.One_Point_Wrap:first-of-type{
	margin-top: 4rem;
}

.One_Point_Wrap:nth-of-type(2){
	flex-direction: row-reverse;
}

@media screen and (max-width:768px){
	.Point_Txt_Wrap > div > p{
		margin-bottom: 1.2rem;
	}
	
	.One_Point_Wrap{
		margin: 3.2rem 0;
	}
	
	.One_Point_Wrap:first-of-type{
		margin-top: 0;
	}
	
	.One_Point_Wrap:nth-of-type(2){
		flex-direction:row;
	}
	
	.Point_Img_Wrap{
		width: 100%;
	}
	.Point_Txt_Wrap{
		width: 100%;
	}
	
	.Point_Txt_Wrap > div > .SubTtl{
		max-width: 80%;
		margin: auto;
		padding: 2.4rem 0;
	}
	
	.SubTtl.Sm > img{
		max-width: 60%;
	}
	
	/*slick*/
	.slick-arrow:before{
		content:""!important;
		width: 100%!important;
		height: 100%!important;
		position: absolute;
		top: 0;
		left: 0;
	}
	
	.slick-next:before{
		background: url("../img/ArrowR.svg")!important;
		background-size: contain!important;
	}

	.slick-prev:before{
		background: url(../img/ArrowL.svg)!important;
		background-size: 24px;
	}
	
	.slick-prev {
		left: 4%!important;
	}
	
	.slick-next {
		right: 4%!important;
	}
	
	.slick-prev, .slick-next{
		z-index: 80;
	}
}

@media screen and (max-width:400px){
	.slick-prev, .slick-next{
		top: 40%!important
	}
}

/*オンラインショップ*/

#OnlineShop_Wrap{
	background-color: var(--Bk_Color);
	padding-top: 1px;
	transform: translateY(-1px);
	padding: 4rem 0;
}

.One_ItemCard_Wrap{
	background-image: url("../img/4906296_m.png");
	background-repeat: no-repeat;
	background-size: cover;
	padding: 1.6rem;
	margin: 0 1rem;
}

.ItemCard_Img_Wrap{
	overflow: hidden;
	width: 100%;
	height: 0;
	padding-bottom: 100%;
	color: var(--Bk_Color);
}

.ItemCard_Img_Wrap > img{
	width: auto;
	height:auto;
	min-height: 100%;
	min-width: 100%;
}

.ItemCard_ItemPrice{
	margin: 1.6rem 0;
}

.ItemCard_ItemPrice > p{
	color: var(--Accent_Color);
	font-weight: bold;
	font-size: 1.8rem;;
}

.ItemCard_ItemPrice > p > span{
	color: var(--Bk_Color);
	font-weight: 500;
	font-size: 1.2rem;
}

.ItemCard_ItemDec{
	font-size: 1.2rem;
	text-align: right;
}

.ItemCard_ItemName,
.ItemCard_ItemDec{
	color: var(--Bk_Color);
	display: block;
}
.line-clump{
	display: -webkit-box!important;
	-webkit-line-clamp: 2!important;/*表示行数*/
	-webkit-box-orient: vertical!important;
	overflow: hidden!important; 
}



@media screen and (max-width:768px){
	.ItemCard_ItemPrice{
		margin: 0;
	}

	.ItemCard_ItemPrice > p,
	.ItemCard_ItemPrice > p > span,
	.ItemCard_ItemDec{
		font-size: 1.6rem;
		text-align: left;
	}

	#Online_Txt_Wrap{
		font-size: 1.8rem;
	}
}

/* --------------- 動画 ---------------- */
.frame-wrapper__video {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	overflow: hidden;
	margin-bottom: 50px;
}

.frame-wrapper__video > iframe,
.frame-wrapper__video > video{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/* --------------- アクセス --------------- */

#Access_Wrap,
#Movie_Wrap{
	padding: 4rem 0;
	background-color: var(--Bk_Color);
	position: relative;
}

#Access_Wrap::after,
#Movie_Wrap::after{
	content: "";
	width: 100%;
	height: 5px;
	background-color: var(--Bk_Color);
	position: absolute;
	top: -3px;
	left: 0;
}

.GMap{
	height: 0;
	overflow: hidden;
	padding-bottom: 40%;
	position: relative;
}

.GMap > iframe {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}

@media screen and (max-width:768px){
	.GMap{
		padding-bottom: 110%;
	}
}

.One_Shop_Wrap{
	display: flex;
	flex-wrap: wrap;
	margin: 4rem 0;
}


@media screen and (max-width:850px){
	.One_Shop_Wrap{
		align-items: center;
	}
}

.Access_ShopInfo_Wrap{
	width: 45%;
}

.Access_ShopImg_Wrap{
	width: 55%;
}

.Access_ShopInfo_Txt_Wrap > ul{
	display: flex;
	flex-wrap: wrap;
}



.Access_ShopInfo_Txt_Wrap > ul > li:first-of-type{
	width: 180px;
}

.Access_ShopInfo_Txt_Wrap > ul > li:nth-of-type(2){
	width: calc(70% - 1.6rem);
	margin-right: 1.6rem;
}

.ShopInfoTime{
	width: 100%!important;
}

.Access_ShopInfo_Txt_Wrap > p{
	margin-right: 1.6rem;
}
.Access_Shop_Img{
	width: 50%;
}

.Access_Shop_Img > img{
	width: calc(100% - 1rem);
	height: auto;
}

.Btn_Flex_Wrap{
	display: flex;
	justify-content: space-between;
	margin-top: 2.4rem;
	flex-wrap: wrap;
}

.Btn_Flex_Wrap > div{
	width: calc(33.333% - 0.5rem);
}

@media screen and (max-width:1235px){
	.Btn_Flex_Wrap > div{
		width: 100%;
		margin-bottom: 1.2rem;
	}
}

.One_Shop_Wrap.Susukino > .Access_ShopImg_Wrap{
	width: 45%;
}

.One_Shop_Wrap.Susukino > .Access_ShopImg_Wrap > div > div > img{
	width: calc(100% - 1.6rem);
}

.One_Shop_Wrap.Susukino > .Access_ShopInfo_Wrap{
	width: 55%;
}

.Access_ShopInfo_Wrap > div > h3{
	font-size: 1.8rem;
}

#SubTtl_Sm{
	display: block;
	font-size: 1.4rem;
}

.ShopInfoWeek{
	width: 140px!important;
}

#banner_Wrap_Bimg{
	display: none;
}

#Susukino_Img_Wrap{
/*	display: flex;
	justify-content: space-between;*/
	width: 100%;
}

@media screen and (min-width:1158px) { 
	#Susukino_Img_Wrap{
		display: flex;
		align-items: end;
	}
}

@media screen and (max-width:1024px){
	#banner_Wrap{
		display: none;
	}
	#banner_Wrap_Bimg{
		display: block;
		width: 100%;
	}
	#banner_Wrap > a > img{
		width: 100%;
	}


	#banner_Wrap_Bimg > a > img{
		width: calc(100% - 1.6rem);
	}
}

@media screen and (max-width:900px){
	.Access_Shop_Img{
		width: 100%;
		margin: 1.6rem 0;
	}
}

@media screen and (max-width:768px){
	.One_Shop_Wrap{
		display: block!important;
	}
	.Access_ShopImg_Wrap{
		display: none;
	}
	.One_Shop_Wrap.Susukino > .Access_ShopImg_Wrap{
		display: none;
	}
	.Access_ShopInfo_Wrap{
		width: 100%!important;
	}
	
	#Susukino_Img_Wrap{
		display: block;
	}
}

@media screen and (max-width:768px){
	.Access_ShopInfo_Txt_Wrap{
		margin-bottom: 2rem;
	}
	.Access_ShopInfo_Txt_Wrap > ul{
		display: block;
		flex-wrap: wrap;
	}
	
	.Access_ShopInfo_Txt_Wrap > .SP_flex{
		display: flex;
		flex-wrap: nowrap;
	}
	

	.Access_ShopInfo_Txt_Wrap > ul > li:nth-of-type(2){
		width: 100%;
	}
	
	.SP_MB{
		margin-bottom: 2rem;
	}
	
	#banner_Wrap{
		display: block;
	}
}

@media screen and (max-width:330px){
	
	.Access_ShopInfo_Txt_Wrap > .SP_flex{
		display: flex;
		flex-wrap: wrap;
	}
}


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

footer{
	background-image: url(../img/overlayDeeezyop.png);
	padding: 4rem 0 0;
}

.Footer_Slide_Img_Wrap{
	margin: 0 0.4rem;
	position:relative;
	width: 16.666%;
	height: 0;
	padding-bottom: 16.666vw;
}

.Footer_Slide_Img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50% , -50%);
	width: 100%;
	height: auto;
}

@media screen and (max-width:1400px){
	
	.Footer_Slide_Img_Wrap{
		width: 20%;
		padding-bottom: 20vw;
	}
}

@media screen and (max-width:1200px){
	
	.Footer_Slide_Img_Wrap{
		width: 25%;
		padding-bottom: 25vw;
	}
}

@media screen and (max-width:769px){
	
	.Footer_Slide_Img_Wrap{
		width: 33.333%;
		padding-bottom: 33.333vw;
	}
}

@media screen and (max-width:426px){
	
	.Footer_Slide_Img_Wrap{
		width: 55.5555%;
		padding-bottom: 55.555vw;
	}
}

#Footer_Logo_Wrap{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4rem 0;
	position: relative;
}


#Footer_Logo{
	width: 33.333%;
	height: auto;
}

.Footer_Link_Wrap.SP{
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	margin-bottom: 1.2rem;
	width: 100%;
	display: flex;
	align-items: center;
}

.Footer_Link_Wrap.SP > ul{
	justify-content: center;
}

.Footer_Link_Wrap > ul{
	display: flex;
	width: 100%;
}

.Footer_Link_Wrap > ul > li{
	padding: 0.4rem;
	height: 2rem;
	display: flex;
	align-items: center;
}

.Footer_Link_Wrap > ul > li:first-of-type{
	border-right: solid 1px #ffffff;
}

#Copy_Wrap{
	display: flex;
	justify-content: space-between;
	background-color: rgba(0,0,0,0.40);
	padding: 0.4rem 1.6rem;
	position: relative;
	min-height: 24px;
}

#CopyText{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50% , -50%);
	white-space: nowrap;
}

@media screen and (max-width:768px){
	#Copy_Wrap{
		justify-content: center;
	}
}


@media screen and (max-width:492px){
	
	#Footer_Logo_Wrap{
		margin: auto;
		flex-wrap: wrap;
		padding-bottom: 0;
	}

	#Footer_Logo{
		width: 80%;
	}
	.Footer_Link_Wrap{
		margin-top: 2.4rem;
	}

	.Footer_Link_Wrap.SP{
		width: 100%;
	}

	#Footer_Logo_Wrap > .SP > .Footer_Link_Wrap > ul > li > a{
		font-size: 1.2rem;
	}
}



/* -------------------- MENU -------------------- */
#Menu_Content_Wrap{
	background-color: var(--Bk_Color);
	padding: 80px 0;
}

#Menu_Content_Wrap > section:not(first-of-type){
	margin: 4rem 0;
	padding: 4rem 0;
}

@media screen and (max-width:768px){
	#Menu_Content_Wrap > section:not(first-of-type){
		margin: 0;
	}
}

.Menu_Genre_Ttl{
	display: flex;
	justify-content: center;
	align-items: center;
}

@media screen and (max-width:768px){
	.Menu_Genre_Ttl{
		max-width: 280px;
		margin: auto;
	}
}

.Menu_Flex{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	padding: 0;
}

.Menu_Img{
	width: 55%;
}

.Menu_Txt{
	padding: 2.4rem 0;
	width: calc(45% - 3.2rem);
	height: 100%;
	margin: 0 1.6rem;
}

.Menu_Txt.Bg{
	background: radial-gradient(circle, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.4) 25%, rgba(0,0,0,0.6) 35%, rgba(0,0,0,0.7) 45%, rgba(0,0,0,1) 100%),url("../img/Bg_Paper.png");
	background-position: center;
	background-size: cover;
}

/* 横並びメニュー */
.One_FlexMenu_Wrap{
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: bold;
}

.Maboroshi.One_FlexMenu_Wrap{
	max-width: 400px;
}

.One_FlexMenu_Name{
	font-weight: bold;
}

.One_FlexMenu_Name > span{
	font-size: 1.2rem;
	display: block;
}

.One_FlexMenu_Price{
	font-size: 2.4rem;
	margin-left: 2.4rem;
	flex-shrink: 0;
	font-weight: bold;
}

.One_FlexMenu_Price > span{
	font-size: 1.8rem;
	font-weight: bold;
}

/* 横並びメニュー中 */
.One_FlexMenu_Wrap.Mid > .One_FlexMenu_Price{
	font-size: 1.8rem;
}

/* 横並びメニュー小 */
.One_FlexMenu_Wrap.Small > .One_FlexMenu_Price{
	font-size: 1.6rem;
}

/* 縦並びメニュー */
.One_VerticalMenu_Wrap{
	display: block;
	text-align: end;
}

.One_VerticalMenu_Wrap > .One_FlexMenu_Name > span{
	display: inline;
	margin-right: 2.4rem;
}

/* 幻の羊 */

/* スマホ */
@media screen and (max-width:768px){
	#Phantom_Lamb_Inner > .Menu_Img{
		display: none;
	}
	#Phantom_Lamb_Inner > .Menu_Txt{
		width: 100%;
	}
}

/* 数量限定 */
#Limited_Lamb{
	margin: 5.4rem 0;

}

#Limited_Lamb_Inner{
	border: solid 1px #ffffff;
	max-width: calc(100% - 10rem);
	margin: auto;
	position: relative;
	padding: 2.4rem 0px;
	background: radial-gradient(circle, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.2) 25%, rgba(0,0,0,0.3) 35%, rgba(0,0,0,0.5) 45%, rgba(0,0,0,0.8) 60%, rgba(0,0,0,0.6) 75%, rgba(0,0,0,1) 100%),url("../img/Bg_Paper.png");
	background-position: center;
}

@media screen and (max-width:768px){
	#Limited_Lamb_Inner{
		background: none;
	}
}

#Limited_Lamb_Inner > h2{
	position: absolute;
	top: -3.2rem;
	left: 10%;
	background-color: var(--Bk_Color);
	padding: 0 2.4rem;
}

#Limited_Lamb_1.Menu_Img{
	transform: translateX(5rem);
}

.Limited_Lamb_2.Menu_Txt{
	width: 40%;
}

.Limited_Lamb_2.Menu_Img{
	transform: translateX(-5rem);
	width: 60%;
}

#Limited_Lamb_Inner > .Menu_Flex > .Menu_Txt{
	padding: 6.4rem 4.8rem;
}

#Limited_Lamb_Inner > .Menu_Flex:first-of-type > .Menu_Txt{
	transform: translateX(1px);
}

#Limited_Lamb_Inner > .Menu_Flex:last-of-type > .Menu_Txt{
	transform: translateX(-1px);
}

@media screen and (max-width:768px){
	#Limited_Lamb_Inner{
		max-width: calc(100% - 3.2rem);
		
	}
	#Limited_Lamb_Inner > h2{
		max-width: calc(100%  - 3.2rem);
		left: 50%;
		transform: translateX(-50%);
	}

	#Limited_Lamb_Inner > .Menu_Flex > .Menu_Txt{
		width: calc(100%  - 3.2rem);
		padding: 0;
		background: none;
	}

	#Limited_Lamb_1.Menu_Img{
		width: 100%;
		transform: translateX(1.6rem);
	}

	.Limited_Lamb_2.Menu_Img{
		width: 100%;
		transform: translateX(-3.6rem);
	}

	.One_FlexMenu_Wrap {
		max-width: 500px;
		margin: auto;
	}

	#Limited_Lamb{
		background:  linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.60) 25%, rgba(255,255,255,0) 50%, rgba(0,0,0,0.60) 75%, rgba(0,0,0,1) 100%), url(../img/Menu/yaki.png);
		background-size: cover;
	}
}

@media screen and (max-width:550px){
	#Limited_Lamb_Inner > h2{
		top: -3rem;
	}
}

@media screen and (max-width:425px){
	#Limited_Lamb_Inner > h2{
		top: -2rem;
	}
}

@media screen and (max-width:350px){
	#Limited_Lamb_Inner > h2{
		top: -1rem;
	}
}


/* 他国もうまい */
/* #Other_Lamb_Inner > h2{
	width: 40%;
	max-width: 300px;
	margin: auto;
	margin-bottom: 4rem;
} */

#Other_Lamb_Inner > div{
	display: flex;
	justify-content: space-between;
	margin: auto 5.6rem;
}

#Other_Lamb_Inner > div > h2{
	width: 40%;
	max-width: 300px;
	margin: 4rem auto auto;
}

@media screen and (max-width:768px){
	#Other_Lamb_Inner > div > h2{
		width: 72%;
		max-width: 300px;
		margin: 4rem auto auto;
	}
}

.One_OtherCont_Menu{
	width: 50%;
}

#Other_lamb_2_Wrap{
	margin-top: -14rem;
}

#Other_lamb_3_Wrap{
	margin-top: 8rem;
}



#Other_Lamb_Menu_Wrap > ul{
	margin: 4rem auto;
	padding-bottom: 4rem;
}

@media screen and (max-width:768px){
	#Other_Lamb_Inner > .Menu_Flex{
		flex-direction: column-reverse;
	}

	#Limited_Lamb_1.Menu_Img{
		transform: translateX(0);
	}

	#Other_Lamb_Menu_Wrap{
		margin: 0 1.6rem;
	}

	#Other_Lamb_Inner > .Menu_Flex > .Menu_Txt{
		width: 100%;
		display: block!important;
		margin: 0 auto;
	}

	#Other_Lamb_Menu_Wrap > .One_FlexMenu_Wrap{
		width: 100%;
		display: block!important;
		margin: 2.4rem auto;
		padding-bottom: 0;
	}

	#Other_Lamb_Menu_Wrap > .One_FlexMenu_Wrap > .One_FlexMenu_Price{
		width: 100%;
		margin: 0;
		display: block!important;
		text-align: end;
	}

	#OtherCountry_OtherFood_Wrap{
		background:  linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.80) 10%, rgba(0,0,0,0.40) 50%, rgba(0,0,0,0.80) 75%, rgba(0,0,0,1) 100%), url(../img/Bg_Paper.png);
		background-repeat: repeat-y;
		background-size: contain;
	}
}

/* その他フードメニュー */
.OtherMenu_Wrap{
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 2.4rem;
}

.OtherMenu_Col{
	width: 33.333%;
	padding: 0 2.4rem;

}

#OtherMenuTtl > h2{
	width: 72%;
	max-width: 150px;
	margin: 4rem auto;
}

.OtherMenu_Col.Mid{
	width: 50%;
	padding: 3.2rem 2.4rem;
}

.OtherMenu_Col.Mid.OtherMenu_Col.Mid.Dessert.Img > div{
	/* mix-blend-mode: hard-light; */
	width: 50%;
	margin-right: 0;
	margin-left: auto;
	transform: translateX(1.5rem);
}

.OtherMenu_Col.Mid.Dessert.Img{
	padding-right: 0;
}

.OtherMenu_Wrap > div > h3{
	height: 18px;
	width: auto;
	max-width: 33.333%;
	padding: 0rem 2.4rem;
	margin-bottom: 1.2rem;
}
.OtherMenu_Col > div > h3{
	height: 30px;
	padding: 0rem;
	margin-bottom: 1.2rem;
}

.OtherMenu_Wrap > div > h3 > picture > img,
.OtherMenu_Col > div > h3 > picture > img{
	height: 18px;
	width: auto;
}

.OtherMenu_Col.Mid > div > ul{
	margin: auto 0;
}

@media screen and (max-width:768px){
	.OtherMenu_Col{
		width: 100%;
	}

	.OtherMenu_Wrap > div > h3{
		height: 48px;
		width: auto;
		max-width: none;
		padding: 0rem 2.4rem;
		margin: 3.2rem auto;
		display: flex;
		justify-content: center;
	}
	.OtherMenu_Col > div > h3{
		height: 48px;
		padding: 0rem;
		margin: 3.2rem auto;
		display: flex;
		justify-content: center;
	}
	
	.OtherMenu_Wrap > div > h3 > picture > img,
	.OtherMenu_Col > div > h3 > picture > img{
		height: 32px;
		width: auto;
		
	}

	.OtherMenu_Col.Mid.Dessert{
		width: 100%;
	}

	.OtherMenu_Col.Mid.Dessert.Img{
		display: flex;
		justify-content: end;
	}
	.OtherMenu_Col.Mid.Dessert.Img > div > picture > img{
		width: 100%;
		max-width: 320px;
		height: auto;
		transform: translateX(2rem);
	}
}


/* --- しゃぶしゃぶ --- */

#Syabusyabu{
	margin: 4.8rem auto;
	position: relative;
	z-index: 0;

}

#Syabusyabu::after{
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 20%, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,0.8) 80%, rgba(0,0,0,1) 100%), url(../img/Menu/syabusyabu_bg.webp);
	z-index: -1;
	filter: blur(2px);
	background-size: cover;
	background-position: 70% 10%;
}
#Syabusyabu_Inner > div > h2{
	width: 60%;
    max-width: 300px;
    margin: 4rem auto;
}

/* .Syabusyabu_Menu_Inner{
	margin-bottom: 4.8rem;
} */

@media screen and (max-width:767px) { 
	/*　画面サイズが768px以下はここを読み込む　*/
	.col-md-6:first-of-type > .Syabusyabu_Menu_Inner{
		margin-bottom: 0;
	}
	
}



#OtherMenu{
	margin-top: 10rem!important;
}

/* --- ドリンクメニュー --- */
/* 画像 */
.DrinkMenu_Content{
	width: 60%;
}
.Side_Img{
	width: 20%;
	mix-blend-mode: hard-light;
}

#SourImg.Side_Img{
	display: flex;
	align-items: center;
}

.Side_Img.Left > picture > img{
	transform: rotate(-10deg);
}

.Side_Img.Left > picture > img:first-of-type{
	transform: rotate(-10deg) scale(-1,1);
}

.DrinkMenu_Content > .col-6,
.DrinkMenu_Content > .col-12{
	padding: 0 2.4rem 1rem;
}

.DrinkTtl > h3{
	height: 3.2rem;	
}

.DrinkTtl > h3 > picture > img{
	height: 18px;
	width: auto;
}

.Ttl_Remark > p{
	transform: translateY(3px);
}

.DrinkName_Wrap > p{
	font-weight: bold;
}

/* シーフードメニュー */
.SeafoodMenu_Section_Wrap{
	margin-bottom: 4rem;
}

.SeafoodMenu_Section_Wrap > h3{
	margin-bottom: 2.4rem;
}
.SeafoodMenu_Section_Wrap > h3 > picture > img{
	height: 24px;
	width: auto;
}

.SeafoodMenu_Section_Wrap > .One_FlexMenu_Wrap > span{
	font-size: 1.4rem;
	font-weight: normal;
}

.Seafood_Img_Wrap{
	position: relative;
	width: 100%;
	max-width: 500px;
}

.One_Seafood_Img{
	position: absolute;
	width: 50%;
	max-width: 240px;
	max-height: 240px;
	height: 50%;
	margin: auto;
	background-position: center;
}

#One_Seafood_Img_1.One_Seafood_Img{
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 72%;
	max-width: inherit;
	max-height: inherit;
	height: auto;
	margin-top: -4rem;
}

#One_Seafood_Img_2.One_Seafood_Img{
	top: 25%;
	right: 0;
}
#One_Seafood_Img_3.One_Seafood_Img{
	top: 64%;
	left: 0;
}
#One_Seafood_Img_4.One_Seafood_Img{
	top: 75%;
	right: 0;
}

/* SPドリンクメニュー */
/* 札幌クラシック */
#Beer_Whiskey_SP_Wrap{
	background-color: var(--Bk_Color)!important;
    padding: 4rem 0;
    background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 25%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.7) 75%, rgba(0,0,0,1) 100%) ,url(../img/Bg_Paper.png);
    background-repeat: repeat-y;
    background-size: cover;
}
#SP_Beer_Inner{
	display: flex;
	overflow: hidden;
	align-items: center;
}

#SP_Beer_Inner > div > picture > img{
	width: 160%;
	height: auto;
}

#SP_Beer_Left{
	width: 13%;
	transform: scale(1, 1) translateX(-60%);
}
#SP_Beer_Center{
	width: 74%;
}

#SP_Beer_Center > div > h3,
#SP_Beer_Center > div > h3{
	margin: 0 auto;
	max-width: 240px;
}

#SP_Beer_Right{
	width: 13%;	
}

#SP_Beer_Right > picture > img{
	transform: translateX(13%) rotate(10deg);
	
}

.Drink_Genre_Ttl_Wrap > h3{
	display: flex;
	justify-content: center;
}

.Drink_Genre_Ttl_Wrap > h3 > picture > img{
	height: 32px;
	width: auto;
}

#Ume.Drink_Genre_Ttl_Wrap{
	display: flex;
}

#Ume.Drink_Genre_Ttl_Wrap{
	display: flex;
	justify-content: center;
}

#Ume.Drink_Genre_Ttl_Wrap > h3 > picture > img{
	width: 100%;
	max-width: 320px;
	height: auto;
}

#Sprits_SP.Drink_Genre_Ttl_Wrap > h3 > picture > img{
	width: 100%;
	max-width: 132px;
	height: auto;
	transform: translateX(-32px);
}

#Sour_SP.Drink_Genre_Ttl_Wrap > h3 > picture > img{
	width: auto;
	height: 66px;
}

#Drink_Round_BG{
	background: radial-gradient(circle, rgba(38,8,8,1) 0%, rgba(38,8,8,0.75) 25%, rgba(38,8,8,0.60) 50%, rgba(38,8,8,0.50) 75%, rgba(38,8,8,0) 100%);
}


.Drink_Gr_Pap_BG{
	background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.80) 20%, rgba(0,0,0,0.60) 30%, rgba(0,0,0,0.40) 50%, rgba(0,0,0,0.60) 70%, rgba(0,0,0,0.90) 80%, rgba(0,0,0,0.80) 100%), url(../img/Bg_Paper.png);
    background-repeat: repeat-y;
    background-size: cover;
}

#LunchTtl_Wrap > h3{
	max-width: 240px;
	margin: auto;
}

.Seafood_Round_Img_Wrap{
	width: 80%;
	margin: auto;
	display: flex;
	justify-content: center;
}

#SP_Don_1.Seafood_Round_Img_Wrap{
	width: 100%;
	margin: auto;
}

.One_Seafood_Menu_Wrap{
	margin-top: 2.4rem;
	text-align: center;
	font-weight: bold;
}

.One_Seafood_Menu_Wrap > p:last-of-type{
	font-size: 2.4rem;;
}

.PP_Ttl{
	margin-top: 2.4rem;
}

.TransTable{
	border: solid 1px #ffffff;
}

.TransTable th{
	border-right: solid 1px #ffffff;
	max-width: 130px;
	background: #484848;
}

.PrivacyPolicy_Wrap > ol > li,
.PrivacyPolicy_Wrap > ol > li > ol > li{
	list-style: auto;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
	0%{
		height:0;
		top:25px;
		opacity: 0;
	}
	30%{
		height:30px;
		opacity: 1;
	}
	100%{
		height:0;
		top:50px;
		opacity: 0;
	}
}


/* -------------------- 404 -------------------- */

#error_page{
	background-color: var(--Bk_Color);
	margin-top: 80px;
}

@media screen and (max-width:768px) { 
	/*　画面サイズが768px以下はここを読み込む　*/
	#error_page{
		margin-top: 60px;
	}
}

.Error404_Inner > div > h3{
	font-size: 2.4rem;
}

.Error404_Inner{
	display: flex;
	justify-content: center;
	align-items: center;
}

@media screen and (max-width:768px) { 
	/*　画面サイズが768px以下はここを読み込む　*/
	.Error404_Inner{
		flex-direction: column;
	}
}

/* Fadeクラスがついた要素を強制的に表示する */
.Fade {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* PC用・スマホ用画像の切り替え制御（これがないと画像が消える・または両方出る原因になります） */
@media (min-width: 769px) {
    .PC { display: block !important; margin: 0 auto; max-width: 100%; height: auto; }
    .SP { display: none !important; }
}
@media (max-width: 768px) {
    .PC { display: none !important; }
    .SP { display: block !important; margin: 0 auto; max-width: 100%; height: auto; }
}

/* 画像全体の基本的なレスポンシブ対応 */
.Point_Img_Wrap img,
.SubTtl img {
    max-width: 100%;
    height: auto;
    display: block;
}