@charset "utf-8";
/* CSS Document */
.realtime_message_toast {
	display: none;
}

@media screen and (max-width: 760px) {
	.shop_header {
		display: flex;
		flex-direction: column;
	}
	.shop_header > .mw {
		order: 3;
	}
	.shop_header .shop_cover {
		order: 2;
	}
	.shop_header .shop_nav_block {
		order: 1;
	}
}

.shop_detal_body .left .primary_btn{
	font-size: 18px;
	font-weight: bold;
	color: #514343;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	width: 360px;
	height: 50px;
	margin: 40px auto auto auto;
}

.shop_detal_body .right .primary_btn{
	width: 100%;
	font-weight: bold;
	color: #514343;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	padding: 13px;
    font-size: 16px;
}

.shop_detal_body .primary_btn:hover{
	opacity: 0.8;
}


/* トップページ メニュー回り */
.lower_header .lower_header_keep {
	padding: 0 4vw;
	margin: 2vw 0 0 0;
}
.lower_header .lower_header_keep .js_keep {
	width: 100%;
	padding: 4vw;
    font-size: 4.6vw;
    border-radius: var(--basic_radius);
	font-weight: bold;
}

.sp_header_btns .tow_btns {
	display: flex;
	align-items: flex-end;
	padding: 3vw 4vw 0 4vw;
}
.sp_header_btns .tow_btns > div {
	flex-grow: 1;
}
.sp_header_btns .tow_btns > div:first-child {
	min-width: 55%;
}
.sp_header_btns .tow_btns .review_btn {
	margin: 0 3vw 0 0;
}
.sp_header_btns .tow_btns .review_btn a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	color: #514343;
	border: solid 1px #514343;
	background-color: #FFFFFF;
	color: #525252;
	font-size: 4.5vw;
	padding: 3vw 0;
    border-radius: var(--basic_radius);
	font-weight: bold;
}
.sp_header_btns .tow_btns .js_keep {
	width: 100%;
    font-size: 4.5vw;
    padding: 3.95vw 0;
	font-weight: bold;
}
.shop_detal_body .left .sp_header_btns .primary_btn {
	margin-top: 3vw;
}
.sp_header_btns .keep_count {
	color: #ffb017;
	display: flex;
	justify-content: center;
	margin: 0 0 1vw 0;
	font-size: 3vw;
}
.sp_header_btns .keep_count::before,
.sp_header_btns .keep_count::after {
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    content: '';
    height: 4vw;
    width: 4vw;
}
.sp_header_btns .keep_count::before {
    background-image: url(/assets/img/global/emphasis_left.svg);
    margin: 0 0.5vw 0 0;
}
.sp_header_btns .keep_count::after {
    background-image: url(/assets/img/global/emphasis_right.svg);
    margin: 0 0.5vw 0 0;
}



/* new_テーブルCSS */
.shop_info_table{
	width: 100%;
	border-collapse: collapse;
}
.shop_info_table th{
	background-color: #efe5d7;
	border-bottom: solid 1px #e1d4c0;
	border-left: solid 1px #e1d4c0;
	box-sizing: border-box;
	color: #664c4c;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
	padding: 3px 0;
}
.shop_info_table td{
	background-color: #fffdf3;
	border-bottom: solid 1px #e1d4c0;
	border-left: solid 1px #e1d4c0;
	box-sizing: border-box;
	color: #333333;
	font-size: 14px;
}

.shop_info_table._long td{
	border-right: solid 1px #e1d4c0;
	padding: 5px;
}
.shop_info_table._mid tr:last-child{
	border-right: solid 1px #e1d4c0;
}

.shop_info_table th.min_font{
	font-size: 10px;
}

.shop_info_table  td._ng{
	color: #ff7949;
}

.shop_info_table._long th{
	width: 31%;
	padding: 10px 0;
}
.shop_info_table._long td.brand_wrap{
	padding: 0 10px 5px 10px;
}
.shop_info_table .brand_logo_img{
	height: 20px;
	margin-top: 5px;
}

.shop_info_table._mid tbody{
	display: flex;
}
.shop_info_table._mid tr{
	display: flex;
	flex-grow: 1;
	flex-direction: row;
	width: 106px;
}
.shop_info_table._mid th{
	width: 46%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.shop_info_table._mid td{
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.shop_info_table._short{
	height: auto;
	min-height: 50px;
	border-right: solid 1px #e1d4c0;
	border-bottom: solid 1px #e1d4c0;
}
.shop_info_table._short th{
	width: 10%;
	position: relative;
	border-right: solid 1px #e1d4c0;
}
.shop_info_table._short th:before{
	content: "備考";
	position: absolute;
	writing-mode: vertical-rl;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	letter-spacing: 5px;
	width: 50%;
	height: 100%;
}
.shop_info_table._short td{
	font-size: 14px;
	color: #333;
	padding: 12px 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 20px;
}

@media screen and (max-width: 760px) {
	.shop_detal_body .left .primary_btn{
		width: 100%;
		font-size: 4.6vw;
		height: auto;
		margin-top: 6vw;
		padding: 4vw 0;
	}
	.shop_detal_body .right .primary_btn{
		font-size: 4.6vw;
		height: auto;
		margin-top: 6vw;
		padding: 4vw 0;
	}
	.shop_detal_body .lower_header .primary_btn{
		width: 92%;
	}
	.primary_btn .mail_icon{
		width: 5vw;
		height: auto;
		margin-right: 1vw;
	}

	.shop_sp_first_btns{
		margin-top: 0vw;
		padding: 4vw;
		background-color: #fffbf6;
	}
	.shop_sp_first_btns._top{
		margin-top: 4vw;
		padding: 0 4vw;
		background-color: #fffbf6;
	}

	.shop_sp_first_btns ._white{
		font-size: 4.6vw;
		font-weight: bold;
		color: #514343;
		background-color: #fff;
		border: 2px solid #dddddd;
		display: block;
		width: 100%;
		text-align: center;
		line-height: 1;
		padding: 4vw 0;
		border-radius: var(--basic_radius);
		position: relative;

	}
	.shop_sp_first_btns ._white:after{
		content: '\f106';
		font-family: FontAwesome;
		color: #514343;
		font-size: 8vw;
		line-height: 1;
		top: 57%;
		transform: translateY(-56%) rotate(180deg);
		position: absolute;
		right: 4vw;
	}

	.shop_sp_first_btns .sp_tel_btn{
		margin-top: 3vw;
		background-color: #fff;
		padding: 2.4vw 3vw;
		border: 1px solid #e1d4c0;
	}
	.shop_sp_first_btns .sp_tel_btn a{
		font-size: 6vw;
		line-height: 1;
		background-color: #746555;
		color: #fff;
		font-weight: bold;
		padding: 3vw 2vw 3.4vw 2vw;
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		border-radius: 1vw;
	}
	.shop_sp_first_btns .sp_tel_btn a:before{
		content: '';
		background-image: url(/assets/img/shop/icon/sp_tel_icon.webp);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
		width: 5vw;
		height: 5vw;
		display: block;
		margin-top: 1%;
	}

	.shop_sp_first_btns .sp_tel_btn span{
		display: block;
		font-size: 3.4vw;
		font-weight: bold;
		line-height: 1;
		margin-top: 2vw;
		text-align: center;
		color: #664c4c;
	}

	.shop_sp_job_btn{
		font-size: 4.6vw;
		font-weight: bold;
		background-color: #fff;
		color: #ff98b7;
		border: 2px solid #ff98b7;
		display: block;
		width: 100%;
		text-align: center;
		line-height: 1;
		padding: 4vw 0;
		border-radius: var(--basic_radius);
	}
	.shop_sp_first_btns .shop_sp_job_btn{
		margin-top: 3vw;
	}
	.shop_sp_job_btn img{
		width: 3.6vw;
		height: 3.6vw;
	}
	.shop_info_table._long td.brand_wrap{
		padding: 1vw 2vw 2vw 2vw;
	}

	.shop_sp_job_btn._bottom{
		margin-top: 4vw;
	}


}


/* ---------------------------------------- */
/* メインの見出し */
/* ---------------------------------------- */
.lower_page .shop_lower_head {
	background-color: #efe5d7;
	position: relative;
	border-radius: 6px;
	box-shadow: 0 0 6px 0 rgb(0 0 0 / 10%);
}
.shop_headline {
	position: relative;
	background-color: #c2a67e;
	color: #ffffff;
	text-align: center;
	padding: 20px 0;
	font-weight: bold;
	margin-bottom: 40px;
}
.shop_detal_head .shop_headline {
	margin-bottom: 20px;
	font-size: 30px;
}

.shop_headline .cast_main_text{
	font-size: 20px;
	font-weight: bold;
	line-height: 1;
	color: #fff;
}
.shop_headline .cast_main_text{
	display: inline-block;
}
.shop_headline::before,
.shop_headline::after {
	content: '';
	position: absolute;
	left: 0;
	background-color: #ffeac1;
	border-bottom: solid 3px #ffffff;
	border-top: solid 3px #ffffff;
	display: block;
	height: 4px;
	width: 100%;
}
.shop_headline::before {
	top: 0;
}
.shop_headline::after {
	bottom: 0;
}
@media screen and (max-width: 760px) {
	.lower_page .shop_lower_head{
		padding-bottom: 0;
		box-shadow: initial;
		border-radius: initial;
	}
	.shop_detal_head .shop_headline {
		padding: 3vw 4vw;
		margin-bottom: 2vw;
		font-size: 6vw;
		background-color: #a9945e;
		border-bottom: 2px solid #7b6c47;
	}
	.shop_headline::before,
	.shop_headline::after {
		content: initial;
	}
	.shop_headline .cast_main_text{
		font-size: 6vw;
	}

}

/*新しいデザイン  shop各コンテンツの見出し*/
.shop_sub_head_text{
	font-size: 24px;
	color: #5a3e3e;
	font-weight: bold;
	line-height: 1;
}
.shop_sub_head_text span{
	font-size: 16px;
	margin-left: 10px;
}
.shop_each_content{
	padding: 0 40px;
}
/*shop_topの基本の余白*/
.basic_mt_l{
	margin-top: 40px;
}
.basic_mt_m{
	margin-top: 30px;
}

/*横並び３つの画像。キャストのリストなどで利用*/
.basic_list{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.basic_list li{
	margin-right: 30px;
	max-width: 238px;
}
.basic_list li a{
	width: 100%;
	display: block;
}

.basic_list li:nth-child(3n) {
	margin-right: 0;
}
.basic_list li:nth-child(n + 4){
	margin-top: 30px;
}

/*横並び3つ、縦長の背景茶色リスト 口コミ、こだわりポイントで利用*/
.brown_list{
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
}
.brown_list li{
	padding: 20px;
	width: 245px;
	background-image: linear-gradient( to bottom, #f8f1e7,#fff);
	border: 1px solid #bc9c70;
	margin-left: 20px;
	border-radius: var(--basic_radius);
}
.brown_list li:first-child{
	margin-left: 0;
}

@media screen and (max-width: 760px) {
	.basic_mt_l{
		margin-top:var(--shop_sp_basic_margin);
	}
	.basic_mt_m{
		margin-top: 4vw;

	}
	.shop_each_content{
		padding: 0 4vw;
	}
	.shop_sub_head_text{
		/* font-size:var(--shop_sp_lead_font); */
		font-size: 5vw;
	}
	.shop_sub_head_text span{
		margin-left: 2vw;
		font-size: 3vw;
	}

	.basic_list li{
		width: 31%;
		margin-right: 3.5%;
		max-width: initial;
	}
	.basic_list li:nth-child(n + 4){
		margin-top: 3.5%;
	}

	._bottom_menu_nav{
		background-color: #fffbf6;
		padding-top:var(--shop_sp_basic_margin);
	}

	.shop_sp_bottom_btns{
		background-color: #fffbf6;
		padding: 4vw 4vw 20vw 4vw;
	}
	.shop_sp_bottom_btns .shop_sp_job_btn{
		width: 100%;
	}

}


/* ---------------------------------------- */
/* サブの見出し */
/* ---------------------------------------- */
.shop_sub_headline {
	font-weight: bold;
	font-size: 26px;
	color: #664c4c;
	line-height: 1;
	padding: 0 0 10px 0;
	border-bottom: solid 3px #bc9c70;
	margin: 0 0 40px 0;
	line-height: 160%;
}
.shop_sub_headline span {
	font-size: 16px;
}
@media screen and (max-width: 760px) {
	.shop_sub_headline {
		font-size: 5vw;
		padding: 0 0 2vw 0;
		margin: 0 0 4vw 0;
		line-height: 160%;
	}
	.shop_sub_headline span {
		font-size: 3vw;
	}
}

/* ---------------------------------------- */
/* ショップページのコンテンツ表示エリア */
/* ---------------------------------------- */
.shop_contents {
	background-color: #fffbf6;
	padding: 40px;
	margin-bottom: 50px;
}
@media screen and (max-width: 760px) {
	.shop_contents {
		padding: 4vw;
		/* margin-bottom: 10vw; */
		margin-bottom: 0;
	}
}

/* ---------------------------------------- */
/* カバーの表示 */
/* ---------------------------------------- */
@media screen and (min-width: 760px) {
	.shop_cover._is_shop_top{
		position: relative;
		max-width: 100%;
		overflow: hidden;
		height: 320px;
	}
	.shop_cover_slick {
		position: relative;
		width: 100%;
	}
	.shop_cover_slick li {
		max-height: 320px;
		max-width: 854px;
	}
	.shop_cover_slick > li:not(:first-child){
		display: none;
	}
	.shop_cover_slick li span {
		width: 854px;
		height: 320px;
        display: block;
	}
	.shop_cover_slick li img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center center;
	}
	.shop_cover_slick > .slick-prev,
	.shop_cover_slick > .slick-next {
		display: none !important;
	}
	.shop_main {
		background-color: #dddddd;
	}
}
@media screen and (max-width: 760px) {
	.shop_cover_slick .slick-slide img {
		display: block;
		width: 100%;
		height: 62vw;
		object-fit: cover;
	}
	.shop_cover_slick li {
		margin: 0 0;
	}
	.shop_cover_slick > li:not(:first-child){
		display: none;
	}
	.shop_cover_slick .slick-dots {
		display: none !important;
	}
}

/* ---------------------------------------- */
/* もっとみるボタン */
/* ---------------------------------------- */
.shop_more_btns {
	display: flex;
	justify-content: center;
	padding: 30px 0 0 0;
}
.shop_more_btns a {
	position: relative;
	background-color: #bc9c70;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 6px;
	overflow: hidden;
	color: #ffffff;
	padding: 15px 25px;
	font-weight: bold;
}
.shop_more_btns a::before {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 5px;
	width: 18px;
	height: 18px;
	content: '\f105';
	font-family: FontAwesome;
	background-color: #ffffff;
	overflow: hidden;
	border-radius: 50%;
	color: #bc9c70;
	font-size: 110%;
	text-indent: 2px;
	font-weight: normal;
}
.shop_more_btns a::after {
	border-radius: 3px;
	position: absolute;
	width: calc(100% - 8px);
	height: calc(100% - 8px);
	content: '';
	display: block;
	border: solid 1px #d0ba9b;
	left: 3px;
	top: 3px;
}


/* コメントなどのもっと見るボタン（リンクではなく、続きを表示する系の白パターン） */
.white_btn{
	font-size: var(--top_font_m);
	font-weight: bold;
	color: #514343;
	background-color: #fff;
	border: 2px solid #dddddd;
	display: block;
	width: 270px;
	margin: 20px auto auto auto;
	text-align: center;
	line-height: 1;
	padding: 15px 0;
	border-radius: var(--basic_radius);
	cursor: pointer;
	position: relative;
}
.white_btn:hover{
	opacity: 0.8;
}
.white_btn:after{
	content: '\f106';
	font-family: FontAwesome;
	color: #514343;
	font-size:16px;
	line-height: 1;
	position: relative;
	top: 50%;
	transform: translateY(-50%) rotate(180deg);
	position: absolute;
	right: 20px;
}


@media screen and (max-width: 760px) {
	.shop_more_btns {
		padding: 4vw 0 0 0;
	}
	.shop_more_btns a {
		padding: 3vw 4vw;
	}
	.shop_more_btns a::before {
		margin-right: 1.5vw;
		width: 3.8vw;
		height: 3.8vw;
		font-size: 110%;
		text-indent: 2px;
	}
	.shop_more_btns a::after {
		border-radius: 3px;
		position: absolute;
		width: calc(100% - 8px);
		height: calc(100% - 8px);
		content: '';
		display: block;
		border: solid 1px #d0ba9b;
		left: 3px;
		top: 3px;
	}


	.white_btn{
		width: 75%;
		border-radius: 5px;
		padding: 3vw 0;
	}
	.white_btn:after{
		font-size:6vw;
		position: absolute;
		right: 2vw;
		top: 54%;
	}


}

/* ---------------------------------------- */
/* 店舗下層の店舗ヘッダー */
/* ---------------------------------------- */
.shop_link {
	display: flex;
	align-items: flex-start;
	width: 820px;
	padding: 20px;
}
.shop_lower_head .left {
	width: 100%;
	min-height: 234px;
	display: flex;
	flex-direction: column;
	position: relative;
}
.shop_lower_head .left::before {
	content: '';
	background-color: #ffffff;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100px;
	border-radius: 0px 0px 6px 6px;
}
.shop_lower_head .right {
	position: absolute;
	right: 30px;
	top: -15px;
}
.shop_lower_head_icon {
	overflow: hidden;
	box-shadow: 0px 1px 4px 0 #e1e1e1;
	margin-right: 10px;
}
.shop_lower_head_icon img {
	width: 100px;
	height: 100px;
	display: block;
	object-fit: cover;
}
.shop_lower_head .shop_name {
	display: inline-block;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 6px;
	text-decoration: none;
	color: #664c4c;
	line-height: 1;
}
.shop_lower_head .shop_info {
	line-height: 1;
}
.shop_lower_head {
	display: flex;
	padding: 0px 0 0 0;
}
.shop_lower_head .shop_info_sub {
	background-color: #ffffff;
	padding: 20px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	border-radius: 0 0 6px 6px;
}
.shop_lower_head .shop_info_sub .shop_info_sub_body {
	width: 820px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}
.shop_lower_head .shop_info_sub .shop_info_sub_body dl dd {
	color: #664c4c;
	font-size: 14px;
}
.shop_lower_head .shop_info_sub dl {
	display: flex;
	margin-right: 20px;
	margin-bottom: 10px;
}
.shop_lower_head .shop_info_sub dl dt {
	border: solid 1px #8e8e8e;
	background-color: #ffe061;
	padding: 0 4px;
	font-weight: bold;
	margin-right: 10px;
	word-break: keep-all;
	font-size: 14px;
}
.shop_lower_head .shop_genre {
	display: flex;
	font-size: 13px;
	margin-bottom: 6px;
	line-height: 1;
	color: #664c4c;
}
.shop_lower_head .shop_address {
	display: block;
	color: #664c4c;
	font-size: 14px;
	margin-bottom: 11px;
}

.shop_lower_head .shop_status {
	display: flex;
	align-items: center;
}
.shop_lower_head .shop_status li {
	margin-right: 10px;
}
.shop_lower_head .shop_status .over_18 {
	/* 18歳未満来店禁止 */
	background-color: #ffe9e9;
	height: 28px;
	padding: 5px 5px;
	line-height: 1;
	font-size: 13px;
	font-weight: bold;
	color: #ff6363;
	text-shadow: 1px 1px 1px #ffffff;
	border-radius: 3px;
	display: flex;
	align-items: center;
}
.shop_lower_head .shop_status .over_18::before {
	display: block;
	content: '';
	width: 18px;
	height: 18px;
	background-image: url(/assets/img/global/icon/exclamatio.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	margin-right: 6px;
}
.shop_lower_head .shop_status .corona {
	background-color: #6aaf59;
	height: 28px;
	padding: 5px 5px;
	line-height: 1;
	font-size: 14px;
	font-weight: bold;
	color: #ffffff;
	border-radius: 3px;
	display: flex;
	align-items: center;
}
.shop_lower_head .shop_status .corona a {
	display: flex;
	align-items: center;
	color: #ffffff;
	height: 100%;
}

/* コロナ対策 */
.corona_provision_1 dt {
	color: #664c4c;
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 10px;
}
.corona_provision_1 dd {
	font-size: 14px;
	margin-bottom: 30px;
}
.corona_provision_2 dt {
	color: #664c4c;
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 10px;
}
.corona_provision_2 dd {
	font-size: 14px;
	margin-bottom: 30px;
}

/* 右側 */
.shop_header_contact {
	position: relative;
	width: 320px;
	border-radius: 8px;
	padding: 18px;
	margin: 0 0 10px 20px;
	background-color: #fbf6ee;
	box-shadow: 0 0 7px 0 hsl(0deg 0% 0% / 18%);
}
.guide_now {
	position: absolute;
	left: 0;
	top: -15px;
	width: 100%;
	display: flex;
	justify-content: center;
}
.guide_now .balloon::after {
	content: '';
	position: absolute;
	top: 100%;
	left: calc(50% + 6px);
	margin-left: -15px;
	border: 6px solid transparent;
	border-top: 8px solid #ffcd00;
	z-index: 2;
}
.guide_now .balloon::before {
	content: '';
	position: absolute;
	top: calc(100% + 2px);
	left: calc(50% + 6px);
	margin-left: -15px;
	border: 6px solid transparent;
	border-top: 8px solid #000000;
	z-index: 2;
}
.guide_now .balloon span {
	position: relative;
	z-index: 2;
	overflow: hidden;
	border-radius: 50px;
	border: solid 2px #000000;
	background-color: #ffcd00;
	color: #ffffff;
	line-height: 1px;
	padding: 2px 10px;
	text-shadow: 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000,
		0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000,
		0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000;
	font-weight: bold;
	font-size: 14px;
}

.tel_number {
	font-size: 28px;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
	margin: 0 0 0px 0;
	font-weight: bold;
	color: #333333;
}
.tel_number::before {
	content: '';
	background-image: url(/assets/img/global/icon/tel.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	width: 20px;
	height: 20px;
	display: block;
}
.tel_info {
	font-size: 14px;
	margin-bottom: 10px;
	display: block;
	text-align: center;
}

.contact_btns {
	display: flex;
	justify-content: center;
	margin-bottom: 10px;
}
.contact_btns a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	line-height: 1;
	color: #000000;
	transition: all 300ms 0s ease;
}
.contact_btns a::before {
	content: '';
	background-image: url(/assets/img/global/icon/mail.svg);
	width: 20px;
	height: 25px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	margin: 0 8px 0 0;
}
.contact_btns a:hover {
	color: #ff4700;
	text-decoration: underline;
}
.visited_btns {
	display: flex;
	justify-content: space-between;
	margin: 0 0 10px 0;
}
.visited_btns button {
	position: relative;
	border: none;
	width: 136px;
	background-color: #514343;
	color: #ffffff;
	padding: 10px 0;
	border-radius: 6px;
	box-shadow: 0 2px 3px 0 rgb(0 0 0 / 28%);
	line-height: 1;
	top: 0;
	transition: all 100ms 0s ease;
}
.visited_btns button:hover {
	top: 2px;
	box-shadow: 0 0px 2px 0 rgb(0 0 0 / 28%);
}
.visited_btns button.active {
	background-color: #fff6d0;
	color: #ff7507;
}
.visited_count {
	text-align: center;
	font-size: 14px;
	margin-bottom: 10px;
}
.shop_info_sub {
	margin: 0;
}
.shop_header_contact .js_keep {
	width: 100%;
	padding: 8px;
	font-weight: bold;
}

@media screen and (max-width: 760px) {
	.right_shop_info {
		margin-bottom: 5vw;
		box-shadow: none;
		padding: 4vw;
	}
	.shop_link {
		display: flex;
		align-items: flex-start;
		width: 100%;
		padding: 4vw 4vw 0vw 4vw;
	}
	.shop_lower_head .right {
		position: relative;
		right: 0;
		top: 0;
	}
	.shop_lower_page .shop_info_sub .shop_info_sub_body {
		width: 100%;
		display: none;
	}
	.shop_lower_head {
		padding: 0 0 4vw 0;
		flex-direction: column;
	}
	.shop_lower_head .left {
		width: 100%;
		min-height: auto;
	}
	.shop_lower_head .shop_info_sub {
		background-color: transparent;
		margin: 3vw 0 0 0;
		padding: 0 4vw;
		border-top: initial;
	}
	.shop_lower_head .left::before {
		display: none;
	}
	.shop_lower_head .shop_info_sub .shop_info_sub_body dl dd {
		font-size: 3.4vw;
	}
	.shop_header_contact {
		width: auto;
		padding: 6vw 4vw 4vw 4vw;
		margin: 0 4vw 3vw 4vw;
	}
	.tel_number {
		font-size: 8vw;
	}
	.tel_number::before {
		width: 7vw;
		height: 7vw;
	}
	.tel_info {
		text-align: center;
		font-size: 3.6vw;
		margin-bottom: 3vw;
		display: block;
	}
	.visited_btns button {
		width: 48%;
		padding: 3vw 0;
		font-size: 4vw;
	}
	.visited_count {
		font-size: 4vw;
		margin-bottom: 4vw;
	}
	.map_btn a {
		height: auto;
		padding: 3vw;
		font-size: 4vw;
	}
	.contact_btns a {
		font-size: 5vw;
	}
	.guide_now .balloon span {
		padding: 1vw 5vw;
		font-size: 4vw;
	}
	.shop_lower_head .shop_info_sub dl dt {
		padding: 0 1vw 0.6vw 1vw;
		margin-right: 1.5vw;
		font-size: 3.5vw;
		width: 18vw;
		min-width: 13vw;
		display: flex;
		flex-shrink: 0;
		justify-content: center;
		align-items: center;
	}
	.shop_lower_head .shop_info_sub dl {
		margin-right: 0;
		margin-bottom: 2vw;
	}
	.shop_lower_head .shop_info_sub dl dd {
		font-size: 3vw;
		display: flex;
		align-items: center;
		padding: 0 3vw 0 0;
		line-height: 1.2;
	}
	.shop_lower_head .shop_name {
		font-size: 4vw;
		margin-bottom: 2vw;
	}
	.shop_lower_head_icon {
		display: none;
	}
	.shop_lower_head .shop_address {
		font-size: 3.4vw;
		margin-bottom: 0;
		line-height: 1;
	}
	.shop_lower_head .shop_status {
		flex-direction: column;
		padding-top: 2.5vw;
	}
	.shop_lower_head .shop_status li {
		margin: 0 0 2vw 0;
		width: 100%;
	}
	.shop_lower_head .shop_status li:last-child {
		margin: 0;
	}
	.shop_lower_head .shop_info {
		width: 100%;
	}
	.shop_lower_head .shop_status .over_18 {
		height: auto;
		padding: 2vw;
		font-size: 3vw;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.shop_lower_head .shop_status .corona {
		height: auto;
		padding: 0;
		font-size: 3vw;
		justify-content: center;
	}
	.shop_lower_head .shop_status .corona a {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 100%;
		width: 100%;
		padding: 3vw;
	}
	.shop_lower_head .shop_genre {
		font-size: 2.5vw;
		margin-bottom: 1vw;
	}
}

/* ---------------------------------------- */
/* 店舗下層ページ用のレイアウト */
/* ---------------------------------------- */
.shop_nav {
	display: flex;
	list-style: none;
}

.shop_sp_link {
	display: flex;
	justify-content: space-between;
	background-color: #413838;
	align-items: center;
}
.shop_sp_link a.shop_top {
	font-size: 5vw;
	padding: 3vw 4vw;
	color: #ffffff;
	position: relative;
	display: flex;
	align-items: center;
}
.shop_sp_link a.shop_top::before {
	font-size: 7vw;
	content: '\f104';
	font-family: FontAwesome;
	margin-right: 2vw;
}
.shop_sp_link a.job {
	font-size: 4vw;
	color: #ffffff;
	padding: 2vw 3.5vw;
	border: solid 1px #ffffff;
	margin-right: 4vw;
	line-height: 1;
}

/* ---------------------------------------- */
/* 店舗下層ページ用のレイアウト */
/* ---------------------------------------- */
.shop_main {
	background-color: #fff0b0;
	background-image: repeating-linear-gradient(-45deg, #ffec9c, #ffec9c 25px, transparent 0, transparent 50px);
	padding: 30px 0 60px;
}
.shop_detal_body > .left {
	min-width: 854px;
	width: 854px;
}
.shop_detal_body > .right {
	min-width: 316px;
	width: 316px;
	margin-left: 30px;
}
.shop_detal_body > .right aside > *:first-child{
	margin-top: 0;
}
.shop_detal_body > .right aside > *:nth-child(2){
	margin-top: 30px;
}

.shop_detal_body {
	display: flex;
	margin-bottom: 100px;
	flex-direction: row;
	align-items: flex-start;
}

.shop_detal_body._is_shop_top .left{
	background-color: #fffbf6;
}

@media screen and (max-width: 760px) {
	.shop_main {
		padding: 0;
	}
	.shop_detal_body {
		flex-direction: column;
		margin-bottom: 0vw;
		align-items: initial;
	}
	.shop_detal_body > .left {
		width: 100%;
		margin-bottom: 0;
		min-width: auto;
	}
	.shop_detal_body > .right {
		margin-left: 0;
		padding-top: 10vw;
		width: 100%;
		background-color: #fffbf6;
	}
	.shop_detal_body > .right aside > *{
		margin-top: var(--shop_sp_basic_margin);
	}

	.shop_detal_body > .right aside > :nth-child(2){
		margin-top: var(--shop_sp_basic_margin);
	}

	.shop_detal_body .breadcrumb{
		margin-bottom: 0;
		background-color: #fffbf6;
	}
	.shop_detal_body .breadcrumb ol li,
	.shop_detal_body .breadcrumb ol li a{
		color: #525252;
		font-size: 3vw;
	}
	.breadcrumb ol li, .breadcrumb ol li a{
		font-size: 3vw;
	}
}

/* ---------------------------------------- */
/* 店舗のグローバルメニュー */
/* ---------------------------------------- */
/*newデザイン。ブロックタイプのshopメニュー*/
.shop_menu_nav{
	display: flex;
	flex-direction: row;
	margin-top: 35px;
}
._is_shop_top .shop_menu_nav{
	margin-bottom: 100px;
}
.shop_menu_nav.is_line{
	margin-top: 0;
	margin-bottom: 0;
}
.shop_menu_nav li{
	background-color:#514343;
	border-radius: var(--basic_radius);
	margin-left: 10px;
	padding: 12px;
	flex: 1;
	position: relative;
}
.shop_menu_nav.is_line li{
	min-height: 76px;
}

.shop_menu_nav li .set_price{
	position: absolute;
	font-weight: bold;
	font-size: 12px;
	text-shadow: 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000;
	color: #ffffff;
	background-color: #ffd600;
	border: solid 2px #000000;
	line-height: 1;
	padding: 3px 10px;
	left: 50%;
	top: -11px;
	margin-left: -51.4px;
}

.shop_menu_nav li:first-child{
	margin-left: 0;
}
.shop_menu_nav.is_line li.active a{
	background-color: #fff;
	color: #514343;
	border-radius: 5px;
	padding: 10px;
}
.shop_menu_nav li a{
	font-weight: bold;
	font-size: 11px;
	color: #fff;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	white-space: nowrap;
	line-height: 1;
}
.shop_menu_nav li a strong{
	font-size: 16px;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 5px;
}
.shop_menu_nav li a:hover{
	opacity: 0.8;
}
.shop_menu_nav .recruit_btn a{
	border-radius: 5px;
	background-color: #ff98b7;
}
.shop_menu_nav .recruit_btn a div{
	display: flex;
	align-items: center;
	justify-content: center;
}
.shop_menu_nav .recruit_btn a div img{
	margin-left: 3px;
}

.shop_nav_block {
	background-color: #514343;
}
.shop_nav {
	display: flex;
}
.shop_nav li {
	flex-grow: 1;
	text-align: center;
	position: relative;
	display: flex;
	align-items: center;
}
.shop_nav li::after {
	content: '';
	display: block;
	background-color: #695757;
	width: 2px;
	height: 70%;
	position: absolute;
	right: -1px;
}
.shop_nav li:last-child::after {
	display: none;
}
.shop_nav li a {
	display: flex;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 18px 0;
	color: #ffffff;
	font-weight: bold;
	text-decoration: none;
	transition: all 500ms 0s ease;
}
.shop_nav li a:hover {
	background-color: rgba(255, 255, 255, 0.2);
}
.shop_nav li.active a,
.shop_nav li.active a:hover {
	color: #ffd600;
}
.shop_nav li.active::before {
	content: '';
	position: absolute;
	display: block;
	z-index: 1;
	border-style: solid;
	border-color: var(--color_btn_white_hover) transparent;
	border-width: 0px 8px 10px 8px;
	bottom: 0;
	left: calc(50% - 4px);
}
.shop_nav li span.set_price {
	position: absolute;
	font-weight: bold;
	font-size: 12px;
	text-shadow: 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000,
		0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000,
		0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000, 0 0 2px #000000;
	color: #ffffff;
	background-color: #ffd600;
	border: solid 2px #000000;
	line-height: 1;
	padding: 3px 10px;
	left: calc(50% - 54px);
	top: -11px;
}

@media screen and (max-width: 760px) {
	.shop_nav_block{
		background-color: #f2e6cb;
	}
	.shop_menu_nav{
		flex-wrap: wrap;
		margin: 0;
		padding:2vw 4vw 4vw 4vw;
		justify-content: space-between;
	}
	.shop_menu_nav:after{
		content: "";
		display: block;
		width: 32%;
		height: 0;
	}
	.shop_menu_nav li{
		flex: initial;
		width: 32%;
		padding: 3vw 2vw;
		margin-left: 0;
		margin-top: 2vw;
	}
	.shop_menu_nav.is_line li{
		min-height: initial;
	}

	.shop_menu_nav li:after{
		content: "";
		display: block;
		width: 32%;
		height: 0;
	}
	.shop_menu_nav li a{
		font-size:2.4vw;
		white-space: nowrap;
	}
	.shop_menu_nav li a strong{
		font-size: 4vw;
		margin-bottom: 1vw;
	}
	.shop_menu_nav li.active a{
		background-color: #514343;
		color: #fff;
		padding: 0;
	}
	.shop_menu_nav li .set_price{
		display: none;
	}
	.shop_menu_nav.is_line li.active a{
		background-color: #514343;
		color: #fff;
		padding: 0;
		border-radius: initial;
	}
	.shop_nav li:first-child {
		display: none;
	}
	.shop_nav li a {
		padding: 1.5vw 0 1.5vw 0;
		font-size: 2.5vw;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.shop_nav li::after {
		width: 1px;
		height: 100%;
		right: 0;
	}
	.shop_nav li a figure {
		max-width: 55%;
		max-width: 10vw;
	}
	.shop_nav li a figure img {
		width: 100%;
		display: block;
	}
	.shop_nav li a span {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 8vw;
		line-height: 1.2;
		font-size: 3vw;
		font-weight: bold;
	}
	.shop_nav li:nth-child(3) a span {
		font-size: 2.4vw;
	}
	.shop_nav li span.set_price {
		display: none;
	}
}

/* ---------------------------------------- */
/* 店舗の下層ページの見出しH1 */
/* ---------------------------------------- */
.shop_header {
	background-size: 400% 400%;
	animation: gradient 5s ease infinite;
	margin-bottom: 0;
	/* background-color: #ffcd00; */
	padding: 40px 0 0 0;
	position: relative;
}
.shop_header::before {
	content: '';
	display: block;
	width: 100%;
	height: 120px;
	background-color: #ffe061;
	position: absolute;
	left: 0;
	top: 0;
}
.shop_detal_body .shop_header::before {
	display: none;
}
.shop_detal_body .shop_header {
	background-color: transparent;
	padding: 0;
}

.shop_page_title {
	background-color: #ffefef;
}
.shop_detal_head {
	display: flex;
	flex-direction: column-reverse;
	margin-bottom: 0px;
	padding: 0 0 20px 0;
}
.shop_detal_head h1,
.shop_detal_head h2 {
	font-size: 14px;
}
.shop_detal_head h2 {
	font-weight: bold;
}
.page_mian_title {
	font-size: 60px;
	font-weight: bold;
	line-height: 1;
	text-shadow: 4px 5px 0px #ffffff, 3px 4px 0px #ffffff, 2px 3px 0px #ffffff, 1px 2px 0px #ffffff, 1px 0px 0px #ffffff;
}
.head_block {
	display: flex;
	flex-direction: row-reverse;
	justify-content: center;
	text-align: center;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
@media screen and (max-width: 760px) {
	.shop_header {
		margin-bottom: 0;
		padding: 0;
	}
	.page_mian_title {
		font-size: 8vw;
		margin-bottom: 2vw;
	}
	.shop_header::before {
		display: none;
	}
	.shop_detal_head h1{
		font-size: 3vw;
	}
}

/* ------------------------------------- */
/* 特典サービス・おすすめ共通 */
/* ------------------------------------- */
.benefit,
.reco_list {
	display: flex;
	flex-wrap: wrap;
	padding: 0 10px;
}
:is(.benefit, .reco_list) li {
	width: 19%;
	margin: 0 1.25% 1.25% 0;
	background-color: #eeeeee;
	border-radius: 3px;
	text-align: center;
	font-size: 14px;
	padding: 5px 0;
	color: #b7b7b7;
}
:is(.benefit, .reco_list) li.active {
	background-color: #c4a982;
	color: #ffffff;
}
:is(.benefit, .reco_list) li:nth-of-type(5n) {
	margin-right: 0;
}
@media screen and (max-width: 760px) {
	.benefit,
	.reco_list {
		padding: 0 0;
	}
	:is(.benefit, .reco_list) li {
		width: 32%;
		margin: 0 2% 2% 0;
		font-size: 2.3vw;
		padding: 1.5vw 0;
	}
	:is(.benefit, .reco_list) li:nth-of-type(5n) {
		margin: 0 2% 2% 0;
	}
	:is(.benefit, .reco_list) li:nth-of-type(3n) {
		margin-right: 0;
	}
}

/* ------------------------------------- */
/* 特典サービス */
/* ------------------------------------- */
.benefit li span.icon {
	border-radius: 50%;
	overflow: hidden;
	background-color: #c4a982;
	width: 100%;
	height: 105px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}
.benefit li span.text {
	display: block;
	font-size: 13px;
	text-align: center;
	line-height: 1.2;
}
@media screen and (max-width: 760px) {
	.benefit li span.icon {
		width: 25vw;
		height: 25vw;
		margin-bottom: 2vw;
	}
	.benefit li span.text {
		font-size: 2.5vw;
	}
}

/* ------------------------------------- */
/* おすすめ */
/* ------------------------------------- */

/* ------------------------------------- */
/* お店の下層ページのヘッダー表示 */
/* ------------------------------------- */
.shop_info_header {
	position: relative;
	background-color: #ffcd00;
	padding: 40px 0;
}
.shop_info_header::before {
	content: '';
	display: block;
	width: 100%;
	height: 120px;
	background-color: #ffe061;
	position: absolute;
	left: 0;
	top: 0;
}

@media screen and (max-width: 760px) {
	.shop_lower_page .shop_info_header {
		padding: 0 0;
	}
	.shop_lower_page .shop_info_header .shop_lower_head .left {
		min-height: inherit;
	}
	.shop_lower_page .shop_info_header .shop_lower_head {
		padding: 0;
		background-color: #fffbf6;
	}
	.shop_lower_page .shop_info_header .shop_info_sub {
		display: none;
	}
	.shop_lower_page .shop_info_header .shop_link {
		background-color: #f2e6cb;
		padding: 4vw;
	}
	.shop_lower_page .lower_head_menu {
		display: flex;
		flex-direction: column-reverse;
	}
}



/*サイドの各ボックス------------------------------------*/
.shop_side_box{
	padding: 12px 15px 15px 15px;
	background-color: #ffffff;
}
.shop_side_box dt {
	font-size: 16px;
	font-weight: bold;
	color: #664c4c;
	line-height: 1.5;
	text-align: left;
	padding: 0 0 5px 0;
	border-bottom: solid 3px #bc9c70;
}
.shop_side_box > dd {
	margin-top: 10px;
}
/* 共通の見出し */
.shop_side_box ._lead_text{
	font-size: 16px;
	font-weight: bold;
	color: #664c4c;
}


@media screen and (max-width: 760px) {
	.shop_side_box{
		margin-top: var(--shop_sp_basic_margin);
	}
	.shop_side_box dt {
		/* font-size: var(--shop_sp_lead_font); */
		font-size: 5vw;
		border-bottom: initial;
		padding-bottom: 0;
		line-height: 1;
	}
	.shop_side_box > dd{
		margin-top: 3vw;
	}
	.shop_side_box ._lead_text{
		font-size: 4vw;
	}
}


/* 最新情報(latest_info)----------------------- */
.shop_new {
	border-radius: var(--basic_radius);
	border: 1px solid #bc9c70;
}
.shop_new > dd {
	background-color: #ffffff;
}
.shop_new dd > ul > li {
	margin-bottom: 15px;
	border-bottom: solid 1px #dddddd;
	padding-bottom: 15px;
}
.shop_new dd > ul > li:last-child {
	margin-bottom: 0;
	border-bottom: none;
	padding-bottom: 0;
}
.shop_new dd > ul > li a {
	display: block;
	background-color: #ffffff;
	color: #333333;
}
.shop_new_head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	margin-bottom: 8px;
}
.shop_new_head .category {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 4px 6px;
	line-height: 1;
	width: 70px;
	color: #fff;
	font-size: 11px;
}
.shop_new_head .category.news {
	background-color: #5c85fc;
}
.shop_new_head .category.blog {
	background-color: #b98651;
}
.shop_new_head .category.cast {
	background-color: #e28686;
}
.shop_new_head .category.gallery {
	background-color: #f3a73a;
}
.shop_new_body {
	display: flex;
	align-items: center;
}
.shop_new_body .type_1 p {
	font-size: 14px;
	line-height: 1.3;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}
.shop_new_image {
	overflow: hidden;
	display: block;
	width: 85px;
	height: 85px;
	border-radius: 4px;
	flex-shrink: 0;
}
.shop_new_image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.type_1 .shop_new_image,
.type_2 .shop_new_image{
	margin-right: 15px;
}
.shop_new .type_1 {
	display: flex;
	align-items: center;
}
.shop_new_body dt{
	border-bottom: initial;
}
.shop_new_body ul {
	display: flex;
}
.shop_new_body ul img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.new_item_news:hover {
	background-color: #e9f3ff;
	box-shadow: 0 0 0 6px #e9f3ff;
}
.new_item_blog:hover {
	background-color: #d6ffe4;
	box-shadow: 0 0 0 6px #d6ffe4;
}
.new_item_cast:hover {
	background-color: rgb(255 235 244);
	box-shadow: 0 0 0 6px rgb(255 235 244);
}
.new_item_gallery:hover {
	background-color: rgb(255 241 228);
	box-shadow: 0 0 0 6px rgb(255 241 228);
}
.new_item_gallery ul li {
	margin-right: 15px;
}
.new_item_gallery ul li:last-child {
	margin-right: 0;
}

.type_2 {
	display: flex;
}
.type_2 dt {
	font-size: 14px;
	margin-bottom: 7px;
	font-weight: normal;
	max-width: 100%;
	overflow: hidden;
}
.type_2 dt span {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	max-width: 100%;
	line-height: 1.2;
}
.type_2 dd {
	padding: 0;
	border: none;
	background-color: transparent;
}
.type_2 dd p {
	font-size: 12px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}
.shop_new_cast_detail dt span{
	color: #333;
	font-weight: bold;
}
@media screen and (max-width: 760px) {

	.shop_new {
		box-shadow: none;
		border: none;
		margin-top: 11vw;
	}
	.shop_new dt {
		font-size: 5vw;
		font-weight: bold;
		line-height: 1;
		border-bottom: initial;
	}
	.shop_new dd {
		padding: 3.6vw;
		margin-top: 4vw;
		border: 2px solid #bc9c70;
  		border-radius: 2vw;
	}
	.shop_new_head .category {
		border-width: 1px;
		font-weight: bold;
		font-size: 3.8vw;
		width: 25vw;
		padding: 1vw 3vw 1.4vw 3vw;
		line-height: 1;
	}
	.shop_new_head {
		font-size: 4vw;
		margin-bottom: 2vw;
	}
	.shop_new_image {
		min-width: 20vw;
		width: 24vw;
		height: 24vw;
		margin-right: 3vw;
	}
	.shop_new_body .type_1 p {
		font-size: 3.6vw;
		line-height: 1.5;
	}
	.shop_new_cast_detail,
	.shop_new_cast_detail > dl {
		width: 100%;
	}
	.type_2 {
		width: 100%;
	}
	.type_2 dd p {
		font-size: 3.5vw;
	}
	.type_2 dt {
		font-size: 4vw;
	}
	.new_item_news:hover,
	.new_item_blog:hover,
	.new_item_cast:hover,
	.new_item_gallery:hover {
		background-color: initial;
		box-shadow: initial;
	}
	.shop_new_cast_detail dd{
		border: initial;
		padding: initial;
		border-radius: initial;
		margin-top: 2vw;
	}
	.new_item_gallery ul li{
		margin-right: 2%;
	}
}


/*サイドのクーポン --------------------------------------*/
.shop_side_coupon{
	/* margin-top: 30px; */
}
.shop_side_coupon a{
	font-size: var(--top_font_s);
	font-weight: bold;
	color: #664c4c;
	display: block;
	width: 100%;
	height: auto;
	padding: 2px;
	border: 1px solid #fad641;
	border-radius: var(--basic_radius);
	background-color: #fff;
	margin-top: 10px;
}
.shop_side_coupon a:hover{
	opacity: 0.8;
}
.shop_side_coupon a ._inner{
	width: 100%;
	height: 100%;
	min-height: 45px;
	background-color: #fff0b0;
	background-image: repeating-linear-gradient(-45deg, #ffec9c, #ffec9c 25px, transparent 0, transparent 50px);
	padding: 5px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: var(--basic_radius);
	font-weight: bold;
	font-size: var(--top_font_s);
}
.shop_side_coupon a ._inner picture{
	display: flex;
	align-items: center;
	justify-content: center;
}
.shop_side_coupon a ._inner img{
	flex-shrink: 0;
	margin-left: 5px;
}

@media screen and (max-width: 760px) {
	.shop_side_coupon{
		margin-top: var(--shop_sp_basic_margin);
		padding: 4vw;
	}
	.shop_side_coupon a{
		padding: 0.4%;
  		margin-top: 2vw;
	}
	.shop_side_coupon a ._inner{
		min-height: auto;
		padding: 2vw;
		font-size: 4vw;
	}
	.shop_side_coupon a ._inner img{
		margin-left: 2vw;
		width: 6vw;
		height: 6vw;
	}
}

/* Twitter --------------------------------------*/
.twitter_block {
	margin-top: 30px;
	overflow: hidden;
	height: 600px;
	background-color: #fff;
	border-radius: 12px;
}
.twitter_block iframe {
	display: block !important;
}

/*サイドの下部、お店の情報 --------------------------------------*/

.right_shop_info {
	margin-top: 30px;
}
.right_shop_info dd {

}
.right_shop_info ._lead_text{
	margin-top: 10px;
	display: inline-block;
}
.right_shop_info ._lead_text:first-child{
	margin-top: 0;
}

.right_shop_info ._access{
	font-size: 14px;
	color:#333333;
	display: inline-block;
}
.right_shop_info .side_map_area{
	margin-top: 10px;
	height: 236px;
}
.right_shop_info .shop_info_sub dl {
	margin-bottom: 20px;
}
.right_shop_info .shop_info_sub dl:last-child {
	margin-bottom: 0;
}
.right_shop_info dd .map_btn {
	margin-bottom: 10px;
}

.shop_side_box .side_first_table{
	margin-top: 15px;
	border-right: solid 1px #e1d4c0;
	/* border-bottom: solid 1px #e1d4c0; */
	border-top: solid 1px #e1d4c0;
}
.shop_side_box .shop_info_table th{
	font-size: var(--top_font_s);
	padding: 10px;
}
.shop_side_box .shop_info_table td{
	font-size: var(--top_font_s);
	padding: 8px 5px;
}
.shop_side_box .shop_info_table ._tel_link{
	color: #333333;
}
.shop_side_box ._sub_info{
	font-size: 12px;
	color: #333;
	display: inline-block;
	margin-top: 10px;
}
.shop_side_box ._contact_btn{
	margin-top: 15px;
}
.shop_side_box ._contact_btn img{
	margin-right: 3px;
	margin-top: 2px;
}
.shop_side_box .side_feature_info{
	margin-top: 20px;
	border-top: solid 1px #e1d4c0;
}
.shop_side_box .side_feature_info .shop_info_table th{
	font-size: 12px;
	padding: 3px 0;
}
.shop_side_box .side_feature_info .shop_info_table .brand_logo_img{
	height: 18px;
}
.shop_side_box .side_feature_info .shop_info_table._mid tr{
	width: 95px;
}
.shop_side_box .side_feature_info .shop_info_table._mid th{
	width: 50%;
}
.shop_side_box .side_feature_info .shop_info_table._mid td{
	width: 50%;
	padding: 3px 0;
}
.shop_side_box .side_feature_info .shop_info_table th.min_font{
	font-size: 10px;
}
.shop_side_box .side_feature_info .shop_info_table td{
	font-size: 11px;
}
.shop_side_box._shop_tags_wrap{
	margin-top: 30px;
}
.shop_side_box .shop_tags{
	flex-wrap: wrap;
}
.shop_side_box .shop_tags{
	margin-bottom: 10px;
}
.shop_side_box.official_site_info{
	margin-top: 30px;
}
.shop_side_box.official_site_info ul{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.shop_side_box.official_site_info ul li{
	width: 49%;
}
.shop_side_box.official_site_info ul li:nth-child(2n){
	margin-left: 5px;
}
.shop_side_box.official_site_info ul li:nth-child(n+3){
	margin-top: 5px;
}
.shop_side_box.official_site_info ul li a{
	color:#2b7bb9;
	font-size: 13px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	white-space: nowrap;
}
.shop_side_box.official_site_info ul li a:hover{
	opacity: 0.8;
}
.shop_side_box.official_site_info ul li a img{
	margin-right: 5px;
}
@media screen and (max-width: 760px) {
	.shop_side_box{
		background-color: initial;
		padding: 0 4vw;
	}
	.right_shop_info{
		/* margin-top:var(--shop_sp_basic_margin); */
		margin-top: 0 !important;
	}
	.right_shop_info ._access{
		font-size: 3.4vw;
	}
	.right_shop_info ._lead_text:first-child{
		margin-top: 2vw;
	}
	.right_shop_info ._lead_text{
		margin-top: 2vw;
		display: block;
	}
	.right_shop_info .side_map_area{
		margin-top: 2vw;
		height: 65vw;
	}
	.shop_side_box .side_first_table{
		margin-top: 4vw;
	}
	.shop_side_box .shop_info_table th,
	.shop_side_box .shop_info_table td{
		padding: 2vw;
		font-size: 3.4vw;
	}
	.shop_side_box ._sub_info
	{
		margin-top: 1.6vw;
		font-size: 3vw;
	}
	.shop_side_box .side_feature_info{
		margin-top: 10vw;
	}
	.shop_side_box .side_feature_info .shop_info_table th,
	.shop_side_box .side_feature_info .shop_info_table td,
	.shop_side_box .side_feature_info .shop_info_table th.min_font
	{
		font-size: 3vw;
		line-height: 1.6;
	}
	.shop_side_box .side_feature_info .shop_info_table th{
		padding: 2vw 0;
	}
	.shop_side_box .side_feature_info .shop_info_table._mid td{
		padding: 2vw 0;
	}
	.shop_info_table._short{
		min-height: 15vw;
	}
	.shop_info_table._short th:before{
		left: 45%;
	}
	.shop_side_box .side_feature_info .shop_info_table .brand_logo_img{
		height: 4.6vw;
	}
	.shop_side_box ._contact_btn picture{
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.shop_side_box ._contact_btn img{
		width: 5vw;
		height: 4vw;
		margin-top: 0;
		margin-right: 0.6vw;
	}
	.shop_side_box._shop_tags_wrap{
		margin-top: var(--shop_sp_basic_margin);
	}
	.shop_side_box .shop_tags{
		margin-bottom:3vw;
		margin-top: 0vw;
	}
	.shop_side_box .shop_tags li{
		margin-top: 2vw;
		margin-right: 2vw;
		font-size: 3.6vw;
		padding: 2vw 2.6vw;
		border-radius: 4vw;
	}
	.shop_side_box.official_site_info{
		margin-top: 10vw !important;
	}
	.shop_side_box.official_site_info ul li a{
		font-size: 3.4vw;
		letter-spacing: 1px;
	}
	.shop_side_box.official_site_info ul li:nth-child(2n){
		margin-left: 2%;
	}
	.shop_side_box.official_site_info ul li:nth-child(n+3){
		margin-top: 2%;
	}
	.shop_side_box.official_site_info ul li a img{
		margin-right: 2vw;
		width: 6vw;
		height: auto;
	}
}


/* 右サイドのキープ */
.side_keep {
	margin: 20px 0 0 0;
}
.side_keep .js_keep {
	width: 100%;
	padding: 12px;
	font-size: 16px;
	font-weight: bold;
}
@media screen and (max-width: 760px) {
	.side_keep {
		margin: 4vw 0 0 0;
	}
	.side_keep .js_keep {
		padding: 4vw;
		font-size: 4.6vw;
		border-radius: var(--basic_radius);
	}
}


/* QRコード */
.shop_qrcode {
	margin-top: 30px;
	background-color: #ffffff;
	border: 1px solid #e1d4c0;
	display: flex;
	padding: 10px;
	align-items: center;
	font-weight: bold;
	position: relative;
}
#shop_qrcode canvas {
	display: block;
	height: 84px;
	width: 84px;
	margin: auto;
}
.shop_qrcode_text {
	font-weight: bold;
	line-height: 1.2;
	color: #664c4c;
	font-size: 24px;
	margin-left: 10px;
}
.qr_code_logo {
	position: absolute;
	top: -10px;
	right: -5px;
}
@media screen and (max-width: 760px) {
	.shop_qrcode {
		display: none;
	}
}

/* スマホフッター */
@media screen and (min-width: 760px) {
	.sp_shop_footer {
		display: none;
	}
}
@media screen and (max-width: 760px) {
	.sp_shop_footer {
		position: fixed;
		display: flex;
		align-items: center;
		z-index: 20;
		bottom: 0;
		left: 0;
		background-color: rgba(255, 255, 255, 0.8);
		width: 100%;
		height: 16vw;
		box-shadow: 0 0 2vw 0 #000000;
	}
	.sp_shop_footer ul {
		display: flex;
		height: 100%;
		width: 100%;
	}
	.sp_shop_footer ul li {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-grow: 1;
		border-right: 1px solid #000000;
		height: 100%;
	}
	.sp_shop_footer ul li:last-child {
		border: none;
	}
	.sp_shop_footer ul a {
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 3vw;
		padding: 0 1.9vw;
		height: 100%;
		color: #333333;
		width: 100%;
	}
	.sp_shop_footer ul a span.icon {
		width: 10vw;
		height: 10vw;
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
	}
	.sp_shop_footer ul a span.icon img {
		display: block;
		width: auto;
		height: 100%;
	}
	.sp_shop_footer ul a span.icon.icon_1 {
		background-image: url(/assets/img/global/icon/map_b.svg);
	}
	.sp_shop_footer ul a span.icon.icon_2 {
		background-image: url(/assets/img/global/icon/phone.svg);
	}
	.sp_shop_footer ul a span.icon.icon_3 {
		background-image: url(/assets/img/global/icon/tel.svg);
		margin-right: 1vw;
	}
}

/* ------------------------------------- */
/* ショップのテーブルの共通デザイン */
/* ------------------------------------- */
/*縦*/
.shop_table {
	border-collapse: collapse;
	width: 100%;
}
.shop_table th,
.shop_table td {
	padding: 8px;
	border: solid 1px #e1d4c0;
}
.shop_table th {
	background-color: #efe5d7;
	width: 200px;
}
.shop_table td {
	background-color: #ffffff;
}

.shop_foot_dl {
	margin-bottom: 30px;
}
.shop_foot_dl dt {
	color: #664c4c;
	font-weight: bold;
	font-size: 18px;
}

.brand_logo_img{
	width: auto;
	height: 25px;
	margin-right: 5px;
	margin-top: 8px;
	vertical-align: middle;
}

.shop_table td.brand_wrap{
	padding-top: 0;
}


@media screen and (max-width: 760px) {
	.shop_table tbody {
		display: flex;
		flex-direction: column;
	}
	.shop_table tbody tr {
		display: flex;
		flex-direction: column;
	}
	.shop_table th,
	.shop_table td {
		padding: 2vw;
		border-top: none;
		width: 100%;
	}
	.shop_table tbody tr:first-child th {
		border-top: solid 1px #e1d4c0;
	}
	.shop_table td {
		border-top: none;
	}
	.brand_logo_img{
		height: 8vw;
		margin-right: 2%;
		margin-top: 2vw;
	}

}

/* 横 */
.shop_table_row {
	display: block;
	width: 100%;
	margin-top: 20px;
}
.shop_table_row tbody {
	display: flex;
}
.shop_table_row tbody tr {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.shop_table_row tbody th,
.shop_table_row tbody td {
	padding: 8px;
	border: solid 1px #e1d4c0;
	text-align: center;
	border-right: none;
	background-color: #ffffff;
}
.shop_table_row tbody th {
	background-color: #efe5d7;
}
.shop_table_row tbody td {
	border-top: none;
}
.shop_table_row tbody tr:last-child th,
.shop_table_row tbody tr:last-child td {
	border-right: solid 1px #e1d4c0;
}
@media screen and (max-width: 760px) {
	.shop_table_row {
		margin-top: 3vw;
	}
	.shop_table_row tbody {
		flex-wrap: wrap;
	}
	.shop_table_row tbody tr {
		min-width: 30%;
	}
	.shop_table_row tbody th,
	.shop_table_row tbody td {
		padding: 2vw;
	}
}

/* ------------------------------------- */
/* スマホ共通 */
/* ------------------------------------- */
@media screen and (max-width: 760px) {
	.copyright {
		padding: 4vw 0 21vw 0;
	}
}


/*基本情報-----------------------*/
.shop_basic_infomation h4{
	color:#5a3e3e;
	font-size: 20px;
	font-weight: bold;
	margin-top: 30px;
	line-height: 1;
}
.shop_basic_infomation .shop_address{
	font-size: 16px;
	color:#5a3e3e;
	line-height: 1;
	margin-top: 12px;
	display: inline-block;
}
.shop_basic_infomation ._visit_info {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin-top: 10px;
}
.shop_basic_infomation ._visit_info dl{
	margin-right: 20px;
	margin-top: 10px;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.shop_basic_infomation ._visit_info dt{
	background-color: var(--color_btn_bg);
	border: 1px solid #8e8e8e;
	color: #333;
	font-weight: bold;
	font-size: var(---top_font_s);
	line-height: 1;
	padding: 7px 10px;
	flex-shrink: 0;
}
.shop_basic_infomation ._visit_info dd{
	margin-left: 10px;
	line-height: 1.3;
}

/*基本情報詳細-----------------------*/
.shop_detail_wrap{
	margin-top: 20px;
	display: flex;
	flex-direction: row;
	justify-content:space-between;
}
.shop_detail_wrap .feature_info{
	width: 350px;
	border-top: solid 1px #e1d4c0;
}


/*基本情報詳細右側-----------------------*/
.shop_detail_wrap .actions{
	border: solid 1px #e1d4c0;
	background-color: #fffdf3;
	height: 100%;
	width: 400px;
	height: auto;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.shop_detail_wrap .actions > span{
	color:#333333;
	font-size: 12px;
	line-height: 1.5;
	letter-spacing: 1px;
	text-align: center;
}
.shop_detail_wrap .actions > span strong{
	font-size: 20px;
	font-weight: bold;
	color: #5a3e3e;
}

.shop_detail_wrap .actions .tel_area {
	margin-bottom: 15px;
}

.shop_detail_wrap .actions ._btns {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.shop_detail_wrap .actions ._btns li{
	width: 360px;
}
.shop_detail_wrap .actions ._btns li .primary_btn{
	margin: initial;
}
.shop_detail_wrap .actions ._btns li .primary_btn img{
	margin-right: 6px;
}

.shop_detail_wrap .actions ._btns li:nth-child(2){
	margin-top: 20px;
}


/*snsタイムライン---------------*/
.sns_list ul{
	display: flex;
	flex-direction: row;
	overflow-y: scroll;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.sns_list ul::-webkit-scrollbar{
	display: none;
}

.sns_list .tweet_img{
	margin: 0px;
	padding: 0 10px;
}
.sns_list ul li img{
	height: 240px;
	width: auto;
	border-radius: var(--basic_radius);
	box-shadow: var(--brown_box_shadow);
}
.sns_slick > li:not(:first-child){
	display: none;
}
.sns_slick_reverse > li:not(:first-child){
	display: none;
}
.sns_list .slick-list{
	overflow-y: auto;
}
.sns_list .slick-slide{
	padding: 0px 0px 3px 0;
}
.sns_list .sns_icon_links{
	display: flex;
	margin-top: 20px;
}
.sns_list .sns_icon_links a{
	color: #2b7bb9;
	font-size: 14px;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}

.sns_list .sns_icon_links a:hover{
	opacity: 0.8;
}
.sns_list .sns_icon_links a img{
	margin-right: 10px;
}
.sns_list .sns_icon_links a:nth-child(2){
	margin-left: 20px;
}

@media screen and (max-width: 760px) {
	.sns_list{
		padding: 0;
	}
	.sns_list .shop_sub_head_text{
		padding: 0 4vw;
	}
	.sns_list ul li img{
		height: 35vw;
	}
	.sns_list .tweet_img{
		padding: 0 2vw;
	}
	.sns_list .sns_icon_links{
		margin-top: 2vw;
		padding-left: 4vw;
	}
	.sns_list .sns_icon_links a{
		font-size: 3vw;
		letter-spacing: 1px;
	}
	.sns_list .sns_icon_links a img{
		margin-right: 2vw;
	}
	.sns_list .primary_btn{
		width: 90% !important;
	}
}

/*キャストリスト*/
/* shopのトップ、キャストリストで利用 */
/*キャストリスト、キャストランキングリストで使用*/
.shop_cast_list li ._name{
	font-size: var(--top_font_m);
	font-weight: bold;
	color: #5a3e3e;
	line-height: 1;
	margin-top: 10px;
	display: block;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.shop_cast_list li ._comment{
	color: #525252;
	font-size: 14px;
	line-height: 1;
	margin-top: 10px;
	text-align: center;
	display: block;
}
.shop_cast_list a:hover{
	opacity: 0.8;
}
.cast_list_figure{
	width: 238px;
	height: 238px;
	position: relative;
}
.cast_list_figure img{
	width: 100%;
	height: 100%;
	border-radius: var(--basic_radius);
	border: 1px solid #bc9c70;
	object-fit: cover;
}
.cast_list_figure ._work{
	position: absolute;
	font-size: 14px;
	color: #fff;
	line-height: 1;
	left: 10px;
	top: 8px;
	padding: 4px 10px 5px 10px;
	border-radius: 20px;
}
.cast_list_figure ._work.man{
	background-color: var(--color_woman);
}
.cast_list_figure ._work.woman{
	background-color: var(--color_man);
}

/*キャストランキングのコンテンツ*/
.cast_ranking_list .rank{
	font-size: 22px;
	line-height: 1;
	font-weight: bold;
	color:#5a3e3e;
	text-align: center;
}
.cast_ranking_list .rank img{
	margin-right: 5px;
}
.cast_ranking_list .rank strong{
	font-size: 34px;
	line-height: 1;
	font-weight: bold;
	font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.cast_ranking_list .cast_list_figure{
	margin-top: 10px;
}

@media screen and (max-width: 760px) {
	.cast_list_figure{
		width: 100%;
		height: 28.6vw;
	}
	.shop_cast_list li ._name{
		margin-top: 1.4vw;
	}
	.cast_ranking_list .rank{
		font-size:3.4vw;
	}
	.cast_ranking_list .rank img{
		width: 5vw;
		height: auto;
		margin-right: 1vw;
	}
	.cast_ranking_list .rank strong{
		font-size: 5vw;
	}
}



/*キャストページ専用の調整*/
.shop_cast_list._cast_page{
	padding: 0 37px;
}
.shop_cast_list._cast_page .cast_list_ul{
	display: flex;
	flex-wrap: wrap;
	justify-content:space-between;
	margin-top: 25px;
}
.shop_cast_list._cast_page .cast_list_ul li{
	max-width: 180px;
	margin-bottom: 20px;
}
.shop_cast_list._cast_page .cast_list_ul{
}

/* 最後のコンテンツを左寄せに */
.shop_cast_list._cast_page .cast_list_ul:after {
	content: "";
	display: block;
	width: 180px;
	height: 0;
}
.shop_cast_list._cast_page .cast_list_ul:before {
	content: "";
	display: block;
	width: 180px;
	height: 0;
	order: 1;
}
.shop_cast_list._cast_page .cast_list_ul li a{
	width: 100%;
	display: block;
}
.shop_cast_list._cast_page .cast_list_figure{
	width: 180px;
	height: 180px;
}

@media screen and (max-width: 760px) {
	.shop_cast_list._cast_page{
		padding: 0 4vw;
	}
	.shop_cast_list._cast_page .cast_list_ul{
		margin-top: 4vw;
		justify-content: flex-start;
	}
	.shop_cast_list._cast_page .cast_list_ul li{
		max-width: 32%;
		width: 31%;
		margin-bottom: 4vw;
		margin-right: 3.5%;
	}
	.shop_cast_list._cast_page .cast_list_ul li:nth-child(3n){
		margin-right: 0;
	}

	.shop_cast_list._cast_page .cast_list_figure{
		width: 100%;
		height: 28vw;
	}

	.shop_cast_list._cast_page .cast_list_ul:after {
		content:initial;
	}
	.shop_cast_list._cast_page .cast_list_ul:before {
		content:initial;
	}


}


