/*
Theme Name: Star NAGOYA
Theme URI: https://star-nagoya-massage.gay/
Author: 株式会社G168
Description: ☆Star.NAGOYA 専用テーマ。トップは ヒーロー／出勤表／スタッフ／利用方法／料金／場所／ブログ の1枚構成。
Version: 0.1.0
Requires at least: 6.5
Requires PHP: 8.1
Text Domain: star-nagoya
*/

/* =========================================================================
   トークン
   ========================================================================= */
:root {
	--bg:        #0c0a09;
	--bg-2:      #141110;
	--bg-3:      #1d1918;
	--line:      rgba(194, 161, 115, .22);
	--line-soft: rgba(232, 227, 221, .10);

	--gold:      #c2a173;
	--gold-lt:   #e2caa3;
	--text:      #e9e4dd;
	--muted:     #a2988c;

	--wrap:      1120px;
	--gap:       clamp(1rem, 2.5vw, 2rem);

	--sans: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", Meiryo, sans-serif;
	--serif: "Times New Roman", "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 72px; }

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.9;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

/* 「（要確認）」バッジ ------------------------------------------------- */
.star-check {
	display: inline-block;
	font-size: .6875rem;
	line-height: 1.6;
	font-family: var(--sans);
	color: #ffd9a1;
	background: rgba(255, 150, 40, .14);
	border: 1px solid rgba(255, 170, 70, .45);
	border-radius: 3px;
	padding: 0 .4em;
	margin-left: .35em;
	vertical-align: middle;
	white-space: nowrap;
	letter-spacing: .02em;
}

/* =========================================================================
   セクションの共通形
   ========================================================================= */
.sec { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.sec--alt { background: var(--bg-2); }

.sec__head { text-align: center; margin-bottom: clamp(2rem, 5vw, 3.5rem); }

/* オーナー支給のバナー。前後のセクションと同じ間隔だと空きすぎるので詰める */
.sec--banner { padding: clamp(1.75rem, 5vw, 3rem) 0; }
.banner__img {
	display: block;
	width: 100%; height: auto;
	border-radius: 3px;
	border: 1px solid var(--line-soft);
}

.sec__en {
	display: block;
	font-family: var(--serif);
	font-size: clamp(1.75rem, 5vw, 2.75rem);
	letter-spacing: .14em;
	color: var(--gold-lt);
	margin: 0;
	font-weight: 400;
}

.sec__ja {
	display: block;
	font-size: .8125rem;
	letter-spacing: .3em;
	color: var(--muted);
	margin-top: .6rem;
}

.sec__lead {
	max-width: 44rem;
	margin: 1.5rem auto 0;
	text-align: center;
	color: var(--muted);
	font-size: .9375rem;
}

/* ボタン ---------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5em;
	min-height: 48px;
	padding: .7em 2em;
	border-radius: 2px;
	font-size: .9375rem;
	letter-spacing: .08em;
	text-decoration: none;
	border: 1px solid var(--gold);
	transition: background .2s, color .2s;
}
.btn--fill { background: var(--gold); color: #1a1512; font-weight: 700; }
.btn--fill:hover { background: var(--gold-lt); }
.btn--ghost { color: var(--gold-lt); }
.btn--ghost:hover { background: rgba(194, 161, 115, .12); }

/* =========================================================================
   ヘッダー
   ========================================================================= */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(12, 10, 9, .88);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--line-soft);
}

.site-header__inner {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	min-height: 68px;
}

.brand { text-decoration: none; line-height: 1.1; }
.brand__mark { font-family: var(--serif); font-size: 1.5rem; letter-spacing: .04em; }
.brand__sub  { display: block; font-size: .5625rem; letter-spacing: .28em; color: var(--muted); }

.nav { margin-left: auto; }
.nav ul { display: flex; gap: 1.4rem; list-style: none; margin: 0; padding: 0; }
.nav a {
	text-decoration: none;
	font-size: .75rem;
	letter-spacing: .16em;
	color: var(--muted);
	transition: color .2s;
}
.nav a:hover { color: var(--gold-lt); }

.site-header__mypage {
	text-decoration: none;
	font-size: .75rem;
	letter-spacing: .12em;
	color: var(--muted);
	white-space: nowrap;
	transition: color .2s;
}
.site-header__mypage:hover { color: var(--gold-lt); }
.nav + .site-header__mypage { margin-left: 0; }
.site-header .btn { min-height: 40px; padding: .4em 1.3em; font-size: .8125rem; }

.nav-toggle {
	display: none;
	margin-left: auto;
	background: none;
	border: 1px solid var(--line);
	color: var(--text);
	border-radius: 2px;
	padding: .5em .8em;
	font-size: .75rem;
	letter-spacing: .1em;
}

@media (max-width: 900px) {
	.nav { display: none; }
	.nav.is-open {
		display: block;
		position: absolute;
		inset: 68px 0 auto;
		background: var(--bg-2);
		border-bottom: 1px solid var(--line-soft);
		padding: 1rem 1.25rem 1.5rem;
	}
	.nav.is-open ul { flex-direction: column; gap: .25rem; }
	.nav.is-open a { display: block; padding: .75rem 0; font-size: .875rem; }
	.nav-toggle { display: block; }
	.site-header__inner { gap: .75rem; }
	.site-header__inner .btn--fill { order: 3; white-space: nowrap; padding: .4em 1em; }
	.brand__mark { font-size: 1.25rem; }
}

/* =========================================================================
   ヒーロー
   ========================================================================= */
.hero { position: relative; min-height: min(88vh, 720px); display: grid; align-items: center; overflow: hidden; }

.hero__bg { position: absolute; inset: 0; background: #0c0a09; }

/* 動画とポスター画像の見え方を完全にそろえる。
   src を入れる前は poster がこの object-fit で描かれるので、
   動画が始まった瞬間に絵がずれない。 */
.hero__bg__video {
	display: block;
	width: 100%; height: 100%;
	object-fit: cover;
	opacity: .55;
}
.hero__bg::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(100deg, rgba(12,10,9,.95) 18%, rgba(12,10,9,.55) 60%, rgba(12,10,9,.85) 100%);
}

.hero__inner { position: relative; padding: clamp(3rem, 10vw, 6rem) 0; }
.hero__eyebrow { font-size: .75rem; letter-spacing: .22em; color: var(--gold); margin: 0 0 1.2rem; }

.hero__title {
	font-family: var(--serif);
	font-weight: 400;
	font-size: clamp(2.1rem, 7vw, 4.25rem);
	line-height: 1.18;
	margin: 0;
	letter-spacing: .02em;
}

/* 「名古屋のゲイマッサージ」は説明、「☆Star.NAGOYA」が屋号。
   同じ大きさだと iPhone の幅（375px）で11文字が収まらず「ジ」だけ落ちるので、
   説明のほうを一回り小さくして、屋号を主役にする。 */
.hero__title__lead {
	display: block;
	font-size: .7em;
	letter-spacing: .01em;
	margin-bottom: .15em;
}
.hero__title__brand { display: block; color: var(--gold-lt); }

.hero__lead { max-width: 34rem; margin: 1.75rem 0 0; color: var(--muted); font-size: .9375rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2.25rem; }
.hero__meta { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1.5rem; font-size: .8125rem; color: var(--muted); }
.hero__meta dt { color: var(--gold); letter-spacing: .12em; font-size: .6875rem; margin-bottom: .2rem; }
.hero__meta dd { margin: 0; }

/* =========================================================================
   出勤表
   ========================================================================= */
.schedule__frame {
	border: 1px solid var(--line);
	border-radius: 4px;
	overflow: hidden;
	background: var(--bg-3);
}
.schedule__frame iframe { width: 100%; border: 0; display: block; min-height: 520px; }

.schedule__placeholder {
	padding: clamp(2rem, 6vw, 4rem) 1.5rem;
	text-align: center;
	color: var(--muted);
	font-size: .9375rem;
}
.schedule__placeholder strong { display: block; color: var(--text); margin-bottom: .5rem; font-size: 1rem; }

.schedule__note { margin-top: 1.25rem; font-size: .8125rem; color: var(--muted); text-align: center; }

/* =========================================================================
   スタッフ
   ========================================================================= */
.staff-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
	gap: clamp(.75rem, 2vw, 1.5rem);
}

.staff-card {
	background: var(--bg-3);
	border: 1px solid var(--line-soft);
	border-radius: 3px;
	overflow: hidden;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	transition: border-color .2s, transform .2s;
}
.staff-card:hover { border-color: var(--line); transform: translateY(-2px); }

.staff-card__photo { aspect-ratio: 3 / 4; background: #221d1b; }
.staff-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.staff-card__photo--empty {
	display: grid; place-items: center;
	color: var(--muted); font-size: .75rem; letter-spacing: .1em;
}

.staff-card__body { padding: .9rem 1rem 1.1rem; }
.staff-card__name { font-family: var(--serif); font-size: 1.125rem; letter-spacing: .1em; color: var(--gold-lt); margin: 0; }
.staff-card__kana { font-size: .75rem; color: var(--muted); margin: .15rem 0 .6rem; }

.spec { display: flex; gap: .35rem; }
.spec div {
	flex: 1;
	text-align: center;
	background: rgba(232, 227, 221, .05);
	border-radius: 2px;
	padding: .3rem 0 .35rem;
}
.spec dt { font-size: .5625rem; letter-spacing: .1em; color: var(--muted); }
.spec dd { margin: 0; font-size: .8125rem; }

/* =========================================================================
   利用方法
   ========================================================================= */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(1rem, 3vw, 2rem); }
.step__no { font-family: var(--serif); font-size: 2.5rem; color: var(--gold); line-height: 1; opacity: .7; }
.step__title { font-size: 1.0625rem; margin: .6rem 0 .5rem; letter-spacing: .06em; }
.step__body { font-size: .875rem; color: var(--muted); margin: 0; }

.types { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin-top: clamp(2.5rem, 6vw, 4rem); }
.type { border: 1px solid var(--line-soft); border-radius: 3px; padding: 1.25rem 1.25rem 1.4rem; }
.type__en { font-family: var(--serif); font-size: .9375rem; letter-spacing: .16em; color: var(--gold); margin: 0; }
.type__ja { font-size: 1rem; margin: .3rem 0 .6rem; }
.type__body { font-size: .8125rem; color: var(--muted); margin: 0; }

/* =========================================================================
   料金
   ========================================================================= */
.course-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: .9rem; }

.course {
	background: var(--bg-3);
	border: 1px solid var(--line-soft);
	border-radius: 3px;
	padding: 1.4rem 1.25rem 1.5rem;
	text-align: center;
	display: flex;
	flex-direction: column;
}
.course--hl { border-color: var(--gold); background: linear-gradient(180deg, rgba(194,161,115,.12), var(--bg-3) 55%); }

.course__tag { font-size: .6875rem; letter-spacing: .12em; color: var(--gold); margin: 0 0 .5rem; }
.course__name { font-size: 1rem; letter-spacing: .04em; margin: 0 0 1rem; }
.course__price { font-family: var(--serif); font-size: clamp(1.9rem, 4.5vw, 2.5rem); line-height: 1; color: var(--gold-lt); }
.course__price small { font-size: .875rem; margin-left: .2em; color: var(--text); }
.course__note { font-size: .75rem; color: var(--muted); margin: .9rem 0 0; line-height: 1.7; }

.extras { margin-top: clamp(2rem, 5vw, 3rem); border-top: 1px solid var(--line-soft); }
.extra {
	display: flex; flex-wrap: wrap; align-items: baseline; gap: .4rem 1rem;
	padding: .9rem 0; border-bottom: 1px solid var(--line-soft);
}
.extra__name { flex: 0 0 12rem; letter-spacing: .04em; }
.extra__price { font-family: var(--serif); font-size: 1.125rem; color: var(--gold-lt); }
.extra__note { flex: 1 1 16rem; font-size: .8125rem; color: var(--muted); }

.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin: clamp(2rem, 5vw, 3rem) 0 0; padding: 0; list-style: none; }
.chips li {
	font-size: .8125rem; color: var(--muted);
	border: 1px solid var(--line-soft); border-radius: 999px; padding: .3em 1em;
}

.cautions { margin: 2rem 0 0; padding: 1.25rem 1.5rem; background: rgba(232,227,221,.04); border-radius: 3px; }
.cautions li { font-size: .8125rem; color: var(--muted); margin-bottom: .4rem; }
.cautions li:last-child { margin-bottom: 0; }

/* =========================================================================
   場所
   ========================================================================= */
.access { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
@media (max-width: 820px) { .access { grid-template-columns: 1fr; } }

.access__map { border: 1px solid var(--line-soft); border-radius: 3px; overflow: hidden; aspect-ratio: 4 / 3; }
.access__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.5) contrast(1.05) brightness(.85); }

.access__list { margin: 0; }
.access__list dt { font-size: .6875rem; letter-spacing: .16em; color: var(--gold); margin-top: 1.4rem; }
.access__list dt:first-child { margin-top: 0; }
.access__list dd { margin: .35rem 0 0; font-size: .9375rem; }

/* =========================================================================
   ブログ
   ========================================================================= */
.posts { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(1rem, 3vw, 2rem); }
.post-card { text-decoration: none; display: block; }
.post-card__thumb { aspect-ratio: 16 / 10; background: var(--bg-3); border-radius: 3px; overflow: hidden; margin-bottom: .9rem; }
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card__date { font-size: .75rem; letter-spacing: .1em; color: var(--gold); }
.post-card__title { font-size: 1rem; line-height: 1.6; margin: .35rem 0 .5rem; }
.post-card__ex { font-size: .8125rem; color: var(--muted); margin: 0; }

.sec__more { text-align: center; margin-top: clamp(2rem, 5vw, 3rem); }

/* =========================================================================
   CTA 帯 ／ フッター
   ========================================================================= */
.cta-band { background: linear-gradient(180deg, var(--bg-2), var(--bg)); border-top: 1px solid var(--line); text-align: center; }
.cta-band .btn { margin: .35rem; }

.site-footer { background: var(--bg-2); border-top: 1px solid var(--line-soft); padding: clamp(2.5rem, 6vw, 4rem) 0 2rem; font-size: .8125rem; }
.site-footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.site-footer h3 { font-size: .6875rem; letter-spacing: .16em; color: var(--gold); margin: 0 0 .8rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .45rem; }
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--gold-lt); }
.site-footer__bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line-soft); color: var(--muted); display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; justify-content: space-between; }

/* 固定の予約バー（スマホ） ------------------------------------------- */
.mobile-cta { display: none; }
@media (max-width: 700px) {
	.mobile-cta {
		display: flex; gap: .5rem;
		position: fixed; inset: auto 0 0; z-index: 60;
		padding: .6rem .75rem calc(.6rem + env(safe-area-inset-bottom));
		background: rgba(12,10,9,.94); border-top: 1px solid var(--line-soft);
	}
	.mobile-cta .btn { flex: 1; min-height: 46px; padding: .5em 1em; }
	body { padding-bottom: 72px; }
}

/* =========================================================================
   下層ページ
   ========================================================================= */
.page-hero { padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3rem); border-bottom: 1px solid var(--line-soft); text-align: center; }
.entry { padding: clamp(2.5rem, 6vw, 4rem) 0; }
.entry__body { max-width: 46rem; margin-inline: auto; }
.entry__body h2 { font-family: var(--serif); font-size: 1.5rem; color: var(--gold-lt); margin-top: 2.5rem; }
.entry__body img { border-radius: 3px; margin: 1.5rem 0; }
.entry__body a { color: var(--gold-lt); }
/* コラムの本文には箇条書きが入る（料金の並びなど）。既定のままだと行頭記号が消える */
.entry__body ul { margin: 1.2rem 0; padding-left: 1.4em; line-height: 1.9; }
.entry__body li { margin: .2rem 0; }

/* スタッフ詳細の写真。カード用の 3:4 をそのまま使うと縦に伸びすぎる */
.staff-detail__photo { max-width: 420px; border-radius: 3px; overflow: hidden; }
.staff-detail__photo img { width: 100%; height: auto; display: block; }

/* =========================================================================
   スタッフカードのタイプ表示
   ========================================================================= */
.staff-card__type {
	margin: .6rem 0 0;
	font-size: .6875rem;
	letter-spacing: .06em;
	color: var(--gold);
	text-align: center;
	border-top: 1px solid var(--line-soft);
	padding-top: .55rem;
}

.staff-detail__h {
	font-family: var(--serif);
	font-size: 1.125rem;
	letter-spacing: .12em;
	color: var(--gold-lt);
	margin: 2rem 0 0;
}

/* =========================================================================
   予約フォーム
   ========================================================================= */
.bform { max-width: 46rem; margin-inline: auto; }

.bform__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
@media (max-width: 640px) { .bform__grid { grid-template-columns: 1fr; } }

.bform__row { display: flex; flex-direction: column; gap: .4rem; }
.bform__row--wide { grid-column: 1 / -1; }

.bform__label { font-size: .8125rem; letter-spacing: .06em; color: var(--muted); }
.bform__label em {
	font-style: normal;
	font-size: .625rem;
	margin-left: .5em;
	padding: .1em .5em;
	border-radius: 2px;
	background: rgba(194, 161, 115, .18);
	border: 1px solid var(--line);
	color: var(--gold-lt);
	vertical-align: 1px;
}

.bform input[type="text"],
.bform input[type="email"],
.bform input[type="tel"],
.bform input[type="datetime-local"],
.bform select,
.bform textarea {
	width: 100%;
	font: inherit;
	font-size: 1rem; /* iOSで拡大されないよう16px以上 */
	color: var(--text);
	background: var(--bg-3);
	border: 1px solid var(--line-soft);
	border-radius: 3px;
	padding: .7em .9em;
	min-height: 48px;
	appearance: none;
}
.bform textarea { min-height: 8em; line-height: 1.8; resize: vertical; }

.bform input:focus,
.bform select:focus,
.bform textarea:focus {
	outline: none;
	border-color: var(--gold);
	box-shadow: 0 0 0 3px rgba(194, 161, 115, .15);
}

.bform input:user-invalid,
.bform textarea:user-invalid { border-color: #c96a6a; }

.bform__tel { display: flex; gap: .5rem; }
.bform__tel select { flex: 0 0 10.5rem; }
.bform__tel input { flex: 1; }
@media (max-width: 420px) { .bform__tel { flex-direction: column; } .bform__tel select { flex: none; } }

.bform__help { font-size: .75rem; color: var(--muted); }

.bform__check { flex-direction: row; align-items: center; gap: .7rem; }
.bform__check input[type="checkbox"] { width: 20px; height: 20px; min-height: 0; accent-color: var(--gold); flex: none; }
.bform__check span { font-size: .875rem; }
.bform__check a { color: var(--gold-lt); }

.bform__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.bform__note { margin: 2rem 0 0; font-size: .75rem; color: var(--muted); line-height: 1.9; }
.bform__submit { margin: 1.5rem 0 0; text-align: center; }
.bform__submit .btn { min-width: min(100%, 22rem); }
.bform__submit .btn:disabled { opacity: .5; cursor: progress; }

.bform__result { margin: 1rem 0 0; text-align: center; font-size: .9375rem; min-height: 1.9em; }
.bform__result.is-ok { color: var(--gold-lt); }
.bform__result.is-ng { color: #e79a9a; }

/* 写真の無いお知らせ。空の枠を出すより、ロゴを敷いて並びを揃える
   （旧サイトのお知らせは19本とも画像を持っていなかった） */
.post-card__thumb--none {
	display: grid;
	place-items: center;
	background:
		radial-gradient(120% 120% at 70% 20%, rgba(194,161,115,.14), transparent 60%),
		var(--bg-3);
	border: 1px solid var(--line-soft);
}
.post-card__thumb--none span {
	font-family: var(--serif);
	font-size: 1.5rem;
	letter-spacing: .08em;
	color: var(--gold);
	opacity: .5;
}

/* =========================================================================
   特割60分の条件
   いちばん安い入口なので、条件を料金表のすぐ下に出す
   ========================================================================= */
.tokuwari {
	margin-top: clamp(1.5rem, 4vw, 2.5rem);
	border: 1px solid var(--gold);
	border-radius: 3px;
	background: linear-gradient(180deg, rgba(194, 161, 115, .10), transparent 70%);
	padding: clamp(1.25rem, 3vw, 1.75rem);
}

.tokuwari__head {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: .5rem 1rem;
	margin: 0 0 1rem;
	padding-bottom: .9rem;
	border-bottom: 1px solid var(--line-soft);
}
.tokuwari__title { font-size: 1rem; letter-spacing: .08em; color: var(--gold-lt); }
.tokuwari__price { font-family: var(--serif); font-size: 1.25rem; color: var(--text); }

.tokuwari__terms { margin: 0; padding: 0; list-style: none; display: grid; gap: .5rem; }
.tokuwari__terms li {
	position: relative;
	padding-left: 1.4em;
	font-size: .875rem;
	color: var(--muted);
}
.tokuwari__terms li::before {
	content: "";
	position: absolute;
	left: .35em;
	top: .85em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--gold);
}

.site-footer__sns {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem 1.25rem;
	list-style: none;
	margin: 2rem 0 0;
	padding: 0;
}
.site-footer__sns li { margin: 0; color: var(--muted); }

/* =========================================================================
   口コミ
   ========================================================================= */
.wrap--narrow { max-width: 640px; }

.rv__msg { text-align: center; color: var(--muted); line-height: 2; }

.rv__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.rv__row { display: block; margin-bottom: 1.6rem; }
.rv__label { display: block; font-size: .8rem; letter-spacing: .1em; color: var(--gold); margin-bottom: .5rem; }
.rv__help { display: block; font-size: .75rem; color: var(--muted); margin-top: .35rem; }

.rv input[type="text"], .rv textarea {
	width: 100%;
	padding: .85rem 1rem;
	background: var(--bg-2);
	border: 1px solid var(--line-soft);
	border-radius: 3px;
	color: var(--fg);
	font: inherit;
}
.rv textarea { resize: vertical; }

/* 星は右から左に並べて、ホバー中の星より左を光らせる（CSSだけで完結させる） */
.rv__stars { display: inline-flex; flex-direction: row-reverse; gap: .15em; font-size: 2rem; line-height: 1; }
.rv__stars input { position: absolute; opacity: 0; width: 0; height: 0; }
.rv__stars label { color: #3a342e; cursor: pointer; transition: color .12s; }
.rv__stars input:checked ~ label,
.rv__stars label:hover,
.rv__stars label:hover ~ label { color: var(--gold-lt); }
.rv__stars input:focus-visible + label { outline: 2px solid var(--gold); outline-offset: 2px; }

.rv__send { width: 100%; margin-top: .5rem; }
.rv__note { font-size: .75rem; color: var(--muted); margin-top: 1.2rem; line-height: 1.9; }

/* 一覧・トップの表示 */
.reviews { display: grid; gap: 1rem; }
.review { background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: 3px; padding: 1.2rem 1.3rem; }
.review__head { display: flex; align-items: baseline; gap: .7rem; flex-wrap: wrap; }
.review__stars { color: var(--gold-lt); letter-spacing: .08em; }
.review__who { font-size: .85rem; }
.review__meta { font-size: .75rem; color: var(--muted); margin-left: auto; }
.review__body { margin: .7rem 0 0; font-size: .9375rem; white-space: pre-wrap; }
.review__staff { font-size: .78rem; color: var(--gold); margin-top: .5rem; }

/* 口コミの投稿画面では下部の固定ボタンを出さない。
   ここは書いてもらう画面で、送信ボタンに重なってしまう。 */
body.is-review .mobile-cta { display: none; }

/* =========================================================================
   コラム（star_column）の本文末尾
   記事だけ読んで帰らせない。予約導線と次の記事をそのまま下に置く。
   ========================================================================= */
.col-cta {
	margin: 3rem 0 0;
	padding: 1.5rem;
	border: 1px solid var(--line-soft);
	border-radius: 3px;
	text-align: center;
}
.col-cta p { margin: 0 0 .9rem; }
.col-cta p:last-child { margin: 0; }

.col-related { margin: 2.5rem 0 0; }
.col-related h2 {
	font-family: var(--serif);
	font-size: 1.125rem;
	color: var(--gold-lt);
	margin: 0 0 .75rem;
}
.col-related ul { margin: 0; padding-left: 1.2em; line-height: 2; }
.col-related a { color: var(--gold-lt); }

/* 確定画面 */
.cf { background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: 3px; padding: 1.4rem 1.5rem; }
.cf__kv { margin: 0 0 1.4rem; display: grid; grid-template-columns: 5em 1fr; gap: .5rem 1rem; font-size: .95rem; }
.cf__kv dt { color: var(--gold); font-size: .85rem; }
.cf__kv dd { margin: 0; }
.cf__meet { border-top: 1px solid var(--line-soft); padding-top: 1.2rem; }
.cf__label { font-size: .78rem; letter-spacing: .12em; color: var(--gold); margin: 0 0 .5rem; }
.cf__addr { margin: 0 0 1rem; line-height: 1.9; }
.cf__note { font-size: .85rem; color: var(--muted); line-height: 1.9; margin: 1rem 0 0; }
.cf__foot { font-size: .8rem; color: var(--muted); margin: 1.4rem 0 0; }

/* 出勤予定（スタッフ詳細。G-HEALのiCalから1人ぶん） */
.shift {
	display: grid;
	/*
	 * 枠幅は「9/23(水)」＋「12:00〜翌0:00」＋余白が収まる幅にする。
	 * 8.5rem では時間が枠外へ出て枠線に重なっていた（2026-09-19 実測）。
	 */
	grid-template-columns: repeat(auto-fill, minmax(10.5rem, 1fr));
	gap: .4rem;
	margin: .75rem 0 0;
	padding: 0;
	list-style: none;
}
.shift__item {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	/* 想定より長い表記が来ても、はみ出す代わりに下へ回す */
	flex-wrap: wrap;
	gap: .15rem .5rem;
	padding: .5rem .65rem;
	background: var(--bg-2);
	border: 1px solid var(--line);
	border-left: 2px solid var(--gold);
}
.shift__d { font-size: .8125rem; color: var(--text); font-variant-numeric: tabular-nums; }
.shift__t { font-size: .75rem; color: var(--muted); font-variant-numeric: tabular-nums; white-space: nowrap; }
.shift__note { margin: .6rem 0 0; font-size: .6875rem; color: var(--muted); }

/* 出勤予定が無いとき。何も出さないと「載らない人」だと誤解されるので、
   空であることをはっきり書く */
.shift__empty { color: var(--muted); font-size: .9375rem; margin: 0 0 .4rem; }
