@charset "utf-8";
@import "cmn_reset.css";

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@500&display=swap');

/* ---------------------------------------------------------

	sushi-yamazaki.jp
	Date: 2020.10.02

	01. 基礎設計
	02. ページ構成
	03. ヘッダー
	04. フッター
	05. コンテンツ

--------------------------------------------------------- */

/* ---------------------------------------------------------

	01. 基礎設計

--------------------------------------------------------- */
html {
	color: #222;
	font-size: 2.667vw; /* 10/375px*100 */
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	height: 100%;
	position: relative;
	-webkit-font-smoothing: antialiased;
}

body {
	background: #fff url(../img/body_bg.png) center top/200px;
	font-size: 1.3rem;
	height: 100%;
}

/*===============================================
	基礎設計：768px未満
===============================================*/
@media screen and (max-width:767px) {
	.only_pc {display: none;} /* PC時のみ表示する要素に */
}

/*===============================================
	基礎設計：768px以上
===============================================*/
@media screen and (min-width:768px) {
	html {font-size: 0.71429vw;} /* 10/1400px*100 */
	.only_sp {display: none;} /* SP時のみ表示する要素に */
}

/*===============================================
	基礎設計：1400px以上
===============================================*/
@media screen and (min-width:1400px) {
	html {font-size: 10px;}
}



/* ---------------------------------------------------------

	02. ページ構成

--------------------------------------------------------- */
.cmn_wrapper {
	min-height: 100vh;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.cmn_container {
	margin: 0 auto;
	padding: 0 2.5rem;
	position: relative;
	width: 100%;
}

/*===============================================
	ページ構成：768px以上
===============================================*/
@media screen and (min-width:768px) {
	.cmn_wrapper {
		min-height: 100%;
		min-width: 100%;
	}

	.cmn_container {
		padding: 0 20rem;
	}
}

/*===============================================
	ページ構成：1400px以上
===============================================*/
@media screen and (min-width:1400px) {
	.cmn_container {
		max-width: 1400px;
	}
}



/* ---------------------------------------------------------

	03. ヘッダー

--------------------------------------------------------- */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
}

.header_title {display: none;}

nav {
	background-color: #fff;
	border-radius: 0.5rem;
	box-shadow: 0 0.3rem 0.6rem rgba(1,1,1,0.16);
	opacity: 0;
	padding: 3.0rem 0;
	position: absolute;
	top: 3.2rem;
	right: 0;
	transition: opacity 0.3s;
	width: 100%;
	z-index: 2;
}
nav.is-open {
	opacity: 1;
	pointer-events: auto;
}
.header_menu {
	margin: 0 auto;
	-ms-writing-mode: tb-rl;
			writing-mode: vertical-rl;
}
.header_menu li + li {
	margin-right: 2em;
}
.header_menu a {
	color: #222;
	font-size: 1.4rem;
	letter-spacing: 0.3em;
	text-decoration: none;
}
.header_menu_facebook img,
.header_menu_instagram img {
	height: 2.5rem;
	width: 2.5rem;
}

.header_switch {
	border-radius: 0.5rem;
	height: 4.4rem;
	position: absolute;
	top: 3.2rem;
	right: 2.0rem;
	transition: background 0.5s, box-shadow 0.5s;
	width: 4.0rem;
	z-index: 3;
}
.header_switch a {
	display: block;
	height: 100%;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}
.header_switch::before,
.header_switch::after,
.header_switch a::before,
.header_switch a::after {
	content: '';
	background-color: #fff;
	display: block;
	height: 0.2rem;
	position: absolute;
	left: 0.9rem;
	transition: opacity 0.3s, transform 0.3s;
	width: 2.2rem;
}
.header_switch::before,
.header_switch::after {top: 2.1rem;}
.header_switch a::before {top: 1.2rem;}
.header_switch a::after {top: 3.0rem;}

.header_switch.is-open::before {
	background-color: #222;
	transform: rotate(-45deg);
}
.header_switch.is-open::after {
	background-color: #222;
	transform: rotate(45deg);
}
.header_switch.is-open a::before,
.header_switch.is-open a::after {opacity: 0;}

.header_switch.is-change {
	background-color: #fff;
	box-shadow: 0 0.3rem 0.6rem rgba(1,1,1,0.16);
}
.header_switch.is-change::before,
.header_switch.is-change::after,
.header_switch.is-change a::before,
.header_switch.is-change a::after {
	background-color: #222;
	left: 1.1rem;
	width: 1.8rem;
}

.header_switch.is-change.is-open {
	box-shadow: none;
}

/*===============================================
	ヘッダー：768px以上
===============================================*/
@media screen and (min-width:768px) {
	header {
		background: #fff url(../img/body_bg.png) center top/200px;
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.5s;
	}
	header.is-show {
		opacity: 1;
		pointer-events: auto;
	}

	header .cmn_container {
		display: flex;
		align-items: center;
		justify-content: space-between;
		height: 8rem;
	}

	.header_title {
		display: block;
		height: 5.4rem;
		width: 5.4rem;
	}
	.header_title a {
		background: url(../img/logo_yamazaki.svg) center/contain no-repeat;
		display: block;
		height: 100%;
		overflow: hidden;
		text-decoration: none;
		text-indent: 100%;
		transition: opacity 0.3s;
		white-space: nowrap;
	}
	.header_title a:hover {
		opacity: 0.7;
	}

	nav {
		background-color: transparent;
		border-radius: 0;
		box-shadow: none;
		opacity: 1;
		padding: 0;
		pointer-events: auto;
		position: static;
		transition: none;
		width: auto;
	}
	.header_menu {
		display: flex;
		align-items: center;
		margin: 0;
		-ms-writing-mode: lr-tb;
				writing-mode: horizontal-tb;
	}
	.header_menu li + li {
		margin-right: 0;
		margin-left: 5rem;
	}
	.header_menu li + li:last-child {
		margin-left: 3rem;
	}
 	.header_menu a {
		font-size: 2rem;
	}
	.header_menu_facebook img,
	.header_menu_instagram img {
		height: 2.2rem;
		width: 2.2rem;
	}

	.header_switch {display: none;}
}



/* ---------------------------------------------------------

	04. フッター

--------------------------------------------------------- */
footer {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

.footer_tel {
	opacity: 0;
	pointer-events: none;
	position: fixed;
	bottom: 1rem;
	left: 50%;
	transform: translateX(-50%);
	transition: opacity 0.5s;
	z-index: 100;
}
.footer_tel.is-show {
	opacity: 1;
	pointer-events: auto;
}
.footer_tel.is-stop {
	position: absolute;
	bottom: calc(100% + 1rem);
}
.footer_tel a {
	background-color: #eee6bd;
	border-radius: 0.5rem;
	box-shadow: 0 0.3rem 0.6rem rgba(1,1,1,0.16);
	color: #222;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	height: 5.5rem;
	padding: 0 3em;
	text-decoration: none;
}
body:not(.device_sp) .footer_tel a {
	pointer-events: none;
}
.footer_tel span {
	background: url(../img/icon_tel.svg) left center/contain no-repeat;
	display: block;
	font-size: 1.5em;
	line-height: 1.6;
	margin-top: 0.4em;
	padding-left: 2em;
}

.footer_pagetop {
	height: 4rem;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	bottom: 1rem;
	right: 2rem;
	transition: opacity 0.5s;
	width: 4rem;
	z-index: 100;
}
.footer_pagetop.is-show {
	opacity: 1;
	pointer-events: auto;
}
.footer_pagetop.is-stop {
	position: absolute;
	bottom: calc(100% + 1rem);
}
.footer_pagetop a {
	background-color: #fff;
	border-radius: 0.5rem;
	box-shadow: 0 0.3rem 0.6rem rgba(1,1,1,0.16);
	display: block;
	height: 100%;
	overflow: hidden;
	position: relative;
	text-decoration: none;
	text-indent: 100%;
	white-space: nowrap;
}
.footer_pagetop a::before {
	content: '';
	border-top: 0.2rem solid #222;
	border-right: 0.2rem solid #222;
	display: block;
	height: 1.5rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -25%) rotate(-45deg);
	width: 1.5rem;
}

.footer_copyright {
	font-size: 1rem;
	padding: 2rem 0;
	text-align: center;
}

/*===============================================
	フッター：768px以上
===============================================*/
@media screen and (min-width:768px) {
	.footer_tel {
		bottom: 7rem;
		right: 2rem;
		left: auto;
		transform: none;
	}
	.footer_tel.is-stop {
		position: fixed;
		bottom: 7rem;
	}
	.footer_tel a {
		font-size: 1.2rem;
		height: 5.5rem;
		padding: 0 1.5em;
		text-decoration: none;
	}
	body:not(.device_sp) .footer_tel a {
		pointer-events: none;
	}
	.footer_tel span {
		line-height: 1.2;
		margin-top: 0.3em;
		padding-left: 1.5em;
	}

	.footer_pagetop {
		bottom: 2rem;
	}
	.footer_pagetop.is-stop {
		position: fixed;
		bottom: 2rem;
	}

	.footer_copyright {
		padding: 3.0rem 0;
	}
}



/* ---------------------------------------------------------

	05. コンテンツ

--------------------------------------------------------- */

/* 背景装飾
--------------------------------------------------------- */
.top_sec_bg_top::before {
	content: '';
	background-color: rgba(235,222,167,0.2);
	display: block;
	height: 300%;
	position: absolute;
	top: 0;
	left: 33%;
	transform: rotate(-27deg);
	transform-origin: left top;
	width: 100%;
	z-index: -1;
}
.top_sec_bg_top::after {
	content: '';
	background: rgba(235,222,167,0.2) url(../img/sec_bg.png) center/15rem;
	display: block;
	height: 300%;
	position: absolute;
	top: 0;
	left: 66%;
	transform: rotate(-22deg);
	transform-origin: left top;
	width: 100%;
	z-index: -1;
}

.top_sec_bg_bottom::before {
	content: '';
	background-color: rgba(235,222,167,0.2);
	display: block;
	height: 300%;
	position: absolute;
	bottom: 0;
	right: 33%;
	transform: rotate(-27deg);
	transform-origin: right bottom;
	width: 100%;
	z-index: -1;
}
.top_sec_bg_bottom::after {
	content: '';
	background: rgba(235,222,167,0.2) url(../img/sec_bg.png) center/15rem;
	display: block;
	height: 300%;
	position: absolute;
	bottom: 0;
	right: 66%;
	transform: rotate(-22deg);
	transform-origin: right bottom;
	width: 100%;
	z-index: -1;
}

.top_shop .top_sec_bg_bottom::before {
	right: auto;
	left: 33%;
	transform: rotate(27deg);
	transform-origin: left bottom;
}
.top_shop .top_sec_bg_bottom::after {
	background-image: url(../img/sec_bg_reverse.png);
	right: auto;
	left: 66%;
	transform: rotate(22deg);
	transform-origin: left bottom;
}

/*===============================================
	背景装飾：768px以上
===============================================*/
@media screen and (min-width:768px) {
	.top_sec_bg_top::before {
		left: 49.3%;
		transform: rotate(-28deg);
	}
	.top_sec_bg_top::after {
		background-size: 16em;
		left: 64.3%;
	}

	.top_sec_bg_bottom::before {
		right: 58.6%;
		transform: rotate(-28deg);
	}
	.top_sec_bg_bottom::after {
		background-size: 16em;
		right: 71.4%;
	}

	.top_shop .top_sec_bg_bottom::before {
		left: 49.3%;
		transform: rotate(28deg);
	}
	.top_shop .top_sec_bg_bottom::after {
		left: 64.3%;
	}
}

/* メインビジュアル
--------------------------------------------------------- */
.top_mv {
	position: relative;
	z-index: 0;
}

.top_mv_menu {display: none;}

.top_movie {
	height: 100vh;
	overflow: hidden;
	position: relative;
	width: 100vw;
	z-index: -1;
}
.top_movie video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	visibility: hidden;
	width: 100%;
}
.top_movie.is-portrait video {
	height: 100%;
	top: 0;
	transform: translate(-50%, 0);
	width: auto;
}
.top_movie video.is-show {
	visibility: visible;
}

.top_mv_title {
	background: url(../img/logo_yamazaki.svg) center/contain no-repeat;
	height: 11.8rem;
	overflow: hidden;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-indent: 100%;
	white-space: nowrap;
	width: 11.7rem;
	z-index: 1;
}

.top_mv_scroll {
	color: #fff;
	font-size: 1.4rem;
	overflow: hidden;
	padding-bottom: 11.5em;
	position: absolute;
	bottom: -2em;
	left: 50%;
	text-transform: uppercase;
	transform: translateX(-50%);
}
.top_mv_scroll::before {
	content: '';
	background-color: #fff;
	height: 13rem;
	position: absolute;
	top: 2em;
	left: 50%;
	transform: translateX(-50%);
	width: 0.1rem;
}
.top_mv_scroll::after {
	content: '';
	animation: scrollbar 2.5s linear infinite;
	background-color: #f7e567;
	height: 5rem;
	position: absolute;
	top: 2em;
	left: 50%;
	transform: translate(-50%, 0) scaleY(0);
	transform-origin: center top;
	width: 0.2rem;
}
@keyframes scrollbar {
	0% {transform: translate(-50%, 0) scaleY(0);}
	20% {transform: translate(-50%, 0) scaleY(1);}
	60%, 100% {transform: translate(-50%, 13em) scaleY(1);}
}

/*===============================================
	メインビジュアル：768px以上
===============================================*/
@media screen and (min-width:768px) {
	.top_mv_menu {
		display: flex;
		flex-direction: row-reverse;
		position: absolute;
		top: 3.5rem;
		right: 4rem;
	}
	.top_mv_menu li + li {
		margin-right: 3em;
	}
	.top_mv_menu a {
		color: #fff;
		font-size: 1.8rem;
		letter-spacing: 0.4em;
		text-decoration: none;
		text-shadow: 0 0.3rem 0.6rem rgba(1,1,1,0.16), 0 0.3rem 0.6rem rgba(1,1,1,0.16), 0 0.3rem 0.6rem rgba(1,1,1,0.16);
		-ms-writing-mode: tb-rl;
				writing-mode: vertical-rl;
	}
	.top_mv_menu_facebook img {
		box-shadow: 0 0.3rem 0.6rem rgba(1,1,1,0.16);
		border-radius: 50%;
		height: 2.6rem;
		width: 2.6rem;
	}
	.top_mv_menu_instagram img {
		box-shadow: 0 0.3rem 0.6rem rgba(1,1,1,0.16);
		border-radius: 0.5rem;
		height: 2.6rem;
		width: 2.6rem;
	}
}

/* リード
--------------------------------------------------------- */
.top_about {
	overflow: hidden;
	padding: 10rem 0;
	position: relative;
}

.top_about_wrap {
	height: 34rem;
	position: relative;
	width: 100%;
}

.top_about_inner {
	padding: 0 8rem 2rem;
	overflow-x: auto;
	width: 100%;
	-ms-writing-mode: tb-rl;
			writing-mode: vertical-rl;
}
.top_about_inner h2 {
	font-size: 2.0rem;
	font-weight: 500;
	margin-left: 2.8em;
}
.top_about_inner p {
	font-size: 1.5rem;
	line-height: 2.3;
}
.top_about_inner p + p {
	margin-right: 2em;
}

/*===============================================
	リード：768px以上
===============================================*/
@media screen and (min-width:768px) {
	.top_about {
		padding: 15rem 0;
	}

	.top_about_wrap {
		height: 33rem;
		text-align: center;
	}

	.top_about_inner {
		display: inline-block;
		padding: 0;
		overflow-x: visible;
		text-align: left;
		width: auto;
	}
	.top_about_inner h2 {
		font-size: 2.4rem;
	}
	.top_about_inner p {
		font-size: 1.7rem;
	}
	.top_about_inner p + p {
		margin-right: 2.3em;
	}
}

/* セクション見出し
--------------------------------------------------------- */
.top_sec_heading {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 23rem;
	position: relative;
}
#top_oshinagaki .top_sec_heading {background-image: url(../img/oshinagaki_title_bg_sp.jpg);}
#top_shop .top_sec_heading {background-image: url(../img/shop_title_bg_sp.jpg);}

.top_sec_title {
	background-color: rgba(16,35,100,0.85);
	background-repeat: repeat-y;
	background-size: 10rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 10rem;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
#top_oshinagaki .top_sec_title {
	background-image: url(../img/oshinagaki_title_bg_deco.png);
	background-position: right center;
	padding-right: 10rem;
}
#top_shop .top_sec_title {
	background-image: url(../img/shop_title_bg_deco.png);
	background-position: left center;
	padding-left: 10rem;
}
.top_sec_title_jp {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	height: 2.9rem;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	width: 100%;
}
#top_oshinagaki .top_sec_title_jp {background-image: url(../img/oshinagaki_title_sp.svg);}
#top_shop .top_sec_title_jp {background-image: url(../img/shop_title_sp.svg);}
.top_sec_title_en {
	color: #fff;
	display: block;
	font-size: 1.2rem;
	font-weight: 500;
	margin-top: 0.8em;
}

/*===============================================
	セクション見出し：768px以上
===============================================*/
@media screen and (min-width:768px) {
	.top_sec_heading {
		height: 36.5rem;
	}
	#top_oshinagaki .top_sec_heading {background-image: url(../img/oshinagaki_title_bg_pc.jpg);}
	#top_shop .top_sec_heading {background-image: url(../img/shop_title_bg_pc.jpg);}

	.top_sec_title {
		background-size: 14rem;
		height: 100%;
		position: absolute;
		top: 0;
		width: 33rem;
	}
	#top_oshinagaki .top_sec_title {
		padding-right: 14rem;
		right: 0;
		left: auto;
	}
	#top_shop .top_sec_title {
		padding-left: 14rem;
	}
	.top_sec_title_jp {
		height: 16.4rem;
	}
	#top_oshinagaki .top_sec_title_jp {background-image: url(../img/oshinagaki_title_pc.svg);}
	#top_shop .top_sec_title_jp {background-image: url(../img/shop_title_pc.svg);}
	.top_sec_title_en {
		font-size: 1.6rem;
		margin-top: 1.4em;
	}
}

/* お品書き
--------------------------------------------------------- */
.top_oshinagaki {
	overflow: hidden;
	position: relative;
}

.top_oshinagaki .cmn_container {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.top_oshinagaki_movie {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 4rem;
}
.top_oshinagaki_movie h3 {
	background-image: url(../img/oshinagaki_movie_title.svg), url(../img/oshinagaki_movie_title.svg);
	background-position: left center, right center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	font-size: 2rem;
	font-weight: 500;
	margin: 0.8em 0;
	order: 1;
	padding: 0 1.4em;
}
.top_oshinagaki_movie p {
	line-height: 1.7;
	order: 2;
	width: 100%;
}
.top_oshinagaki_thumb {
	order: 0;
	position: relative;
	width: 100%;
}
.top_oshinagaki_thumb a::after {
	content: '';
	background: url(../img/oshinagaki_movie_play.svg) center/contain no-repeat;
	display: block;
	height: 7rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 7rem;
}

.top_oshinagaki_modal {display: none;}
.modal_oshinagaki .modaal-container {background: transparent;}
.modal_oshinagaki .modaal-content-container {padding: 0;}
.modal_oshinagaki video {width: 100%;}

.top_oshinagaki_title {
	background: url(../img/oshinagaki_title_deco.svg) left center/contain no-repeat;
	font-size: 2.4rem;
	font-weight: 500;
	margin-bottom: 0.8em;
	padding: 0.2em 0 0.2em 0.8em;
}

.top_oshinagaki_lead {
	font-size: 1.4rem;
	line-height: 1.7;
	margin-bottom: 1em;
}

.top_oshinagaki_list {
	display: flex;
	overflow-x: auto;
	margin-left: -2.5rem;
	padding: 0 2.5rem 1em;
	width: calc(100% + 5rem);
}
.top_oshinagaki_list + .top_oshinagaki_title {
	margin-top: 3rem;
}
.top_oshinagaki_list li {
	background-color: #faf8f0;
	display: flex;
	flex-direction: column;
	flex: 0 0 auto;
	width: 26rem;
}
.top_oshinagaki_list li + li {
	margin-left: 3rem;
}
.top_oshinagaki_list:not(.top_demae_list)::after {
	content: '余白';
	color: transparent;
	display: block;
	font-size: 2.5rem;
	width: 2.5rem;
}
.top_demae_list li {
	width: 100%;
}

.top_oshinagaki_inner {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 1em;
}
.top_oshinagaki_name {
	font-size: 2rem;
	font-weight: 500;
	margin-bottom: 0.8em;
}
.top_oshinagaki_name small {
	font-size: 0.7em;
	margin-left: 0.1em;
	position: relative;
	top: -0.1em;
}
.top_oshinagaki_text {
	line-height: 1.7;
	margin-bottom: 0.8em;
}
.top_oshinagaki_price {
	font-size: 2rem;
	font-weight: 500;
	margin-top: auto;
	text-align: right;
}

.top_oshinagaki_caution {
	line-height: 1.7;
	margin-top: 2em;
	text-align: right;
}

/*===============================================
	お品書き：768px以上
===============================================*/
@media screen and (min-width:768px) {
	.top_oshinagaki .cmn_container {
		padding-top: 15rem;
		padding-bottom: 15rem;
	}

	.top_oshinagaki_movie {
		margin: 0 auto 15rem;
		max-width: 80rem;
	}
	.top_oshinagaki_movie h3 {
		font-size: 2.4rem;
		margin-top: 1em;
	}
	.top_oshinagaki_movie p {
		font-size: 1.6rem;
	}
	.top_oshinagaki_thumb a::after {
		height: 8rem;
		width: 8rem;
	}

	.top_oshinagaki_title {
		font-size: 3.2rem;
		margin-bottom: 1.5em;
		padding-left: 0.9em;
	}

	.top_oshinagaki_lead {
		font-size: 1.6rem;
		margin-top: -2em;
		margin-bottom: 3em;
	}

	.top_oshinagaki_list {
		display: flex;
		flex-wrap: wrap;
		overflow-x: visible;
		margin-left: 0;
		padding: 0;
		width: 100%;
	}
	.top_oshinagaki_list + .top_oshinagaki_title {
		margin-top: 15rem;
	}
	.top_oshinagaki_list li {
		background-color: transparent;
		flex-direction: row;
		justify-content: space-between;
		width: 47%;
	}
	.top_oshinagaki_list li + li {
		margin-left: 0;
	}
	.top_oshinagaki_list li:nth-child(even) {
		margin-left: 6%;
	}
	.top_oshinagaki_list li:nth-child(n+3) {
		margin-top: 6%;
	}
	.top_oshinagaki_list:not(.top_demae_list)::after {
		display: none;
	}
	.top_demae_list li {
		width: 47%;
	}

	.top_oshinagaki_image {
		flex: 0 0 auto;
		width: 49%;
	}

	.top_oshinagaki_inner {
		padding: 0.3em 0;
		width: 47%;
	}
	.top_oshinagaki_name {
		font-size: 2.2rem;
	}
	.top_oshinagaki_text {
		font-size: 1.4rem;
	}
	.top_oshinagaki_price {
		font-size: 2.4rem;
	}

	.top_oshinagaki_caution {
		font-size: 1.6rem;
		margin-top: 4em;
	}
}

/* 店舗情報
--------------------------------------------------------- */
.top_shop {
	overflow: hidden;
}
.top_shop .cmn_container {
	padding-bottom: 15rem;
}

.top_info_wrap {
	margin-top: 4rem;
}
.top_info_title {
	font-size: 2.4rem;
	font-weight: 500;
	margin-bottom: 1em;
}
.top_info_address,
.top_info_tel {
	font-size: 1.8rem;
	line-height: 1.33;
}
.top_info_hour {
	display: flex;
	flex-wrap: wrap;
	font-feature-settings: 'pwid';
	font-size: 1.8rem;
	line-height: 1.3;
	margin-top: 1em;
}
.top_info_hour dt {
	width: 4.5em;
}
.top_info_hour dt:nth-of-type(n+2),
.top_info_hour dd:nth-of-type(n+2) {
	margin-top: 0.3em;
}
.top_info_hour dd {
	border-left: 1px solid #222;
	padding-left: 0.5em;
	width: calc(100% - 4.5em);
}
.top_info_caution {
	line-height: 1.5;
	margin-top: 1.5em;
}

.top_map {
	margin-top: 3rem;
}
.top_map_link {
	margin-bottom: 1.5em;
}
.top_map_link a {
	border-bottom: 0.1rem solid #222;
	color: #222;
	margin-left: 1.5em;
	padding-bottom: 0.1em;
	position: relative;
	text-decoration: none;
}
.top_map_link a::before {
	content: '';
	background: url(../img/shop_map_icon.svg) left center/contain no-repeat;
	display: inline-block;
	height: 100%;
	position: absolute;
	top: 0;
	left: -1.5em;
	width: 1.5em;
}
.top_map_embed {
	height: 33.5rem;
}

.top_sns_wrap {
	margin-top: 4rem;
}
.top_sns_title {
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.9;
	margin-bottom: 0.5em;
	padding-left: 2.4em;
}
.top_sns_facebook .top_sns_title {background-image: url(../img/logo_facebook.svg);}
.top_sns_instagram .top_sns_title {background-image: url(../img/logo_instagram.svg);}

.top_facebook_timeline {
	height: 50rem;
	margin: 0 auto;
	max-width: 50rem;
}

.top_sns_instagram {
	margin-top: 4rem;
}
.top_instagram_timeline {
	background-color: #eee6bd;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 2rem;
}
.top_instagram_timeline li {
	width: calc((100% - 2rem) / 2);
}
.top_instagram_timeline li:nth-child(n+3) {
	margin-top: 2rem;
}

/*===============================================
	店舗情報：768px以上
===============================================*/
@media screen and (min-width:768px) {
	.top_shop .cmn_container {
		max-width: calc(800px + 40rem);
		padding-bottom: 20rem;
	}

	.top_info_wrap {
		display: flex;
		justify-content: space-between;
		margin-top: 15rem;
	}
	.top_info_wrap > div {
		width: 46.25%;
	}
	.top_info_title {
		font-size: 3.2rem;
		margin-bottom: 0.8em;
	}
	.top_info_address,
	.top_info_tel {
		font-size: 2.1rem;
		line-height: 1.5;
	}
	.top_info_hour {
		font-size: 2.1rem;
		margin-top: 0.8em;
	}
	.top_info_hour dt:nth-of-type(n+2),
	.top_info_hour dd:nth-of-type(n+2) {
		margin-top: 0.5em;
	}
	.top_info_caution {
		font-size: 1.4rem;
	}

	.top_map {
		margin-top: 0;
	}
	.top_map_link a {
		font-size: 1.4rem;
	}
	.top_map_embed {
		height: 37rem;
	}

	.top_sns_wrap {
		display: flex;
		justify-content: space-between;
		margin-top: 15rem;
	}
	.top_sns_wrap > div {
		width: 46.25%;
	}
	.top_sns_title {
		font-size: 2.2rem;
		line-height: 1.6;
		margin-bottom: 0.8em;
		padding-left: 2.1em;
	}

	.top_sns_instagram {
		margin-top: 0;
	}
	.top_instagram_timeline {
		min-height: 54.5rem;
	}
}