@charset "UTF-8";

/*
 * ============================================================
 * サイトデザインCSS（css_style.css）
 * ============================================================
 * - フォント・基本レイアウト
 * - 共通ヘッダー・フッター
 * - 下層ページ共通
 * - ニュース・お知らせ
 * - サイト案内・お問い合わせ・FAQ
 * - コンセプト・料金システム
 * - トップページ
 * - メニュー・キャスト
 *
 * 基本レイアウト・各セクション・共通テーマの順に記述しています。
 * 見た目を変えず、既存の記述順を維持しています。
 * ============================================================
 */

/* ============================================================
 * 01. フォント・基本レイアウト
 * ============================================================ */

/* HTML */
html{max-width:100%; overflow-x:clip; font-size:16px;}

/* BODY */
body{width:100%; max-width:100%; overflow-x:clip; line-height: 1.8; letter-spacing: 0.1rem; color: var(--gothic-ink); font-family: Noto Sans JP, "ヒラギノ角ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", メイリオ, sans-serif; background: var(--gothic-paper);}

/* コンテンツ幅（wrapper） */
.wrapper{max-width: 1228px; margin: 0 auto; padding: 0 1rem;}
	@media screen and ( max-width:479px ){
		.wrapper{display: block; margin: 0 auto; padding: 0 2.5vw; width: auto;}
	}

/* ============================================================
 * 04. 下層ページ共通：見出し・パンくず
 * ============================================================ */
section.section_page_header{display: block; margin: 0; padding: 0;}
section.section_page_header .box{ display: block; overflow: hidden;}
section.section_page_header .box .background{position: absolute; top: -3rem; right: -3rem; padding: 1rem; font-size: 18vmin; line-height: 1; font-weight: bold; font-family: Georgia, "Yu Mincho", serif; text-align: right; z-index: -999;}
section.section_page_header .box .title{padding: 3rem 0; text-align: center;}
section.section_page_header .box .title h1:not(.page_title_ja), section.section_page_header .box .title .page_title_en{font-size: clamp(2rem, 5vw, 2.5rem); font-weight: normal; color: var(--gothic-ink); font-family: Georgia, "Yu Mincho", serif;}
section.section_page_header .box .title h2, section.section_page_header .box .title .page_title_ja{font-size: 100%; font-weight: bold;}
section.section_page_header .underline{border-bottom: 1px solid var(--gothic-line); background: var(--gothic-paper);}

section.section_page_pan{display: block; margin: 0; padding: 0.6rem 0; padding-bottom: calc(clamp(2.5rem, 5vw, 4rem) - 0.9rem);}
section.section_page_pan nav{margin: 0; padding: 0;}
section.section_page_pan nav a{margin: 0; padding: 0; font-weight: bold; text-decoration: none; color: var(--gothic-ink);}

/* ============================================================
 * 05. ニュース・お知らせ
 * ============================================================ */

/* ニュース詳細 */
article.section_news_detail {
	display: block;
	margin: 0;
	padding: 1.5rem 0 clamp(2.5rem, 6vw, 5rem);
	background: var(--gothic-paper);
}

article.section_news_detail .box {
	width: min(calc(100% - 40px), 800px);
	margin: 0 auto;
}

article.section_news_detail .news_detail_image {
	overflow: hidden;
	box-sizing: border-box;
	width: 100%;
	margin: clamp(1.5rem, 4vw, 2.5rem) 0 0;
	aspect-ratio: 16 / 9;
	border: 1px solid var(--gothic-line);
	border-radius: 20px;
}

article.section_news_detail .news_detail_image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

article.section_news_detail .news_detail_heading {
	padding: clamp(1.5rem, 4vw, 2.5rem) 0;
	border-bottom: 1px solid var(--gothic-line);
}

article.section_news_detail .news_detail_heading h1 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: bold;
	line-height: 1.55;
}

article.section_news_detail .news_detail_heading time {
	display: block;
	margin-top: 0.75rem;
	color: var(--gothic-ink);
	font-size: 0.8rem;
	letter-spacing: 0.08em;
}

@media (min-width: 601px) {
	article.section_news_detail .news_detail_heading {
		display: flex;
		flex-direction: column;
		align-items: stretch;
	}
}

article.section_news_detail .news_detail_content {
	box-sizing: border-box;
	padding: clamp(1.5rem, 4vw, 2.5rem) clamp(0.5rem, 2vw, 1rem) 0;
	color: var(--gothic-ink);
	font-size: 1rem;
	line-height: 2;
}

article.section_news_detail .news_detail_content p + p {
	margin-top: 1.25rem;
}

@media (max-width: 600px) {
	article.section_news_detail {
		padding-top: 1rem;
	}

	article.section_news_detail .news_detail_heading h1 {
		font-size: 1.25rem;
	}

	article.section_news_detail .box {
		width: min(calc(100% - 32px), 800px);
	}

	article.section_news_detail .news_detail_image {
		border-radius: 16px;
	}
}

/* 下層ページ共通：page_panの次のセクションは上余白を持たせない */
body > section.section_page_pan + section[class*="section_"],
body > section.section_page_pan + article[class*="section_"] {
	padding-top: 0;
}

section.section_info_list {
	padding-bottom: clamp(3rem, 6vw, 5rem);
}

section.section_info_list .info_list {
	width: min(100%, 900px);
	margin: 0 auto;
}

section.section_info_list .info_list_item {
	display: grid;
	grid-template-columns: 130px minmax(0, 1fr);
	align-items: center;
	gap: clamp(1rem, 3vw, 2.5rem);
	padding: clamp(1.1rem, 2vw, 1.5rem) 0;
	color: var(--gothic-ink);
	text-decoration: none;
}

section.section_info_list .info_list_item time {
	color: var(--gothic-paper);
	font-size: 0.85rem;
	line-height: 1.6;
}

section.section_info_list .info_list_item span {
	font-size: 1rem;
	font-weight: bold;
	line-height: 1.7;
}

section.section_info_list .info_list_item:hover span,
section.section_info_list .info_list_item:focus-visible span {
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

@media (max-width: 600px) {
	section.section_info_list .info_list_item {
		grid-template-columns: 1fr;
		gap: 0.25rem;
	}
}

/* お知らせ詳細：ニュース詳細と同じ構成（画像なし） */
article.section_info_detail {
	display: block;
	margin: 0;
	padding: 1.5rem 0 clamp(2.5rem, 6vw, 5rem);
	background: var(--gothic-paper);
}

article.section_info_detail .box {
	width: min(calc(100% - 40px), 800px);
	margin: 0 auto;
}

article.section_info_detail .info_detail_heading {
	padding: clamp(1.5rem, 4vw, 2.5rem) 0;
	border-bottom: 1px solid var(--gothic-line);
}

article.section_info_detail .info_detail_heading h1 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: bold;
	line-height: 1.55;
}

article.section_info_detail .info_detail_heading time {
	display: block;
	margin-top: 0.75rem;
	color: var(--gothic-ink);
	font-size: 0.8rem;
	letter-spacing: 0.08em;
}

article.section_info_detail .info_detail_content {
	box-sizing: border-box;
	padding: clamp(1.5rem, 4vw, 2.5rem) clamp(0.5rem, 2vw, 1rem) 0;
	color: var(--gothic-ink);
	font-size: 1rem;
	line-height: 2;
}

article.section_info_detail .info_detail_content p + p {
	margin-top: 1.25rem;
}

.news_detail_content .article_rich_text + .article_rich_text,
.info_detail_content .article_rich_text + .article_rich_text {
	margin-top: 1.25rem;
}

.news_detail_content .article_rich_text strong,
.info_detail_content .article_rich_text strong {
	color: inherit;
	font-weight: 700;
}

.news_detail_content .article_rich_text ul,
.news_detail_content .article_rich_text ol,
.info_detail_content .article_rich_text ul,
.info_detail_content .article_rich_text ol {
	margin: 1em 0;
	padding-left: 1.75em;
}

.news_detail_content .article_rich_text li + li,
.info_detail_content .article_rich_text li + li {
	margin-top: 0.35em;
}

.news_detail_content .article_rich_text a,
.info_detail_content .article_rich_text a {
	color: var(--gothic-wine);
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

/* News本文：舞台幕と操り糸をモチーフにしたH1〜H4 */
article.section_news_detail .news_detail_content :is(h1, h2, h3, h4) {
	position: relative;
	box-sizing: border-box;
	max-width: 100%;
	margin: clamp(1.75rem, 4vw, 2.5rem) 0 0.8rem;
	font-family: var(--gothic-serif);
	font-weight: 600;
	line-height: 1.55;
	letter-spacing: 0.04em;
	overflow-wrap: anywhere;
	word-break: normal;
}

article.section_news_detail .news_detail_content > :is(h1, h2, h3, h4):first-child,
article.section_news_detail .news_detail_content .article_rich_text > :is(h1, h2, h3, h4):first-child {
	margin-top: 0;
}

article.section_news_detail .news_detail_content h1 {
	padding: clamp(1rem, 3vw, 1.25rem) clamp(3rem, 7vw, 4.25rem);
	border-top: 1px solid var(--gothic-gold);
	border-bottom: 1px solid var(--gothic-gold);
	border-radius: 3px 14px 3px 14px;
	background:
		linear-gradient(90deg, transparent 0 17px, #a88b7660 17px 18px, transparent 18px calc(100% - 18px), #a88b7660 calc(100% - 18px) calc(100% - 17px), transparent calc(100% - 17px)),
		linear-gradient(105deg, var(--gothic-dark), var(--gothic-wine) 58%, #2b1821);
	box-shadow: inset 0 0 0 4px #17131794, 0 6px 18px #672a4029;
	color: #fff4f7;
	font-size: clamp(18px, 3vw, 20px);
	text-align: center;
}

article.section_news_detail .news_detail_content h1::before,
article.section_news_detail .news_detail_content h1::after {
	content: "";
	position: absolute;
	top: -1px;
	width: 1px;
	height: 22px;
	background: #c7aa92;
	box-shadow: 0 22px 0 2px var(--gothic-rose);
	pointer-events: none;
}

article.section_news_detail .news_detail_content h1::before { left: 26px; }
article.section_news_detail .news_detail_content h1::after { right: 26px; }

article.section_news_detail .news_detail_content h2 {
	padding: 0.75rem 1rem 0.75rem 1.5rem;
	border: 1px solid #d8c8ce;
	border-left: 7px solid var(--gothic-wine);
	background: linear-gradient(90deg, #f0e2e8, var(--gothic-card) 74%);
	box-shadow: inset 3px 0 0 var(--gothic-gold);
	color: #3a252f;
	font-size: clamp(16px, 2.5vw, 18px);
}

article.section_news_detail .news_detail_content h3 {
	padding: 0.6rem 0.95rem 0.6rem 2.2rem;
	border-top: 1px solid #973c5940;
	border-bottom: 1px solid #973c5940;
	background: #973c591c;
	color: var(--gothic-wine);
	font-size: clamp(15px, 2.2vw, 16px);
}

article.section_news_detail .news_detail_content h3::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0.8rem;
	width: 0.95rem;
	height: 0.95rem;
	transform: translateY(-50%);
	background: url('../img/backgrounds/gothic-rose.webp') center / contain no-repeat;
	opacity: 0.8;
	pointer-events: none;
}

article.section_news_detail .news_detail_content h4 {
	padding: 0.45rem 0.65rem 0.45rem 1rem;
	border-left: 2px solid var(--gothic-gold);
	border-bottom: 1px dotted var(--gothic-line);
	background: linear-gradient(90deg, #e9dde3b3, transparent 70%);
	color: #4f3e46;
	font-size: clamp(14px, 2vw, 15.04px);
}

@media (max-width: 600px) {
	article.section_news_detail .news_detail_content :is(h1, h2, h3, h4) {
		margin-top: 1.5rem;
		letter-spacing: 0.025em;
	}

	article.section_news_detail .news_detail_content h1 {
		padding: 0.9rem 2.25rem;
		border-radius: 3px 11px 3px 11px;
		font-size: 15.04px;
	}

	article.section_news_detail .news_detail_content h1::before { left: 18px; }
	article.section_news_detail .news_detail_content h1::after { right: 18px; }

	article.section_news_detail .news_detail_content h2 {
		padding: 0.65rem 0.75rem 0.65rem 1.2rem;
		font-size: 14.56px;
	}

	article.section_news_detail .news_detail_content h3 {
		padding: 0.55rem 0.7rem 0.55rem 2rem;
		font-size: 14.08px;
	}

	article.section_news_detail .news_detail_content h4 {
		font-size: 13.6px;
	}
}

@media (min-width: 601px) {
	article.section_info_detail .info_detail_heading {
		display: flex;
		flex-direction: column;
		align-items: stretch;
	}
}

@media (max-width: 600px) {
	article.section_info_detail {
		padding-top: 1rem;
	}

	article.section_info_detail .info_detail_heading h1 {
		font-size: 1.25rem;
	}

	article.section_info_detail .box {
		width: min(calc(100% - 32px), 800px);
	}
}

/* ============================================================
 * 06. SNS・お問い合わせ・FAQ
 * ============================================================ */

/* サイト案内ページ共通 */

section.section_site_map {
	display: block;
	margin: 0;
	padding: 0 0 clamp(3.5rem, 7vw, 6rem);
	background: var(--gothic-paper);
}

.site-map-lead {
	max-width: 720px;
	margin: 0 auto clamp(2rem, 5vw, 3.5rem);
	color: var(--gothic-ink);
	line-height: 1.9;
	text-align: center;
}

.site-map-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1rem, 3vw, 2rem);
}

.site-map-group {
	padding: clamp(1.25rem, 3vw, 2rem);
	border: 1px solid var(--gothic-line);
	border-radius: 18px;
	background: var(--gothic-paper);
	box-shadow: 0 12px 35px rgba(3, 23, 49, 0.06);
}

.site-map-group h2 {
	margin: 0 0 1rem;
	padding: 0 0 0.75rem;
	border-bottom: 2px solid var(--gothic-line);
	color: var(--gothic-ink);
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	font-weight: bold;
	letter-spacing: 0.08em;
}

.site-map-group ul {
	display: grid;
	gap: 0.35rem;
}

.site-map-group a {
	position: relative;
	display: block;
	padding: 0.8rem 2.25rem 0.8rem 0.75rem;
	border-radius: 10px;
	color: var(--gothic-ink);
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-map-group a::after {
	position: absolute;
	top: 50%;
	right: 0.9rem;
	content: "›";
	font-size: 1.5rem;
	line-height: 1;
	transform: translateY(-52%);
}

.site-map-group a:hover,
.site-map-group a:focus-visible {
	color: var(--gothic-wine);
	background: var(--gothic-paper);
	transform: translateX(3px);
}

.site-map-group a:focus-visible {
	outline: 2px solid var(--gothic-wine);
	outline-offset: 2px;
}

.site-map-group a[aria-current="page"] {
	background: var(--gothic-paper);
}

.site-map-group strong,
.site-map-group span {
	display: block;
}

.site-map-group strong {
	font-size: 1rem;
	font-weight: bold;
}

.site-map-group span {
	margin-top: 0.1rem;
	color: var(--gothic-ink);
	font-size: 0.78rem;
	font-weight: normal;
	line-height: 1.55;
}

.site-map-detail-group {
	margin-top: 0.5rem;
	padding: 0.9rem;
	border: 1px solid var(--gothic-line);
	border-radius: 12px;
	background: var(--gothic-paper);
}

.site-map-item-heading {
	padding: 0 0.25rem 0.7rem;
}

.site-map-item-heading strong,
.site-map-item-heading span {
	display: block;
}

.site-map-item-heading strong {
	font-size: 0.95rem;
	font-weight: bold;
}

.site-map-item-heading span {
	color: var(--gothic-ink);
	font-size: 0.75rem;
}

.site-map-group .site-map-detail-links {
	display: grid;
	gap: 0.35rem;
}

.site-map-group .site-map-detail-links a {
	padding: 0.65rem 2rem 0.65rem 0.7rem;
	background: var(--gothic-paper);
}

.site-map-group .site-map-detail-links strong {
	font-size: 0.85rem;
	line-height: 1.5;
}

.site-map-group .site-map-detail-links time {
	display: block;
	margin-top: 0.1rem;
	color: var(--gothic-paper);
	font-size: 0.7rem;
	letter-spacing: 0.04em;
}

@media screen and (max-width: 720px) {
	.site-map-lead {
		text-align: left;
	}

	.site-map-grid {
		grid-template-columns: 1fr;
	}

	.site-map-group {
		border-radius: 14px;
	}
}

section.section_site_legal{display: block; margin: 0; padding: 3rem 0; background: var(--gothic-paper);}
section.section_site_legal .box{margin: 0; padding: 0;}
section.section_site_legal .box section.box{margin: 0; padding-bottom: 2rem; line-height: 1.8;}
section.section_site_legal .box section.box p{padding-bottom: 2rem;}
section.section_site_legal .box section.box h2{margin: 0; padding-bottom: 1rem; font-size: 1.4rem; font-weight: bold;}
section.section_site_legal .box ul{padding: 1rem 2.5rem;}
section.section_site_legal .box ul li{display: list-item; list-style: decimal;}

/* お問い合わせ */

section.section_contact{margin: 0; padding: 3rem 0; background: var(--gothic-paper);}
section.section_contact .box{margin: 0; padding: 0;}
section.section_contact .box section.notes{margin: 0; padding: 0;}

section.section_contact .box section.notes h2{font-size: 160%; font-weight: bold;}
section.section_contact .box section.notes .box_notes{margin: 0; padding: 1rem 0;}

section.section_contact .contact_sns{margin: 2rem auto 0; padding: 1.5rem; max-width: 760px; background: var(--gothic-paper); border: 1px solid var(--gothic-line); border-radius: 10px;}
section.section_contact .contact_sns h2,
section.section_contact .contact_recruit_link h2{padding-bottom: 1rem; font-size: 1.4rem; font-weight: bold; text-align: center;}
section.section_contact .contact_sns_links{display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem;}
section.section_contact .contact_sns_links a{display: flex; align-items: center; justify-content: center; gap: .65rem; min-height: 4rem; padding: .75rem 1rem; box-sizing: border-box; color: var(--gothic-ink); font-size: 1rem; font-weight: bold; text-align: center; text-decoration: none; background: var(--gothic-paper); border: 1px solid var(--gothic-line); border-radius: 8px;}
section.section_contact .contact_sns_links a:hover{color: var(--gothic-paper); transition: color .5s;}
section.section_contact .contact_sns_links a[hidden]{display: none;}
section.section_contact .contact_sns_links img{display: block; width: 30px; height: 30px; object-fit: contain;}
section.section_contact .contact_sns_links a > span{font-size: 1rem; font-weight: bold;}
section.section_contact .contact_sns_note{padding-top: 1rem; font-size: .9rem; line-height: 1.7; text-align: center;}
section.section_contact .contact_recruit_link > p{padding-bottom: 1.5rem; text-align: center; line-height: 1.8;}

section.section_contact .box section.btn{margin: 0; padding: 3rem 0;}

section.section_contact .box section.btn ul{display: flex; flex-wrap: nowrap; justify-content: space-around; align-items: center;}
section.section_contact .box section.btn ul li{margin-bottom: 1rem; width: 32%; text-align: center;}
section.section_contact .box section.btn ul li mat-icon{display: block; padding: 1rem 0; font-size: 200%;}
section.section_contact .box section.btn .privacy{margin: 0; padding: 3rem 0; text-align: center;}
section.section_contact .box section.btn ul li a,
section.section_contact .box section.btn .privacy a{display: block; margin: 0; padding: 1rem; color: var(--gothic-paper); font-weight: bold; text-decoration: none; border: 1px solid var(--gothic-line);}
section.section_contact .box section.btn ul li a:hover,
section.section_contact .box section.btn .privacy a:hover{color: var(--gothic-paper); transition: color .5s;}

@media screen and ( max-width:860px ){
	section.section_contact .box section.btn ul{display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: space-between; align-items: flex-start; margin: 0; padding: 0;}
	section.section_contact .box section.btn ul li{margin-bottom: 1rem; width: 100%; text-align: center;}
	section.section_contact .contact_sns{padding: 1.25rem;}
	section.section_contact .contact_sns_links{grid-template-columns: 1fr;}
	section.section_contact .contact_sns_links a{flex-direction: row; min-height: 0; justify-content: flex-start; text-align: left;}
}

/* よくある質問 */
section.section_qa{margin: 0; padding: 3rem 0;}

/* よくある質問：来店前・求人向けを1ページに統合 */
section.section_qa_combined,
section.section_qa_combined * {
	box-sizing: border-box;
}

section.section_qa_combined {
	padding: 0 0 clamp(3rem, 7vw, 6rem);
	background: var(--gothic-paper);
}

section.section_qa_combined .wrapper {
	width: min(calc(100% - 40px), 1000px);
	padding-inline: 0;
}

section.section_qa_combined .qa_intro {
	padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
	color: var(--gothic-ink);
	line-height: 1.8;
	text-align: center;
}

section.section_qa_combined .qa_category_nav {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin: 0 0 clamp(2.5rem, 6vw, 4rem);
}

section.section_qa_combined .qa_category_nav a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0.75rem 1.25rem;
	border: 1px solid var(--gothic-line);
	border-radius: 999px;
	background: var(--gothic-paper);
	color: var(--gothic-ink);
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

section.section_qa_combined .qa_category_nav a:hover,
section.section_qa_combined .qa_category_nav a:focus-visible {
	background: var(--gothic-wine);
	color: var(--gothic-paper);
	transform: translateY(-1px);
}

section.section_qa_combined .qa_category_list {
	display: grid;
	gap: clamp(3rem, 8vw, 6rem);
}

section.section_qa_combined .qa_category {
	scroll-margin-top: 120px;
}

section.section_qa_combined .qa_category_heading {
	margin-bottom: clamp(1.25rem, 3vw, 2rem);
	text-align: center;
}

section.section_qa_combined .qa_category_heading h2 {
	font-size: clamp(1.35rem, 3vw, 1.75rem);
	font-weight: bold;
	line-height: 1.5;
}

section.section_qa_combined .qa_category_heading p {
	margin-top: 0.5rem;
	color: var(--gothic-ink);
	font-size: 0.95rem;
	line-height: 1.8;
}

section.section_qa_combined .qa_list {
	overflow: hidden;
	border: 1px solid var(--gothic-line);
	border-radius: 20px;
	background: var(--gothic-paper);
}

section.section_qa_combined .qa_item + .qa_item {
	border-top: 1px solid var(--gothic-line);
}

section.section_qa_combined .qa_item summary {
	display: flex;
	align-items: center;
	gap: 1rem;
	min-height: 72px;
	padding: 1rem clamp(1rem, 3vw, 1.75rem);
	font-weight: bold;
	line-height: 1.7;
	list-style: none;
	cursor: pointer;
}

section.section_qa_combined .qa_item summary::-webkit-details-marker {
	display: none;
}

section.section_qa_combined .qa_item summary::after {
	margin-left: auto;
	font-size: 1.25rem;
	font-weight: normal;
	line-height: 1;
	content: "+";
}

section.section_qa_combined .qa_item[open] summary::after {
	content: "−";
}

section.section_qa_combined .qa_mark {
	display: inline-grid;
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	place-items: center;
	border-radius: 50%;
	background: var(--gothic-wine);
	font-size: 0.9rem;
	font-weight: bold;
	line-height: 1;
}

section.section_qa_combined .qa_answer {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 0 clamp(1rem, 3vw, 1.75rem) 1.5rem;
	color: var(--gothic-ink);
	line-height: 1.9;
}

section.section_qa_combined .qa_answer .qa_mark {
	background: var(--gothic-soft);
}

section.section_qa_combined .qa_answer > div {
	flex: 1 1 auto;
	min-width: 0;
	padding-top: 0.2rem;
}

section.section_qa_combined .qa_answer p + p {
	margin-top: 0.5rem;
}

@media (max-width: 600px) {
	section.section_qa_combined .wrapper {
		width: min(calc(100% - 32px), 1000px);
	}

	section.section_qa_combined .qa_intro {
		text-align: left;
	}

	section.section_qa_combined .qa_category_nav {
		grid-template-columns: 1fr;
	}

	section.section_qa_combined .qa_category {
		scroll-margin-top: 80px;
	}

	section.section_qa_combined .qa_list {
		border-radius: 16px;
	}

	section.section_qa_combined .qa_item summary,
	section.section_qa_combined .qa_answer {
		gap: 0.75rem;
	}

	section.section_qa_combined .qa_item summary {
		font-size: 0.95rem;
	}

	section.section_qa_combined .qa_mark {
		flex-basis: 30px;
		width: 30px;
		height: 30px;
	}
}



/* ============================================================
 * 09. 料金・ご利用システム
 * ============================================================ */
.system_page {
	--system-ink: #333;
	--system-muted: #666;
	--system-accent: #333;
	--system-accent-deep: #111;
	--system-cream: #fffcf6;
	--system-line: #ddd;
	color: var(--system-ink);
	background: var(--gothic-paper);
	line-height: 1.9;
}

.system_page,
.system_page * {
	box-sizing: border-box;
}

.system_page :where(h1, h2, h3, p, ul, ol, figure) {
	margin: 0;
}

.system_page :where(ul, ol) {
	padding: 0;
	list-style: none;
}

.system_page a {
	color: inherit;
}

.system_container {
	width: min(100%, 1120px);
	margin-inline: auto;
	padding-inline: clamp(20px, 4vw, 40px);
}

.system_eyebrow,
.system_section_heading > p {
	color: var(--system-accent);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.system_pricing,
.system_flow,
.system_before_visit {
	padding-block: clamp(3.5rem, 7vw, 6rem);
}

body > .section_page_pan + .system_page .system_pricing {
	padding-top: 0;
}

.system_section_heading {
	max-width: 720px;
	margin-inline: auto;
	text-align: center;
}

.system_section_heading h2 {
	margin-top: 0.4rem;
	font-size: clamp(1.7rem, 4vw, 2.5rem);
	font-weight: 800;
	line-height: 1.4;
}

.system_section_heading > span {
	display: block;
	margin-top: 0.75rem;
	color: var(--system-muted);
	font-size: 0.95rem;
}

.system_price_grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
	gap: 1.25rem;
	margin-top: clamp(2rem, 5vw, 3.5rem);
}

.system_price_card {
	position: relative;
	display: flex;
	min-width: 0;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 260px;
	padding: clamp(1.5rem, 3vw, 2.25rem);
	border: 1px solid var(--system-line);
	border-radius: 24px;
	background: var(--system-cream);
	text-align: center;
}

.system_price_card_featured {
	border-color: rgb(51 51 51 / 34%);
	background: linear-gradient(145deg, var(--gothic-wine) 0%, var(--system-accent-deep) 100%);
	box-shadow: 0 18px 44px rgb(51 51 51 / 18%);
	color: var(--gothic-paper);
}

.system_price_label {
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.system_price_value {
	margin-top: 1rem !important;
	font-size: clamp(1.55rem, 3.5vw, 2.25rem);
	font-weight: 800;
	letter-spacing: 0.02em;
	line-height: 1.3;
}

.system_price_value span {
	font-size: 0.55em;
	font-weight: 700;
}

.system_price_tax {
	margin-top: 0.35rem !important;
	font-size: 0.85rem;
	font-weight: 700;
}

.system_price_note {
	margin-top: 1rem !important;
	color: var(--system-muted);
	font-size: 0.9rem;
	line-height: 1.7;
}

.system_price_card_featured .system_price_note {
	color: var(--system-muted);
}

.system_policy {
	display: grid;
	grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
	gap: 1.5rem;
	margin-top: 1.5rem;
	padding: clamp(1.25rem, 3vw, 2rem);
	border: 1px solid var(--system-line);
	border-radius: 20px;
	background: var(--gothic-paper);
}

.system_policy h3 {
	font-size: 1rem;
	font-weight: 800;
}

.system_policy ul {
	display: grid;
	gap: 0.6rem;
	color: var(--system-muted);
	font-size: 0.92rem;
}

.system_policy li {
	position: relative;
	padding-left: 1.25rem;
}

.system_policy li::before {
	position: absolute;
	top: 0;
	left: 0;
	color: var(--system-accent);
	content: "※";
	font-weight: 800;
}

.system_flow {
	background: var(--system-cream);
}

.system_flow_list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
	margin-top: clamp(2rem, 5vw, 3.5rem);
	counter-reset: system-step;
}

.system_flow_list li {
	position: relative;
	min-width: 0;
	padding: clamp(1.5rem, 3vw, 2rem);
	border: 1px solid var(--system-line);
	border-radius: 22px;
	background: var(--gothic-paper);
}

.system_flow_number {
	display: inline-flex;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--system-accent);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.06em;
}

.system_flow_list h3 {
	margin-top: 1rem !important;
	font-size: 1.15rem;
	font-weight: 800;
}

.system_flow_list p {
	margin-top: 0.6rem !important;
	color: var(--system-muted);
	font-size: 0.92rem;
}

.system_english {
	margin-top: 1.5rem;
	padding: clamp(1.25rem, 3vw, 2rem);
	border: 1px solid var(--system-line);
	border-radius: 20px;
	background: rgb(255 255 255 / 70%);
}

.system_english h3 {
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.system_english p {
	margin-top: 0.5rem !important;
	color: var(--system-muted);
	font-size: 0.88rem;
	line-height: 1.8;
}

.system_before_visit h2 {
	margin-top: 0.4rem !important;
	font-size: clamp(1.65rem, 4vw, 2.4rem);
	font-weight: 800;
	line-height: 1.45;
}

.system_before_visit_box > div > p:not(.system_eyebrow) {
	margin-top: 1rem !important;
	color: var(--system-muted);
	font-size: 0.95rem;
}

.system_before_visit_box {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, auto);
	align-items: center;
	gap: 2rem;
}

.system_before_visit_box {
	padding-block: clamp(1.75rem, 4vw, 2.75rem);
	border: 1px solid var(--system-line);
	border-radius: 24px;
	background: var(--gothic-paper);
}

.system_related_links {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0.65rem;
}

.system_related_links a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	padding: 0.65rem 1rem;
	border: 1px solid var(--system-accent);
	border-radius: 999px;
	background: var(--gothic-paper);
	color: var(--system-accent);
	font-size: 0.88rem;
	font-weight: 800;
	text-decoration: none;
	transition: background-color 180ms ease, color 180ms ease;
}

.system_related_links a:hover,
.system_related_links a:focus-visible {
	background: var(--system-accent);
	color: var(--gothic-paper);
}

@media (max-width: 850px) {
	.system_price_grid,
	.system_flow_list {
		grid-template-columns: 1fr;
	}

	.system_price_card {
		min-height: 0;
	}

	.system_policy,
	.system_before_visit_box {
		grid-template-columns: 1fr;
	}

	.system_related_links {
		justify-content: flex-start;
	}
}

@media (max-width: 600px) {
	.system_container {
		padding-inline: 20px;
	}

	.system_related_links {
		display: grid;
		grid-template-columns: 1fr;
	}

	.system_related_links a {
		width: 100%;
	}

	.system_price_card,
	.system_policy,
	.system_flow_list li,
	.system_english,
	.system_before_visit_box {
		border-radius: 16px;
	}

	.system_policy {
		gap: 0.75rem;
	}

	.system_before_visit_box {
		width: calc(100% - 40px);
		margin-inline: auto;
		padding-inline: 1.25rem;
	}
}

section.section_notes,
section.section_notes * {
	box-sizing: border-box;
}

section.section_notes {
	padding: 0 0 clamp(3rem, 7vw, 6rem);
	background: var(--gothic-paper);
}

section.section_notes .wrapper {
	width: min(calc(100% - 40px), 900px);
	padding-inline: 0;
}

section.section_notes .notes_content {
	display: grid;
	gap: clamp(1.25rem, 3vw, 2rem);
}

section.section_notes .notes_block {
	overflow: hidden;
	padding: clamp(1.25rem, 4vw, 2.5rem);
	border: 1px solid var(--gothic-line);
	border-radius: 20px;
	background: var(--gothic-paper);
}

section.section_notes .notes_block_english {
	background: var(--gothic-paper);
}

section.section_notes .notes_lead {
	margin: 0 0 clamp(1rem, 3vw, 1.5rem);
	font-size: clamp(1.1rem, 2.4vw, 1.35rem);
	font-weight: bold;
	line-height: 1.75;
	text-align: center;
}

section.section_notes .notes_list {
	margin: 0;
	padding: 0;
}

section.section_notes .notes_list li {
	position: relative;
	margin: 0;
	padding: 0.9rem 0.5rem 0.9rem 1.75rem;
	border-bottom: 1px solid var(--gothic-line);
	line-height: 1.8;
}

section.section_notes .notes_list li:first-child {
	border-top: 1px solid var(--gothic-line);
}

section.section_notes .notes_list li::before {
	position: absolute;
	top: 1.45rem;
	left: 0.5rem;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--gothic-wine);
	content: "";
}

section.section_notes .notes_notice {
	margin: clamp(1.25rem, 3vw, 2rem) 0 0;
	padding: clamp(1rem, 2.5vw, 1.5rem);
	border-radius: 12px;
	background: var(--gothic-soft);
	font-size: 1rem;
	font-weight: bold;
	line-height: 1.9;
}

section.section_notes .notes_block_english .notes_notice {
	background: var(--gothic-paper);
}

@media (max-width: 600px) {
	section.section_notes .wrapper {
		width: min(calc(100% - 32px), 900px);
	}

	section.section_notes .notes_block {
		border-radius: 16px;
	}

	section.section_notes .notes_lead {
		text-align: left;
	}

	section.section_notes .notes_list li {
		padding-right: 0;
		font-size: 0.95rem;
	}
}

/* ============================================================
 * 10. MarionetteRequiemヘッダー
 * ============================================================ */
.section_header {
	position: sticky;
	z-index: 100;
	top: 0;
	width: 100%;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #e8dfe3;
	background: #fff;
	box-shadow: 0 8px 30px rgba(75, 43, 59, 0.05);
	line-height: normal;
}

.header-inner {
	display: flex;
	align-items: center;
	width: min(100% - 40px, 1200px);
	min-height: 104px;
	margin: 0 auto;
	gap: 28px;
}

.site-logo {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	flex-direction: column;
	color: #242124;
	line-height: 1;
	text-decoration: none;
}

.site-logo img {
	display: block;
	width: auto;
	height: 58px;
	object-fit: contain;
}

.site-logo small {
	margin-top: -3px;
	color: #242124;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.16em;
	white-space: nowrap;
}

.desktop-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-left: auto;
	gap: clamp(16px, 1.6vw, 26px);
}

.desktop-nav a {
	position: relative;
	display: flex;
	align-items: center;
	flex-direction: column;
	padding: 39px 0 37px;
	color: #242124;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a:hover > small,
.desktop-nav a:focus-visible > small {
	color: #333;
}

.desktop-nav a > span {
	color: #333333;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1;
}

.desktop-nav a > small {
	margin-top: 6px;
	color: #666666;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.02em;
	line-height: 1;
}

.desktop-nav a::after {
	position: absolute;
	right: 0;
	bottom: 25px;
	left: 0;
	height: 1px;
	background: #a98496;
	content: "";
	transform: scaleX(0);
	transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
	transform: scaleX(1);
}

.login-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 104px;
	min-height: 44px;
	border: 1px solid #ddd;
	border-radius: 8px;
	background: #333;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-decoration: none;
	transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.login-button:hover {
	background: #fff;
	color: #333;
	transform: translateY(-1px);
}

.menu-toggle,
.mobile-menu {
	display: none;
}

@media (max-width: 1080px) {
	.mobile-menu,
	.mobile-menu *,
	.mobile-menu *::before,
	.mobile-menu *::after {
		box-sizing: border-box;
	}

	.header-inner {
		min-height: 72px;
	}

	.desktop-nav,
	.desktop-login {
		display: none;
	}

	.menu-toggle {
		display: flex;
		position: relative;
		z-index: 102;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		width: 46px;
		height: 46px;
		margin-left: auto;
		padding: 0;
		gap: 6px;
		border: 1px solid #e8dfe3;
		border-radius: 50%;
		background: #fff;
		cursor: pointer;
	}

	.menu-toggle span {
		display: block;
		width: 20px;
		height: 1.5px;
		background: #333;
		transition: transform 220ms ease, opacity 180ms ease;
	}

	.menu-toggle.is-open span:nth-child(1) {
		transform: translateY(7.5px) rotate(45deg);
	}

	.menu-toggle.is-open span:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle.is-open span:nth-child(3) {
		transform: translateY(-7.5px) rotate(-45deg);
	}

	.mobile-menu {
		display: grid;
		position: fixed;
		z-index: 101;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
		max-width: 100vw;
		height: 100dvh;
		align-items: start;
		overflow-x: hidden;
		overflow-y: auto;
		padding: 72px 24px 24px;
		background: #fff;
		opacity: 0;
		pointer-events: none;
		transform: translateY(-12px);
		transition: opacity 220ms ease, transform 220ms ease;
	}

	.mobile-menu.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.mobile-menu nav {
		display: flex;
		align-items: center;
		flex-direction: column;
		width: min(100%, 460px);
		max-width: 100%;
		min-width: 0;
		margin: 0 auto;
	}

	.mobile-menu nav > a:not(.login-button) {
		display: flex;
		align-items: center;
		flex-direction: column;
		width: 100%;
		padding: 13px 8px;
		border-bottom: 1px solid #e8dfe3;
		color: #333;
		font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
		text-align: center;
		text-decoration: none;
	}

	.mobile-menu nav > a:not(.login-button) > span {
		color: #333333;
		font-size: clamp(16px, 3.6vw, 19px);
		font-weight: 700;
		line-height: 1.1;
	}

	.mobile-menu nav > a:not(.login-button) > small {
		margin-top: 5px;
		color: #666666;
		font-size: 12px;
	}

	.mobile-login {
		width: min(100%, 260px);
		margin-top: 28px;
	}

	.mobile-menu-quick-links {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: 100%;
		margin-top: 22px;
		gap: 8px;
	}

	.mobile-menu-quick-links a {
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 44px;
		padding: 8px 10px;
		border: 1px solid #e0d5da;
		border-radius: 10px;
		color: #444;
		font-size: 13px;
		font-weight: bold;
		line-height: 1.4;
		text-align: center;
		text-decoration: none;
		transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
	}

	.mobile-menu-quick-links a:focus-visible {
		border-color: #a98496;
		color: #6d4f5e;
		background: #fbf7f9;
	}

	.mobile-menu-quick-links a:focus-visible {
		outline: 2px solid #a98496;
		outline-offset: 2px;
	}

	.mobile-menu-banners {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: 100%;
		max-width: 100%;
		min-width: 0;
		margin-top: 40px;
		gap: 8px;
	}

	.mobile-menu-banners a,
	.mobile-menu-banners img {
		display: block;
		width: 100%;
		max-width: 100%;
	}

	.mobile-menu-banners > * {
		min-width: 0;
	}

	.mobile-menu-banners a {
		border-radius: 10px;
		line-height: 0;
	}

	.mobile-menu-banners a:focus-visible {
		outline: 2px solid #a98496;
		outline-offset: 3px;
	}

	.mobile-menu-banners img {
		height: auto;
		border-radius: 10px;
	}
}

@media (max-width: 560px) {
	.header-inner {
		width: min(100% - 40px, 1200px);
		min-height: 66px;
	}

	.site-logo {
		max-width: 150px;
	}

	.site-logo img {
		width: 100%;
		height: auto;
		max-height: 39px;
	}

	.site-logo small {
		font-size: 8px;
	}

	.menu-toggle {
		width: 42px;
		height: 42px;
	}
}

/* ============================================================
 * 11. トップページ共通レスポンシブ
 * ============================================================ */
.section_header,
.section_header *,
.section_main_visual,
.section_main_visual *,
.section_main_logo,
.section_main_logo *,
.section_news_ticker,
.section_news_ticker *,
.section_banner_slider,
.section_banner_slider *,
.section_pickup_banner,
.section_pickup_banner *,
.section_sns,
.section_sns *,
.section_news,
.section_news *,
.section_info,
.section_info *,
.section_access,
.section_access *,
.section_group,
.section_group *,
.section_footer,
.section_footer * {
	box-sizing: border-box;
}

.visually_hidden {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.section_main_visual {
	position: relative;
	isolation: isolate;
	background: #171317;
	width: 100%;
	overflow: hidden;
}

.section_main_visual::after {
	position: absolute;
	z-index: 2;
	right: 0;
	bottom: 0;
	left: 0;
	height: clamp(32px, 6vw, 80px);
	background: url("../img/backgrounds/gothic-wave.svg") no-repeat center / 100% 100%;
	transform: rotate(180deg);
	content: "";
	pointer-events: none;
}

.section_main_visual .bg {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	min-width: 100%;
	height: 100%;
	min-height: 100%;
	pointer-events: none;
}

.section_main_visual .bg {
	z-index: -1;
	display: block;
	overflow: hidden;
}

.section_main_visual .bg > img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.section_main_logo {
	position: absolute;
	top: 52%;
	left: 50%;
	width: 100%;
	color: var(--gothic-paper);
	transform: translate(-50%, -50%);
}

.section_main_logo .index_open .logo {
	margin: 0 auto;
	width: 100%;
}

.section_main_logo .index_open .logo img {
	display: block;
	width: auto;
	max-width: 100%;
	height: 100%;
	margin: 0 auto;
	object-fit: contain;
}

.section_news_ticker {
	display: block;
	padding-bottom: 3rem;
	background: var(--gothic-paper);
}

.section_news_ticker .wrapper {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	min-width: 0;
}

.section_news_ticker .box {
	display: flex;
	width: 100%;
	min-width: 0;
	overflow: hidden;
	border: 2px solid var(--gothic-line);
}

.section_news_ticker .box > div {
	padding: 1rem;
	color: var(--gothic-ink);
}

.section_news_ticker .box > div.item {
	flex: 0 0 7.5em;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-inline: 0;
	color: var(--gothic-paper);
	font-weight: bold;
	white-space: nowrap;
	text-align: center;
	border-right: 2px solid var(--gothic-line);
	background: var(--gothic-wine);
}

.section_news_ticker .box > div.text {
	flex: 1 1 0;
	width: 0;
	min-width: 0;
	overflow: hidden;
	background: var(--gothic-paper);
}

.section_news_ticker .box > div.text p {
	display: inline-block;
	padding-left: 0;
}

.section_news_ticker .news_ticker_1 .text {
	display: flex;
	align-items: center;
	justify-content: center;
}

.section_news_ticker .news_ticker_1 .business-hours {
	display: block;
	margin: 0;
	padding: 0;
	text-align: center;
	white-space: nowrap;
}

.section_news_ticker .box > div.text a {
	color: var(--gothic-ink);
	font-weight: bold;
	text-decoration: none;
}

.section_news_ticker .news_ticker_2 .text,
.section_news_ticker .news_ticker_2 .text p,
.section_news_ticker .news_ticker_2 .text a,
.section_news_ticker .news_ticker_2 .text .next-event-link {
	font-weight: 400 !important;
}

.section_banner_slider {
	overflow: hidden;
	background: var(--gothic-soft);
	line-height: 0;
}

.banner_slider_box {
	position: relative;
	width: 100%;
	margin: 0 auto;
}

.banner_slider_stage {
	position: relative;
}

.banner_slider_viewport {
	max-width: 100%;
	overflow: hidden;
	border-radius: 16px;
	contain: paint;
	touch-action: pan-y;
}

.banner_slider_list {
	display: flex;
	transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
	backface-visibility: hidden;
}

.section_banner_slider ul,
.section_banner_slider ul li {
	margin: 0;
	padding: 0;
}

.banner_slider_item {
	flex: 0 0 350px;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 20px;
	list-style: none;
}

.banner_slider_item.is-clone {
	display: none;
}

.banner_slider_item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.banner_slider_button {
	position: absolute;
	z-index: 2;
	top: 50%;
	display: grid;
	width: 44px;
	height: 44px;
	padding: 0;
	place-items: center;
	border: 4px solid var(--gothic-line);
	border-radius: 50%;
	background: transparent;
	color: var(--gothic-ink);
	cursor: pointer;
	transform: translateY(-50%);
}

.banner_slider_button span {
	display: block;
	width: 14px;
	height: 14px;
	border-bottom: 6px solid currentColor;
	border-left: 6px solid currentColor;
	transform: rotate(45deg);
}

.banner_slider_prev {
	left: 16px;
}

.banner_slider_next {
	right: 16px;
}

.banner_slider_next span {
	transform: rotate(225deg);
}

.banner_slider_dots {
	display: flex;
	justify-content: center;
	margin-top: 1px;
	gap: 0;
	line-height: normal;
}

.banner_slider_dot {
	position: relative;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.banner_slider_dot::before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--gothic-wine);
	content: "";
	transform: translate(-50%, -50%);
	transition: background-color 180ms ease, transform 180ms ease;
}

.banner_slider_dot.is-active::before {
	transform: translate(-50%, -50%) scale(1.25);
}

@media (max-width: 600px) {
	.banner_slider_button {
		display: none;
	}

	.banner_slider_item.is-clone {
		display: list-item;
	}
}

@media (min-width: 601px) and (max-width: 900px) {
	.banner_slider_item {
		flex-basis: calc((100% - 24px) / 3);
	}
}

.section_banner_slider ul li span.title {
	font-size: 15px;
	font-weight: bold;
}

.section_banner_slider ul li span.text {
	color: var(--gothic-ink);
	font-size: 80%;
}

.section_pickup_banner {
	padding: 3rem 0;
	background: var(--gothic-paper);
}

.section_pickup_banner .box {
	display: flex;
	justify-content: space-between;
}

.section_pickup_banner .box > div {
	flex: 1 1 0;
	margin: 0.5rem 0;
	text-align: center;
}

.section_sns {
	padding: 1rem 0;
	border-top: 1px solid var(--gothic-line);
	border-bottom: 1px solid var(--gothic-line);
	background: var(--gothic-paper);
}

.section_sns .box {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.section_sns .box > div {
	margin: 0;
}

.section_sns .box > div img {
	width: clamp(48px, 8vw, 68px);
}

.section_news {
	padding: 3rem 0;
	background: var(--gothic-paper);
}

.section_news .title {
	text-align: center;
}

.section_news .title h2 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 5vw, 2.5rem);
}

.section_news .title .title_subtitle {
	font-weight: bold;
}

.section_news .box {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section_news .box .detail {
	width: auto;
	margin: 0;
	border: 0;
	background: var(--gothic-paper);
}

.section_news .box .detail a {
	display: block;
	padding-bottom: 0;
	color: var(--gothic-ink);
	text-decoration: none;
}

.section_news .news_card_image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	border: 1px solid var(--gothic-line);
	border-radius: 20px;
}

.section_news .news_card_image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.section_news .news_card_tag {
	position: absolute;
	top: 12px;
	right: 12px;
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0.25rem 0.85rem;
	border-radius: 999px;
	background: var(--gothic-wine);
	color: var(--gothic-paper);
	font-size: 0.8rem;
	line-height: 1;
}

.section_news .box .detail h3 {
	margin-top: 1rem;
	margin-inline: 10px;
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	font-weight: bold;
	line-height: 1.5;
}

@media (min-width: 901px) {
	.section_news .box .detail h3 {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
}

.section_news .box .detail p {
	margin-top: 0.65rem;
	margin-inline: 10px;
	color: var(--gothic-ink);
	font-size: 0.95rem;
	line-height: 1.8;
}

.section_news .box .detail time {
	display: block;
	margin-top: 0.65rem;
	margin-inline: 10px;
	color: var(--gothic-ink);
	font-size: 0.85rem;
	line-height: 1.5;
}

.section_news .btn,
.section_webshop .btn {
	display: flex;
	justify-content: center;
}

.section_news .btn a,
.section_webshop .btn a {
	padding: 1rem 3rem;
	border: 1px solid var(--gothic-line);
	background: var(--gothic-paper);
	color: var(--gothic-ink);
	font-weight: bold;
	text-decoration: none;
	transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.section_news .btn a:hover,
.section_news .btn a:focus-visible,
.section_news .btn a:active,
.section_webshop .btn a:hover,
.section_webshop .btn a:focus-visible,
.section_webshop .btn a:active {
	border-color: var(--gothic-line);
	background: var(--gothic-wine);
	color: var(--gothic-paper);
}

/* おすすめメニュー */
.section_recommend_menu,
.section_recommend_menu * {
	box-sizing: border-box;
}

.section_recommend_menu {
	padding-block: clamp(3rem, 6vw, 5rem);
	border-bottom: 1px solid var(--gothic-line);
	background: var(--gothic-paper);
}

.section_recommend_menu .wrapper {
	width: min(100%, 1280px);
	padding-inline: clamp(20px, 3vw, 32px);
}

.section_recommend_menu .title {
	padding-bottom: clamp(2rem, 4vw, 3rem);
	text-align: center;
}

.section_recommend_menu .title h2 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 5vw, 2.5rem);
	font-weight: normal;
	line-height: 1.4;
}

.section_recommend_menu .title .title_subtitle {
	margin-top: 0.35rem;
	font-size: 1rem;
	font-weight: bold;
}

.recommend_menu_guide {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(1.25rem, 3vw, 2.5rem);
	margin-top: clamp(1.5rem, 3vw, 2rem);
	padding: clamp(1.25rem, 2.5vw, 2rem);
	border: 1px solid var(--gothic-wine);
	border-radius: 20px;
	background: var(--gothic-paper);
}

.recommend_menu_guide_content {
	min-width: 0;
}

.recommend_menu_guide_content h3 {
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	font-weight: bold;
	line-height: 1.6;
}

.recommend_menu_guide_content p {
	margin-top: 0.5rem;
	color: var(--gothic-ink);
	font-size: 0.95rem;
	line-height: 1.9;
}

.recommend_menu_guide_links {
	display: grid;
	flex: 0 0 min(100%, 340px);
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.5rem;
}

.recommend_menu_guide_links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	border: 1px solid var(--gothic-line);
	background: var(--gothic-paper);
	color: var(--gothic-ink);
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.recommend_menu_guide_links a:hover,
.recommend_menu_guide_links a:focus-visible {
	border-color: var(--gothic-line);
	background: var(--gothic-wine);
	color: var(--gothic-paper);
}

.recommend_menu_layout {
	display: grid;
	grid-template-columns: minmax(0, 7fr) minmax(260px, 3fr);
	align-items: stretch;
	gap: clamp(1.25rem, 2.5vw, 2rem);
}

.recommend_menu_list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 1.5rem);
}

.recommend_menu_card {
	display: flex;
	min-width: 0;
	overflow: hidden;
	flex-direction: column;
	border: 1px solid var(--gothic-line);
	border-radius: 20px;
	background: var(--gothic-paper);
	color: var(--gothic-ink);
	text-decoration: none;
	transition: border-color 180ms ease, transform 180ms ease;
}

.recommend_menu_card:hover,
.recommend_menu_card:focus-visible {
	border-color: var(--gothic-line);
	transform: translateY(-3px);
}

.recommend_menu_image {
	position: relative;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 4 / 5;
	border-radius: 19px 19px 0 0;
}

.recommend_menu_image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.recommend_menu_image span {
	position: absolute;
	top: 12px;
	right: 12px;
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0.25rem 0.8rem;
	border-radius: 999px;
	background: var(--gothic-wine);
	color: var(--gothic-paper);
	font-size: 0.75rem;
	font-weight: bold;
	line-height: 1;
}

.recommend_menu_content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: clamp(1rem, 2vw, 1.35rem);
}

.recommend_menu_content h3 {
	font-size: clamp(0.95rem, 1.5vw, 1.05rem);
	font-weight: bold;
	line-height: 1.5;
}

.recommend_menu_content strong {
	display: block;
	margin-top: auto;
	padding-top: 0.65rem;
	font-size: 1rem;
	font-weight: bold;
}

.recommend_menu_price {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: clamp(1.5rem, 3vw, 2.25rem);
	border: 1px solid var(--gothic-line);
	border-radius: 20px;
	background: var(--gothic-paper);
}

.recommend_menu_price_heading {
	margin-bottom: clamp(1rem, 2.2vw, 1.5rem);
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--gothic-line);
	text-align: center;
}

.recommend_menu_price_heading h3 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.15rem, 2vw, 1.35rem);
	font-weight: normal;
	line-height: 1.35;
}

.recommend_menu_price_heading p {
	margin-top: 0.2rem;
	font-size: 0.8rem;
	font-weight: bold;
}

.recommend_menu_price li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-block: clamp(1rem, 2.2vw, 1.5rem);
	border-bottom: 1px solid var(--gothic-line);
	font-size: clamp(0.95rem, 1.55vw, 1.1rem);
	line-height: 1.5;
}

.recommend_menu_price li:first-child {
	padding-top: 0;
}

.recommend_menu_price li span,
.recommend_menu_price li strong {
	font-weight: bold;
	white-space: nowrap;
}

.recommend_menu_button {
	display: block;
	margin-top: clamp(1.5rem, 3vw, 2.25rem);
	padding: 1rem;
	border: 1px solid var(--gothic-line);
	background: var(--gothic-paper);
	color: var(--gothic-ink);
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.recommend_menu_button:hover,
.recommend_menu_button:focus-visible,
.recommend_menu_button:active {
	border-color: var(--gothic-line);
	background: var(--gothic-wine);
	color: var(--gothic-paper);
}

@media (max-width: 900px) {
	.recommend_menu_layout {
		grid-template-columns: 1fr;
	}

	.recommend_menu_price ul {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1rem;
	}

	.recommend_menu_price li,
	.recommend_menu_price li:first-child {
		align-items: flex-start;
		flex-direction: column;
		padding: 0;
		border-bottom: 0;
		gap: 0.35rem;
	}
}

@media (max-width: 600px) {
	.section_recommend_menu {
		padding-block: 3rem;
	}

	.section_recommend_menu .wrapper {
		padding-inline: 20px;
	}

	.recommend_menu_guide {
		align-items: stretch;
		flex-direction: column;
		border-radius: 16px;
	}

	.recommend_menu_guide_links {
		flex-basis: auto;
		grid-template-columns: 1fr;
	}

	.recommend_menu_list {
		display: flex;
		overflow-x: auto;
		overflow-y: hidden;
		gap: 12px;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}

	.recommend_menu_list::before,
	.recommend_menu_list::after {
		content: "";
		flex: 0 0 20px;
	}

	.recommend_menu_list::-webkit-scrollbar {
		display: none;
	}

	.recommend_menu_card {
		flex: 0 0 calc(100% - 64px);
		scroll-snap-align: center;
		scroll-snap-stop: always;
	}

	.recommend_menu_card,
	.recommend_menu_price {
		border-radius: 18px;
	}

	.recommend_menu_image {
		border-radius: 17px 17px 0 0;
	}

	.recommend_menu_price ul {
		display: block;
	}

	.recommend_menu_price li,
	.recommend_menu_price li:first-child {
		align-items: center;
		flex-direction: row;
		padding-block: 1rem;
		border-bottom: 1px solid var(--gothic-line);
	}
}

.section_webshop,
.section_webshop * {
	box-sizing: border-box;
}

.section_webshop {
	padding-block: clamp(3rem, 6vw, 5rem);
	border-top: 1px solid var(--gothic-line);
	background: var(--gothic-paper);
}

.section_webshop .title {
	margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
	text-align: center;
}

.section_webshop .title h2 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 5vw, 2.75rem);
	font-weight: normal;
}

.section_webshop .title_subtitle {
	font-weight: bold;
}

.webshop_category_filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.65rem;
	margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.webshop_category_button {
	flex: 0 0 auto;
	padding: 0.65rem 1.1rem;
	border: 1px solid var(--gothic-line);
	border-radius: 999px;
	background: var(--gothic-paper);
	color: var(--gothic-ink);
	font: inherit;
	font-weight: bold;
	cursor: pointer;
	transition: background-color 180ms ease, color 180ms ease;
}

.webshop_category_button:hover,
.webshop_category_button:focus-visible,
.webshop_category_button.is-active {
	background: var(--gothic-wine);
	color: var(--gothic-paper);
}

.webshop_product_list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(1rem, 2.5vw, 2rem);
}

.webshop_product_card {
	overflow: hidden;
	border: 1px solid var(--gothic-line);
	border-radius: 20px;
	background: var(--gothic-paper);
}

.webshop_product_image {
	display: block;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: var(--gothic-soft);
}

.webshop_product_image img,
.webshop_product_image_placeholder {
	display: block;
	width: 100%;
	height: 100%;
}

.webshop_product_image img {
	object-fit: cover;
	transition: transform 180ms ease;
}

.webshop_product_image:hover img,
.webshop_product_image:focus-visible img {
	transform: scale(1.03);
}

.section_webshop_page {
	border-top: 0;
	padding-top: 0;
}

.section_webshop_page .wrapper {
	width: min(100%, 1440px);
	padding-inline: clamp(20px, 3vw, 32px);
}

.section_webshop_page .webshop_product_list {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 900px) {
	.webshop_product_list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.section_webshop_page .webshop_product_list {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.section_webshop .wrapper {
		padding-inline: 20px;
	}

	.webshop_product_list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.75rem;
	}

	.section_webshop_page .webshop_product_list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.webshop_category_filters {
		flex-wrap: nowrap;
		justify-content: flex-start;
		overflow-x: auto;
		padding-bottom: 0.35rem;
		scrollbar-width: thin;
		-webkit-overflow-scrolling: touch;
	}

	.webshop_category_button {
		padding: 0.6rem 0.9rem;
		font-size: 0.9rem;
	}

}

.section_info {
	padding: 3rem 0;
	border-block: 1px solid #ddd;
	background: var(--gothic-paper);
}

.section_info .box {
	display: grid;
	grid-template-columns: minmax(180px, 30%) minmax(0, 1fr);
	align-items: stretch;
}

.section_info .box .left {
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding: 0 2rem;
	border-right: 1px solid var(--gothic-line);
	text-align: center;
}

.section_info .box .left h2 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 5vw, 2.5rem);
}

.section_info .box .left .title_subtitle {
	font-weight: bold;
}

.section_info .box .right {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	min-width: 0;
	padding-left: 2rem;
}

.section_info .box .right .info_item {
	width: 100%;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--gothic-line);
}

.section_info .box .right a {
	display: grid;
	grid-template-columns: max-content minmax(0, 1fr);
	gap: 1.5rem;
	color: var(--gothic-ink);
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.7;
	text-decoration: none;
}

.section_info .box .right time,
.section_info .box .right span {
	font-weight: 400;
}

.section_access {
	padding-block: clamp(2.5rem, 5vw, 4rem);
	background: var(--gothic-soft);
}

.section_access.section_access_page {
	background: var(--gothic-paper);
}

.section_access .title h2 {
	padding-bottom: 0.5rem;
	font-size: clamp(1.25rem, 4vw, 2rem);
	font-weight: bold;
	text-align: center;
}

.section_access .title .title_subtitle {
	margin: 0 0 clamp(1.5rem, 4vw, 2.5rem);
	font-size: clamp(0.75rem, 1.5vw, 0.95rem);
	letter-spacing: 0.08em;
	text-align: center;
}

.access_guide {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(1.25rem, 3vw, 2.5rem);
	margin-bottom: clamp(2rem, 5vw, 3.5rem);
	padding: clamp(1.25rem, 2.5vw, 2rem);
	border: 1px solid var(--gothic-wine);
	border-radius: 20px;
	background: var(--gothic-paper);
}

.access_guide_content {
	min-width: 0;
}

.access_guide h3 {
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	font-weight: bold;
	line-height: 1.6;
}

.access_guide_content p {
	margin-top: 0.5rem;
	color: var(--gothic-ink);
	font-size: 0.95rem;
	line-height: 1.9;
}

.section_access .access_guide .btn {
	flex: 0 0 auto;
	padding: 0;
}

.section_access .access_guide .btn a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
}

.section_access .box {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
	align-items: center;
	gap: clamp(1.5rem, 4vw, 4rem);
}

.section_access .box > div {
	min-width: 0;
	text-align: center;
}

.section_access .box > div p {
	padding-bottom: 1rem;
}

.section_access .box > div span.station {
	display: inline-block;
	margin-right: 0.5rem;
	padding: 0.75rem 1.25rem;
	border: 2px solid var(--gothic-line);
	background: var(--gothic-paper);
	font-weight: bold;
}

.section_access .box > div span.time {
	color: var(--gothic-wine);
	font-size: 2rem;
	font-weight: bold;
}

.section_access .box > div .image {
	width: 100%;
	max-width: 420px;
	margin-inline: auto;
	padding: 1rem;
	border: 1px solid var(--gothic-line);
	background: var(--gothic-paper);
	line-height: 0;
}

.section_access .box > div .image img {
	display: block;
	width: 100%;
	height: auto;
	border: 1px solid var(--gothic-line);
	border-radius: 10px;
}

.section_access .box > div p.add {
	overflow-wrap: anywhere;
	line-height: 1.8;
}

.section_access:not(.section_access_page) .access_layout {
	display: grid;
	grid-template-columns: minmax(235px, 0.85fr) minmax(340px, 1.2fr) minmax(320px, 1fr);
	align-items: center;
	column-gap: clamp(1.5rem, 3vw, 3.5rem);
	row-gap: 1rem;
}

.section_access:not(.section_access_page) .access_stations {
	display: grid;
	grid-column: 1;
	grid-row: 1;
	gap: 1.25rem;
}

.section_access:not(.section_access_page) .access_stations p {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto auto auto;
	align-items: center;
	gap: 0.55rem;
	margin: 0;
}

.section_access:not(.section_access_page) .access_stations .station {
	display: flex;
	align-items: center;
	justify-content: center;
	justify-self: end;
	width: min(100%, 180px);
	min-height: 0;
	padding: 0.5rem 0.875rem;
	border: 2px solid var(--gothic-line);
	background: var(--gothic-paper);
	font-weight: bold;
	line-height: 1.5;
	text-align: center;
}

.section_access:not(.section_access_page) .access_stations .time {
	color: var(--gothic-wine);
	font-size: 2rem;
	font-weight: bold;
	line-height: 1;
}

.section_access:not(.section_access_page) .access_details {
	grid-column: 2;
	grid-row: 1;
	min-width: 0;
}

.section_access:not(.section_access_page) .access_guide {
	display: block;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.section_access:not(.section_access_page) .access_guide h3 {
	display: inline-block;
	margin: 0;
	padding: 0.25rem 1rem;
	background: transparent;
	font-size: clamp(1.2rem, 1.7vw, 1.5rem);
	line-height: 1.5;
}

.section_access:not(.section_access_page) .access_guide_content p {
	margin: 0;
	padding: 0.25rem 1rem 0.9rem;
	background: transparent;
	font-size: clamp(0.9rem, 1.5vw, 1.05rem);
	line-height: 2;
}

.section_access:not(.section_access_page) .access_meta {
	grid-column: 1 / 3;
	grid-row: 2;
	min-width: 0;
	text-align: center;
}

.section_access:not(.section_access_page) .access_meta .add {
	margin: 0;
	overflow-wrap: anywhere;
	font-size: clamp(0.9rem, 1.6vw, 1.05rem);
	line-height: 1.8;
}

.section_access .add .postal_code {
	white-space: nowrap;
}

.section_access:not(.section_access_page) .access_meta .btn {
	justify-content: center;
	padding: clamp(1.5rem, 3vw, 2.25rem) 0 0;
}

.section_access:not(.section_access_page) .access_meta .btn a {
	width: min(100%, 330px);
	box-sizing: border-box;
	text-align: center;
}

.section_access:not(.section_access_page) .access_map {
	grid-column: 3;
	grid-row: 1 / 3;
	align-self: center;
}

.section_access:not(.section_access_page) .access_map a {
	display: block;
}

.section_access:not(.section_access_page) .access_map .image {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0.5rem;
	border: 1px solid var(--gothic-line);
	background: var(--gothic-paper);
	line-height: 0;
}

.section_access:not(.section_access_page) .access_map img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 10px;
}

.section_access .btn {
	display: flex;
	justify-content: center;
	padding: 2rem 0;
}

.section_access .btn a {
	padding: 1rem 3rem;
	border: 1px solid var(--gothic-line);
	background: var(--gothic-paper);
	color: var(--gothic-ink);
	font-weight: bold;
	text-decoration: none;
	transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.section_access .btn a:hover,
.section_access .btn a:focus-visible,
.section_access .btn a:active {
	border-color: var(--gothic-line);
	background: var(--gothic-wine);
	color: var(--gothic-paper);
}

.business_hours {
	margin-top: clamp(2.5rem, 6vw, 5rem);
	padding: clamp(1.25rem, 3vw, 2rem);
	border: 1px solid var(--gothic-line);
	border-radius: 15px;
	background: var(--gothic-paper);
}

.business_hours h2 {
	margin: 0 0 1.25rem;
	font-size: clamp(1.1rem, 2vw, 1.4rem);
	font-weight: bold;
	text-align: center;
}

.business_hours_grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 clamp(2rem, 5vw, 5rem);
}

.business_hours_item {
	display: grid;
	grid-template-columns: minmax(7rem, 0.65fr) minmax(0, 1.35fr);
	align-items: baseline;
	gap: 1rem;
	padding: 1rem 0.5rem;
	border-bottom: 1px solid var(--gothic-line);
}

.business_hours_item strong,
.business_hours_item span {
	font: inherit;
	line-height: 1.6;
}

.business_hours_item strong {
	font-weight: bold;
}

.business_hours_note {
	margin: 1.5rem 0 0;
	padding-top: 1.25rem;
	border-top: 1px solid var(--gothic-line);
	font-weight: bold;
	text-align: center;
}

.section_group {
	padding: 2rem 0;
	background: var(--gothic-paper);
}

.section_group .title {
	text-align: center;
}

.section_group .title img {
	width: min(200px, 60vw);
}

.section_group .box {
	flex-wrap: wrap;
	justify-content: center;
}

.section_group .box a,
.section_group .box .group_shop {
	display: grid;
	place-items: center;
	border: 1px solid var(--gothic-line);
	background: var(--gothic-paper);
	text-decoration: none;
}

.section_group .box img {
	height: auto;
}

.section_footer {
	padding: 0.5rem 0;
	background: var(--gothic-wine);
	text-align: center;
}

.section_footer nav.menu_footer {
	padding: 1rem;
}

.section_footer nav.menu_footer ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem 1rem;
}

.section_footer nav.menu_footer li {
	padding: 0 0.3rem;
}

.section_footer nav.menu_footer a,
.section_footer .copyright a {
	color: var(--gothic-paper);
	text-decoration: none;
}

.section_footer .copyright p {
	padding: 0.5rem 1rem;
	font-size: 80%;
}

@media (max-width: 900px) {
	.section_news .box {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.section_info .box,
	.section_access .box {
		grid-template-columns: 1fr;
	}

	.section_info .box .left {
		padding-bottom: 1.5rem;
		border-right: 0;
	}

	.section_info .box .right {
		padding-left: 0;
	}

	.section_access .box > div .image {
		width: min(100%, 420px);
		margin: 0 auto;
	}

	.business_hours_grid {
		grid-template-columns: 1fr;
	}

	.section_access:not(.section_access_page) .access_layout {
		grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
	}

	.section_access:not(.section_access_page) .access_stations {
		grid-column: 1;
		grid-row: 1;
	}

	.section_access:not(.section_access_page) .access_details {
		grid-column: 2;
		grid-row: 1;
	}

	.section_access:not(.section_access_page) .access_meta {
		grid-column: 1 / -1;
		grid-row: 2;
	}

	.section_access:not(.section_access_page) .access_map {
		grid-column: 1 / -1;
		grid-row: 3;
		width: min(100%, 560px);
		margin-inline: auto;
	}
}

@media (max-width: 600px) {
	.wrapper {
		padding-inline: 20px;
	}

	.section_info .box .right a {
		grid-template-columns: 1fr;
		gap: 0.25rem;
	}

	.section_news_ticker {
		padding-bottom: 1.5rem;
	}

	.section_news_ticker .wrapper {
		grid-template-columns: 1fr;
	}

	.section_news_ticker .box > div {
		padding: 0.75rem;
	}

	.section_news_ticker .box > div.item {
		padding-inline: 0;
	}

	.section_pickup_banner,
	.section_news,
	.section_access {
		padding-block: 2rem;
	}

	.section_pickup_banner .box {
		flex-direction: row;
		align-items: stretch;
		justify-content: flex-start;
		overflow-x: auto;
		overscroll-behavior-inline: contain;
		padding-bottom: 0.5rem;
		scroll-padding-inline: 0;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		touch-action: pan-x pan-y;
		-webkit-overflow-scrolling: touch;
	}

	.section_pickup_banner .box::-webkit-scrollbar {
		display: none;
	}

	.section_news .box {
		grid-template-columns: 1fr;
	}

	.section_access .box > div span.station {
		display: block;
		margin: 0 auto 0.5rem;
		padding: 0.65rem 1rem;
	}

	.section_access .btn a {
		padding-inline: 1rem;
	}

	.section_access:not(.section_access_page) .access_layout {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.section_access:not(.section_access_page) .access_stations,
	.section_access:not(.section_access_page) .access_details,
	.section_access:not(.section_access_page) .access_meta,
	.section_access:not(.section_access_page) .access_map {
		grid-column: auto;
		grid-row: auto;
	}

	.section_access:not(.section_access_page) .access_stations {
		gap: 1rem;
	}

	.section_access:not(.section_access_page) .access_stations p {
		grid-template-columns: minmax(0, 1fr) auto auto auto;
	}

	.section_access:not(.section_access_page) .access_stations .station {
		width: min(100%, 260px);
		box-sizing: border-box;
		min-height: 0;
		padding: 0.65rem 1rem;
	}

	.section_access:not(.section_access_page) .access_stations .time {
		font-size: 1.75rem;
	}

	.section_access:not(.section_access_page) .access_meta .btn {
		justify-content: center;
	}

	.section_access:not(.section_access_page) .access_guide_content p {
		padding-bottom: 0;
	}

	.section_access:not(.section_access_page) .access_meta {
		margin-top: -1rem;
	}

	.section_access .add .postal_code {
		display: block;
		box-sizing: border-box;
		padding-left: 1rem;
		text-align: left;
	}

	.section_access:not(.section_access_page) .access_map {
		width: 100%;
	}

	.section_footer nav.menu_footer {
		font-size: 13px;
	}

	.section_footer .copyright p {
		font-size: 11px;
	}
}

/* ============================================================
 * 12. index.html 全セクション最終調整
 * ============================================================ */

.section_main_visual img,
.section_banner_slider img,
.section_pickup_banner img,
.section_sns img,
.section_news img,
.section_access img,
.section_group img {
	max-width: 100%;
}

.section_news_ticker .wrapper,
.section_pickup_banner .wrapper,
.section_sns .wrapper,
.section_news .wrapper,
.section_info .wrapper,
.section_access .wrapper,
.section_group .wrapper {
	width: min(100%, 1280px);
	padding-inline: clamp(20px, 3vw, 32px);
}

/* ヘッダー */
.section_header .header-inner {
	width: min(calc(100% - 48px), 1280px);
}

/* メインビジュアル・ロゴ */
.section_main_visual {
	min-height: clamp(620px, calc(100svh - 110px), 860px);
}

.section_main_logo .index_open {
	padding: clamp(2rem, 6vw, 4rem) 0;
}

.section_main_logo .index_open .logo {
	height: clamp(300px, min(32vw, 48svh), 430px);
}

/* 本日の営業・次回予告 */
.section_news_ticker {
	padding: clamp(1.5rem, 4vw, 3rem) 0;
}

.section_news_ticker .box {
	min-height: 58px;
	border-width: 1px;
}

.section_news_ticker .box > div.item {
	border-right-width: 1px;
}

/* バナースライダー */
.section_banner_slider {
	padding: 2rem 0 1rem;
}

.banner_slider_box {
	padding-bottom: 0;
}

.banner_slider_viewport {
	margin-inline: 84px;
}

.banner_slider_list {
	gap: 12px;
}

.banner_slider_item {
	flex-basis: 350px;
	min-width: 0;
}

.banner_slider_item img {
	background: transparent;
}

.banner_slider_button {
	transition: background-color 180ms ease, color 180ms ease;
}

.banner_slider_button:hover,
.banner_slider_button:focus-visible {
	background: var(--gothic-wine);
	color: var(--gothic-paper);
}

/* 3つのピックアップバナー */
.section_pickup_banner {
	padding-block: clamp(1.5rem, 4vw, 3rem);
}

.section_pickup_banner .box {
	align-items: center;
	gap: clamp(0.75rem, 2vw, 1.5rem);
}

.section_pickup_banner .box > div,
.section_pickup_banner .box > div a {
	display: block;
	min-width: 0;
	line-height: 0;
}

.section_pickup_banner .box > div {
	overflow: visible;
}

.section_pickup_banner .box > div img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 10px;
}

/* SNS */
.section_sns {
	padding-block: clamp(1rem, 3vw, 1.5rem);
}

.section_sns .box {
	align-items: center;
	gap: clamp(0.75rem, 2.5vw, 2rem);
}

.section_sns .box > div,
.section_sns .box > div a {
	display: grid;
	place-items: center;
	line-height: 0;
}

.section_sns .box > div img {
	display: block;
	aspect-ratio: 1;
	object-fit: contain;
}

/* ニュース */
.section_news {
	padding-block: clamp(2.5rem, 5vw, 4rem);
	border-bottom: 1px solid var(--gothic-line);
}

.section_news .title {
	padding-bottom: clamp(2rem, 4vw, 3rem);
}

.section_news .box {
	gap: clamp(2rem, 4vw, 3rem) clamp(1.25rem, 2.5vw, 2rem);
}

.section_news .box .detail a {
	height: 100%;
}

.section_news .news_card_image {
	width: 100%;
}

.section_news .btn,
.section_webshop .btn {
	padding: clamp(2.5rem, 5vw, 4rem) 0 0;
}

/* お知らせ */
.section_info {
	padding-block: clamp(2.5rem, 5vw, 4rem);
}

.section_info .box .left {
	min-height: 150px;
}

.section_info .box .right {
	align-items: flex-start;
}

/* グループ */
.section_group {
	padding-block: clamp(2rem, 4vw, 3rem);
	border-top: 1px solid var(--gothic-line);
}

.section_group .title {
	padding-bottom: clamp(1rem, 3vw, 1.75rem);
}

.section_group .title h2 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 5vw, 2.5rem);
	font-weight: normal;
	line-height: 1.4;
}

.section_group .title .title_subtitle {
	margin-top: 0.35rem;
	font-size: 1rem;
	font-weight: bold;
}

.section_group .box {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: clamp(0.75rem, 1.5vw, 1rem);
}

.section_group .box a,
.section_group .box .group_shop {
	width: 100%;
	min-width: 0;
	aspect-ratio: 1;
	padding: clamp(0.6rem, 1.2vw, 1rem);
}

.section_group .box img {
	width: min(100%, 120px);
	max-height: 120px;
	object-fit: contain;
}

/* フッター */
.section_footer {
	padding-block: 0.75rem;
}

.section_footer nav.menu_footer ul {
	row-gap: 0.4rem;
}

@media (min-width: 901px) and (max-width: 1199px) {
	.banner_slider_item {
		flex-basis: 350px;
	}

	.section_group .box {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.section_header .header-inner {
		width: min(calc(100% - 40px), 1280px);
	}

	.section_main_visual {
		min-height: clamp(540px, calc(82svh - 72px), 720px);
	}

	.section_main_logo .index_open .logo {
		height: min(360px, 48vw);
	}

	.banner_slider_item {
		flex-basis: calc((100% - 24px) / 3);
	}

	.section_news .box {
		gap: 2rem 1rem;
	}

	.section_info .box .left {
		min-height: 0;
		padding-inline: 0;
	}

	.section_info .box .right {
		padding-top: 0.5rem;
	}

	.section_access .box {
		gap: 1.5rem;
	}

	.business_hours {
		margin-top: 2.5rem;
		padding: 1rem;
	}

	.business_hours_item {
		grid-template-columns: minmax(5.8rem, 0.75fr) minmax(0, 1.25fr);
		gap: 0.5rem;
		padding: 0.85rem 0;
		font-size: 0.8rem;
	}

	.business_hours_item span {
		white-space: nowrap;
	}

	.business_hours_note {
		font-size: 0.85rem;
		line-height: 1.8;
	}

	.section_group .box {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.section_news_ticker .wrapper,
	.section_pickup_banner .wrapper,
	.section_sns .wrapper,
	.section_news .wrapper,
	.section_info .wrapper,
	.section_access .wrapper,
	.section_group .wrapper {
		width: 100%;
		padding-inline: 20px;
	}

	.section_header .header-inner {
		width: calc(100% - 32px);
	}

	.section_main_visual {
		min-height: clamp(500px, calc(86svh - 67px), 700px);
	}

	.section_main_visual::after {
		height: clamp(28px, 10vw, 44px);
	}

	.section_main_logo .index_open .logo {
		height: min(320px, 76vw);
	}

	.section_news_ticker {
		padding-block: 1.25rem 1.5rem;
	}

	.section_banner_slider {
		padding: 1.5rem 0 1rem;
	}

	.section_news_ticker .wrapper {
		gap: 0.6rem;
	}

	.section_news_ticker .box {
		min-height: 52px;
	}

	.section_news_ticker .box > div {
		padding-block: 0.65rem;
		font-size: 0.9rem;
	}

	.section_news_ticker .box > div.item {
		flex-basis: 8em;
	}

	.banner_slider_box {
		width: calc(100% - 40px);
	}

	.banner_slider_viewport {
		margin-inline: 0;
		border-radius: 10px;
	}

	.banner_slider_list {
		gap: 12px;
		padding-inline: 42px;
	}

	.banner_slider_item {
		flex-basis: calc(100% - 84px);
	}

	.banner_slider_dots {
		margin-top: 18px;
	}

	.section_pickup_banner .box {
		gap: 0.35rem;
	}

	.section_pickup_banner .box > div {
		flex: 0 0 min(calc(100vw - 72px), 320px);
		width: auto;
		margin-block: 0.15rem;
		scroll-snap-align: start;
		scroll-snap-stop: always;
	}

	.section_sns .box {
		display: flex;
		justify-content: center;
		gap: 0.6rem;
	}

	.section_sns .box > div img {
		width: 48px;
		max-width: 100%;
	}

	.section_news .title {
		padding-bottom: 2rem;
	}

	.section_news .box {
		gap: 2.25rem;
	}

	.section_news .box .detail h3,
	.section_news .box .detail p,
	.section_news .box .detail time {
		margin-inline: 8px;
	}

	.section_news .btn a,
	.section_webshop .btn a,
	.section_access .btn a {
		width: min(100%, 280px);
		text-align: center;
	}

	.section_info .box .left {
		padding-bottom: 1.25rem;
	}

	.section_info .box .right {
		flex-direction: column;
		gap: 1rem;
	}

	.section_info .box .right a {
		font-size: 0.95rem;
	}

	.section_access .box > div p {
		padding-bottom: 0.75rem;
	}

	.section_access .box > div span.station {
		width: min(100%, 260px);
	}

	.section_access .box > div span.time {
		font-size: 1.75rem;
	}

	.section_access .box > div .image {
		padding: 0.65rem;
	}

	.section_group .box {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 0.75rem;
	}

	.section_group .box a,
	.section_group .box .group_shop {
		width: 100%;
		padding: 0.65rem;
	}

	.section_group .box img {
		width: min(100%, 120px);
	}

	.section_footer nav.menu_footer {
		padding: 0.75rem 20px;
	}

	.section_footer nav.menu_footer ul {
		column-gap: 0.8rem;
	}
}

/* ============================================================
 * 13. コンセプト
 * ============================================================ */
.section_concept,
.section_concept * {
	box-sizing: border-box;
}

.section_concept {
	padding: clamp(3rem, 6vw, 5rem) 0;
	border-bottom: 1px solid var(--gothic-line);
	background: var(--gothic-paper);
}

.section_concept .wrapper {
	width: min(100%, 1280px);
	padding-inline: clamp(20px, 3vw, 32px);
}

.section_concept .concept_layout {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
	align-items: center;
	gap: clamp(2.5rem, 6vw, 6rem);
}

.section_concept .title {
	padding-bottom: 2rem;
}

.section_concept .title h2 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 5vw, 2.5rem);
}

.section_concept .title .title_subtitle {
	font-weight: bold;
}

.section_concept .description {
	color: var(--gothic-ink);
	font-size: clamp(1rem, 1.6vw, 1.15rem);
	line-height: 2;
}

.section_concept .description p + p {
	margin-top: 0.65rem;
}

.section_concept .concept_music {
	margin-top: 2.5rem;
	color: var(--gothic-ink);
}

.section_concept .concept_music > p:first-child {
	margin-bottom: 0.75rem;
}

.section_concept .concept_music audio {
	display: block;
	width: min(100%, 380px);
}

.section_concept .music_service {
	display: flex;
	align-items: center;
	margin-top: 1rem;
	gap: 0.6rem;
	font-size: 0.9rem;
	letter-spacing: 0.08em;
}

.section_concept .music_service img {
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	border-radius: 6px;
	object-fit: contain;
}

.section_concept .concept_main_image {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 28px;
	object-fit: cover;
}

.section_concept .concept_movie_list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(0.75rem, 2vw, 1.5rem);
	margin-top: 1.5rem;
}

.section_concept .concept_thumbnail {
	display: block;
	aspect-ratio: 16 / 9;
	width: 100%;
	padding: 0;
	overflow: hidden;
	border: 3px solid transparent;
	border-radius: 12px;
	background: var(--gothic-wine);
	cursor: pointer;
	opacity: 0.72;
	transition: border-color 180ms ease, opacity 180ms ease;
}

.section_concept .concept_thumbnail:hover,
.section_concept .concept_thumbnail:focus-visible,
.section_concept .concept_thumbnail.is-active {
	border-color: var(--gothic-line);
	opacity: 1;
}

.section_concept .concept_thumbnail img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 900px) {
	.section_concept .concept_layout {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
}

@media (max-width: 600px) {
	.section_concept {
		padding: 3rem 0;
	}

	.section_concept .wrapper {
		width: 100%;
		padding-inline: 20px;
	}

	.section_concept .title {
		padding-bottom: 1.5rem;
		text-align: center;
	}

	.section_concept .description {
		font-size: 0.95rem;
		line-height: 1.9;
	}

	.section_concept .concept_music {
		margin-top: 2rem;
		text-align: center;
	}

	.section_concept .concept_music audio {
		margin-inline: auto;
	}

	.section_concept .music_service {
		justify-content: center;
	}

	.section_concept .concept_main_image {
		border-radius: 20px;
	}

	.section_concept .concept_movie_list {
		gap: 0.6rem;
		margin-top: 0.75rem;
	}

	.section_concept .concept_thumbnail {
		border-radius: 8px;
	}
}

/* ============================================================
 * 14. ホーム求人ブロック
 * ============================================================ */

.section_home_recruit,
.section_home_recruit * {
	box-sizing: border-box;
}

.section_home_recruit {
	padding: clamp(2rem, 4vw, 3rem) 0;
	background: var(--gothic-paper);
}

.section_home_recruit .wrapper {
	width: min(100%, 1280px);
	padding-inline: clamp(20px, 3vw, 32px);
}

.home_recruit_box {
	display: grid;
	grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.6fr);
	align-items: center;
	gap: clamp(1.5rem, 3vw, 2.5rem);
	background: var(--gothic-paper);
}

.home_recruit_banner {
	display: block;
	overflow: hidden;
	width: 100%;
	border-radius: 16px;
	line-height: 0;
}

.home_recruit_banner[hidden] {
	display: none;
}

.home_recruit_banner img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1600 / 560;
	border-radius: inherit;
	object-fit: cover;
}

.home_recruit_box:has(.home_recruit_banner[hidden]) {
	grid-template-columns: 1fr;
}

.home_recruit_content h2 {
	font-size: clamp(1.25rem, 2.4vw, 1.75rem);
	font-weight: 700;
	line-height: 1.6;
}

.home_recruit_content p {
	margin-top: 0.35rem;
	color: var(--gothic-ink);
	font-size: clamp(1rem, 1.8vw, 1.25rem);
	font-weight: 400;
	line-height: 1.8;
	white-space: pre-line;
}

@media (max-width: 850px) {
	.home_recruit_box {
		grid-template-columns: 1fr;
	}

}

@media (max-width: 600px) {
	.access_guide {
		align-items: stretch;
		flex-direction: column;
		border-radius: 16px;
	}

	.section_access .access_guide .btn a {
		width: 100%;
	}

	.section_home_recruit .wrapper {
		width: 100%;
		padding-inline: 20px;
	}

	.home_recruit_content {
		text-align: left;
	}

	.home_recruit_content p {
		padding-inline: 0.5rem;
	}
}

/* ============================================================
 * 15. メニューページ
 * ============================================================ */
.section_menu_list,
.section_menu_list * {
	box-sizing: border-box;
}

.section_menu_list {
	padding: 0 0 clamp(3rem, 7vw, 6rem);
	background: var(--gothic-paper);
}

.section_menu_list .wrapper {
	width: min(100%, 1280px);
	padding-inline: clamp(20px, 3vw, 32px);
}

.menu_category_nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
}

.menu_category_nav button {
	min-width: 112px;
	min-height: 42px;
	padding: 0.55rem 1.3rem;
	border: 1px solid var(--gothic-line);
	border-radius: 999px;
	background: var(--gothic-paper);
	color: var(--gothic-ink);
	font: inherit;
	font-size: 0.9rem;
	font-weight: bold;
	cursor: pointer;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.menu_category_nav button:hover,
.menu_category_nav button:focus-visible,
.menu_category_nav button.is-active {
	border-color: var(--gothic-line);
	background: var(--gothic-wine);
	color: var(--gothic-paper);
}

.menu_section_title {
	padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.75rem, 4vw, 2.5rem);
	text-align: center;
}

.menu_section_title h2 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 5vw, 2.5rem);
	font-weight: normal;
	line-height: 1.4;
}

.menu_section_title p {
	margin-top: 0.35rem;
	font-size: 1rem;
	font-weight: bold;
}

.menu_card_list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 2.5vw, 1.75rem);
}

.menu_list_status {
	grid-column: 1 / -1;
	margin: 0;
	padding: clamp(3rem, 8vw, 6rem) 1rem;
	color: var(--gothic-ink);
	text-align: center;
}

.menu_card {
	display: flex;
	min-width: 0;
	overflow: hidden;
	flex-direction: column;
	border: 1px solid var(--gothic-line);
	border-radius: 20px;
	background: var(--gothic-paper);
}

.menu_card[hidden] {
	display: none;
}

.menu_card_image {
	position: relative;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 4 / 5;
	border-radius: 19px 19px 0 0;
}

.menu_card_image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.menu_card_image span {
	position: absolute;
	top: 12px;
	right: 12px;
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0.25rem 0.8rem;
	border-radius: 999px;
	background: var(--gothic-wine);
	color: var(--gothic-paper);
	font-size: 0.75rem;
	font-weight: bold;
	line-height: 1;
}

.menu_card_content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: clamp(1rem, 2vw, 1.35rem);
}

.menu_card_content h3 {
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	font-weight: bold;
	line-height: 1.5;
}

.menu_card_content p {
	margin-top: 0.65rem;
	color: var(--gothic-ink);
	font-size: 0.9rem;
	line-height: 1.8;
}

.menu_card_content strong {
	display: block;
	margin-top: auto;
	padding-top: 1.25rem;
	font-size: 1.1rem;
	font-weight: bold;
}

@media (max-width: 900px) {
	.menu_card_list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.section_menu_list .wrapper {
		padding-inline: 16px;
	}

	.menu_category_nav {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.6rem;
	}

	.menu_category_nav button {
		min-width: 0;
		width: 100%;
	}

	.menu_card_list {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.menu_card {
		border-radius: 18px;
	}

	.menu_card_image {
		border-radius: 17px 17px 0 0;
	}
}

/* ============================================================
 * 15. キャスト一覧
 * ============================================================ */
.section_cast_list,
.section_cast_list * {
	box-sizing: border-box;
}

.section_cast_list {
	padding: 0 0 clamp(3rem, 7vw, 6rem);
	background: var(--gothic-paper);
}

.section_cast_list .wrapper {
	width: min(100%, 1440px);
	padding-inline: clamp(20px, 3vw, 32px);
}

.cast_card_list {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 1.5rem);
}

.cast_list_status {
	grid-column: 1 / -1;
	margin: 0;
	padding: clamp(3rem, 8vw, 6rem) 1rem;
	color: var(--gothic-ink);
	text-align: center;
}

.cast_card {
	display: flex;
	min-width: 0;
	overflow: hidden;
	flex-direction: column;
	border: 1px solid var(--gothic-line);
	border-radius: 20px;
	background: var(--gothic-paper);
}

.cast_card_image {
	position: relative;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 4 / 5;
	border-radius: 19px 19px 0 0;
}

.cast_card_image > img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cast_card_image_placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: var(--gothic-paper);
}

.cast_card_content {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: center;
	padding: 1rem clamp(0.75rem, 2vw, 1.25rem) 1.25rem;
	text-align: center;
}

.cast_card_content h3 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.2rem;
	font-size: 1rem;
	font-weight: bold;
	line-height: 1.5;
}

.cast_sns_list {
	display: flex;
	min-height: 34px;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	margin-top: 0.75rem;
}

.cast_sns_icon {
	display: inline-flex;
	width: 24px;
	height: 24px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	overflow: hidden;
}

.cast_sns_icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: inherit;
}

.cast_profile_button {
	display: inline-flex;
	min-width: 140px;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	margin-top: 1rem;
	padding: 0.45rem 1.25rem;
	border: 1px solid var(--gothic-line);
	border-radius: 15px;
	background: var(--gothic-paper);
	color: var(--gothic-ink);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-decoration: none;
	transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.section_cast_list .cast_profile_button {
	min-height: 40px;
	padding-block: 0.2rem;
}

.cast_profile_button:hover,
.cast_profile_button:focus-visible,
.cast_profile_button:active {
	border-color: var(--gothic-line);
	background: var(--gothic-wine);
	color: var(--gothic-paper);
}

@media (max-width: 900px) {
	.cast_card_list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.section_cast_list .wrapper {
		padding-inline: 16px;
	}

	.cast_card_list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.75rem;
	}

	.cast_card {
		border-radius: 14px;
	}

	.cast_card_image {
		border-radius: 13px 13px 0 0;
	}

	.cast_card_content {
		padding: 0.75rem 0.5rem 1rem;
	}

	.cast_sns_list {
		min-height: 24px;
		margin-top: 0.5rem;
	}

	.section_cast_list .cast_sns_icon {
		width: 20px;
		height: 20px;
	}

	.cast_profile_button {
		width: 100%;
		min-width: 0;
		margin-top: 0.25rem;
		font-size: 12px;
		font-weight: 700;
	}
}

/* ============================================================
 * 16. キャスト詳細
 * ============================================================ */
.section_cast_detail,
.section_cast_detail * {
	box-sizing: border-box;
}

.section_cast_detail {
	padding: 0 0 clamp(3rem, 7vw, 6rem);
	background: var(--gothic-paper);
}

.section_cast_detail .wrapper {
	width: min(calc(100% - 40px), 1000px);
}

.cast_detail_card {
	display: grid;
	grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
	align-items: start;
	gap: clamp(2rem, 6vw, 5rem);
}

.cast_detail_card[hidden],
.cast_detail_image img[hidden] {
	display: none;
}

.cast_detail_gallery {
	width: 100%;
}

.cast_detail_image {
	overflow: hidden;
	width: 100%;
	margin: 0;
	aspect-ratio: 4 / 5;
	border: 1px solid var(--gothic-line);
	border-radius: 20px;
	background: var(--gothic-paper);
}

.cast_detail_image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cast_detail_thumbnails {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.6rem;
	margin-top: 0.75rem;
}

.cast_detail_thumbnails button {
	display: block;
	overflow: hidden;
	width: 100%;
	margin: 0;
	padding: 0;
	aspect-ratio: 4 / 5;
	border: 2px solid transparent;
	border-radius: 10px;
	background: var(--gothic-paper);
	cursor: pointer;
	opacity: 0.65;
	transition: border-color 180ms ease, opacity 180ms ease;
}

.cast_detail_thumbnails button:hover,
.cast_detail_thumbnails button:focus-visible,
.cast_detail_thumbnails button.is-active {
	border-color: var(--gothic-line);
	opacity: 1;
}

.cast_detail_thumbnails button:focus-visible {
	outline: 2px solid var(--gothic-line);
	outline-offset: 2px;
}

.cast_detail_thumbnails img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cast_detail_content {
	padding-top: 0.5rem;
}

.cast_detail_name {
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--gothic-line);
}

.cast_detail_name small {
	display: block;
	margin-bottom: 0.4rem;
	color: var(--gothic-ink);
	font-size: 0.75rem;
	letter-spacing: 0.14em;
}

.cast_detail_name h2 {
	font-size: clamp(1.75rem, 4vw, 2.4rem);
	font-weight: bold;
	line-height: 1.35;
}

.cast_detail_name p {
	margin-top: 0.2rem;
	color: var(--gothic-ink);
	font-size: 0.8rem;
	letter-spacing: 0.12em;
}

.cast_detail_profile {
	margin-top: 1.5rem;
}

.cast_detail_profile > div {
	display: grid;
	grid-template-columns: 7.5rem minmax(0, 1fr);
	gap: 1rem;
	padding: 0.9rem 0;
	border-bottom: 1px solid var(--gothic-line);
	line-height: 1.7;
}

.cast_detail_profile > div.is-stacked {
	grid-template-columns: 1fr;
	gap: 0.25rem;
}

.cast_detail_profile dt {
	font-weight: bold;
}

.cast_detail_profile dd {
	color: var(--gothic-ink);
}

.cast_detail_sns {
	margin-top: 1rem;
}

.cast_detail_sns_list {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: 0;
}

.cast_detail_sns_list a {
	display: inline-flex;
	overflow: hidden;
	width: 30px;
	height: 30px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: opacity 180ms ease;
}

.cast_detail_sns_list a:hover,
.cast_detail_sns_list a:focus-visible {
	opacity: 0.65;
}

.cast_detail_sns_list img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: inherit;
}

.cast_detail_back {
	display: flex;
	justify-content: center;
	margin-top: clamp(2.5rem, 6vw, 4rem);
}

.cast_detail_back .cast_profile_button {
	min-width: 220px;
	margin-top: 0;
}

@media (max-width: 700px) {
	.section_cast_detail .wrapper {
		width: min(calc(100% - 32px), 520px);
	}

	.cast_detail_card {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.cast_detail_gallery {
		width: min(100%, 340px);
		margin-inline: auto;
	}

	.cast_detail_image {
		width: 100%;
		margin-inline: 0;
		border-radius: 16px;
	}

	.cast_detail_content {
		padding-top: 0;
	}

	.cast_detail_name {
		padding-bottom: 1rem;
	}

	.cast_detail_profile > div {
		grid-template-columns: 6.5rem minmax(0, 1fr);
		gap: 0.75rem;
	}

	.cast_detail_back .cast_profile_button {
		width: min(100%, 280px);
	}
}

/* バナースライダー：中央バナーの左右に前後のバナーを少し見せる */
@media (max-width: 600px) {
	section.section_banner_slider {
		padding-bottom: 0.5rem;
	}

	section.section_banner_slider .banner_slider_box {
		padding-bottom: 0;
	}

	.section_banner_slider .banner_slider_list {
		padding-inline: 42px;
	}

	.section_banner_slider .banner_slider_item {
		flex-basis: 100%;
	}
}

@media (min-width: 901px) {
	.section_news .box .detail h3,
	section.section_news_list .box .detail h3 {
		font-size: 1rem;
	}

	.section_banner_slider .banner_slider_list {
		padding-inline: var(--banner-slider-desktop-peek, 0px);
	}

	.section_banner_slider .banner_slider_item {
		flex-basis: 350px;
	}

	.banner_slider_item.is-clone {
		display: list-item;
	}

}

/* ニュース一覧：indexと同じカードを9件ずつ表示 */
section.section_news_list {
	padding-top: 0;
	padding-bottom: clamp(2.5rem, 5vw, 4rem);
	scroll-margin-top: 110px;
}

section.section_news_list .box {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(2rem, 4vw, 3rem) clamp(1.25rem, 2.5vw, 2rem);
}

section.section_news_list .box .detail {
	width: auto;
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
	background: var(--gothic-paper);
}

section.section_news_list .box .detail[hidden] {
	display: none;
}

section.section_news_list .box .detail a {
	display: block;
	height: 100%;
	padding: 0;
	color: var(--gothic-ink);
	text-decoration: none;
}

section.section_news_list .news_card_image {
	position: relative;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 16 / 9;
	border: 1px solid var(--gothic-line);
	border-radius: 20px;
}

section.section_news_list .news_card_image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

section.section_news_list .news_card_tag {
	position: absolute;
	top: 12px;
	right: 12px;
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0.25rem 0.85rem;
	border-radius: 999px;
	background: var(--gothic-wine);
	color: var(--gothic-paper);
	font-size: 0.8rem;
	line-height: 1;
}

section.section_news_list .box .detail h3 {
	margin-top: 1rem;
	margin-inline: 10px;
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	font-weight: bold;
	line-height: 1.5;
}

@media (min-width: 901px) {
	section.section_news_list .box .detail h3 {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
}

section.section_news_list .box .detail p {
	margin-top: 0.65rem;
	margin-inline: 10px;
	color: var(--gothic-ink);
	font-size: 0.95rem;
	line-height: 1.8;
}

.section_news .box .detail p,
section.section_news_list .box .detail p {
	display: -webkit-box;
	overflow: hidden;
	height: 3.6em;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

section.section_news_list .box .detail time {
	display: block;
	margin-top: 0.65rem;
	margin-inline: 10px;
	color: var(--gothic-ink);
	font-size: 0.85rem;
	line-height: 1.5;
}

.news_pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.65rem;
	margin-top: clamp(2.5rem, 5vw, 4rem);
}

.news_pagination button,
.news_pagination a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 0.8rem;
	border: 1px solid var(--gothic-line);
	border-radius: 999px;
	background: var(--gothic-paper);
	color: var(--gothic-ink);
	font: inherit;
	font-weight: bold;
	cursor: pointer;
	text-decoration: none;
}

.news_pagination button:hover,
.news_pagination button:focus-visible,
.news_pagination button.is-active,
.news_pagination a:hover,
.news_pagination a:focus-visible,
.news_pagination a.is-active {
	border-color: var(--gothic-line);
	background: var(--gothic-wine);
	color: var(--gothic-paper);
}

.news_pagination button:disabled {
	opacity: 0.35;
	cursor: default;
}

.news_pagination_ellipsis {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	height: 44px;
	color: var(--gothic-paper);
	font-weight: bold;
}

@media (max-width: 900px) {
	section.section_news_list .box {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	section.section_news_list {
		scroll-margin-top: 68px;
	}

	section.section_news_list .box {
		grid-template-columns: 1fr;
		gap: 2.25rem;
	}

	section.section_news_list .box .detail h3,
	section.section_news_list .box .detail p,
	section.section_news_list .box .detail time {
		margin-inline: 8px;
	}
}

.recruit_job_page {
	--recruit-ink: #0b2a3a;
	--recruit-heading: #0a3044;
	--recruit-accent: #0a4a66;
	--recruit-muted: #3d5866;
	--recruit-title-blue: #3e8eb8;
	--recruit-faq-blue: #1e5886;
	--recruit-blue: #8fccea;
	--recruit-blue-soft: #eaf7ff;
	--recruit-line: #cfe4ef;
	--recruit-white: #fff;
	color: var(--recruit-ink);
	background: radial-gradient(circle at 50% 0%, var(--gothic-soft), var(--gothic-paper) 58%);
	line-height: 1.9;
}

.recruit_job_page,
.recruit_job_page * {
	box-sizing: border-box;
}

.recruit_job_page :where(h1, h2, h3, p, ul, figure, fieldset) {
	margin: 0;
}

.recruit_job_page :where(ul) {
	padding: 0;
	list-style: none;
}

.recruit_job_page a {
	color: inherit;
}

.recruit_job_wrapper {
	width: min(100%, 1280px);
	margin-inline: auto;
	padding-inline: clamp(20px, 3vw, 32px);
}

.section_recruit_job_interior,
.section_recruit_job_reasons,
.section_recruit_job_requirements,
.section_recruit_job_faq,
.section_recruit_job_apply,
.section_recruit_job_form {
	padding-block: 4.25rem;
}

.section_recruit_job_hero {
	padding-block: 4.25rem;
	background: transparent;
}

.recruit_job_hero_grid {
	display: grid;
	align-items: start;
	grid-template-columns: minmax(0, 1.107fr) minmax(0, 1fr);
	gap: 2rem;
}

.recruit_job_hero_copy {
	padding-top: 2.375rem;
}

.recruit_job_kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 7px 12px;
	border: 1px solid var(--gothic-wine);
	border-radius: 999px;
	background: var(--gothic-paper);
	color: var(--recruit-accent);
	font-size: 1rem;
	font-weight: bold;
}

.recruit_job_kicker span {
	display: block;
	width: 9px;
	height: 9px;
	background: var(--recruit-blue);
	transform: rotate(45deg);
}

.recruit_job_hero_copy h1 {
	margin-top: 1.75rem;
	font-size: 2.25rem;
	color: var(--recruit-heading);
	font-weight: bold;
	letter-spacing: 0.02em;
	line-height: 1.28;
}

.recruit_job_lead,
.recruit_job_text_box {
	border: 1px solid rgba(207, 228, 239, 0.95);
}

.recruit_job_lead {
	margin-top: 0.625rem;
	padding: 14px 16px;
	border-radius: 18px;
	color: var(--recruit-muted);
	line-height: 1.9;
	box-shadow: 0 22px 44px rgba(125, 211, 252, 0.28);
}

.recruit_job_actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.875rem;
}

.recruit_job_button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 20px;
	border: 1px solid var(--recruit-line);
	border-radius: 22px;
	font-weight: 600;
	font-size: 1rem;
	letter-spacing: 0;
	text-decoration: none;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.recruit_job_button:hover,
.recruit_job_button:focus-visible {
	transform: translateY(-2px);
}

.recruit_job_button_primary {
	background: linear-gradient(180deg, var(--gothic-paper), var(--gothic-soft));
	color: var(--recruit-accent);
}

.recruit_job_button_primary:hover,
.recruit_job_button_primary:focus-visible {
	border-color: var(--gothic-wine);
	background: var(--gothic-soft);
}

.recruit_job_button_light {
	background: var(--gothic-paper);
}

.recruit_job_button_light:hover,
.recruit_job_button_light:focus-visible {
	background: var(--gothic-paper);
}

.recruit_job_support_title {
	margin-top: 2.25rem;
	color: var(--recruit-accent);
	font-weight: bold;
}

.recruit_job_perks {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
	margin-top: 0.625rem;
}

.recruit_job_perks li,
.recruit_job_mini_perks li {
	display: flex;
	align-items: center;
	min-height: 48px;
	padding: 0.6rem 0.75rem;
	border: 1px solid var(--recruit-line);
	border-radius: 14px;
	background: var(--gothic-card);
	color: var(--recruit-accent);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0;
	box-shadow: 0 10px 22px rgba(69, 132, 164, 0.08);
}

.recruit_job_hero_visual {
	position: relative;
	margin: 0;
	padding-bottom: 0;
}

.recruit_job_hero_visual > img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 5;
	border: 1px solid var(--recruit-line);
	border-color: var(--gothic-wine);
	border-radius: 26px;
	object-fit: cover;
	box-shadow: 0 22px 44px rgba(125, 211, 252, 0.28);
}

.recruit_job_section_note {
	margin-bottom: 0.75rem;
	color: var(--gothic-wine);
	font-size: 0.85rem;
	font-weight: bold;
}

.recruit_job_interior_grid {
	display: grid;
	align-items: start;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 1.625rem;
}

.recruit_job_interior_image {
	position: relative;
	padding-bottom: 0;
}

.recruit_job_interior_image img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	border: 1px solid var(--recruit-line);
	border-color: var(--gothic-wine);
	border-radius: 26px;
	object-fit: cover;
	box-shadow: 0 22px 44px rgba(125, 211, 252, 0.28);
}

.recruit_job_interior_image figcaption {
	position: absolute;
	bottom: -14px;
	left: 14px;
	padding: 9px 12px;
	border: 1px solid var(--recruit-line);
	border-radius: 16px;
	background: var(--gothic-paper);
	color: var(--recruit-accent);
	font-size: 0.83rem;
	font-weight: 600;
}

.recruit_job_interior_copy h2,
.section_recruit_job_reasons h2,
.section_recruit_job_requirements h2,
.section_recruit_job_faq h2,
.section_recruit_job_apply h2,
.section_recruit_job_form h2 {
	color: var(--recruit-heading);
	font-size: 1.5rem;
	font-weight: bold;
	letter-spacing: 0;
	line-height: 1.9;
}

.recruit_job_text_box {
	margin-top: 0.625rem;
	padding: 0.875rem 1rem;
	border-radius: 16px;
	background: var(--gothic-card);
	color: var(--recruit-muted);
	letter-spacing: 0;
	line-height: 1.9;
	box-shadow: 0 16px 36px rgba(76, 144, 178, 0.08);
}

.recruit_job_text_box p + p {
	margin-top: 0;
}

.recruit_job_mini_perks {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 275px));
	gap: 0.625rem;
	width: min(100%, 560px);
	margin-top: 0.75rem;
}

.recruit_job_interior_copy .recruit_job_actions {
	gap: 0.75rem;
	margin-top: 1rem;
}

.recruit_job_interior_copy .recruit_job_button {
	padding-inline: 1.25rem;
	font-size: 1rem;
}

.recruit_job_actions_center {
	justify-content: center;
}

.section_recruit_job_reasons,
.section_recruit_job_faq,
.section_recruit_job_interior,
.section_recruit_job_form {
	background: var(--gothic-paper);
}

.recruit_job_section_lead {
	margin-top: 0.625rem;
	color: var(--recruit-muted);
	line-height: 1.8;
}

.recruit_job_reason_grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.375rem;
	margin-top: 0.875rem;
}

.recruit_job_reason_grid article,
.recruit_job_requirements_grid article,
.recruit_job_apply_grid article {
	padding: 22px;
	border: 1px solid var(--gothic-wine);
	border-radius: 22px;
	background: var(--gothic-paper);
	box-shadow: 0 18px 38px rgba(125, 211, 252, 0.16);
}

.recruit_job_reason_grid h3,
.recruit_job_requirements_grid h3,
.recruit_job_apply_grid h3 {
	color: var(--recruit-title-blue);
	font-size: 1.15rem;
	font-weight: bold;
}

.recruit_job_reason_grid p,
.recruit_job_apply_grid p {
	margin-top: 0.5rem;
	color: var(--recruit-ink);
	letter-spacing: 0;
	line-height: 1.9;
}

.section_recruit_job_requirements,
.section_recruit_job_apply {
	background: linear-gradient(180deg, var(--gothic-paper), var(--gothic-paper));
}

.recruit_job_requirements_grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.375rem;
	margin-top: 0.625rem;
}

.recruit_job_requirements_grid ul {
	margin-top: 0.5rem;
	color: var(--recruit-ink);
	letter-spacing: 0;
}

.recruit_job_requirements_grid li {
	position: relative;
	padding-left: 1.25rem;
	line-height: 1.9;
}

.recruit_job_requirements_grid li::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "・";
}

.recruit_job_requirements_grid article h3:not(:first-child) {
	margin-top: 0.75rem;
}

.recruit_job_mobile_break {
	display: none;
}

.recruit_job_requirements_wide strong {
	color: var(--gothic-wine);
}

.recruit_job_notice {
	margin-top: 1rem;
	color: var(--recruit-muted);
	font-size: 0.85rem;
}

.recruit_job_form_note {
	color: var(--recruit-muted);
}

.recruit_job_requirements_grid .recruit_job_notice {
	margin-top: 0.75rem;
	padding: 0.625rem 0.875rem;
	border: 1px solid var(--recruit-line);
	border-radius: 10px;
	background: var(--gothic-paper);
	color: var(--recruit-accent);
	letter-spacing: 0;
	font-size: 0.6rem;
	line-height: 1.9;
}

.recruit_job_faq_list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	width: 100%;
	margin: 0.625rem 0 0;
}

.recruit_job_faq_list details {
	overflow: hidden;
	min-height: 62px;
	padding: 1.25rem;
	border: 1px solid var(--gothic-wine);
	border-radius: 20px;
	background: var(--gothic-paper);
	box-shadow: 0 18px 38px rgba(125, 211, 252, 0.16);
}

.recruit_job_faq_list summary {
	position: relative;
	cursor: pointer;
	padding: 0 1.75rem 0 0;
	color: var(--recruit-faq-blue);
	font-weight: bold;
	letter-spacing: 0;
	line-height: 1.25;
	list-style: none;
}

.recruit_job_faq_list summary::-webkit-details-marker {
	display: none;
}

.recruit_job_faq_list summary::after {
	position: absolute;
	top: 50%;
	right: 0;
	font-size: 1.25rem;
	content: "+";
	transform: translateY(-50%);
}

.recruit_job_faq_list details[open] summary::after {
	content: "−";
}

.recruit_job_faq_list details p {
	margin-top: 0.5rem;
	padding: 0;
	color: var(--recruit-muted);
	letter-spacing: 0;
	line-height: 1.9;
}

.recruit_job_apply_grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.375rem;
	margin-top: 1.125rem;
}

.recruit_job_apply_grid article {
	min-height: 336px;
	text-align: left;
}

.recruit_job_apply_grid article:first-child {
	border-color: var(--gothic-wine);
	background: linear-gradient(180deg, var(--gothic-paper), var(--gothic-paper));
}

.section_recruit_job_apply h2,
.section_recruit_job_apply > .recruit_job_wrapper > .recruit_job_section_lead {
	text-align: center;
}

.recruit_job_apply_header {
	display: flex;
	align-items: center;
	gap: 12px;
}

.recruit_job_apply_header h3 {
	margin: 0;
}

.recruit_job_step {
	display: grid;
	flex: 0 0 auto;
	width: 34px;
	height: 34px;
	place-items: center;
	border-radius: 50%;
	background: var(--gothic-wine);
	color: var(--gothic-paper);
	font-weight: bold;
}

.recruit_job_apply_grid article:first-child .recruit_job_step {
	background: var(--gothic-wine);
}

.recruit_job_apply_grid img {
	display: block;
	width: 120px;
	height: 120px;
}

.recruit_job_qr {
	display: block;
	padding: 10px;
	border: 1px solid var(--gothic-line);
	border-radius: 14px;
	background: var(--gothic-paper);
}

.recruit_job_line_apply,
.recruit_job_apply_actions {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.625rem;
}

.recruit_job_line_apply {
	height: 142px;
	gap: 0.875rem;
}

.recruit_job_apply_actions {
	gap: 0.875rem;
}

.recruit_job_apply_grid p.recruit_job_apply_note {
	margin-top: 0.5rem;
	color: var(--recruit-muted);
	font-size: 0.85rem;
	line-height: 1.9;
}

.recruit_job_page .recruit_job_button_line {
	border-color: var(--gothic-wine);
	background: var(--gothic-wine);
	color: var(--gothic-paper);
	font-weight: 400;
}

.recruit_job_button_line:hover,
.recruit_job_button_line:focus-visible {
	background: var(--gothic-wine);
}

.recruit_job_text_link {
	display: block;
	margin-top: 1rem;
	font-size: 0.9rem;
	font-weight: bold;
}

.recruit_job_form {
	width: 100%;
	margin: 0.875rem 0 0;
	padding: 22px;
	border: 1px solid var(--gothic-wine);
	border-radius: 22px;
	background: var(--gothic-paper);
	box-shadow: 0 18px 38px rgba(125, 211, 252, 0.16);
}

.recruit_job_form_grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 1.375rem;
	row-gap: 0;
	min-height: 103px;
}

.recruit_job_form_grid + .recruit_job_form_grid {
	min-height: 105px;
}

.recruit_job_form_grid + .recruit_job_form_grid + .recruit_job_form_grid {
	min-height: 114px;
}

.recruit_job_form label,
.recruit_job_form legend {
	display: block;
	margin: 10px 0 6px;
	font-size: 0.95rem;
	font-weight: bold;
}

.recruit_job_form label > span {
	margin-left: 0.35rem;
	padding: 0.15rem 0.35rem;
	border-radius: 5px;
	background: var(--gothic-soft);
	color: var(--gothic-wine);
	font-size: 0.7rem;
}

.recruit_job_form input:not([type="radio"]):not([type="checkbox"]),
.recruit_job_form select,
.recruit_job_form textarea {
	display: block;
	width: 100%;
	margin-top: 0;
	padding: 13px 15px;
	border: 1px solid var(--gothic-wine);
	border-radius: 14px;
	background: var(--gothic-paper);
	color: var(--gothic-wine);
	font: inherit;
}

.recruit_job_form input:focus,
.recruit_job_form select:focus,
.recruit_job_form textarea:focus {
	border-color: var(--gothic-wine);
	outline: 3px solid var(--gothic-rose);
}

.recruit_job_form fieldset {
	padding: 0;
	border: 0;
}

.recruit_job_form fieldset label {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin: 0 1rem 0 0;
	font-weight: normal;
}

.recruit_job_form_full {
	display: block;
}

.recruit_job_form_full {
	padding-bottom: 9px;
}

.recruit_job_agree {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-top: 14px;
	padding: 14px 16px;
	border: 1px solid var(--gothic-wine);
	border-radius: 14px;
	background: var(--gothic-paper);
	color: var(--gothic-wine);
	line-height: 1.6;
}

.recruit_job_agree > input {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	margin: 3px 0 0;
	accent-color: var(--gothic-wine);
}

.recruit_job_form .recruit_job_agree > label {
	display: grid;
	gap: 2px;
	margin: 0;
	font-weight: normal;
}

.recruit_job_agree a {
	color: var(--gothic-wine);
	font-weight: 600;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.recruit_job_agree small {
	color: var(--gothic-wine);
	font-size: 0.8rem;
	line-height: 1.6;
}

.recruit_job_submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	min-height: 48px;
	margin: 0;
	padding: 12px 20px;
	border: 1px solid var(--gothic-wine);
	border-radius: 22px;
	background: linear-gradient(180deg, var(--gothic-soft), var(--gothic-soft));
	color: var(--recruit-ink);
	font: inherit;
	font-weight: 600;
	line-height: 22px;
	cursor: pointer;
	transition: background-color 180ms ease, transform 180ms ease;
}

.section_recruit_job_form h2,
.section_recruit_job_form > .recruit_job_wrapper > .recruit_job_section_lead,
.recruit_job_form_note,
.recruit_job_submit_wrap {
	text-align: center;
}

.section_recruit_job_form > .recruit_job_wrapper > .recruit_job_section_lead {
	margin-bottom: 19px;
}

.recruit_job_submit_wrap {
	margin: 30px 0;
}

.recruit_job_form_note {
	margin: 0 0 18px;
	font-size: 0.9rem;
}

.recruit_job_submit:hover,
.recruit_job_submit:focus-visible {
	background: var(--gothic-soft);
	transform: translateY(-2px);
}

.recruit_job_submit:disabled {
	cursor: wait;
	opacity: 0.65;
	transform: none;
}

.recruit_job_form_status {
	white-space: pre-line;
	margin: 0 0 18px;
	padding: 14px 16px;
	border: 1px solid;
	border-radius: 14px;
	font-size: 0.95rem;
	font-weight: bold;
	line-height: 1.7;
	text-align: center;
}

.recruit_job_form_status_success {
	border-color: var(--gothic-wine);
	background: var(--gothic-soft);
	color: var(--gothic-wine);
}

.recruit_job_form_status_error {
	border-color: var(--gothic-wine);
	background: var(--gothic-paper);
	color: var(--gothic-wine);
}

.recruit_job_honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

@media (max-width: 900px) {
	.recruit_job_hero_grid,
	.recruit_job_interior_grid {
		grid-template-columns: 1fr;
	}

	.recruit_job_reason_grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.section_recruit_job_hero,
	.section_recruit_job_interior,
	.section_recruit_job_reasons,
	.section_recruit_job_requirements,
	.section_recruit_job_faq,
	.section_recruit_job_apply,
	.section_recruit_job_form {
		padding-block: 3.5rem;
	}

	.recruit_job_wrapper {
		padding-inline: 20px;
	}

	.recruit_job_hero_grid {
		gap: 26px;
	}

	.recruit_job_hero_copy {
		padding-top: 0;
	}

	.recruit_job_kicker {
		gap: 0;
		margin-block: 16px;
		padding: 7px 12px;
		font-size: 1rem;
		letter-spacing: 0;
		line-height: 1.9;
	}

	.recruit_job_kicker span {
		width: 12.5px;
		height: 12.5px;
		margin: -1.6px 5.6px 0;
	}

	.section_recruit_job_hero {
		padding-bottom: 5.1875rem;
	}

	.recruit_job_hero_copy h1 {
		margin-top: 1.75rem;
		font-size: 1.75rem;
		line-height: 1.3;
	}

	.recruit_job_lead {
		margin-top: 0.65rem;
		line-height: 1.8;
	}

	.recruit_job_actions,
	.recruit_job_actions_center {
		flex-direction: column;
		gap: 0.625rem;
	}

	.recruit_job_button {
		width: 100%;
	}

	.recruit_job_perks,
	.recruit_job_mini_perks {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.625rem;
	}

	.recruit_job_perks {
		margin-top: 0.625rem;
	}

	.recruit_job_perks li {
		display: flex;
		align-items: center;
		min-height: 48px;
		padding: 0.6rem 0.7rem;
		font-size: 0.8rem;
		letter-spacing: 0;
	}

	.recruit_job_requirements_grid,
	.recruit_job_faq_list,
	.recruit_job_apply_grid,
	.recruit_job_form_grid {
		grid-template-columns: 1fr;
	}

	.recruit_job_hero_visual {
		order: -1;
		padding-bottom: 0;
	}

	.recruit_job_hero_visual > img {
		border-radius: 20px;
	}

	.recruit_job_interior_image img,
	.recruit_job_form {
		border-radius: 17px;
	}

	.recruit_job_section_note {
		font-size: 0.85rem;
		line-height: 1.9;
	}

	.recruit_job_interior_copy h2,
	.section_recruit_job_reasons h2,
	.section_recruit_job_requirements h2,
	.section_recruit_job_faq h2,
	.section_recruit_job_apply h2,
	.section_recruit_job_form h2 {
		font-size: 1.125rem;
		line-height: 1.9;
	}

	.recruit_job_interior_grid {
		gap: 1.75rem;
	}

	.section_recruit_job_interior {
		padding-bottom: calc(3.5rem + 1px);
	}

	.recruit_job_section_lead {
		letter-spacing: 0;
		line-height: 1.9;
	}

	.recruit_job_reason_grid {
		gap: 1.1875rem;
		margin-top: 1.1875rem;
	}

	.section_recruit_job_reasons {
		padding-bottom: 3.8125rem;
	}

	.recruit_job_requirements_grid {
		row-gap: 1.375rem;
	}

	.recruit_job_requirements_grid li {
		font-size: 0.95rem;
		line-height: 2;
	}

	.recruit_job_mobile_break {
		display: inline;
	}

	.section_recruit_job_requirements {
		padding-bottom: 3.6875rem;
	}

	.recruit_job_faq_list {
		margin-top: 0.75rem;
	}

	.section_recruit_job_faq {
		padding-bottom: 3.375rem;
	}

	.recruit_job_apply_grid {
		gap: 1.125rem 1rem;
		margin-top: 1.125rem;
	}

	.recruit_job_apply_grid article {
		min-height: 0;
	}

	.section_recruit_job_apply .recruit_job_button {
		width: auto;
		padding-inline: 1.25rem;
		font-size: 1rem;
		white-space: nowrap;
	}

	.recruit_job_line_apply {
		position: static;
		flex-direction: column;
		height: auto;
		gap: 1.5rem;
		margin-top: 1rem;
	}

	.recruit_job_apply_grid p.recruit_job_apply_note {
		margin-top: 1.1875rem;
		font-size: 0.85rem;
		line-height: 1.9;
	}

	.recruit_job_apply_actions {
		flex-direction: row;
		margin-top: 0.6875rem;
	}

	.section_recruit_job_form > .recruit_job_wrapper > .recruit_job_section_lead {
		margin-top: 0.625rem;
		font-size: 0.9rem;
		letter-spacing: -0.04em;
		line-height: 2;
	}

	.section_recruit_job_form .recruit_job_form {
		min-height: 1223px;
		margin-top: 1.0625rem;
		padding-bottom: 2.3125rem;
	}

	.section_recruit_job_form .recruit_job_form_grid {
		gap: 1.75rem;
	}

	.section_recruit_job_form .recruit_job_form label,
	.section_recruit_job_form .recruit_job_form legend {
		font-size: 0.95rem;
	}

	.section_recruit_job_form .recruit_job_form input:not([type="radio"]):not([type="checkbox"]),
	.section_recruit_job_form .recruit_job_form select {
		padding: 0.8125rem 0.9375rem;
		line-height: 1.9;
	}

	.section_recruit_job_form .recruit_job_form textarea {
		height: 180px;
		padding: 0.8125rem 0.9375rem;
	}

	.section_recruit_job_form .recruit_job_submit {
		width: auto;
		min-height: 48px;
		padding: 0.75rem 1.25rem;
		font-size: 0.833rem;
	}

	.section_recruit_job_form .recruit_job_form_note {
		margin-top: 1.875rem;
		font-size: 0.9rem;
		letter-spacing: 0;
		line-height: 1.9;
		text-align: center;
	}

	.section_recruit_job_form {
		padding-bottom: 3.75rem;
	}

}
/* CMSが実データを描画する前に、HTML内の仮データを表示しない。 */
html:not([data-cms-connected="true"]):not([data-cms-initial-render="true"]) .section_news_ticker,
html:not([data-cms-connected="true"]):not([data-cms-initial-render="true"]) .section_banner_slider,
html:not([data-cms-connected="true"]):not([data-cms-initial-render="true"]) .section_sns,
html:not([data-cms-connected="true"]):not([data-cms-initial-render="true"]) .section_concept,
html:not([data-cms-connected="true"]):not([data-cms-initial-render="true"]) .section_recommend_menu,
html:not([data-cms-connected="true"]):not([data-cms-initial-render="true"]) .section_news,
html:not([data-cms-connected="true"]):not([data-cms-initial-render="true"]) .section_pickup_banner,
html:not([data-cms-connected="true"]):not([data-cms-initial-render="true"]) .section_info,
html:not([data-cms-connected="true"]):not([data-cms-initial-render="true"]) .section_news_list,
html:not([data-cms-connected="true"]):not([data-cms-initial-render="true"]) .section_news_detail,
html:not([data-cms-connected="true"]):not([data-cms-initial-render="true"]) .section_info_list,
html:not([data-cms-connected="true"]):not([data-cms-initial-render="true"]) .section_info_detail,
html:not([data-cms-connected="true"]):not([data-cms-initial-render="true"]) .section_cast_list,
html:not([data-cms-connected="true"]):not([data-cms-initial-render="true"]) .section_cast_detail,
html:not([data-cms-connected="true"]):not([data-cms-initial-render="true"]) .section_menu_list,
html:not([data-cms-connected="true"]):not([data-cms-initial-render="true"]) .mobile-menu-banners,
html:not([data-cms-connected="true"]):not([data-cms-initial-render="true"]) [data-site-map-dynamic],
html:not([data-cms-connected="true"]):not([data-cms-initial-render="true"]) [data-site-map-recommend-list] {
	visibility: hidden;
}

html[data-cms-failed="true"]:not([data-cms-initial-render="true"]) .section_news_ticker,
html[data-cms-failed="true"]:not([data-cms-initial-render="true"]) .section_banner_slider,
html[data-cms-failed="true"]:not([data-cms-initial-render="true"]) .section_sns,
html[data-cms-failed="true"]:not([data-cms-initial-render="true"]) .section_concept,
html[data-cms-failed="true"]:not([data-cms-initial-render="true"]) .section_recommend_menu,
html[data-cms-failed="true"]:not([data-cms-initial-render="true"]) .section_news,
html[data-cms-failed="true"]:not([data-cms-initial-render="true"]) .section_pickup_banner,
html[data-cms-failed="true"]:not([data-cms-initial-render="true"]) .section_info,
html[data-cms-failed="true"]:not([data-cms-initial-render="true"]) .section_news_list,
html[data-cms-failed="true"]:not([data-cms-initial-render="true"]) .section_news_detail,
html[data-cms-failed="true"]:not([data-cms-initial-render="true"]) .section_info_list,
html[data-cms-failed="true"]:not([data-cms-initial-render="true"]) .section_info_detail,
html[data-cms-failed="true"]:not([data-cms-initial-render="true"]) .section_cast_list,
html[data-cms-failed="true"]:not([data-cms-initial-render="true"]) .section_cast_detail,
html[data-cms-failed="true"]:not([data-cms-initial-render="true"]) .section_menu_list,
html[data-cms-failed="true"]:not([data-cms-initial-render="true"]) .mobile-menu-banners,
html[data-cms-failed="true"]:not([data-cms-initial-render="true"]) [data-site-map-dynamic],
html[data-cms-failed="true"]:not([data-cms-initial-render="true"]) [data-site-map-recommend-list] {
	display: none;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto !important;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

}

/* Store wordmark, integrated from marionette.css. */
/* The header uses its own generated, single-line transparent wordmark. */
.marionette-wordmark{display:block;width:200px;height:33px}
.site-logo .marionette-wordmark img{width:100%;height:100%;max-height:none;object-fit:cover}
@media(max-width:560px){.site-logo{max-width:180px}.marionette-wordmark{width:160px;height:27px}.site-logo small{font-size:7px;letter-spacing:0}}

/* Flat black letter faces; remove the generated outline and red accents. */
.site-logo .marionette-wordmark img{filter:url("../img/marionette/wordmark-filter.svg#black-letters")}

.section_header .site-logo small{font-size:7px;letter-spacing:0;margin-top:1px}

[hidden]{display:none!important}

/* ============================================================
 * 2026-09: Marionette Requiem — gothic rose renewal
 * Single visual source; CMS content and layout contracts stay intact.
 * ============================================================ */
:root {
 --gothic-pattern-size:640px;
 --gothic-plaque-pattern-size:480px;
 --gothic-ink:#241d23;
 --gothic-dark:#171317;
 --gothic-paper:#f4edf0;
 --gothic-card:#fff9fb;
 --gothic-soft:#e9dde3;
 --gothic-wine:#672a40;
 --gothic-rose:#973c59;
 --gothic-gold:#a88b76;
 --gothic-line:#c9b6bc;
 --gothic-muted:#65565e;
 --gothic-serif:'Yu Mincho','Hiragino Mincho ProN',YuMincho,serif;
 --gothic-sans:-apple-system,BlinkMacSystemFont,'Hiragino Kaku Gothic ProN','Yu Gothic',Meiryo,sans-serif;
 color-scheme:light;
}
body {font-family:var(--gothic-sans);letter-spacing:.04em;}
:focus-visible {outline:3px solid var(--gothic-rose);outline-offset:4px;}
.skip_link {
 position:fixed;top:12px;left:12px;z-index:1000;transform:translateY(-160%);
 padding:12px 18px;border:2px solid var(--gothic-gold);border-radius:5px;
 background:var(--gothic-card);color:var(--gothic-wine);font-weight:700;text-decoration:none;
}
.skip_link:focus {transform:translateY(0);}
/* Header background is white across all stores. */
.section_header {background:#fff;border-color:var(--gothic-line);}
.desktop-nav a > span {font-family:Georgia,serif;font-weight:400;}
.desktop-nav a:hover > span {color:var(--gothic-wine);}
.login-button {border:1px solid var(--gothic-gold);background:var(--gothic-dark);color:var(--gothic-paper);box-shadow:inset 0 0 0 3px var(--gothic-dark),inset 0 0 0 4px #a88b7680;}
.mobile-menu {background:var(--gothic-paper);color:var(--gothic-ink);}
.mobile-menu nav > a:not(.login-button) {color:var(--gothic-ink);border-color:var(--gothic-line);}
.mobile-menu nav > a small {color:var(--gothic-muted);}
.mobile-menu .login-button {background:var(--gothic-dark);color:var(--gothic-paper);}

/* Live welcome copy stays separate from the illustrated stage. */
.hero_welcome {
 width:fit-content;max-width:calc(100% - 40px);margin:22px auto 0;padding:12px 20px;
 border-block:1px solid #bc9b7d99;color:#fff5df;font-family:var(--gothic-serif);
 font-size:clamp(13px,1.8vw,22px);line-height:1.8;letter-spacing:.08em;text-align:center;
 text-shadow:0 2px 6px #171317;background:#17131766;
}

/* The framed status cards keep live hours and next-event text. */
.section_news_ticker {padding-top:24px;}
.section_news_ticker .wrapper {gap:20px;}
/* Velvet theatre plaques: pocket watch and suspended marionette. */
.section_news_ticker .box {position:relative;isolation:isolate;display:grid;grid-template-columns:76px minmax(0,1fr);column-gap:22px;align-content:center;min-height:116px;padding:16px 28px;border:1px solid #bc9b7d;border-radius:16px 4px 16px 4px;background:linear-gradient(105deg,#973c5977,#321d2bc9 30%,#171317e8),url('../img/backgrounds/gothic-damask.webp') center/var(--gothic-plaque-pattern-size);box-shadow:inset 0 0 0 5px #24151e,inset 0 0 0 6px #bc9b7d80,0 5px 16px #35192518;overflow:visible;}
.section_news_ticker .box::before {content:'';grid-column:1;grid-row:1/3;align-self:center;width:76px;height:76px;background:url('../img/backgrounds/gothic-pocket-watch.svg') left center/58px 72px no-repeat;border-right:1px solid #bc9b7d77;filter:brightness(1.35) drop-shadow(0 0 6px #d8b8aa30);pointer-events:none;}
.section_news_ticker .news_ticker_2::before {background-image:url('../img/backgrounds/gothic-puppet.svg');}
.section_news_ticker .box::after {content:'';position:absolute;inset:10px;z-index:-1;background:url('../img/backgrounds/gothic-corner.svg') left top/24px 24px no-repeat,url('../img/backgrounds/gothic-corner.svg') right bottom/23px 23px no-repeat,url('../img/backgrounds/gothic-rose.webp') right bottom/48px 48px no-repeat;opacity:.65;pointer-events:none;}
.section_news_ticker .box > div.item {grid-column:2;grid-row:1;display:block;padding:0 0 6px;border:0;background:transparent;text-align:left;color:#e6c7aa;font-family:var(--gothic-serif);font-size:14px;line-height:1.6;letter-spacing:.13em;}
.section_news_ticker .box > div.item::after {content:'◆';display:inline-block;margin-left:10px;color:#c397a7;font-size:8px;vertical-align:middle;}
.section_news_ticker .box > div.text {grid-column:2;grid-row:2;display:block;width:auto;overflow:visible;padding:0;background:transparent;color:#fff4f7;overflow-wrap:anywhere;}
.section_news_ticker .box > div.text p {display:block;padding:0;white-space: normal; animation: none;line-height:1.7;font-size:15px;letter-spacing:.025em;}
/* Next-event text scrolls inside its own frame; the label and hours stay still. */
.section_news_ticker .news_ticker_2 > div.text {overflow:hidden;}
.section_news_ticker .news_ticker_2 > div.text p {
 display:inline-block;width:max-content;min-width:100%;box-sizing:content-box;
 padding-left:100%;white-space:nowrap;overflow-wrap:normal;
 animation:marquee 10s linear infinite;will-change:transform;
}
@keyframes marquee {
 from {transform:translate3d(0,0,0);}
 to {transform:translate3d(-100%,0,0);}
}
.section_news_ticker .news_ticker_2:focus-within > div.text p {animation:none;transform:none;width:auto;min-width:0;padding-left:0;white-space:normal;overflow-wrap:anywhere;will-change:auto;}
@media(prefers-reduced-motion:reduce) {
 .section_news_ticker .news_ticker_2 > div.text p {
  width:auto;min-width:0;padding-left:0;white-space:normal;
  animation:none!important;transform:none;will-change:auto;
 }
}

.section_news_ticker .news_ticker_1 .business-hours {text-align:left;color:#fff4f7;font-size:24px;font-family:Georgia,var(--gothic-serif);font-variant-numeric:tabular-nums;white-space:normal;line-height:1.35;}
.section_news_ticker .box > div.text a {color:#fff4f7;text-underline-offset:4px;}
.section_news_ticker .box > div.text a:focus-visible {outline-color:#e1bacb;}
.section_news_ticker .box > div.text a:hover {text-decoration:underline;}

/* Alternating ivory surfaces and woven dark panels. */
main > section {position:relative;}
:is(.section_banner_slider,.section_sns,.section_recommend_menu,.section_pickup_banner,.section_info,.section_access,.section_group) {background:var(--gothic-paper);color:var(--gothic-ink);}
.section_sns {border:0;padding-block:24px;}
.section_recommend_menu {border-bottom:0;}
:is(.section_info,.section_group) {border-top:0;}
:is(.section_concept,.section_news,.section_webshop,.section_home_recruit) {background:linear-gradient(#17131744,#17131744),url('../img/backgrounds/gothic-damask.webp') center/var(--gothic-pattern-size);color:var(--gothic-paper);border:0;padding-block:clamp(80px,8vw,112px);}
.section_home_recruit {background-image:linear-gradient(#672a40d9,#411a2bdd),url('../img/backgrounds/gothic-damask.webp');}
:is(.section_concept,.section_news,.section_webshop,.section_home_recruit)::before,
:is(.section_concept,.section_news,.section_webshop,.section_home_recruit)::after {content:'';position:absolute;inset:-1px 0 auto;height:clamp(32px,5vw,64px);background:url('../img/backgrounds/gothic-wave.svg') center/100% 100% no-repeat;pointer-events:none;}
:is(.section_concept,.section_news,.section_webshop,.section_home_recruit)::after {inset:auto 0 -1px;transform:rotate(180deg);}
:is(.section_concept,.section_news,.section_webshop,.section_home_recruit) > .wrapper {position:relative;}
:is(.section_concept,.section_news,.section_webshop,.section_home_recruit) > .wrapper::before,
:is(.section_concept,.section_news,.section_webshop,.section_home_recruit) > .wrapper::after {content:'';position:absolute;top:-28px;left:12px;width:48px;height:48px;background:url('../img/backgrounds/gothic-corner.svg') center/contain no-repeat;pointer-events:none;}
:is(.section_concept,.section_news,.section_webshop,.section_home_recruit) > .wrapper::after {top:auto;left:auto;right:12px;bottom:-28px;transform:rotate(180deg);}
main > section .title h2 {font-family:Georgia,'Times New Roman',serif;font-weight:400;font-size:clamp(32px,3.6vw,46px);line-height:1.3;letter-spacing:.02em;}
main > section .title .title_subtitle {font-family:var(--gothic-serif);font-size:14px;letter-spacing:.1em;}
main > section .title::after {content:'◆';display:block;width:140px;height:1px;margin:22px auto;color:var(--gothic-gold);font-size:9px;line-height:1px;text-align:center;background:linear-gradient(90deg,var(--gothic-gold) 43%,transparent 43%,transparent 57%,var(--gothic-gold) 57%);}
.section_concept .title::after {margin-left:0;}
.section_concept :is(.description,.concept_music),:is(.section_concept,.section_news,.section_webshop) .title {color:var(--gothic-paper);}
.section_concept .description {font-family:var(--gothic-serif);line-height:2.1;}
.section_concept :is(.concept_main_image,.concept_thumbnail) {border:1px solid var(--gothic-gold);border-radius:4px;box-shadow:0 0 0 4px #a88b761a;}
.section_concept .concept_thumbnail.is-active {border-color:#dfbacb;}
:is(.recommend_menu_card,.recommend_menu_guide,.recommend_menu_price,.menu_card,.cast_card,.webshop_product_card,.site-map-group,.notes_block,.contact_sns_links a) {background:var(--gothic-card);border-color:var(--gothic-line);color:var(--gothic-ink);}
:is(.recommend_menu_content h3,.recommend_menu_guide h3,.menu_card_title,.cast_card_name,.cast_detail_name,.news_detail_heading h1,.info_detail_heading h1) {font-family:var(--gothic-serif);}
.section_news .box {gap:24px;}
:is(.section_news,section.section_news_list) .box .detail {background:var(--gothic-card);border:1px solid var(--gothic-line);border-radius:6px;overflow:hidden;padding-bottom:20px;}
:is(.section_news,section.section_news_list) .news_card_image {border:0;border-bottom:1px solid var(--gothic-line);border-radius:0;}
:is(.section_news,section.section_news_list) .box .detail :is(a,h3,p) {color:var(--gothic-ink);}
:is(.section_news,section.section_news_list) .box .detail time {color:var(--gothic-muted);}
:is(.section_news,section.section_news_list) .news_card_tag {background:var(--gothic-wine);color:var(--gothic-paper);}
:is(.section_news,.section_webshop) .cms_empty_message {color:var(--gothic-paper);}
.section_empty_state {
 width:min(100%,720px);margin:0 auto;padding:clamp(24px,4vw,40px);border:1px solid var(--gothic-gold);
 border-radius:16px 4px 16px 4px;background:var(--gothic-card);color:var(--gothic-ink);text-align:center;
}
.section_news .section_empty_state {padding:clamp(30px,5vw,44px);}
.section_empty_state p {margin:0;line-height:1.9;}
.section_empty_state a {
 display:inline-flex;align-items:center;justify-content:center;min-height:44px;margin-top:18px;padding:10px 22px;
 border:1px solid var(--gothic-gold);border-radius:5px;background:var(--gothic-wine);color:var(--gothic-paper)!important;
 font-family:var(--gothic-serif);text-decoration:none;
}
.section_empty_state a:is(:hover,:focus-visible) {background:var(--gothic-dark);}
.section_info .right:has(.section_empty_state) {display:flex;align-items:center;}
.section_info .section_empty_state {padding:22px;}
.info_list_status {padding:40px 20px;text-align:center;color:var(--gothic-muted);}
:is(.section_info,.section_access) a {color:var(--gothic-wine);}
.section_access .text-gradient_blue-red {background:none;color:var(--gothic-wine);-webkit-text-fill-color:var(--gothic-wine);}
.section_access .access_map .image {background:var(--gothic-card);border-color:var(--gothic-gold);}
.home_recruit_box {background:transparent;}
.section_home_recruit :is(h2,p) {color:var(--gothic-paper);}
.section_home_recruit a {background:var(--gothic-dark);color:var(--gothic-paper);border-color:var(--gothic-gold);}

/* Shared controls: the same contrast on home and subpages. */
body :is(section,article)[class] :is(.btn a,.recommend_menu_button,.recommend_menu_guide a,.cast_profile_button,.news_pagination_button) {background:linear-gradient(#672a40,#351925);color:var(--gothic-paper);border:1px solid var(--gothic-gold);border-radius:5px;box-shadow:inset 0 0 0 3px #672a4033,0 3px 10px #241d2310;font-family:var(--gothic-serif);}
body :is(section,article)[class] :is(.btn a,.recommend_menu_button,.recommend_menu_guide a,.cast_profile_button,.news_pagination_button):is(:hover,:focus-visible) {background:var(--gothic-dark);color:var(--gothic-paper);}
:is(.menu_category_nav button,.news_category_nav button,.webshop_category_button,.qa_category_nav a) {background:var(--gothic-card);color:var(--gothic-wine);border-color:var(--gothic-line);}
:is(.menu_category_nav button,.news_category_nav button,.webshop_category_button):is(.is-active,:hover),section.section_qa_combined .qa_category_nav a:hover {background:var(--gothic-wine);color:var(--gothic-paper);border-color:var(--gothic-gold);}
.banner_slider_button {background:var(--gothic-card);border-color:var(--gothic-gold);color:var(--gothic-wine);}
.banner_slider_dot::before {background:var(--gothic-line);}
.banner_slider_dot.is-active::before {background:var(--gothic-wine);}

/* CrownTiara-based subpages: shared title, content and control hierarchy. */
section.section_page_header {position:relative;background:linear-gradient(#17131744,#17131744),url('../img/backgrounds/gothic-damask.webp') center/var(--gothic-pattern-size);color:var(--gothic-paper);border-bottom:1px solid var(--gothic-gold);}
section.section_page_header .underline {background:transparent;border:0;}
section.section_page_header .box .background {z-index:0;color:var(--gothic-paper);opacity:.05;pointer-events:none;}
section.section_page_header .box .title {position:relative;padding-block:clamp(40px,6vw,72px);}
section.section_page_header .box .title :is(h1:not(.page_title_ja),.page_title_en) {color:var(--gothic-paper);font-family:Georgia,serif;font-size:clamp(36px,5vw,56px);font-weight:400;line-height:1.3;}
section.section_page_header .box .title :is(h2,.page_title_ja) {color:var(--gothic-paper);font-family:var(--gothic-serif);font-size:15px;font-weight:500;letter-spacing:.12em;margin-top:12px;}
section.section_page_header .box .title::after {content:'◆';display:block;width:140px;height:1px;margin:24px auto 0;color:var(--gothic-gold);font-size:9px;line-height:1px;background:linear-gradient(90deg,var(--gothic-gold) 43%,transparent 43%,transparent 57%,var(--gothic-gold) 57%);}
section.section_page_pan {font-size:13px;padding-top:18px;}
section.section_page_pan nav a {color:var(--gothic-wine);}
:is(.section_news_list,.section_info_list,article.section_news_detail,article.section_info_detail) {background:var(--gothic-paper);color:var(--gothic-ink);}
.news_pagination_ellipsis {color:var(--gothic-muted);}
section.section_qa_combined .qa_list details {background:var(--gothic-card);}
section.section_qa_combined .qa_mark {background:var(--gothic-dark);color:var(--gothic-paper);}
section.section_qa_combined .qa_answer .qa_mark {background:var(--gothic-wine);color:var(--gothic-paper);}
.site-map-group a:hover {background:var(--gothic-soft);color:var(--gothic-wine);}
.system_page {--system-ink:var(--gothic-ink);--system-muted:var(--gothic-muted);--system-accent:var(--gothic-wine);--system-accent-deep:var(--gothic-wine);--system-cream:var(--gothic-card);--system-line:var(--gothic-line);}
.system_price_card_featured {background:var(--gothic-card);color:var(--gothic-ink);}
.system_flow_number {background:var(--gothic-wine);color:var(--gothic-paper);}

/* Recruit is light and readable, with a dark woven hero. */
.recruit_job_page {--recruit-ink:var(--gothic-ink);--recruit-heading:var(--gothic-wine);--recruit-accent:var(--gothic-wine);--recruit-muted:var(--gothic-muted);--recruit-title-blue:var(--gothic-wine);--recruit-faq-blue:var(--gothic-wine);--recruit-blue:var(--gothic-rose);--recruit-blue-soft:var(--gothic-soft);--recruit-line:var(--gothic-line);--recruit-white:var(--gothic-card);background:var(--gothic-paper);}
.recruit_job_page :is(h1,h2,h3) {font-family:var(--gothic-serif);}
.section_recruit_job_hero {background:linear-gradient(#17131744,#17131744),url('../img/backgrounds/gothic-damask.webp') center/var(--gothic-pattern-size);border-bottom:1px solid var(--gothic-gold);}
.section_recruit_job_hero :is(h1,.recruit_job_support_title) {color:var(--gothic-paper);}
.recruit_job_lead {background:var(--gothic-card);border-color:var(--gothic-gold);box-shadow:0 8px 24px #0002;}
.recruit_job_page :is(.recruit_job_text_box,.recruit_job_card,.recruit_job_form) {box-shadow:none;border-color:var(--gothic-line);}
.recruit_job_page .recruit_job_button_primary,.recruit_job_submit {background:var(--gothic-wine);color:var(--gothic-paper);border-color:var(--gothic-gold);}
.recruit_job_page .recruit_job_button_primary:hover,.recruit_job_submit:hover {background:var(--gothic-dark);color:var(--gothic-paper);}
.recruit_job_page .recruit_job_button_line {background:#087f3f;color:#fff;border-color:#087f3f;}
.recruit_job_page .recruit_job_button_line:is(:hover,:focus-visible) {background:#066532;color:#fff;}
.recruit_job_apply_grid article {min-width:0;}
.recruit_job_apply_actions,.recruit_job_line_apply {flex-wrap:wrap;min-width:0;}
.recruit_job_page section[id] {scroll-margin-top:126px;}
.recruit_job_form :is(input,textarea,select) {background:var(--gothic-card);color:var(--gothic-ink);border-color:var(--gothic-line);}
.recruit_job_form_status_error {background:#fae5ec;color:#862442;border-color:#862442;}
.recruit_job_form_status_success {background:#e8f3eb;color:#215d37;border-color:#215d37;}
.application-pending {padding:1rem;border:1px solid var(--gothic-line);text-align:center;}
.section_footer {background:var(--gothic-dark);color:var(--gothic-paper);border-top:1px solid var(--gothic-gold);}
.section_footer a {color:var(--gothic-paper);}
.copyright {background:var(--gothic-dark);color:#d5bbc8;}

@media(max-width:600px) {
 :root {--gothic-pattern-size:320px;--gothic-plaque-pattern-size:240px;}
 .section_news_ticker {padding-top:12px;}
 .section_news_ticker .wrapper {gap:10px;padding-inline:20px;}
 .section_news_ticker .box {grid-template-columns:54px minmax(0,1fr);column-gap:16px;padding:14px 20px;min-height:108px;}
 .section_news_ticker .box::before {width:54px;height:68px;background-size:43px 62px;}
 .section_news_ticker .box::after {inset:8px;background-size:18px 18px,18px 18px,38px 38px;}
 .section_news_ticker .box > div.item {font-size:13px;}
 .section_news_ticker .box > div.text {font-size:14px;}
 .section_news_ticker .news_ticker_1 .business-hours {font-size:clamp(15px,4.8vw,21px);}
 .section_news_ticker .box > div.text p {font-size:13px;line-height:1.65;}
 .section_concept .title::after {margin-inline:auto;}
 .section_news .box {gap:20px;}
 .recruit_job_apply_grid,.recruit_job_form_grid {grid-template-columns:minmax(0,1fr);}
 .recruit_job_page section[id] {scroll-margin-top:84px;}
 section.section_page_header .box .title .page_title_ja {font-size:14px;}
 body:has(.system_page) > section.section_page_header .box .title h1 {font-size:28px;letter-spacing:.02em;white-space:nowrap;}
}

/* Full-page finish: the CrownTiara layout with Marionette's paper and velvet. */
.section_banner_slider:not(:has(.banner_slider_item)) {display:none;}
section.section_page_header {overflow:hidden;}
section.section_page_header .box {position:relative;}
section.section_page_header .box::before,
section.section_page_header .box::after {
 content:'';position:absolute;top:24px;left:24px;width:48px;height:48px;
 background:url('../img/backgrounds/gothic-corner.svg') center/contain no-repeat;pointer-events:none;
}
section.section_page_header .box::after {inset:auto 24px 24px auto;transform:rotate(180deg);}
section.section_page_header .box .title :is(h1:not(.page_title_ja),.page_title_en) {color:#e6c7aa;letter-spacing:.025em;}
section.section_page_header .box .background {font-family:Georgia,serif;}
section.section_page_pan {background:var(--gothic-paper);}
section.section_page_pan nav {line-height:1.8;}
body > :is(section,article):not(.section_header):not(.section_page_header) :is(h2,h3),
.system_page :is(h2,h3) {font-family:var(--gothic-serif);}
.menu_section_title h2 {color:var(--gothic-wine);}
body .menu_section_title h2 {font-family:Georgia,serif;font-weight:400;}

/* Cards keep the reference shop's columns and image ratios. */
:is(.menu_card,.cast_card,.webshop_product_card,.recommend_menu_card) {
 border:1px solid var(--gothic-line);border-radius:16px 4px 16px 4px;
 box-shadow:0 6px 20px #3519250c;overflow:hidden;
}
:is(.menu_card_image,.cast_card_image) {border-radius:0;}
:is(.menu_card_content,.cast_card_content) {border-top:1px solid var(--gothic-line);}
:is(.menu_card_content h3,.cast_card_content h3,.webshop_product_name) {font-family:var(--gothic-serif);color:var(--gothic-ink);}
.menu_card_content strong {color:var(--gothic-wine);font-variant-numeric:tabular-nums;}
:is(.menu_category_nav button,.news_category_nav button,.webshop_category_button,.qa_category_nav a) {
 min-height:44px;border-color:var(--gothic-gold);font-weight:600;
}
:is(.menu_category_nav button,.news_category_nav button,.webshop_category_button):focus-visible {
 background:var(--gothic-wine);color:var(--gothic-card);
}
:is(.section_news,section.section_news_list) .box .detail {border-radius:16px 4px 16px 4px;box-shadow:0 6px 20px #3519250c;}
:is(.section_news,section.section_news_list) .box .detail :is(h3,p,time) {margin-inline:16px;}
section.section_news .box .detail :is(h3,p,time) {margin-inline:clamp(16px,2vw,20px);}
:is(.section_news,section.section_news_list) .box .detail h3 {font-family:var(--gothic-serif);line-height:1.7;}
section.section_info_list .info_list_item {padding:20px 16px;border-bottom:1px solid var(--gothic-line);}
section.section_info_list .info_list_item:nth-child(odd) {background:var(--gothic-card);}
section.section_info_list .info_list_item:hover {background:var(--gothic-soft);}

/* Detail pages have no separate title banner: frame their own heading. */
article:is(.section_news_detail,.section_info_detail) :is(.news_detail_heading,.info_detail_heading) {
 padding:clamp(24px,4vw,40px);border:1px solid var(--gothic-gold);border-radius:16px 4px 16px 4px;
 background:linear-gradient(#17131766,#17131766),url('../img/backgrounds/gothic-damask.webp') center/var(--gothic-pattern-size);
}
article:is(.section_news_detail,.section_info_detail) :is(.news_detail_heading,.info_detail_heading) h1 {color:var(--gothic-paper);overflow-wrap:anywhere;}
article:is(.section_news_detail,.section_info_detail) :is(.news_detail_heading,.info_detail_heading) time {color:#e6c7aa;}
:is(.news_detail_content,.info_detail_content) {line-height:2;overflow-wrap:anywhere;}
:is(.news_detail_content,.info_detail_content) :is(h2,h3) {color:var(--gothic-wine);}
article.section_news_detail .news_detail_image {border-radius:16px 4px 16px 4px;background:var(--gothic-card);}
.cast_detail_image {border-color:var(--gothic-gold);border-radius:16px 4px 16px 4px;box-shadow:0 6px 20px #35192512;}
.cast_detail_name {border-bottom:2px solid var(--gothic-gold);}
.cast_detail_name h2 {color:var(--gothic-wine);}
.cast_detail_profile > div {padding-inline:12px;}
.cast_detail_profile > div:nth-child(odd) {background:var(--gothic-card);}

/* Prices, directions, support and legal copy use quiet paper panels. */
:is(.system_price_card,.system_policy,.system_english,.site-map-group,.notes_block),
section.section_contact .contact_sns {
 border:1px solid var(--gothic-line);border-radius:16px 4px 16px 4px;
 background:var(--gothic-card);box-shadow:0 6px 20px #35192508;
}
.system_price_card_featured {border:2px solid var(--gothic-wine);}
.system_price_card_featured .system_price_label {color:var(--gothic-wine);}
.system_flow {background:var(--gothic-soft);}
.system_related_links a {border-color:var(--gothic-gold);background:var(--gothic-card);color:var(--gothic-wine);}
.system_related_links a:is(:hover,:focus-visible) {background:var(--gothic-wine);color:var(--gothic-card);}
.section_access_page .business_hours {background:var(--gothic-card);border:1px solid var(--gothic-line);border-radius:16px 4px 16px 4px;}
.section_access_page .access_map .image {border-radius:16px 4px 16px 4px;}
section.section_qa_combined .qa_category_heading {border-color:var(--gothic-gold);}
section.section_qa_combined .qa_list details {border:1px solid var(--gothic-line);border-radius:12px 4px 12px 4px;overflow:hidden;}
section.section_qa_combined .qa_list details[open] {border-color:var(--gothic-gold);}
section.section_qa_combined .qa_list details[open] summary {background:var(--gothic-soft);}
section.section_contact .box h2 {font-family:var(--gothic-serif);}
section.section_contact .box > section.notes {padding-bottom:24px;border-bottom:1px solid var(--gothic-gold);line-height:1.9;}
section.section_contact .contact_sns_links a:is(:hover,:focus-visible) {background:var(--gothic-soft);color:var(--gothic-wine);border-color:var(--gothic-wine);}
section.section_site_legal > .wrapper {max-width:960px;}
section.section_site_legal .box section.box {
 margin-bottom:24px;padding:clamp(20px,3vw,32px);border:1px solid var(--gothic-line);
 border-radius:16px 4px 16px 4px;background:var(--gothic-card);overflow-wrap:anywhere;
}
section.section_site_legal .box section.box h2 {padding-bottom:16px;color:var(--gothic-wine);font-size:clamp(18px,2vw,22px);line-height:1.7;}
section.section_site_legal .box section.box p:last-child {padding-bottom:0;}
section.section_site_legal .box ul {padding-inline:24px 0;}
.site-map-group h2 {border-bottom-color:var(--gothic-gold);color:var(--gothic-wine);}
.site-map-group a:is(:hover,:focus-visible) {background:var(--gothic-soft);color:var(--gothic-wine);}

/* Recruit keeps CrownTiara's application order and usable form dimensions. */
.recruit_job_reason_grid article,.recruit_job_requirements_grid article,
.recruit_job_apply_grid article,.recruit_job_faq_list details,.recruit_job_page .recruit_job_form {
 background:var(--gothic-card);border:1px solid var(--gothic-line);
 border-radius:16px 4px 16px 4px;box-shadow:0 6px 20px #35192508;
}
.recruit_job_apply_grid article:first-child {background:var(--gothic-card);border-color:var(--gothic-gold);}
.recruit_job_faq_list details[open] {border-color:var(--gothic-wine);}
.recruit_job_form :is(input,textarea,select):focus-visible {outline:3px solid var(--gothic-rose);outline-offset:3px;background:#fff;}
.recruit_job_form :is(input,textarea,select):disabled {background:var(--gothic-soft);color:var(--gothic-muted);opacity:1;}
.recruit_job_form :is(input,textarea,select) {font-size:16px;}
.recruit_job_qr {background:#fff;}

@media(max-width:600px) {
 section.section_page_header .box::before {top:16px;left:16px;width:32px;height:32px;}
 section.section_page_header .box::after {right:16px;bottom:16px;width:32px;height:32px;}
 section.section_page_header .box .background {font-size:24vw;}
 article:is(.section_news_detail,.section_info_detail) :is(.news_detail_heading,.info_detail_heading) {padding:24px 20px;}
 .cast_detail_profile > div {padding-inline:8px;}
}

/* Recoverable errors and CMS-empty access details. */
.section_error_page .error_back {margin:24px 0 0;}
.section_error_page .error_back a {
 display:inline-block;min-height:44px;padding:12px 28px;border:1px solid var(--gothic-gold);
 border-radius:5px;background:var(--gothic-wine);color:var(--gothic-paper);
 font-family:var(--gothic-serif);font-weight:600;text-decoration:none;
}
.section_error_page .error_back a:is(:hover,:focus-visible) {background:var(--gothic-paper);color:var(--gothic-wine);}
.section_error_page .error_back a:focus-visible {outline-color:#e6c7aa;}
.error_header .site-logo {max-width:none;}
.error_header .marionette-wordmark {width:200px;height:33px;}
.section_qa_combined .qa_intro a {color:var(--gothic-wine);text-underline-offset:4px;}
.section_access_page .btn:has([data-google-map-link][hidden]),
.section_access_page .access_map_column:has(> .image[hidden]) {display:none;}
.section_access_page .box:has(> .access_map_column > .image[hidden]) {grid-template-columns:minmax(0,1fr);justify-content:center;}
.section_access_page .box:has(> .access_map_column > .image[hidden]) > div:not(.access_map_column) {width:100%;max-width:760px;margin-inline:auto;}
