/*
Theme Name: Hanamizuki
Theme URI: http://202608251012c3m37d75.conohawing.com/
Author: 株式会社I am.
Author URI: https://iam-inc.example
Description: お洒落な大人の交流会「花水季（HANAMIZUKI）」公式サイト用オリジナルテーマ。トップページ・お知らせ（一覧／詳細）・パーティー詳細・予約方法・プライバシーポリシーを含みます。Figmaデザインに準拠。フォントは Noto Serif JP。
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hanamizuki
*/

/* =========================================================
   CSS変数
   ========================================================= */
:root {
	--color-green:      #507446;
	--color-dark:       #4D4D4D;
	--color-beige:      #FBF8F0;
	--color-brown:      #C4A876;
	--color-brown-dark: #b2966a;
	--color-white:      #ffffff;

	--tel-pink:  #C13F8A;
	--sms-blue:  #223f7a;

	--font-serif: "Noto Serif JP", "Yu Mincho", "游明朝", serif;

	--content-max: 1440px;
	--content-pad: 60px;
	--narrow-max: 1160px;

	--header-h: 100px;

	--radius: 6px;
	--ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* =========================================================
   リセット / ベース
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-serif);
	font-weight: 700;
	color: var(--color-dark);
	background: var(--color-beige);
	line-height: 1.9;
	letter-spacing: 0.02em;
	-webkit-font-smoothing: antialiased;
	overflow-wrap: break-word;
}

img { max-width: 100%; height: auto; vertical-align: bottom; }

a { color: inherit; text-decoration: none; transition: opacity .25s var(--ease), color .25s var(--ease); }
a:hover { opacity: .78; }

h1, h2, h3, h4, p, ul, figure { margin: 0; }
ul { list-style: none; padding: 0; }

iframe { max-width: 100%; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0,0,0,0);
	white-space: nowrap; border: 0;
}

.skip-link {
	position: absolute; left: -9999px; top: 0; z-index: 9999;
	background: var(--color-dark); color: #fff; padding: 10px 16px;
}
.skip-link:focus { left: 8px; top: 8px; }

:focus-visible { outline: 2px solid var(--color-green); outline-offset: 3px; }

/* =========================================================
   レイアウト共通
   ========================================================= */
.container {
	width: 100%;
	max-width: var(--content-max);
	margin-inline: auto;
	padding-inline: var(--content-pad);
}
.container--narrow { max-width: var(--narrow-max); }

.section { padding-block: clamp(56px, 7vw, 96px); position: relative; }

.section__title {
	text-align: center;
	font-size: clamp(1.6rem, 2.4vw, 2rem);
	font-weight: 600;
	color: var(--color-green);
	letter-spacing: 0.14em;
	margin-bottom: clamp(32px, 4vw, 52px);
}

.section__action { text-align: center; margin-top: clamp(32px, 4vw, 48px); }

/* セクションタイトル背景プレート（floral背景上での可読性確保）。
   filter:blurはプレート(::before)にのみ適用し、テキストはぼかさない。 */
.party-intro .section__title,
.message .section__title {
	position: relative;
	z-index: 0;
}
.party-intro .section__title::before,
.message .section__title::before {
	content: "";
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	height: 70px;
	border-radius: 8px;
	filter: blur(12px);
	z-index: -1;
	pointer-events: none;
}
.party-intro .section__title::before {
	width: 304px;
	background: var(--color-beige); /* #FBF8F0 */
}
.message .section__title::before {
	width: 462px;
	max-width: 90vw;
	background: #FFF;
}

/* ボタン */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 1em;
	min-width: 240px;
	padding: 16px 32px;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	border-radius: var(--radius);
	text-decoration: none;
	transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.btn--brown { background: var(--color-brown); color: var(--color-green); }
.btn--brown:hover { background: var(--color-brown-dark); color: var(--color-green); opacity: 1; transform: translateY(-2px); }

/* タグ（お知らせ分類） */
.tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 18px;
	font-size: .8rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: #fff;
	border-radius: 999px;
	white-space: nowrap;
}
.tag--schedule { background: var(--color-green); }
.tag--info     { background: var(--color-brown); }

/* =========================================================
   ヘッダー
   ========================================================= */
.site-header { position: relative; z-index: 30; }

/* 下層：全幅茶色ヘッダー＋左ロゴ */
.site-header--sub {
	background: var(--color-brown);
	height: var(--header-h);
}
.site-header--sub .site-header__inner {
	max-width: var(--content-max);
	margin-inline: auto;
	height: 100%;
	padding-inline: var(--content-pad);
	display: flex;
	align-items: center;
	gap: 24px;
}
.site-header__logo { flex: 0 0 auto; }
.site-header__logo img { width: 121px; height: auto; display: block; }

.site-header__contact {
	margin-left: auto;
	text-align: right;
	color: #fff;
	line-height: 1.4;
}
.site-header__hours { font-size: .82rem; letter-spacing: 0.06em; }
.site-header__tel { font-size: 1.55rem; font-weight: 600; letter-spacing: 0.04em; }
.site-header__tel span { font-size: .9rem; margin-right: .3em; vertical-align: 0.12em; }

/* トップ：右寄せ508pxヘッダー（受付時間・TEL・ハンバーガー） */
.site-header--top {
	position: absolute;
	top: 0; right: 0;
	width: 508px;
	max-width: 100%;
	height: var(--header-h);
	background: var(--color-brown);
	z-index: 30;
}
.site-header--top .site-header__inner {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 24px;
	padding-inline: 35px;
}
.site-header--top .site-header__contact {
	margin-left: 0;
	text-align: right;
	color: var(--color-dark);
	line-height: 1.35;
}
.site-header--top .site-header__hours { font-size: .82rem; letter-spacing: 0.04em; }
.site-header--top .site-header__tel { font-size: 1.55rem; font-weight: 600; letter-spacing: 0.02em; }
.site-header--top .site-header__tel span { font-size: .9rem; margin-right: .3em; vertical-align: 0.1em; }
.site-header--top .site-header__tel a { color: var(--color-dark); }

/* ハンバーガー */
.hamburger {
	flex: 0 0 auto;
	width: 44px; height: 34px;
	margin-left: 28px;
	padding: 0;
	background: transparent;
	border: 0;
	cursor: pointer;
	display: inline-flex;
	flex-direction: column;
	justify-content: space-between;
}
.site-header--top .hamburger { margin-left: 0; }
.site-header--sub .hamburger { margin-left: 28px; }

/* WordPress管理バー表示時、絶対配置のトップヘッダーが隠れないように */
.admin-bar .site-header--top { top: 32px; }
@media screen and (max-width: 782px) {
	.admin-bar .site-header--top { top: 46px; }
}

/* FV下のモバイル用TELバー（PCでは非表示、ヘッダー内に表示するため） */
.fv-telbar { display: none; }
.hamburger__line {
	display: block;
	width: 100%; height: 2px;
	background: var(--color-dark);
	transition: transform .3s var(--ease), opacity .3s var(--ease);
}
body.nav-open .hamburger__line:nth-child(1) { transform: translateY(16px) rotate(45deg); }
body.nav-open .hamburger__line:nth-child(2) { opacity: 0; }
body.nav-open .hamburger__line:nth-child(3) { transform: translateY(-16px) rotate(-45deg); }

/* グローバルナビ（オーバーレイ） */
.global-nav {
	position: fixed;
	inset: 0;
	z-index: 40;
	background: rgba(196, 168, 118, 0.98);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
/* JS有効時にhidden属性を外し、表示はnav-openクラスで制御。JS無効時はhiddenのまま。 */
body.nav-open .global-nav { opacity: 1; visibility: visible; }

.global-nav__inner { text-align: center; padding: 40px; }
.global-nav__close {
	position: fixed; top: 28px; right: 40px;
	width: 48px; height: 48px;
	background: transparent; border: 0; color: #fff;
	font-size: 2.2rem; line-height: 1; cursor: pointer;
}
.global-nav__list { display: flex; flex-direction: column; gap: 24px; font-size: 1.4rem; letter-spacing: 0.1em; }
.global-nav__list a { display: inline-block; padding: 6px 12px; }
.global-nav__contact { margin-top: 40px; line-height: 1.6; }
.global-nav__tel { font-size: 1.5rem; font-weight: 600; }

/* =========================================================
   FV（ファーストビュー）
   ========================================================= */
.fv { position: relative; }

/* トップFV: 1440x784、背景に画像 */
.fv--top {
	height: 784px;
	max-height: 90vh;
	background-image: var(--fv-top-pc);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.fv__hours { font-size: .82rem; letter-spacing: 0.06em; }
.fv__tel { font-size: 1.5rem; font-weight: 600; }
.fv__tel span { font-size: .85rem; margin-right: .3em; }

/* 下層FV: 全幅背景画像＋タイトルオーバーレイ（684px） */
.fv--sub {
	position: relative;
	height: 684px;
	background-image: var(--fv-pc);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
}
.fv__title {
	position: relative;
	color: #fff;
	font-size: clamp(2rem, 4vw, 3.4rem);
	font-weight: 600;
	letter-spacing: 0.18em;
	text-shadow: 0 2px 18px rgba(0,0,0,.35);
	line-height: 1.2;
	white-space: nowrap;
	background: rgba(196, 168, 118, 0.72);
	padding: 0.35em 1.1em;
}
/* 予約方法ページはタイトル背景を緑に */
.reservation .fv__title { background: rgba(80, 116, 70, 0.82); }

/* =========================================================
   最新のお知らせ（トップ）
   ========================================================= */
.news-latest { background: var(--color-beige); }

.news-list--compact { max-width: 900px; margin-inline: auto; }

.news-row {
	display: grid;
	grid-template-columns: 90px 130px 1fr;
	align-items: center;
	gap: 24px;
	padding: 20px 8px;
	border-bottom: 1px solid #dcd3c0;
	color: var(--color-dark);
}
.news-row:first-child { border-top: 1px solid #dcd3c0; }
.news-row__date { font-size: .95rem; letter-spacing: 0.04em; }
/* トップの最新のお知らせのタグは緑で固定 */
.news-row .tag { justify-self: start; background: var(--color-green); }
.news-row__title {
	color: var(--color-green);
	text-decoration: underline;
	text-underline-offset: 3px;
	font-size: 1rem;
}
.news-row:hover .news-row__title { opacity: .8; }

.news-empty { text-align: center; color: #8a8375; }

/* =========================================================
   パーティー（トップ）
   ========================================================= */
.party-intro {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.party-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	max-width: 1240px;
	margin-inline: auto;
}
.party-card {
	background: rgba(251, 248, 240, 0.92);
	box-shadow: 0 8px 30px rgba(120, 100, 60, 0.14);
}
.party-card__thumb { line-height: 0; }
.party-card__thumb img { width: 100%; height: auto; object-fit: cover; display: block; }
.party-card__body { padding: 22px 22px 26px; text-align: center; }
.party-card__title { font-size: 1.15rem; font-weight: 600; color: var(--color-dark); line-height: 1.5; margin-bottom: 16px; }
.party-card__btn {
	width: 100%;
	min-width: 0;
	justify-content: space-between;
	padding-inline: 24px;
}
.party-card__arrow { font-weight: 400; }

/* =========================================================
   主催者メッセージ（トップ）
   ========================================================= */
.message {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.message__body {
	display: grid;
	grid-template-columns: 390px 1fr;
	gap: clamp(32px, 5vw, 72px);
	align-items: start;
	max-width: 1080px;
	margin-inline: auto;
}
.message__photo { line-height: 0; box-shadow: 0 10px 30px rgba(80,60,40,.2); }
.message__photo img { width: 100%; height: auto; display: block; }
.message__text p { margin-bottom: 1.5em; font-size: 1rem; }
.message__signature { font-weight: 600; letter-spacing: 0.08em; }

/* =========================================================
   CTAバナー（共通）
   ========================================================= */
.cta-banner {
	background-image: var(--cta-pc);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 383px;
	display: flex;
	align-items: center;
}
.cta-banner__inner {
	max-width: var(--content-max);
	margin-inline: auto;
	width: 100%;
	padding-inline: var(--content-pad);
}
.cta-banner__lead {
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	font-weight: 500;
	color: var(--color-dark);
	line-height: 1.7;
	margin-bottom: 28px;
	text-shadow: 0 1px 8px rgba(255,255,255,.5);
}
.cta-banner__btn { min-width: 300px; }
/* SP専用の写真要素はPCでは非表示 */
.cta-banner__photo { display: none; }

/* =========================================================
   フッター
   ========================================================= */
.site-footer {
	background: var(--color-brown);
	color: #fff;
	min-height: 322px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.site-footer__inner {
	max-width: var(--content-max);
	margin-inline: auto;
	width: 100%;
	padding: 60px var(--content-pad) 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}
.site-footer__logo img { width: 245px; height: auto; }
.site-footer__contact { text-align: right; line-height: 2; letter-spacing: 0.03em; }
.site-footer__contact a { text-decoration: underline; text-underline-offset: 3px; }
.site-footer__copyright {
	text-align: center;
	color: #fff;
	font-size: .82rem;
	letter-spacing: 0.1em;
	padding-bottom: 24px;
}

/* =========================================================
   下層ページ共通見出し
   ========================================================= */
.page-lead { padding-block: clamp(48px, 6vw, 80px) 0; }
.page-lead__title {
	text-align: center;
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	font-weight: 600;
	color: var(--color-dark);
	letter-spacing: 0.14em;
}

/* =========================================================
   お知らせ一覧（アーカイブ）
   ========================================================= */
.news-cards { display: flex; flex-direction: column; gap: 32px; }

.news-card {
	display: block;
	color: var(--color-dark);
	box-shadow: 0 6px 20px rgba(120, 100, 60, 0.12);
	background: #fff;
}
.news-card__head {
	display: flex;
	align-items: center;
	gap: 22px;
	background: var(--color-brown);
	color: #fff;
	padding: 20px 30px;
	flex-wrap: wrap;
}
.news-card__date { font-size: .9rem; letter-spacing: 0.05em; }
.news-card__head .tag { background: var(--color-green); }
.news-card__title { font-size: 1.25rem; font-weight: 600; letter-spacing: 0.04em; }
.news-card__excerpt {
	padding: 24px 30px;
	background: #fff;
	color: var(--color-dark);
	font-size: .98rem;
	line-height: 1.9;
}
.news-card:hover { opacity: 1; transform: translateY(-2px); transition: transform .25s var(--ease); }

/* ページネーション */
.pagination { margin-top: clamp(40px, 5vw, 64px); }
.pagination .nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}
.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px; height: 46px;
	border-radius: 50%;
	background: #fff;
	color: var(--color-green);
	border: 2px solid var(--color-green);
	font-weight: 600;
}
.pagination .page-numbers.current {
	background: var(--color-green);
	color: #fff;
}
.pagination .page-numbers.dots { border: 0; background: transparent; }
.pagination a.page-numbers:hover { background: var(--color-green); color: #fff; opacity: 1; }

/* =========================================================
   お知らせ詳細
   ========================================================= */
.news-single__header {
	border-bottom: 2px solid var(--color-brown);
	padding-bottom: 24px;
	margin-bottom: 40px;
}
.news-single__title { font-size: clamp(1.4rem, 2.4vw, 1.8rem); font-weight: 600; margin-bottom: 16px; }
.news-single__meta { display: flex; align-items: center; gap: 20px; }
.news-single__date { margin-left: auto; font-size: .95rem; color: #7d7666; }

.news-single__body { font-size: 1rem; line-height: 2.1; }
.news-single__body h2 { font-size: 1.4rem; font-weight: 600; margin: 1.6em 0 .6em; }
.news-single__body h3 { font-size: 1.2rem; font-weight: 600; margin: 1.4em 0 .5em; }
.news-single__body p { margin-bottom: 1.4em; }
.news-single__body img { border-radius: var(--radius); }
.news-single__body a { color: var(--color-green); text-decoration: underline; }
/* ボタン化されたリンク（WordPressボタンブロック等）は下線を出さない */
.news-single__body .wp-block-button__link,
.news-single__body .wp-element-button,
.news-single__body .btn,
.entry-content .wp-block-button__link,
.entry-content .wp-element-button,
.entry-content .btn {
	text-decoration: none;
}
/* WordPressボタンブロックを本テーマの茶ボタン風に */
.news-single__body .wp-block-button__link,
.entry-content .wp-block-button__link {
	background-color: var(--color-brown);
	color: var(--color-green);
	border-radius: 8px;
	padding: 14px 32px;
	font-weight: inherit;
	white-space: nowrap;
}

/* 前後ナビ */
.post-nav { background: var(--color-brown); color: #fff; }
.post-nav__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(40px, 8vw, 120px);
	padding-block: 28px;
}
.post-nav__item a, .post-nav__item > span { display: inline-flex; align-items: center; gap: 18px; color: #fff; }
.post-nav__label { letter-spacing: 0.12em; }
.post-nav .post-nav__arrow {
	width: 44px; height: 44px;
	border-radius: 50%;
	background: #fff;
	color: #C4A876;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	line-height: 1;
	flex: 0 0 auto;
}
.post-nav__item .is-disabled { opacity: .5; }

/* =========================================================
   パーティー詳細
   ========================================================= */
.party-detail__bg {
	background-image: url('http://202608251012c3m37d75.conohawing.com/wp-content/uploads/2026/08/party-detail-back-scaled.webp');
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
}
.party-detail .party-detail__bg { padding-block: clamp(48px, 6vw, 88px); }

.party-block {
	position: relative;
	background: #FBF8F0;
	border-radius: 10px;
	padding: clamp(32px, 4vw, 56px);
	margin-bottom: clamp(48px, 6vw, 88px);
}
.party-block:last-child { margin-bottom: 0; }

/* 上下分割ブロック：パディングを内側パネルに移すため枠側は0に */
.party-block--split { padding: 0; overflow: hidden; }

.party-block__upper {
	min-height: 400px;
	display: flex;
	align-items: center;
}
/* PC: 左テキスト・右画像の横並び */
.party-block__upper .party-block__head {
	width: 100%;
	margin-bottom: 0;
	display: grid;
	grid-template-columns: 1fr minmax(0, 600px);
	align-items: center;
	gap: 0;
}
.party-block__upper .party-block__headtext {
	padding: clamp(28px, 3.5vw, 52px);
}
/* 画像は10pxの余白を開けて配置 */
.party-block__upper .party-block__hero {
	padding: 10px;
	line-height: 0;
	width: 100%;
}
.party-block__upper .party-block__hero img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
}

.party-block__lower {
	min-height: 773px;
	padding: clamp(32px, 4vw, 56px);
}

/* カード別カラー */
.party-block--split .party-block__upper { background: #DACDBD; }         /* カラオケ＆ダンス 上 */
.party-block--split .party-block__lower { background: #FEF1E1; opacity: 0.8; }
.party-block--hotel .party-block__upper { background: #D2BD97; }         /* 新宿プリンス 上 */
.party-block--hotel .party-block__lower { background: #FDE9C3; opacity: 0.8; min-height: 809px; }
.party-block--cruise .party-block__upper { background: #C4A876; }        /* クルーズ 上 */
.party-block--cruise .party-block__lower { background: #E3CBA0; opacity: 0.8; min-height: 720px; }

.party-block__badge {
	position: absolute;
	top: 0; right: 32px;
	transform: translateY(-50%);
	background: var(--color-green);
	color: #fff;
	padding: 8px 24px;
	border-radius: 999px;
	font-size: .9rem;
	letter-spacing: 0.08em;
}

.party-block__head {
	display: grid;
	grid-template-columns: 1fr 570px;
	gap: clamp(24px, 3vw, 48px);
	align-items: center;
	margin-bottom: 36px;
}
.party-block__icon { display: block; margin-bottom: 12px; }
.party-block__catch { font-size: 1rem; color: var(--color-dark); margin-bottom: 8px; }
.party-block__title {
	font-size: clamp(1.5rem, 2.4vw, 2rem);
	font-weight: 700;
	color: var(--color-dark);
	letter-spacing: 0.04em;
	margin-bottom: 8px;
}
.party-block__sub { font-size: 1.05rem; color: var(--color-green); font-weight: 600; margin-bottom: 12px; }
.party-block__desc { font-size: .95rem; line-height: 1.9; }
.party-block__hero { line-height: 0; border-radius: 8px; overflow: hidden; }
.party-block__hero img { width: 100%; height: auto; display: block; }

.party-block__info {
	background: #fff;
	border: 1px solid #e2d7bf;
	border-radius: 8px;
	padding: 24px 28px;
	margin-bottom: 32px;
	font-size: .95rem;
	line-height: 1.9;
}
.party-block__lead { font-weight: 600; color: var(--color-green); margin-bottom: 6px; }
.party-block__info p + .party-block__lead { margin-top: 16px; }

.party-gallery { display: grid; gap: 20px; margin-bottom: 28px; }
.party-gallery--3 { grid-template-columns: repeat(3, 1fr); }
.party-gallery--4 { grid-template-columns: repeat(4, 1fr); }
.party-gallery__item { line-height: 0; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 14px rgba(0,0,0,.1); }
.party-gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.party-gallery__map { position: relative; aspect-ratio: 384 / 254; }
.party-gallery--4 .party-gallery__map { aspect-ratio: 287 / 272; }
.party-gallery__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

.party-block__note { text-align: center; font-size: .95rem; margin-bottom: 24px; }
.party-block__cancel {
	margin-top: 28px;
	font-size: .82rem;
	color: #7d7666;
	line-height: 1.8;
	text-align: center;
}

/* =========================================================
   予約方法（フロー）
   ========================================================= */
.reservation__flow { background: var(--color-beige); }

.step {
	background: #fff;
	border: 2px solid var(--color-brown);
	border-radius: 10px;
	padding: 28px 30px;
	text-align: center;
}
.step__num {
	display: inline-block;
	background: var(--color-brown);
	color: #fff;
	padding: 4px 18px;
	border-radius: 999px;
	font-size: .85rem;
	letter-spacing: 0.14em;
	margin-bottom: 14px;
}
.step__badge {
	display: inline;
	color: #fff;
	font-size: 1rem;
	margin-left: 4px;
	vertical-align: -0.06em;
}
.step__icon { margin-bottom: 12px; }
.step__icon img { display: inline-block; }
.step__title { font-size: 1.35rem; font-weight: 600; color: var(--color-dark); margin-bottom: 10px; line-height: 1.5; }
.step__desc { font-size: 1.02rem; color: var(--color-dark); }
.step--start { max-width: 520px; margin-inline: auto; }
.step--start .step__title { border-bottom: 2px solid var(--color-brown); padding-bottom: 12px; }

/* STEP2カード：連絡先の下（リストの上）に2pxバー */
.step__list {
	border-top: 2px solid #e0d4bc;
	padding-top: 16px;
}
/* 予約完了カード：タイトル下に2pxバー */
.step--done .step__title {
	border-bottom: 2px solid #e0d4bc;
	padding-bottom: 12px;
}
/* 下線色を各カラムの枠色に合わせる */
.flow-col--tel .step__list,
.flow-col--tel .step--done .step__title { border-color: var(--tel-pink); }
.flow-col--sms .step__list,
.flow-col--sms .step--done .step__title { border-color: var(--sms-blue); }

/* 分岐ライン（STEP1→2列）を連続した形状に。
   すべて 900px 幅（列コンテナ）基準で座標を揃える。 */
.flow-branch {
	width: 100%;
	max-width: 900px;
	height: 60px;
	margin: 0 auto;
	position: relative;
}
/* STEP1中央から下りる縦線 */
.flow-branch::before {
	content: "";
	position: absolute;
	top: 0; left: 50%;
	transform: translateX(-1px);
	width: 2px; height: 30px;
	background: var(--color-brown);
}
/* 左右カラム中心をつなぐ横線（列中心 ≒ 24%〜76%） */
.flow-branch::after {
	content: "";
	position: absolute;
	top: 30px;
	left: 24%; right: 24%;
	height: 2px;
	background: var(--color-brown);
}

.reservation__columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	max-width: 900px;
	margin-inline: auto;
	position: relative;
}
/* 横線の両端から各ボタンへ下りる縦線（列中心に合わせる） */
.reservation__columns::before,
.reservation__columns::after {
	content: "";
	position: absolute;
	top: -30px;
	width: 2px; height: 30px;
	background: var(--color-brown);
}
.reservation__columns::before { left: 24%; }
.reservation__columns::after  { left: 76%; transform: translateX(-2px); }

.flow-col { display: flex; flex-direction: column; gap: 24px; }
.flow-col__head {
	text-align: center;
	color: #fff;
	font-size: 1.2rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	padding: 12px;
	border-radius: 999px;
}
.flow-col--tel .flow-col__head { background: var(--tel-pink); }
.flow-col--sms .flow-col__head { background: var(--sms-blue); }

.flow-col--tel .step { border-color: var(--tel-pink); }
.flow-col--sms .step { border-color: var(--sms-blue); }

.step__contact { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 16px; }
.step__contacticon { flex: 0 0 auto; }
.step__tel { display: block; font-size: 1.55rem; font-weight: 700; letter-spacing: 0.02em; }
.flow-col--tel .step__tel { color: var(--tel-pink); }
.flow-col--sms .step__tel { color: var(--sms-blue); }
.step__telnote { font-size: .9rem; }

.step__list { text-align: left; display: flex; flex-direction: column; gap: 10px; font-size: .95rem; }
.step__list li { padding-left: 1.2em; position: relative; line-height: 1.6; }
.step__list li::before { content: "・"; position: absolute; left: 0; }
.req { color: #d0021b; font-weight: 700; }
.opt { color: var(--color-dark); }

.flow-arrow { width: 2px; height: 34px; background: currentColor; margin: -4px auto; position: relative; }
.flow-arrow--tel { color: var(--tel-pink); }
.flow-arrow--sms { color: var(--sms-blue); }
.flow-arrow::after {
	content: "";
	position: absolute;
	bottom: 0; left: 50%;
	transform: translateX(-50%);
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 8px solid currentColor;
}

/* =========================================================
   プライバシーポリシー
   ========================================================= */
.privacy__body { background: var(--color-beige); }
.privacy__panel {
	background: #fff;
	border-radius: 18px;
	padding: clamp(32px, 5vw, 72px);
	box-shadow: 0 10px 34px rgba(120,100,60,.1);
}
.privacy__intro { margin-bottom: 2em; }
.privacy__item { margin-bottom: 2em; }
.privacy__title {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--color-brown);
	margin-bottom: .6em;
	letter-spacing: 0.04em;
}
.privacy__panel p { font-size: .95rem; line-height: 2; }
.privacy__panel a { color: var(--color-green); text-decoration: underline; }
/* 外部リンク（別タブ）は太字＋下線で強調 */
.privacy__panel a.privacy-link {
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
	color: var(--color-green);
}

/* entry-content 汎用 */
.entry-content { font-size: 1rem; line-height: 2; }
.entry-content h2 { font-size: 1.4rem; font-weight: 600; margin: 1.6em 0 .6em; color: var(--color-green); }
.entry-content p { margin-bottom: 1.4em; }
.entry-content a { color: var(--color-green); text-decoration: underline; }

/* =========================================================
   レスポンシブ
   ========================================================= */

/* ---- タブレット (~1024px) ---- */
@media (max-width: 1024px) {
	:root { --content-pad: 32px; }

	.site-header--sub .site-header__tel { font-size: 1.3rem; }

	.fv--top { height: 640px; }
	.fv--sub { height: 480px; }

	.party-block__head { grid-template-columns: 1fr; }
	.party-block__hero { max-width: 570px; margin-inline: auto; width: 100%; }
	.party-gallery--4 { grid-template-columns: repeat(2, 1fr); }
	.party-gallery--4 .party-gallery__map { aspect-ratio: 384 / 254; }

	.message__body { grid-template-columns: 300px 1fr; }
}

/* ---- モバイル (~767px) ---- */
@media (max-width: 767px) {
	:root {
		--content-pad: 20px;
		--header-h: 64px;
	}

	body { line-height: 1.85; }

	/* ヘッダー：下層も全幅・ロゴ＋ハンバーガー、TELは折返し */
	.site-header--sub { height: auto; }
	.site-header--sub .site-header__inner {
		flex-wrap: wrap;
		gap: 10px 16px;
		padding-block: 12px;
	}
	.site-header__logo img { width: 92px; }
	.site-header__contact { line-height: 1.3; }
	.site-header__hours { font-size: .68rem; }
	.site-header__tel { font-size: 1.05rem; }
	.hamburger { width: 34px; height: 26px; margin-left: 12px; }

	/* トップヘッダー：SPでは透明・ハンバーガーのみ右上（連絡先はFV下バーへ） */
	.site-header--top {
		position: absolute;
		top: 0; right: 0;
		width: auto;
		height: 56px;
		background: transparent;
	}
	.site-header--top .site-header__inner { padding-inline: 20px; gap: 0; }
	.site-header--top .site-header__contact { display: none; }
	.site-header--top .hamburger__line { background: #fff; }
	body.nav-open .site-header--top .hamburger__line { background: #fff; }

	/* トップFV：SP画像（sp-fv-top2.webp）はTEL領域込みで375×547 */
	.fv--top {
		height: auto;
		aspect-ratio: 375 / 547;
		max-height: none;
		background-image: var(--fv-top-sp);
		background-position: top center;
	}

	/* SP画像内にTEL領域が含まれるため、下のTELバーは非表示 */
	.fv-telbar { display: none; }

	/* 下層FV：SP画像へ切替、縦横比で高さ確保 */
	.fv--sub {
		height: auto;
		aspect-ratio: 375 / 240;
		background-image: var(--fv-sp);
	}
	.fv__title {
		font-size: clamp(1.4rem, 7vw, 2rem);
		letter-spacing: 0.1em;
		white-space: normal;
		text-align: center;
		width: max-content;
		max-width: 90%;
		padding: .3em .7em;
	}

	.section { padding-block: 48px; }
	/* SPのタイトルは25.6px(1.6rem)でメリハリを付ける */
	.section__title { font-size: 1.6rem; margin-bottom: 28px; }
	.page-lead__title { font-size: 1.6rem; }
	.news-single__title { font-size: 1.6rem; }

	.btn { min-width: 0; width: 100%; max-width: 340px; padding: 15px 24px; font-size: 1.3rem; }

	/* 最新のお知らせ：SPのみ中央揃え（日付・タグ・タイトルを中央に） */
	.news-row {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		gap: 8px 14px;
		padding: 16px 4px;
	}
	.news-row__title { flex-basis: 100%; text-align: center; }

	/* パーティーカード：1列 */
	.party-cards { grid-template-columns: 1fr; gap: 24px; max-width: 420px; }

	/* メッセージ：1列、写真上 */
	.message__body { grid-template-columns: 1fr; gap: 28px; }
	.message__photo { max-width: 300px; margin-inline: auto; }

	/* CTA（SP）：テキストを上に表示 → 写真 → ボタン中央。添付右に合わせる */
	.cta-banner {
		display: block;
		min-height: 0;
		background: none;
		padding: 0 0 24px;
	}
	.cta-banner__inner {
		padding: 0;
		max-width: 100%;
		display: flex;
		flex-direction: column;
	}
	/* リード文：写真の上に中央寄せで表示 */
	.cta-banner__lead {
		order: 1;
		font-size: clamp(1.5rem, 6.5vw, 2rem);
		font-weight: 700;
		color: var(--color-dark);
		text-align: center;
		line-height: 1.7;
		margin: 0;
		padding: 40px 20px 24px;
		text-shadow: none;
	}
	/* 写真（contact-banner-sp.webp）：全幅で表示 */
	.cta-banner__photo {
		order: 2;
		display: block;
		width: 100%;
		aspect-ratio: 375 / 300;
		background-image: var(--cta-sp);
		background-size: cover;
		background-position: center top;
		background-repeat: no-repeat;
	}
	/* ボタン：写真の下・中央・余白詰め */
	.cta-banner__btn {
		order: 3;
		display: flex;
		min-width: 0;
		width: calc(100% - 40px);
		max-width: 420px;
		margin: 28px auto 0;
	}

	/* フッター */
	.site-footer__inner { flex-direction: column; text-align: center; gap: 24px; padding-top: 44px; }
	.site-footer__logo img { width: 180px; }
	.site-footer__contact { text-align: center; font-size: .9rem; }

	/* お知らせ一覧カード */
	.news-card__head { padding: 16px 18px; gap: 10px 16px; }
	.news-card__title { font-size: 1.05rem; width: 100%; }
	.news-card__excerpt { padding: 18px; }

	/* 投稿本文のボタン（詳細はこちら/予約方法はこちら）はSPで上下並び・横長・中央に。
	   WordPressコアCSSやブロックの幅設定に勝つため !important を使用。 */
	.news-single__body .wp-block-buttons,
	.entry-content .wp-block-buttons {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 16px !important;
		width: 100% !important;
	}
	.news-single__body .wp-block-buttons .wp-block-button,
	.entry-content .wp-block-buttons .wp-block-button {
		width: 100% !important;
		max-width: 100% !important;
		flex: 0 0 auto !important;
	}
	.news-single__body .wp-block-buttons .wp-block-button__link,
	.entry-content .wp-block-buttons .wp-block-button__link {
		display: block !important;
		width: 100% !important;
		box-sizing: border-box;
		text-align: center;
		white-space: nowrap;
		border-radius: 99px;   /* 角丸99px */
		padding: 16px 24px;
		font-size: 1.1rem;
	}

	/* 前後ナビ */
	.post-nav__inner { gap: 24px; }
	.post-nav__label { font-size: .9rem; }
	.post-nav__arrow { width: 38px; height: 38px; }

	/* パーティー詳細 */
	.party-block { padding: 24px 18px; }
	.party-block__badge { right: 16px; font-size: .8rem; padding: 6px 16px; }
	.party-gallery--3, .party-gallery--4 { grid-template-columns: 1fr; }
	.party-gallery--4 .party-gallery__map,
	.party-gallery__map { aspect-ratio: 16 / 10; }

	/* SP：上部はテキスト上・画像下の縦並びに */
	.party-block--split { padding: 0; }
	.party-block__upper { padding: 0; }
	.party-block__upper .party-block__head {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.party-block__upper .party-block__headtext {
		padding: 28px 20px 0;
		text-align: center;
		width: 100%;
	}
	.party-block__upper .party-block__hero {
		width: 100%;
		max-width: 560px;
		margin-inline: auto;
	}

	/* 予約フロー：1列に */
	.reservation__columns { grid-template-columns: 1fr; gap: 44px; }
	.reservation__columns::before,
	.reservation__columns::after { display: none; }
	.flow-branch { height: 40px; }
	.flow-branch::after { left: 50%; right: auto; width: 2px; height: 0; }
	.flow-col { position: relative; }
	.flow-col::before {
		content: "";
		position: absolute;
		top: -30px; left: 50%;
		width: 2px; height: 30px;
		background: var(--color-brown);
	}
	.step__tel { font-size: 1.35rem; }

	/* プライバシー */
	.privacy__panel { padding: 28px 20px; border-radius: 12px; }
	.privacy__panel p { font-size: .9rem; }

	/* ナビ */
	.global-nav__list { font-size: 1.2rem; gap: 18px; }
	.global-nav__close { top: 16px; right: 20px; }
}

/* ---- 小型端末 (~380px) ---- */
@media (max-width: 380px) {
	.site-header__tel { font-size: .95rem; }
	.fv__title { font-size: 1.3rem; }
}

/* ---- モーション低減 ---- */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .001ms !important;
		transition-duration: .001ms !important;
		scroll-behavior: auto !important;
	}
}

/* パーティー日程への追従フローティングボタン */
.floating-schedule {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 50;
	width: 250px;
	height: 92px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.04em;
	text-decoration: none;
	border-radius: 18px;
	border: 2px solid #507446;
	background: linear-gradient(99deg, #1C892D 13.71%, #25532C 91.31%);
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
	transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}
.floating-schedule:hover {
	opacity: 1;
	transform: translateY(-3px);
	box-shadow: 0 8px 18px 0 rgba(0, 0, 0, 0.3);
}

/* スマホでは少し小さく */
@media (max-width: 767px) {
	.floating-schedule {
		right: 14px;
		bottom: 14px;
		width: 180px;
		height: 68px;
		font-size: 1rem;
		border-radius: 14px;
	}
}