@charset "utf-8";

/* ==========================================================
   01. デザイントークン
========================================================== */

:root {
	--color-bk: 40, 40, 40;
	--color-bk-hover: 53, 53, 53;
	--color-wh: 249, 249, 249;
	--color-wh-hover: 238, 238, 238;
	--color-gray: 151, 151, 151;
	--color-bg-gray: 242, 242, 242;
	--color-border: 204, 204, 204;
	--color-danger: 214, 19, 19;
	--color-overlay: 0, 0, 0;
	--color-badge: 100, 100, 100;
	--color-menu-line: 217, 217, 217;
	--color-menu-muted: 185, 185, 185;
	--color-menu-active: 17, 17, 17;
	--color-menu-hover: 85, 85, 85;
	--color-accent: 255, 252, 0;
	--transition: all .25s;
	--border-radius: 4px;
	--content-width-wide: 1920px;
	--space-20: 20px;
	--space-40: 40px;
	--space-60: 60px;
	--space-80: 80px;
	--space-100: 100px;
	--nav-height-xl: 85.5px;
	--nav-height-lg: 82.5px;
	--nav-height-md: 70.5px;
	--nav-height-sm: 64px;
	--top-alert-height: 39px;
	--sp-nav-top: var(--nav-height-sm);
}


/* ==========================================================
   02. ベース設定
========================================================== */

html,body {
	width: 100%;
	font-family: 'Roboto', 'Zen Kaku Gothic New', sans-serif;
	font-weight: 400;
	font-style: normal;
	text-align: left;
	font-size: 10px;
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: rgb(var(--color-bk));
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-variant-east-asian: simplified;
	font-feature-settings: "palt" 1;
}
body {
	position: relative;
	height: 100%;
	background: rgb(var(--color-wh));
}
html.open {
	overflow: hidden;
}

.pc {
	display: inherit !important;
}
.sp {
	display: none !important;
}
* {
    margin:0;
    padding:0;
}
* {
    min-width: 0;
    min-height: 0;
}
a,
a:active,
a:visited,
a:focus  {
	color: rgb(var(--color-bk));
	text-decoration: none;
	outline: none;
	transition: var(--transition);
}

::selection {
	color: rgb(var(--color-wh)) !important;
	background: rgb(var(--color-bk)) !important;
}
::-moz-selection {
	color: rgb(var(--color-wh)) !important;
	background: rgb(var(--color-bk)) !important;
}
img,
img a {
	border: none;
	backface-visibility:hidden;
	-webkit-backface-visibility: hidden;
}
ul,li {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
h1 {
	font-size: 4.5rem;
	font-weight: 900;
}
h2 {
	font-size: 4.5rem;
	font-weight: 500;
}
h3 {
	font-size: 3.2rem;
	font-weight: 500;
}
h4 {
	font-size: 2rem;
	font-weight: 500;
}
li, p {
	font-size: 1.6rem;
	font-weight: 400;
}

@media screen and (max-width: 1600px)
{
h1, h2 {
	font-size: 4rem;
}
h3 {
	font-size: 3rem;
}
}

@media screen and (max-width: 1360px)
{
h1, h2 {
	font-size: 3.5rem;
}
h3 {
	font-size: 2.8rem;
}
h4 {
	font-size: 1.8rem;
}
}

@media screen and (max-width: 750px)
{
h1, h2 {
	font-size: 3rem;
}
h3 {
	font-size: 2.5rem;
}
h4 {
	font-size: 1.6rem;
}
li, p {
	font-size: 1.4rem;
}
}


.subtitle {
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 0;
	color: rgba(var(--color-gray), 1);
}

.bg_gray {
	background-color: rgb(var(--color-bg-gray));
}


/* ---------- ボタン ---------- */

a.button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-width: 10rem;
	height: 5.6rem;
	width: fit-content;
	padding: 0 5.6rem;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0;
	border-radius: var(--border-radius);
	box-sizing: border-box;
	transition: var(--transition);
}
a.bk_button {
	background-color: rgb(var(--color-bk));
	color: rgb(var(--color-wh));
}
a.bk_button:hover {
	background-color: rgb(var(--color-bk-hover));
}
a.wh_button {
	background-color: rgb(var(--color-wh));
	color: rgb(var(--color-bk));
}
a.wh_button:hover {
	background-color: rgb(var(--color-wh-hover));
}
@media screen and (max-width: 1200px)
{
a.button {
	height: 5.2rem;
	font-size: 1.4rem;
	padding: 0 4rem;
}
}

/* ---------- YouTube埋め込み ---------- */

.youtube {
	position: relative;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	margin-bottom: var(--space-20);
}
.youtube iframe{
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}


/* ==========================================================
   03. コンタクトフォーム
========================================================== */
.wpcf7-form-control-wrap input[type="text"],
.wpcf7-form-control-wrap input[type="tel"],
.wpcf7-form-control-wrap input[type="email"],
.wpcf7-form-control-wrap input[type="url"],
.wpcf7-form-control-wrap input[type="number"],
.wpcf7-form-control-wrap textarea,
.wpcf7-form-control-wrap select {
	width: calc(100% - 3rem);
	margin: 0;
	padding: 1.5rem;
	background: rgb(var(--color-wh));
	border: none;
	border: 1px solid rgb(var(--color-bk));
	border-radius: var(--border-radius);
	color: rgb(var(--color-bk));
	font-size: 1.6rem;
	font-weight: 400;
}
.wpcf7-form-control-wrap textarea {
	height: 15rem;
}
.wpcf7-form-control-wrap select {
	width: 100%;
}
input[type="submit"] {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-width: 10rem;
	height: 5.6rem;
	width: fit-content;
	padding: 0 5.6rem;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0;
	border: 1px solid rgb(var(--color-bk));
	border-radius: var(--border-radius);
	box-sizing: border-box;
	transition: var(--transition);
	background-color: rgb(var(--color-wh));
	color: rgb(var(--color-bk));
}
input[type="submit"]:hover {
	background-color: rgb(var(--color-wh-hover));
}
div.wpcf7 .ajax-loader {
	display: block;
}
.wpcf7-mail-sent-ok {
    border: 1px solid rgb(var(--color-bk)) !important;
}
.screen-reader-response,
.wpcf7 form .wpcf7-response-output {
	text-align: center;
	margin: 2rem 0;
}
.wpcf7 form .wpcf7-response-output {
    margin: 0;
    margin-top: 6rem;
    padding: 2rem;
    border: 1px solid rgb(var(--color-bk)) !important;
    background: rgb(var(--color-wh));
}
.screen-reader-response ul {
	display: none;
}

.wpcf7-not-valid-tip,
.screen-reader-response,
.wpcf7 form .wpcf7-response-output {
	color: rgb(var(--color-danger));
	font-weight: 500;
}


.form_content {
	margin-top: 3rem;
}
.form_content p {
	margin-bottom: 1rem !important;
}



/* ==========================================================
   04. 共通コンポーネント
========================================================== */

/* ---------- コンテンツ幅 ---------- */

.block_width_small {
	display: block;
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	padding: 0 6.4rem;
	box-sizing: border-box;
}
.block_width_normal {
	display: block;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 6.4rem;
	box-sizing: border-box;
}
.block_width_large {
	display: block;
	width: 100%;
	max-width: var(--content-width-wide);
	margin: 0 auto;
	padding: 0 6.4rem;
	box-sizing: border-box;
}
.block_width_full {
	display: block;
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
}

@media screen and (min-width: 1920px)
{
.block_width_large {
	margin: 0 calc((100vw - var(--content-width-wide)) / 2);
}
}
@media screen and (max-width: 1200px)
{
.block_width_small,
.block_width_normal,
.block_width_large {
	padding: 0 2rem;
}
}


/* ---------- セクション見出し ---------- */
.section_header {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 4rem;
}
.section_header_vertical {
	flex-direction: column;
	margin-bottom: 0;
}
@media screen and (max-width: 990px)
{
.section_header_vertical {
	flex-direction: row;
	margin-bottom: 4rem;
}
}
@media screen and (max-width: 750px)
{
.section_header_vertical {
	flex-direction: row;
	margin-bottom: 4rem;
}
}


/* ---------- 背景画像コンテンツ ---------- */
.bg_image_contents {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	min-height: 60rem;
	aspect-ratio: 3 / 1;
	margin: 0 auto;
	padding: 6.4rem;
	color: rgb(var(--color-wh));
	background-position: center center;
	background-size: cover;
	border-radius: var(--border-radius);
	box-sizing: border-box;
	overflow: hidden;
}
.bg_image_contents:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(var(--color-overlay), 0.4);
	
}
.bg_image_contents p {
	margin-top: 2.4rem;
}
.bg_image_contents a.button {
	margin-top: 3.2rem;
}

@media screen and (max-width: 1360px)
{
.bg_image_contents {
	padding: 4.8rem;
}
}

@media screen and (max-width: 1200px)
{
.bg_image_contents {
	padding: 4rem;
}
}

@media screen and (max-width: 750px)
{
.bg_image_contents {
	padding: 3.2rem;
}
.bg_image_contents p {
	margin-top: 1.6rem;
}
.bg_image_contents a.button {
	margin-top: 2.4rem;
}
}


/* ---------- 画像付きコンテンツ ---------- */
.with_image_contents {
	display: flex;
	justify-content: space-between;
	width: 100%;
	box-sizing: border-box;
	gap: 6rem;
}
.with_image_contents > div:first-child {
	flex: 1;
}
.with_image_contents > div:last-child {
	width: 60%;
}
.with_image_contents p {
	margin-top: 2.4rem;
}
.with_image_contents img {
	width: 100%;
	min-height: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: var(--border-radius);
}
.with_image_contents a.button {
	margin-top: 3.2rem;
}
.top_location_buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 1.2rem;
	margin-top: 3.2rem;
}
.top_location_buttons a.button {
	margin-top: 0;
}

@media screen and (max-width: 990px)
{
.with_image_contents {
	flex-direction: column-reverse;
	gap: 2rem;
}
.with_image_contents > div:last-child {
	width: 100%;
}
.with_image_contents p {
	margin-top: 1.6rem;
}
}
@media screen and (max-width: 750px)
{
.with_image_contents a.button {
	margin-top: 2.4rem;
}
.top_location_buttons {
	margin-top: 2.4rem;
}
.top_location_buttons a.button {
	flex: 1 1 16rem;
}
}


/* ---------- テキストリスト ---------- */
.text_list_contents {
	display: flex;
	justify-content: space-between;
	width: 100%;
	box-sizing: border-box;
	gap: 6rem;
}
.text_list_contents > div:first-child {
	flex: 1;
}
.text_list_contents > div:last-child {
	width: 65%;
}
@media screen and (max-width: 990px)
{
.text_list_contents {
	flex-direction: column;
	gap: 0;
}
.text_list_contents > div:last-child {
	width: 100%;
}
}

.content_text_list {
	border-top: 1px dotted rgb(var(--color-gray));
}
.content_text_list > div {
	border-bottom: 1px dotted rgb(var(--color-gray));
}
.content_text_list > div a {
	display: block;
	width: 100%;
	padding: 2rem 0;
}
.content_text_list > div a:hover {
	background-color: rgb(var(--color-wh-hover));
}


/* ---------- 概要リスト ---------- */
.overview_list {
	border-bottom: 1px dotted rgb(var(--color-gray));
}
.overview {
	display: flex;
	justify-content: space-between;
	padding: 4rem 0;
	border-top: 1px dotted rgb(var(--color-gray));
}
.overview > h3 {
	display: block;
	font-size: 1.6rem;
	width: 200px;
	margin-bottom: 0 !important;
}
.overview p,
.overview .article_img {
	margin-bottom: 0 !important;
}
.overview > div {
	flex: 1;
}

@media screen and (max-width: 750px)
{
.overview > h3 {
	font-size: 1.5rem;
	width: 100px;
}
}


/* ---------- コンテンツサムネイル ---------- */
.list_thumb {
	display: block;
	width: 100%;
	height: auto;
}
.thumb_img {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	margin-bottom: 10px;
	aspect-ratio: 16 / 9;
	border-radius: var(--border-radius);
	overflow: hidden;
}
.thumb_img .badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	display: inline-block;
	padding: .5rem 1rem;
	background-color: rgb(var(--color-badge));
	border-radius: 9999px;
	color: rgb(var(--color-wh));
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1;
}
.list_thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}
.list_thumb:hover img {
	transform: scale(1.05);
}
.thumb_info h4 {
	font-size: 2rem;
}
.thumb_info h4 span {
	font-size: 1.2rem;
}
.thumb_info p {
	font-size: 1.2rem;
	line-height: 1.5em;
	margin: 5px 0;
}


/* ---------- スライダーコンテンツ ---------- */
.content_slider .list_thumb {
	margin: 0 5px;
}
.menu_main_slider .slick-list,
.content_slider .slick-list {
	overflow: visible;
}


/* ---------- Instagramリスト ---------- */
.insta_list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
}
.insta_list > div {
	display: block;
	width: calc((100% - 30px) / 4);
	height: auto;
	aspect-ratio: 3 / 4;
	border-radius: var(--border-radius);
	overflow: hidden;
}
.insta_list > div img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.insta_list > div span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background: rgba(var(--color-gray), 1);
	text-align: center;
	font-size: 1.4rem;
	color: rgba(var(--color-wh), 1);
}
@media screen and (max-width: 990px)
{
.insta_list > div {
	width: calc((100% - 10px) / 2);
}
}


/* ---------- アーカイブ一覧 ---------- */
.content_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 40px 10px;
}
.content_list .list_thumb {
	width: calc((100% - 20px) / 3);
}
.news_list.content_list {
	gap: 4rem 1rem;
}
.news_list.content_list .list_thumb {
	width: calc((100% - 30px) / 4);
}
.news_list .thumb_img {
	aspect-ratio: 1 / 1;
}
.news_list .thumb_img a {
	display: block;
	width: 100%;
	height: 100%;
}
.news_list .thumb_info h4 {
	font-size: 1.8rem;
	line-height: 1.5;
}
.news_list .thumb_info p {
	font-size: 1.2rem;
	line-height: 1.5;
}
@media screen and (max-width: 990px)
{
.content_list .list_thumb {
	width: calc((100% - 10px) / 2);
}
.news_list.content_list .list_thumb {
	width: calc((100% - 20px) / 3);
}
.news_list .thumb_info h4 {
	font-size: 1.6rem;
}
.news_list .thumb_info p {
	font-size: 1.1rem;
}
}
@media screen and (max-width: 750px)
{
.content_list .list_thumb {
	width: 100%;
}
.news_list.content_list .list_thumb {
	width: calc((100% - 10px) / 2);
}
.news_list .thumb_info h4 {
	font-size: 1.4rem;
	line-height: 1.45;
}
.news_list .thumb_info p {
	font-size: 1.1rem;
}
}


/* ---------- ページネーション ---------- */
#page_nav {
	text-align: center;
	margin-top: var(--space-60);
}
.wp-pagenavi a, .wp-pagenavi span {
	display: inline-block;
	font-size: 1.2rem;
	text-align: center;
	width: 30px;
	height: 30px;
	line-height: 30px;
	padding: 0 !important;
	margin: 3px !important;
	letter-spacing: 0em;
	border-radius: 50%;
}
.wp-pagenavi span.current {
	background: rgb(var(--color-bk));
	color: rgb(var(--color-wh));
}


/* ==========================================================
   05. フッター
========================================================== */
#footer {
	background: rgb(var(--color-bk));
}
#footer a {
	color: rgb(var(--color-wh)) !important;
}

.footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.footer svg {
	width: 260px;
	max-width: 100%;
}
.footer svg .st0 {
	fill: rgb(var(--color-wh));
}

.footer > div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}
.footer > div:last-child {
	flex-direction: row-reverse;
	align-items: baseline;
}

.footer > div > ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
	gap: 2rem;
}
.footer > div > ul li {
	font-size: 1.4rem;
	letter-spacing: -.02em;
}
.footer .copyright {
	width: 260px;
	font-size: 1.2rem;
	color: rgb(var(--color-wh)) !important;
}


@media screen and (max-width: 990px)
{
.footer > div,
.footer > div:last-child {
	flex-direction: column;
	align-items: flex-start;
	gap: 2rem;
}
.footer > div > ul {
	justify-content: flex-start;
	flex-wrap: wrap;
}
}


/* ==========================================================
   06. トップページ
========================================================== */

/* ---------- ヒーロースライダー・動画 ---------- */
#top_head {
	position: relative;
}

.top_sliders {
	display: grid;
	grid-template-rows: 50% 1fr;
	grid-template-columns: 50% 1fr;
	width: 100vw;
	height: 100vh;
	width: 100dvw;
	height: 100dvh;
}
.top_sliders > div {
	position: relative;
	width: 100%;
	height: 100%;
}
.top_sliders > div .slick-list,
.top_sliders > div .slick-track {
	height: 100%;
}
.top_sliders > div video,
.top_sliders > div img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.top_sliders > div:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(var(--color-overlay), 0.4);
	pointer-events: none;
	transition: var(--transition);
}
.top_sliders > div:hover:after {
	background: rgba(var(--color-overlay), 0.5);
}

.top_sliders > div:nth-child(1) {
	grid-row: 1 / 3;
	grid-column: 1;
}
.top_sliders > div:nth-child(2) {
	grid-row: 1;
	grid-column: 2;
}
.top_sliders > div:nth-child(3) {
	grid-row: 2;
	grid-column: 2;
}

.top_slider {
	display: block;
	width: 100vw;
	height: 100vh;
	width: 100dvw;
	height: 100dvh;
}
.top_slider > div {
	position: relative;
	width: 100%;
	height: 100%;
}
.top_slider > div .slick-list,
.top_slider > div .slick-track {
	height: 100%;
}
.top_slider > div video,
.top_slider > div img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.top_slider > div:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(var(--color-overlay), 0.4);
	pointer-events: none;
}

.top_movie {
	position: relative;
	display: block;
	width: 100vw;
	height: 100vh;
	width: 100dvw;
	height: 100dvh;
	overflow: hidden;
}
.top_movie:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(var(--color-overlay), 0.1);
	pointer-events: none;
	z-index: 1;
}
.top_movie img,
.top_movie video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	z-index: 1;
}

.top_movie video.active {
	display: block;
	z-index: 2;
}

@media screen and (max-width: 720px)
{
.top_movie {
	height: auto;
	aspect-ratio: 1 / 1;
}
}

/* ---------- トップアナウンスバー ---------- */
.top_alert_bar {
	position: relative;
	width: 100%;
	background: rgb(var(--color-bk));
	color: rgb(var(--color-wh));
	z-index: 10000;
}
.top_alert_bar a {
	display: block;
	width: 100%;
	padding: .9rem 2rem;
	color: rgb(var(--color-wh)) !important;
	font-size: 1.3rem;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	box-sizing: border-box;
}
.top_alert_bar a:hover {
	opacity: .72;
}
.top_alert_bar span {
	display: inline-block;
	margin-right: .8rem;
	font-size: 1.1rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	opacity: .72;
}


/* ---------- コンセプト ---------- */
.top_concept .subtitle {
	font-weight: 700;
	color: rgba(var(--color-wh),0.6);
}
.top_concept h2,
#about .page_head h1 {
	font-size: min(6vw, 3rem);
}


/* ---------- メニュー ---------- */
/* メニューカテゴリナビ */
.menu_nav_slider {
	position: relative;
	margin-bottom: 4rem;
	list-style: none;
}

/* ベースライン */
.menu_nav_slider::before {
	content: "";
	position: absolute;
	left: .5rem;
	right: .5rem;
	bottom: 0;
	height: .2rem;
	background: rgb(var(--color-menu-line));
}

/* Slickトラック */
.menu_nav_slider .slick-track {
	display: flex;
	align-items: flex-end;
}

/* メニュータブ */
.menu_nav_slider li {
	position: relative;
	display: block;
	padding: 0 .5rem .5rem;
	padding-bottom: 1rem;
	text-align: center;
	font-size: 3.2rem;
	line-height: 1.1;
	font-weight: 500;
	letter-spacing: -0.02em;
	color: rgb(var(--color-menu-muted));
	cursor: pointer;
	transition: color 0.25s ease, opacity 0.25s ease;
	white-space: nowrap;
	box-sizing: border-box;
}

/* アクティブタブ */
.menu_nav_slider .slick-current li,
.menu_nav_slider .slick-current {
	color: rgb(var(--color-menu-active));
}

/* アクティブ下線 */
.menu_nav_slider .slick-current::after {
	content: "";
	position: absolute;
	left: .5rem;
	right: .5rem;
	bottom: 0;
	height: .2rem;
	background: rgb(var(--color-menu-active));
	z-index: 2;
}

/* ホバー下線 */
.menu_nav_slider li:hover {
	color: rgb(var(--color-menu-hover));
}
.menu_nav_slider li:hover::after {
	content: "";
	position: absolute;
	left: .5rem;
	right: .5rem;
	bottom: 0;
	height: .2rem;
	background: rgb(var(--color-menu-hover));
	z-index: 2;
}

/* Slickのフォーカス線対策 */
.menu_nav_slider .slick-slide {
	outline: none;
}

/* Slick内のタブ文字揃え */
.menu_nav_slider .slick-slide {
	text-align: left;
}


/* メニューカテゴリナビ: タブレット */
@media screen and (max-width: 1200px) {
	.menu_nav_slider {
		margin-bottom: 3rem;
	}
	
	.menu_nav_slider li {
		font-size: 2.8rem;
	}
}

/* メニューカテゴリナビ: スマホ */
@media screen and (max-width: 720px) {
	.menu_nav_slider {
		margin-bottom: 2rem;
	}
	
	.menu_nav_slider li {
		font-size: 2rem;
	}
}

.menu_main_slider {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
}

.menu_main_slider .menu_main_slide {
	height: auto;
}

.menu_main_slider .slick-list,
.menu_main_slider .slick-track {
	height: auto;
}

.js-menu-content-slider {
	visibility: hidden;
}

.js-menu-content-slider.slick-initialized {
	visibility: visible;
}
.top_menu .thumb_info h4 {
	font-size: 1.6rem;
}
.top_menu .thumb_info p {
	font-size: 1.4rem;
}
.top_menu .thumb_info p span {
	font-size: 1.2rem;
	padding: .2rem 1rem;
	margin: 0 .5rem;
	border: 1px solid rgb(var(--color-bk));
	border-radius: 9999px;
	background: rgb(var(--color-wh));
}

.menu_header p {
	display: inline-block;
	width: auto;
	font-size: 2rem;
	margin: 2rem auto;
}
.menu_footer p {
	font-size: 1.2rem;
}
.menu_footer p.menu_vegan {
	font-size: min(2vw,2.6rem);
	font-weight: 500;
	text-align: center;
	padding: 1.5rem 2rem;
	margin: 6rem auto 2rem auto;
	border: 1px solid rgb(var(--color-bk));
}
@media screen and (max-width: 720px) {
	.menu_footer p.menu_vegan {
		font-size: 3vw;
	}
}
a.view_all_menu {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background: rgb(var(--color-bk));
	color: rgb(var(--color-wh));
	font-size: 1.6rem;
	opacity: .5;
}
a.view_all_menu:hover {
	opacity: 1;
}


/* ---------- トップページ用サムネイル ---------- */

.top_news .thumb_img {
	aspect-ratio: 1 / 1;
}
.top_menu .thumb_img {
	aspect-ratio: 4 / 3;
}


/* ---------- Google Map埋め込み ---------- */
.googlemap {
	width: 100%;
	height: 500px;
}
.googlemap iframe {
	width: 100%;
	height: 100%;
	margin: 0 !important;
	border: 1px solid rgb(var(--color-border)) !important;
	box-sizing: border-box;
	filter: grayscale(100%);
}


/* ==========================================================
   07. アーカイブ・記事ページ
========================================================== */

/* ---------- シングル・固定ページ共通 ---------- */

.page_head {
	padding: var(--space-60) 0;
}
.page_head > div {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 10rem;
}
.page_head_bg {
	position: relative;
	padding: var(--space-60) 0;
	background-size: cover;
	background-position: center center;
}
.page_head_bg > div {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: calc(100vh - 120px - var(--nav-height-xl));
	height: calc(100dvh - 120px - var(--nav-height-xl));
	z-index: 100;
}
@media screen and (max-width: 1600px)
{
.page_head_bg > div {
	height: calc(100vh - 120px - var(--nav-height-lg));
	height: calc(100dvh - 120px - var(--nav-height-lg));
}	
}
@media screen and (max-width: 1360px)
{
.page_head_bg > div {
	height: calc(100vh - 120px - var(--nav-height-md));
	height: calc(100dvh - 120px - var(--nav-height-md));
}	
}
@media screen and (max-width: 1200px)
{
.page_head_bg > div {
	height: calc(100vh - 120px - var(--nav-height-sm));
	height: calc(100dvh - 120px - var(--nav-height-sm));
}	
}
.page_head_bg:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(var(--color-overlay), 0.4);
	pointer-events: none;
}
.page_head > div .breadcrumbs a,
.page_head > div .breadcrumbs {
	color: rgb(var(--color-gray));
	font-size: 1.2rem;
	font-weight: 400;
}
@media screen and (max-width: 750px)
{
.page_head > div .breadcrumbs a,
.page_head > div .breadcrumbs {
	font-size: 1rem;
}
}
.page_head > div h1 {
	font-weight: 500;
	line-height: 1.2em;
	margin-top: 4rem;
	margin-bottom: 2rem;
}
.page_head_bg > div h1 {
	text-align: center;
	color: rgb(var(--color-wh));
}
.page_head > div h1 span {
	font-size: 0.75em;
}
.page_head > div p {
	font-size: 1.2rem;
}
@media screen and (max-width: 750px)
{
.page_head > div p {
	font-size: 1rem;
}
}

.content h2,
.content h3,
.content h4,
.content h5,
.content p,
.content ul,
.content img {
	margin-bottom: 2rem;
}
.content h2,
.content h3,
.content h4,
.content h5 {
	font-weight: 500;
	line-height: 1.45;
	letter-spacing: 0;
}
.content h2 {
	margin-top: 5.6rem;
	margin-bottom: 2rem;
	font-size: 2.8rem;
}
.content h3 {
	margin-top: 4.4rem;
	margin-bottom: 1.6rem;
	font-size: 2.2rem;
}
.content h4 {
	margin-top: 3.6rem;
	margin-bottom: 1.2rem;
	font-size: 1.8rem;
}
.content h5 {
	margin-top: 3rem;
	margin-bottom: 1rem;
	font-size: 1.5rem;
}
.content > :first-child {
	margin-top: 0;
}
.content p a {
	text-decoration: underline;
}
.article_content ul,
.article_content ol {
	display: grid;
	gap: 1rem;
	margin-top: .8rem;
	margin-bottom: 3.2rem;
	padding: 2.4rem 2.8rem;
	background-color: rgb(var(--color-wh-hover));
	border-left: 1px solid rgb(var(--color-gray));
}
.article_content li {
	position: relative;
	padding-left: 1.8rem;
	font-size: 1.4rem;
	line-height: 2;
	letter-spacing: 0;
}
.article_content ul li::before {
	content: "";
	position: absolute;
	top: .9em;
	left: 0;
	width: .45rem;
	height: .45rem;
	background-color: rgb(var(--color-bk));
	border-radius: 50%;
}
.article_content ol {
	counter-reset: article-list;
}
.article_content ol li {
	counter-increment: article-list;
	padding-left: 2.6rem;
}
.article_content ol li::before {
	content: counter(article-list, decimal-leading-zero);
	position: absolute;
	top: .25em;
	left: 0;
	color: rgb(var(--color-bk));
	font-family: var(--font-en);
	font-size: 1.1rem;
	font-weight: 600;
	line-height: 1.5;
}
.article_content li + li {
	border-top: 1px solid rgba(var(--color-gray), 0.55);
	padding-top: 1rem;
}
.article_content li + li::before {
	top: calc(1rem + .9em);
}
.article_content ol li + li::before {
	top: calc(1rem + .25em);
}

.content .thumbnail_img img {
	width: 100%;
	margin-bottom: 4rem;
}
@media screen and (max-width: 750px)
{
.content h2 {
	margin-top: 4rem;
	font-size: 2.2rem;
}
.content h3 {
	margin-top: 3.2rem;
	font-size: 1.8rem;
}
.content h4 {
	margin-top: 2.8rem;
	font-size: 1.6rem;
}
.content h5 {
	margin-top: 2.4rem;
	font-size: 1.4rem;
}
.article_content ul,
.article_content ol {
	gap: .8rem;
	margin-bottom: 2.8rem;
	padding: 2rem;
}
.article_content li {
	font-size: 1.3rem;
	line-height: 1.85;
}
.content .thumbnail_img {
	width: 100vw;
	max-width: none;
	height: auto;
	margin-left: calc(50% - 50vw);
}
}

.article_img,
.article_img img {
	height: auto;
	max-width: 100%;
}
.article_img {
	margin-bottom: 2rem;
}

.share_btns {
	text-align: center;
	margin-top: var(--space-60);
}
.share_btns p {
	text-align: center;
	font-weight: 700;
	font-size: 1.6rem;
}
.share_btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.6rem;
	height: 3.6rem;
	margin: 10px 5px;
	color: rgb(var(--color-bk-hover));
}
.share_btn .sns_icon {
	display: block;
	width: 100%;
	height: 100%;
}
.screen_reader_text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}


/* ---------- NEWSページナビ ---------- */

.news_page {
	display: flex;
	justify-content: space-between;
	margin-top: var(--space-60);
}
.news_page div {
	width: 100%;
	height: 100px;
}
.news_page div a {
	position: relative;
	display: flex;
	width: 100%;
	height: 100px;
	justify-content: center;
	align-items: center;
	font-size: 1.4rem;
}
.news_page div a:hover {
	color: rgb(var(--color-wh));
	opacity: 1;
}
.news_page div a:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: rgb(var(--color-bk));
	transition: transform .5s cubic-bezier(.5,0,0,1);
	transform: scale(0,1);
    transform-origin: right center;
	z-index: -1;
}
.news_page div a:hover:before {
	transition: transform .5s cubic-bezier(.5,0,0,1);
	transform: scale(1,1);
    transform-origin: left center;
}
.news_page .page_center {
	display: block;
	width: 1px;
	background: rgb(var(--color-bk));
}



/* ---------- Aboutページ ---------- */

#about .content.center_content {
	width: fit-content;
	margin: 0 auto;
}

/* ---------- 私たちについて: Gutenbergブロック ---------- */
#about .content.center_content:has(.about-page) {
	width: 100%;
}
.about-page {
	display: flex;
	flex-direction: column;
	gap: 10rem;
	color: rgb(var(--color-bk));
}
.about-page > .wp-block-group__inner-container {
	display: flex;
	flex-direction: column;
	gap: 10rem;
}
.about-hero {
	max-width: 78rem;
	margin-inline: auto;
	padding: 4rem 0 2rem;
	text-align: center;
}
.about-hero h2 {
	margin-bottom: 3.2rem;
	font-size: clamp(3.2rem, 4.2vw, 4.8rem);
	line-height: 1.18;
	font-weight: 500;
	letter-spacing: .03em;
}
.about-hero p {
	margin-bottom: 2.2rem;
	font-size: 1.7rem;
	line-height: 2.15;
	letter-spacing: .04em;
}
.about-section {
	margin-top: 0;
	margin-bottom: 0;
}
.about-section.wp-block-columns {
	align-items: stretch !important;
	gap: 2.4rem;
}
.about-section.wp-block-columns > .wp-block-column {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.about-section h2 {
	margin-bottom: 2.4rem;
	font-size: clamp(2.4rem, 2.8vw, 3.4rem);
	line-height: 1.3;
	font-weight: 500;
	letter-spacing: .04em;
}
.about-section h3 {
	margin-bottom: 1.6rem;
	font-size: 1.8rem;
	line-height: 1.55;
	font-weight: 500;
	letter-spacing: .03em;
}
.about-section p,
.about-section li {
	font-size: 1.45rem;
	line-height: 2.05;
	letter-spacing: .03em;
}
.about-photo-placeholder {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 40rem;
	background: rgb(var(--color-bg-gray));
	color: rgb(var(--color-gray));
	overflow: hidden;
	text-align: center;
}
.about-photo-placeholder > .wp-block-group__inner-container {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: inherit;
}
.about-photo-placeholder p {
	position: relative;
	margin: 0;
	font-size: 1.2rem;
	letter-spacing: .08em;
	z-index: 2;
}
.about-photo-placeholder img,
.about-photo-placeholder .wp-block-image,
.about-photo-placeholder .wp-block-cover {
	width: 100%;
	height: 100%;
	min-height: inherit;
	margin: 0;
}
.about-photo-placeholder img,
.about-photo-placeholder .wp-block-cover__image-background {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.about-section .wp-block-image {
	width: 100%;
	height: 100%;
	min-height: 40rem;
	margin: 0;
	overflow: hidden;
}
.about-section .wp-block-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.about-feature-grid {
	gap: 2.4rem;
}
.about-card {
	height: 100%;
	padding: 3.6rem 3.2rem;
	background: rgb(var(--color-wh));
	border: 1px solid rgba(var(--color-bk), .12);
	box-sizing: border-box;
	transition: var(--transition);
}
.about-card:hover {
	border-color: rgba(var(--color-bk), .28);
}
.about-card h3:first-child,
.about-card .wp-block-group__inner-container > h3:first-child {
	margin-top: 0;
}
.about-card p:last-child {
	margin-bottom: 0;
}
.about-note {
	position: relative;
	padding: 5.6rem 6rem;
	background: rgb(var(--color-bg-gray));
	box-sizing: border-box;
}
.about-note > .wp-block-group__inner-container {
	display: grid;
	grid-template-columns: minmax(18rem, .75fr) minmax(0, 1fr);
	column-gap: 6rem;
}
.about-note h2 {
	margin: 0;
	grid-row: 1 / 3;
}
.about-note ul {
	display: grid;
	gap: 1.2rem;
	margin: 0 0 2.4rem;
	padding: 0;
	list-style: none;
}
.about-note li {
	position: relative;
	padding: 1.6rem 2rem 1.6rem 6.8rem;
	background: rgb(var(--color-wh));
	border: 1px solid rgba(var(--color-bk), .08);
	box-sizing: border-box;
}
.about-note li strong {
	position: absolute;
	top: 50%;
	left: 2rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.6rem;
	height: 3.6rem;
	border-radius: 9999px;
	background: rgb(var(--color-bk));
	color: rgb(var(--color-wh));
	font-size: 1.2rem;
	line-height: 1;
	transform: translateY(-50%);
}
.about-note p {
	margin-bottom: 0;
	font-size: 1.3rem;
	color: rgb(var(--color-gray));
	grid-column: 2;
}
.about-note-buttons {
	margin-top: 2.8rem;
	grid-column: 2;
}
.about-note-buttons .wp-block-button__link {
	min-width: 18rem;
	padding: 1.4rem 3rem;
	border-radius: var(--border-radius);
	background: rgb(var(--color-bk));
	color: rgb(var(--color-wh));
	font-size: 1.35rem;
	font-weight: 600;
	letter-spacing: .02em;
	text-align: center;
	box-sizing: border-box;
}
.about-note p:last-child,
.about-note ul:last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 750px)
{
#about .content.center_content:has(.about-page) {
	width: 100%;
}
.about-page {
	gap: 7.2rem;
}
.about-page > .wp-block-group__inner-container {
	gap: 7.2rem;
}
.about-hero {
	padding-top: 2rem;
	text-align: left;
}
.about-hero h2 {
	font-size: 3.2rem;
	line-height: 1.35;
}
.about-hero p {
	font-size: 1.5rem;
	line-height: 1.9;
}
.about-section.wp-block-columns {
	gap: 2rem;
}
.about-section h2 {
	font-size: 2.4rem;
}
.about-section h3 {
	font-size: 1.7rem;
}
.about-section p,
.about-section li {
	font-size: 1.4rem;
	line-height: 1.9;
}
.about-photo-placeholder {
	min-height: 24rem;
}
.about-section .wp-block-image {
	min-height: 24rem;
}
.about-card {
	padding: 2.4rem;
}
.about-note {
	display: block;
	padding: 3.2rem 2.4rem;
}
.about-note > .wp-block-group__inner-container {
	display: block;
}
.about-note h2 {
	margin-bottom: 2.4rem;
}
.about-note li {
	padding: 1.4rem 1.6rem 1.4rem 6rem;
}
.about-note li strong {
	left: 1.6rem;
	width: 3.2rem;
	height: 3.2rem;
}
.about-note-buttons {
	margin-top: 2.4rem;
}
.about-note-buttons .wp-block-button,
.about-note-buttons .wp-block-button__link {
	width: 100%;
}
}


/* ---------- 店舗情報: Gutenbergブロック ---------- */
#restaurant .content {
	margin-top: 0;
}
.location-page {
	display: flex;
	flex-direction: column;
	gap: 9.6rem;
	color: rgb(var(--color-bk));
}
.location-page > .wp-block-group__inner-container {
	display: flex;
	flex-direction: column;
	gap: 9.6rem;
}
.location-hero {
	max-width: 78rem;
	margin-inline: auto;
	padding: 3.2rem 0 1.2rem;
	text-align: center;
}
.location-hero h2 {
	margin: 0 0 2.4rem;
	font-size: clamp(3.2rem, 4vw, 4.6rem);
	line-height: 1.18;
	font-weight: 500;
	letter-spacing: .03em;
}
.location-hero p {
	margin-bottom: 2rem;
	font-size: 1.55rem;
	line-height: 2.05;
	letter-spacing: .04em;
}
.location-section {
	margin-top: 0;
	margin-bottom: 0;
}
.location-section.wp-block-columns {
	align-items: stretch !important;
	gap: 4rem;
}
.location-section.wp-block-columns > .wp-block-column {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.location-section h2 {
	margin: 0 0 2.8rem;
	font-size: clamp(2.6rem, 3vw, 3.8rem);
	line-height: 1.25;
	font-weight: 500;
	letter-spacing: .03em;
}
.location-section h3 {
	margin: 0 0 1.2rem;
	font-size: 1.8rem;
	line-height: 1.5;
	font-weight: 500;
	letter-spacing: .03em;
}
.location-section p,
.location-section li {
	font-size: 1.45rem;
	line-height: 2;
	letter-spacing: .03em;
}
.location-section p:last-child {
	margin-bottom: 0;
}
.location-photo {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 42rem;
	margin: 0;
	background: rgb(var(--color-bg-gray));
	color: rgb(var(--color-gray));
	overflow: hidden;
	text-align: center;
}
.location-photo .wp-block-cover__inner-container {
	width: 100%;
	color: inherit;
}
.location-photo p {
	margin: 0;
	font-size: 1.2rem;
	line-height: 1.8;
	letter-spacing: .08em;
}
.location-photo img,
.location-photo .wp-block-cover__image-background {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.location-gallery {
	display: flex;
	flex-direction: column;
	gap: 2.4rem;
}
.location-gallery > .wp-block-group__inner-container {
	display: flex;
	flex-direction: column;
	gap: 2.4rem;
}
.location-gallery .wp-block-columns {
	gap: 1.6rem;
	margin-bottom: 0;
}
.location-gallery .location-photo {
	min-height: 24rem;
}
.location-info-grid {
	gap: 1.8rem;
}
.location-card {
	height: 100%;
	padding: 3.2rem;
	background: rgb(var(--color-wh));
	border: 1px solid rgba(var(--color-bk), .12);
	box-sizing: border-box;
	transition: var(--transition);
}
.location-card:hover {
	border-color: rgba(var(--color-bk), .28);
}
.location-card h3:first-child,
.location-card .wp-block-group__inner-container > h3:first-child {
	margin-top: 0;
}
.location-card p:last-child {
	margin-bottom: 0;
}
.location-comfort-section {
	display: flex;
	flex-direction: column;
	gap: 2.4rem;
}
.location-comfort-section > .wp-block-group__inner-container {
	display: flex;
	flex-direction: column;
	gap: 2.4rem;
}
.location-comfort-section > .wp-block-group__inner-container > p {
	margin: -1.2rem 0 .8rem;
	color: rgb(var(--color-gray));
}
.location-comfort-grid {
	gap: 1.6rem;
	margin: 0;
}
.location-comfort-card {
	padding: 2.8rem;
}
.location-comfort-card ul {
	display: flex;
	flex-direction: column;
	gap: .8rem;
	margin: 0;
	padding: 0;
	list-style: none;
}
.location-comfort-card li {
	position: relative;
	padding-left: 1.4rem;
}
.location-comfort-card li::before {
	content: "";
	position: absolute;
	top: 1em;
	left: 0;
	width: .4rem;
	height: .4rem;
	border-radius: 50%;
	background: rgba(var(--color-bk), .45);
	transform: translateY(-50%);
}
.location-note {
	padding: 5.6rem 6rem;
	background: rgb(var(--color-bg-gray));
	box-sizing: border-box;
}
.location-note > .wp-block-group__inner-container {
	display: grid;
	grid-template-columns: minmax(20rem, .8fr) minmax(0, 1fr);
	column-gap: 6rem;
	align-items: start;
}
.location-note h2 {
	margin: 0;
}
.location-note p,
.location-note li {
	font-size: 1.4rem;
	line-height: 2;
}
.location-map-section {
	display: block;
}
.location-map-section > .wp-block-group__inner-container {
	display: block;
}
.location-map-section h2 {
	margin-bottom: 3.2rem;
}
.location-map {
	overflow: hidden;
	background:
		linear-gradient(rgba(var(--color-bk), .04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(var(--color-bk), .04) 1px, transparent 1px),
		rgb(var(--color-bg-gray));
	background-size: 5.6rem 5.6rem;
}
.location-map .wp-block-cover__inner-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.2rem;
	min-height: inherit;
	padding: 4rem 2rem;
	background: rgba(var(--color-wh), .76);
}
.location-map strong {
	display: block;
	color: rgb(var(--color-bk));
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: .04em;
}
.location-map-embed {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 16 / 7;
	min-height: 42rem;
	margin: 0 0 3.2rem;
	overflow: hidden;
	background: rgb(var(--color-bg-gray));
}
.location-map-embed .youtube {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	aspect-ratio: auto;
}
.location-map-embed iframe {
	position: absolute;
	inset: 0;
	display: block;
	width: 100% !important;
	height: 100% !important;
	border: 0;
	filter: grayscale(1);
}
.location-buttons {
	gap: 1.2rem;
	margin-top: 2.8rem;
}
.location-buttons .wp-block-button__link {
	min-width: 18rem;
	padding: 1.4rem 3rem;
	border-radius: var(--border-radius);
	background: rgb(var(--color-bk));
	color: rgb(var(--color-wh));
	font-size: 1.35rem;
	font-weight: 600;
	letter-spacing: .02em;
	text-align: center;
	box-sizing: border-box;
}
.location-buttons .is-style-outline .wp-block-button__link {
	background: transparent;
	border: 1px solid rgb(var(--color-bk));
	color: rgb(var(--color-bk));
}

@media screen and (max-width: 750px)
{
.location-page,
.location-page > .wp-block-group__inner-container {
	gap: 7.2rem;
}
.location-hero {
	padding-top: 1.6rem;
	text-align: left;
}
.location-hero h2 {
	font-size: 3.2rem;
	line-height: 1.3;
}
.location-hero p {
	font-size: 1.45rem;
	line-height: 1.9;
}
.location-section.wp-block-columns {
	gap: 2.4rem;
}
.location-section h2 {
	font-size: 2.5rem;
}
.location-section h3 {
	font-size: 1.7rem;
}
.location-section p,
.location-section li {
	font-size: 1.4rem;
	line-height: 1.9;
}
.location-photo {
	min-height: 24rem;
}
.location-gallery .wp-block-columns {
	gap: 1.2rem;
}
.location-gallery .location-photo {
	min-height: 18rem;
}
.location-map-embed {
	aspect-ratio: 1 / 1;
	min-height: 28rem;
	margin-bottom: 2.4rem;
}
.location-card {
	padding: 2.4rem;
}
.location-comfort-section,
.location-comfort-section > .wp-block-group__inner-container {
	gap: 1.6rem;
}
.location-comfort-section > .wp-block-group__inner-container > p {
	margin: -.4rem 0 .8rem;
}
.location-comfort-grid {
	gap: 1.2rem;
}
.location-comfort-card {
	padding: 2.4rem;
}
.location-note {
	display: block;
	padding: 3.2rem 2.4rem;
}
.location-note > .wp-block-group__inner-container {
	display: block;
}
.location-note h2 {
	margin-bottom: 2rem;
}
.location-buttons .wp-block-button,
.location-buttons .wp-block-button__link {
	width: 100%;
}
}


/* ---------- テイクアウト: Gutenbergブロック ---------- */
#takeout .content {
	margin-top: 0;
}
.takeout-page {
	display: flex;
	flex-direction: column;
	gap: 9.6rem;
	color: rgb(var(--color-bk));
}
.takeout-page > .wp-block-group__inner-container {
	display: flex;
	flex-direction: column;
	gap: 9.6rem;
}
.takeout-hero {
	position: relative;
	min-height: 56rem;
	margin: 0;
	padding: 6.4rem;
	overflow: hidden;
	background: rgb(var(--color-bg-gray));
	box-sizing: border-box;
}
.takeout-hero .wp-block-cover__image-background {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.takeout-hero .wp-block-cover__inner-container {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 43rem;
	z-index: 2;
}
.takeout-hero h2 {
	max-width: 52rem;
	margin: 0 0 2.4rem;
	color: rgb(var(--color-wh));
	font-size: clamp(4rem, 7vw, 8rem);
	line-height: .98;
	font-weight: 400;
	letter-spacing: .08em;
}
.takeout-hero p {
	max-width: 52rem;
	margin-bottom: 1rem;
	color: rgb(var(--color-wh));
	font-size: 1.45rem;
	line-height: 2;
	letter-spacing: .05em;
}
.takeout-intro {
	max-width: 76rem;
	margin-inline: auto;
	text-align: center;
}
.takeout-intro h2 {
	margin: 0 0 2.4rem;
	font-size: clamp(2.8rem, 3.8vw, 4.2rem);
	line-height: 1.25;
	font-weight: 500;
	letter-spacing: .04em;
}
.takeout-intro p {
	font-size: 1.55rem;
	line-height: 2.05;
	letter-spacing: .04em;
}
.takeout-section {
	margin-top: 0;
	margin-bottom: 0;
}
.takeout-section h2,
.takeout-drink-note h2 {
	margin: 0 0 3.2rem;
	font-size: clamp(2.6rem, 3vw, 3.8rem);
	line-height: 1.25;
	font-weight: 500;
	letter-spacing: .04em;
}
.takeout-section p,
.takeout-section li {
	font-size: 1.45rem;
	line-height: 2;
	letter-spacing: .03em;
}
.takeout-menu-grid {
	gap: 2rem;
}
.takeout-menu-card {
	height: 100%;
	background: rgb(var(--color-wh));
	border: 1px solid rgba(var(--color-bk), .12);
	box-sizing: border-box;
	overflow: hidden;
	transition: var(--transition);
}
.takeout-menu-card:hover {
	border-color: rgba(var(--color-bk), .28);
}
.takeout-menu-card figure,
.takeout-menu-card .wp-block-image {
	width: 100%;
	aspect-ratio: 4 / 3;
	margin: 0;
	overflow: hidden;
	background: rgb(var(--color-bg-gray));
}
.takeout-menu-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.takeout-menu-card > .wp-block-group__inner-container {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}
.takeout-menu-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 2.8rem;
}
.takeout-menu-card-body h3 {
	margin: 0 0 1rem;
	font-size: 1.9rem;
	line-height: 1.45;
	font-weight: 500;
	letter-spacing: .04em;
}
.takeout-menu-card-body p {
	margin-bottom: 1.4rem;
	font-size: 1.35rem;
	line-height: 1.85;
	color: rgb(var(--color-gray));
}
.takeout-price {
	margin-top: auto;
	padding-top: 1.8rem;
	border-top: 1px solid rgba(var(--color-bk), .12);
	font-family: 'Roboto', 'Zen Kaku Gothic New', sans-serif;
	font-size: 2.2rem !important;
	line-height: 1.2 !important;
	font-weight: 600;
	color: rgb(var(--color-bk)) !important;
	letter-spacing: .02em;
}
.takeout-sweets-grid {
	gap: 1.6rem;
	margin-bottom: 1.6rem;
}
.takeout-sweets-card {
	height: 100%;
	padding: 1.8rem;
	background: rgb(var(--color-wh));
	border: 1px solid rgba(var(--color-bk), .1);
	box-sizing: border-box;
}
.takeout-sweets-card > .wp-block-group__inner-container {
	display: grid;
	grid-template-columns: 15rem minmax(0, 1fr);
	gap: 1.8rem;
	align-items: center;
	height: 100%;
}
.takeout-sweets-card figure,
.takeout-sweets-card .wp-block-image {
	width: 15rem;
	aspect-ratio: 4 / 3;
	margin: 0;
	overflow: hidden;
	background: rgb(var(--color-bg-gray));
}
.takeout-sweets-card img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.takeout-sweets-card h3 {
	margin: 0 0 .8rem;
	font-size: 1.45rem;
	line-height: 1.45;
	font-weight: 500;
}
.takeout-sweets-card p {
	margin: 0;
	font-size: 1.35rem;
	line-height: 1.6;
}
.takeout-drink-note {
	padding: 5.2rem 5.6rem;
	background: rgb(var(--color-bg-gray));
	box-sizing: border-box;
}
.takeout-drink-note > .wp-block-group__inner-container {
	display: grid;
	grid-template-columns: minmax(20rem, .72fr) minmax(0, 1fr);
	column-gap: 6rem;
	align-items: start;
}
.takeout-drink-note h2 {
	margin-top: 0;
}
.takeout-drink-note ul {
	display: grid;
	gap: 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}
.takeout-drink-note li {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 2rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(var(--color-bk), .12);
	font-size: 1.4rem;
	line-height: 1.65;
}
.takeout-drink-note li span:first-child {
	min-width: 0;
}
.takeout-drink-note li span:last-child {
	flex-shrink: 0;
	text-align: right;
	white-space: nowrap;
}
.takeout-drink-note li small {
	display: block;
	margin-top: .35rem;
	color: rgb(var(--color-gray));
	font-size: 1.2rem;
	line-height: 1.6;
	letter-spacing: .03em;
}
.takeout-order {
	padding: 4.8rem 5.6rem;
	border: 1px solid rgba(var(--color-bk), .18);
	text-align: center;
	box-sizing: border-box;
}
.takeout-order h2 {
	margin-top: 0;
	margin-bottom: 1.6rem;
}
.takeout-order .takeout-tel {
	margin: 1.4rem 0 1.2rem;
	font-size: clamp(3rem, 4.5vw, 5.2rem);
	line-height: 1.1;
	font-weight: 600;
	letter-spacing: .03em;
}
.takeout-order-note {
	font-size: 1.25rem !important;
	line-height: 1.8 !important;
	color: rgb(var(--color-gray));
}
.takeout-order p:last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 750px)
{
.takeout-page,
.takeout-page > .wp-block-group__inner-container {
	gap: 7.2rem;
}
.takeout-hero {
	min-height: 42rem;
	padding: 3.2rem 2.4rem;
}
.takeout-hero .wp-block-cover__inner-container {
	min-height: 32rem;
}
.takeout-hero h2 {
	font-size: 4.2rem;
}
.takeout-hero p,
.takeout-intro p,
.takeout-section p,
.takeout-section li {
	font-size: 1.4rem;
	line-height: 1.9;
}
.takeout-intro {
	text-align: left;
}
.takeout-intro h2,
.takeout-section h2,
.takeout-drink-note h2 {
	font-size: 2.5rem;
}
.takeout-menu-grid {
	gap: 1.6rem;
}
.takeout-menu-card-body {
	padding: 2.4rem;
}
.takeout-menu-card-body h3 {
	font-size: 1.75rem;
}
.takeout-sweets-card {
	padding: 1.6rem;
}
.takeout-sweets-card > .wp-block-group__inner-container {
	grid-template-columns: 15rem minmax(0, 1fr);
	gap: 1.4rem;
}
.takeout-sweets-card figure,
.takeout-sweets-card .wp-block-image {
	width: 15rem;
}
.takeout-drink-note {
	padding: 3.2rem 2.4rem;
}
.takeout-drink-note > .wp-block-group__inner-container {
	display: block;
}
.takeout-drink-note h2 {
	margin-bottom: 2.4rem;
}
.takeout-drink-note li {
	display: block;
}
.takeout-drink-note li span:last-child {
	display: block;
	margin-top: .4rem;
	text-align: left;
	white-space: normal;
}
.takeout-order {
	padding: 3.2rem 2.4rem;
	text-align: left;
}
}


/* ---------- ショップリスト ---------- */

h3.shoplist_area{
	text-align: center;
	margin: var(--space-80) 0 var(--space-40) 0;
}
.shoplist {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.shoplist > div {
	display: block;
	width: calc((100% - 10px) / 2);
	padding: 3rem 0;
	border-bottom: 1px dotted rgb(var(--color-gray));
}
.shoplist > div a {
	text-decoration: underline;
}


/* ---------- 会社概要 ---------- */
.division {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	gap: 6rem;
	margin: var(--space-80) auto;
}
.division > div {
	width: 100%;
	max-width: 300px;
}
.division > div img {
	width: 100%;
	margin-bottom: var(--space-40);
}


/* ==========================================================
   08. ユーティリティ
========================================================== */

/* ---------- パディング調整 ---------- */
.p20 {
	padding-top: var(--space-20) !important;
	padding-bottom: var(--space-20) !important;
}
.p40 {
	padding-top: var(--space-40) !important;
	padding-bottom: var(--space-40) !important;
}
.p60 {
	padding-top: var(--space-60) !important;
	padding-bottom: var(--space-60) !important;
}
.p80 {
	padding-top: var(--space-80) !important;
	padding-bottom: var(--space-80) !important;
}
.p100 {
	padding-top: var(--space-100) !important;
	padding-bottom: var(--space-100) !important;
}

.pt20 {
	padding-top: var(--space-20) !important;
}
.pt40 {
	padding-top: var(--space-40) !important;
}
.pt60 {
	padding-top: var(--space-60) !important;
}
.pt80 {
	padding-top: var(--space-80) !important;
}
.pt100 {
	padding-top: var(--space-100) !important;
}

.pb20 {
	padding-bottom: var(--space-20) !important;
}
.pb40 {
	padding-bottom: var(--space-40) !important;
}
.pb60 {
	padding-bottom: var(--space-60) !important;
}
.pb80 {
	padding-bottom: var(--space-80) !important;
}
.pb100 {
	padding-bottom: var(--space-100) !important;
}


/* ---------- マージン調整 ---------- */

.m20 {
	margin-top: var(--space-20) !important;
	margin-bottom: var(--space-20) !important;
}
.m40 {
	margin-top: var(--space-40) !important;
	margin-bottom: var(--space-40) !important;
}
.m60 {
	margin-top: var(--space-60) !important;
	margin-bottom: var(--space-60) !important;
}
.m80 {
	margin-top: var(--space-80) !important;
	margin-bottom: var(--space-80) !important;
}
.m100 {
	margin-top: var(--space-100) !important;
	margin-bottom: var(--space-100) !important;
}

.mt0 {
	margin-top: 0 !important;
}
.mt20 {
	margin-top: var(--space-20) !important;
}
.mt40 {
	margin-top: var(--space-40) !important;
}
.mt60 {
	margin-top: var(--space-60) !important;
}
.mt80 {
	margin-top: var(--space-80) !important;
}
.mt100 {
	margin-top: var(--space-100) !important;
}

.mb20 {
	margin-bottom: var(--space-20) !important;
}
.mb40 {
	margin-bottom: var(--space-40) !important;
}
.mb60 {
	margin-bottom: var(--space-60) !important;
}
.mb80 {
	margin-bottom: var(--space-80) !important;
}
.mb100 {
	margin-bottom: var(--space-100) !important;
}


/* ==========================================================
   09. レスポンシブ: タブレット
========================================================== */

@media screen and (max-width: 990px)
{
	
.top_sliders {
	height: 72rem;
}
.top_sliders > div:nth-child(1) {
	grid-row: 1;
	grid-column: 1 / 3;
}
.top_sliders > div:nth-child(2) {
	grid-row: 2;
	grid-column: 1;
}
.top_sliders > div:nth-child(3) {
	grid-row: 2;
	grid-column: 2;
}
	
}


/* ==========================================================
   10. レスポンシブ: スマホ
========================================================== */

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

:root {
	--top-alert-height: 31px;
}

.pc {
	display: none !important;
}
.sp {
	display: inherit !important;
}

/* ---------- トップアナウンスバー ---------- */
.top_alert_bar a {
	padding: .8rem 1.6rem;
	font-size: 1.1rem;
}
.top_alert_bar span {
	margin-right: .6rem;
	font-size: .9rem;
}

/* ---------- トップページ文字サイズ ---------- */
.top_concept h2 {
	font-size: 2rem;
	line-height: 1.65;
}
.menu_nav_slider li {
	font-size: 1.6rem;
}
.js-menu-content-slider .thumb_info hr ~ p {
	font-size: 1.1rem;
	line-height: 1.45;
}
.top_news .thumb_info h4,
.update_archive_list .thumb_info h4 {
	font-size: 1.4rem;
	line-height: 1.5;
}
.top_news .thumb_info p,
.update_archive_list .thumb_info p {
	font-size: 1.2rem;
	line-height: 1.5;
}
.footer > div > ul li:not(.lang):not(.nav_sns):not(.reserve) {
	font-size: 1.2rem;
}

/* ---------- ニュース一覧 ---------- */
.news_list > div {
	width: calc((100% - 10px) / 2);
}



/* ---------- ショップリスト ---------- */

.shoplist > div {
	width: 100%;
}
.shoplist > div:first-of-type {
	padding-top: var(--space-20);
	border-top: 1px solid rgb(var(--color-bk));
}

}
