/* ==========================================================================
   Care Salon Chiba — メインスタイル
   メニュー表の世界観（クリーム地 × ボタニカル × 明朝体）を踏襲
   ========================================================================== */

:root {
	--bg: #f8f6ef;
	--surface: #fffdf7;
	--ink: #3e352b;
	--brown: #5a4a3a;
	--green: #7d9b7a;
	--green-dark: #5f7d5c;
	--rose: #d8a7a0;
	--gold: #b49b6c;
	--line: #e2dccd;
	--font-serif: 'Shippori Mincho', 'Hiragino Mincho ProN', serif;
	--font-sans: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.9;
	letter-spacing: 0.03em;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.75; }
ul { list-style: none; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* --------------------------------------------------------------------------
   ヘッダー
   -------------------------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	/* backdrop-filterはfixed子孫(.site-nav)の包含ブロックを作りモバイルナビを壊すため使わない */
	background: rgba(248, 246, 239, 0.97);
	border-bottom: 1px solid var(--line);
}

.header-inner {
	max-width: 1160px;
	margin: 0 auto;
	padding: 12px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.site-brand { display: flex; flex-direction: column; line-height: 1.3; }
.brand-en { font-family: var(--font-serif); font-size: 22px; color: var(--brown); letter-spacing: 0.06em; }
.brand-ja { font-size: 11px; color: var(--gold); letter-spacing: 0.1em; white-space: nowrap; }

.site-nav { display: flex; align-items: center; gap: 24px; }
.nav-list { display: flex; gap: 22px; }
.nav-list a { font-family: var(--font-serif); font-size: 15px; color: var(--ink); white-space: nowrap; }
.nav-list a:hover { color: var(--green-dark); opacity: 1; }

.nav-tel {
	font-family: var(--font-serif);
	font-size: 15px;
	color: var(--brown);
	border: 1px solid var(--gold);
	border-radius: 999px;
	padding: 6px 18px;
	white-space: nowrap;
}

.nav-reserve {
	font-family: var(--font-serif);
	font-size: 15px;
	color: #fff;
	background: var(--green-dark);
	border-radius: 999px;
	padding: 7px 20px;
	white-space: nowrap;
}
.nav-reserve:hover { opacity: 0.85; color: #fff; }

.nav-toggle { display: none; }

/* --------------------------------------------------------------------------
   ヒーロー
   -------------------------------------------------------------------------- */
/* svh対応ブラウザではアドレスバー伸縮による高さのガタつきを防ぐ */
.hero { position: relative; height: min(78vh, 640px); overflow: hidden; }
@supports (height: 100svh) {
	.hero { height: min(78svh, 640px); }
}
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(to bottom, rgba(62, 53, 43, 0.28), rgba(62, 53, 43, 0.42));
}
.hero-copy {
	position: absolute;
	left: 50%; top: 50%;
	transform: translate(-50%, -50%);
	width: min(92%, 900px);
	color: #fff;
	text-shadow: 0 1px 12px rgba(40, 32, 24, 0.5);
	text-align: center;
}
.hero-en { font-family: var(--font-serif); font-size: 18px; letter-spacing: 0.24em; margin-bottom: 8px; }
.hero-title { font-family: var(--font-serif); font-size: clamp(24px, 4.2vw, 40px); font-weight: 500; line-height: 1.6; }
.hero-sub { margin-top: 14px; font-size: clamp(13px, 1.8vw, 16px); letter-spacing: 0.12em; }

/* --------------------------------------------------------------------------
   セクション共通
   -------------------------------------------------------------------------- */
.section { padding: 72px 0; }
.section:nth-of-type(even) { background: var(--surface); }

.section-title {
	font-family: var(--font-serif);
	font-size: clamp(22px, 3vw, 28px);
	font-weight: 500;
	color: var(--brown);
	margin-bottom: 28px;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.section-title .en {
	font-size: 13px;
	letter-spacing: 0.28em;
	color: var(--green);
	text-transform: uppercase;
}
.section-lead { margin-bottom: 28px; }

.more-link { margin-top: 18px; }
.more-link a { font-family: var(--font-serif); letter-spacing: 0.08em; }
.more-link a::after { content: " →"; color: var(--gold); }
.more-link.center { text-align: center; }
.more-link.center a::after { content: none; }

/* ボタン */
.btn {
	display: inline-block;
	font-family: var(--font-serif);
	padding: 14px 36px;
	border-radius: 999px;
	letter-spacing: 0.08em;
	text-align: center;
}
.btn-outline { border: 1px solid var(--brown); color: var(--brown); }
.btn-tel { background: var(--brown); color: #fff !important; display: inline-flex; flex-direction: column; line-height: 1.5; }
.btn-tel .btn-label { font-size: 12px; opacity: 0.85; }
.btn-tel .btn-value { font-size: 20px; letter-spacing: 0.08em; }
.btn-line { background: #06c755; color: #fff !important; padding: 18px 36px; }
.btn-line-mark { font-weight: 700; letter-spacing: 0.04em; margin-right: 2px; }
.btn-reserve { background: var(--green-dark); color: #fff !important; display: inline-flex; flex-direction: column; line-height: 1.5; }
.btn-reserve .btn-label { font-size: 12px; opacity: 0.85; }
.btn-reserve .btn-value { font-size: 18px; letter-spacing: 0.08em; }

/* ヒーロー内のWEB予約ボタン */
.hero-reserve {
	display: inline-block;
	margin-top: 22px;
	padding: 14px 44px;
	font-size: 16px;
	box-shadow: 0 4px 20px rgba(40, 32, 24, 0.35);
}
.btn-hotpepper { background: #ef7a00; color: #fff !important; }

.reserve-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
	align-items: center;
}

/* NEWタグ */
.tag-new {
	display: inline-block;
	background: var(--rose);
	color: #fff;
	font-size: 11px;
	font-family: var(--font-sans);
	letter-spacing: 0.1em;
	border-radius: 3px;
	padding: 1px 8px;
	margin-left: 8px;
	vertical-align: middle;
}

/* --------------------------------------------------------------------------
   お知らせ
   -------------------------------------------------------------------------- */
.news-list li { border-bottom: 1px dotted var(--line); }
.news-list li:first-child { border-top: 1px dotted var(--line); }
.news-list a {
	display: flex;
	gap: 24px;
	align-items: baseline;
	padding: 16px 6px;
	color: var(--ink);
}
.news-list time { font-family: var(--font-serif); color: var(--gold); white-space: nowrap; font-size: 14px; }
.news-list .news-title { flex: 1; }

/* --------------------------------------------------------------------------
   リニューアル訴求
   -------------------------------------------------------------------------- */
.renewal-grid {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 48px;
	align-items: center;
}
.renewal-text p { margin-bottom: 14px; }
.renewal-note {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 12px 18px;
	font-size: 14px;
}
.renewal-img img { border-radius: 8px; box-shadow: 0 8px 32px rgba(90, 74, 58, 0.14); }

/* --------------------------------------------------------------------------
   メニューカード
   -------------------------------------------------------------------------- */
.card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.menu-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.menu-card img { aspect-ratio: 4 / 3; object-fit: cover; }
.menu-card h3 {
	font-family: var(--font-serif);
	font-weight: 500;
	font-size: 19px;
	color: var(--brown);
	padding: 18px 20px 4px;
}
.menu-card p { padding: 0 20px; font-size: 14px; }
.menu-card .price {
	font-family: var(--font-serif);
	color: var(--gold);
	font-size: 17px;
	padding: 10px 20px 20px;
	margin-top: auto;
}

/* --------------------------------------------------------------------------
   ギャラリー
   -------------------------------------------------------------------------- */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
}
.gallery-grid img {
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 8px;
}

/* --------------------------------------------------------------------------
   アクセス
   -------------------------------------------------------------------------- */
.access-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 40px;
	align-items: start;
}
.access-map iframe, .access-map-section iframe { border-radius: 8px; }

.info-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.info-table th, .info-table td { padding: 12px 8px; border-bottom: 1px dotted var(--line); text-align: left; vertical-align: top; }
.info-table th { color: var(--green-dark); font-weight: 500; white-space: nowrap; width: 6.5em; font-family: var(--font-serif); }

/* --------------------------------------------------------------------------
   下層ページ共通
   -------------------------------------------------------------------------- */
.page-hero { position: relative; height: 240px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.62); }
.page-hero-plain { height: 150px; background: linear-gradient(135deg, #ece7d9, var(--bg)); }
.page-title {
	position: relative;
	font-family: var(--font-serif);
	font-weight: 500;
	color: #fff;
	font-size: clamp(24px, 3.4vw, 32px);
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.page-hero-plain .page-title { color: var(--brown); }
.page-title .en { font-size: 13px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--rose); }

/* --------------------------------------------------------------------------
   メニューページ（料金表 — メニュー表フライヤー風）
   -------------------------------------------------------------------------- */
.menu-page { padding: 56px 20px 72px; max-width: 760px; }
.menu-lead { text-align: center; margin-bottom: 48px; }

.menu-section { margin-bottom: 52px; }
.menu-category {
	font-family: var(--font-serif);
	font-weight: 500;
	color: var(--brown);
	border-bottom: 1px solid var(--rose);
	padding-bottom: 8px;
	margin-bottom: 18px;
	display: flex;
	align-items: baseline;
	gap: 14px;
}
.menu-category .en { font-size: 24px; letter-spacing: 0.04em; }
.menu-category .ja { font-size: 14px; color: var(--gold); letter-spacing: 0.12em; }

.menu-item {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 2px;
	border-bottom: 1px dotted #cfc5ae;
}
.menu-item dt { flex: 1; }
.menu-item dd {
	font-family: var(--font-serif);
	white-space: nowrap;
	color: var(--ink);
	font-size: 17px;
}
.item-desc { display: block; font-size: 12.5px; color: var(--green-dark); font-family: var(--font-sans); }

.menu-note {
	font-size: 13.5px;
	color: var(--green-dark);
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 10px 16px;
	margin-top: 12px;
}
.menu-caution {
	text-align: center;
	font-family: var(--font-serif);
	color: var(--brown);
	margin-top: 40px;
	letter-spacing: 0.1em;
}

/* --------------------------------------------------------------------------
   サロン紹介ページ
   -------------------------------------------------------------------------- */
.salon-page { padding: 56px 20px 72px; }
.salon-concept { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.salon-concept .section-title { align-items: center; }
.salon-concept p { margin-bottom: 12px; text-align: left; }

.salon-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
	margin-bottom: 64px;
}
.feature img { aspect-ratio: 16 / 10; object-fit: cover; border-radius: 8px; margin-bottom: 14px; }
.feature h3 { font-family: var(--font-serif); font-weight: 500; color: var(--brown); font-size: 18px; margin-bottom: 6px; }
.feature p { font-size: 14.5px; }

/* --------------------------------------------------------------------------
   アクセスページ
   -------------------------------------------------------------------------- */
.access-page { padding: 56px 20px 72px; max-width: 860px; }
.access-page section { margin-bottom: 48px; }
.hours-note { font-size: 13.5px; color: var(--green-dark); margin-top: 14px; }
.hours-note-inline { font-size: 12px; color: var(--green-dark); }
.footer-table .hours-note-inline { color: #b5ac9c; }
.access-parking p { margin-bottom: 10px; }

/* --------------------------------------------------------------------------
   お知らせ・記事ページ
   -------------------------------------------------------------------------- */
.news-page, .single-page { padding: 56px 20px 72px; max-width: 760px; }
.news-list-large a { padding: 20px 6px; }

.entry-header { margin-bottom: 28px; border-bottom: 1px solid var(--line); padding-bottom: 18px; }
.entry-header time { font-family: var(--font-serif); color: var(--gold); }
.entry-title { font-family: var(--font-serif); font-weight: 500; color: var(--brown); font-size: 24px; margin-top: 6px; }
.entry-content p { margin-bottom: 16px; }
.entry-content h2, .entry-content h3 { font-family: var(--font-serif); color: var(--brown); margin: 28px 0 12px; }
.entry-content ul { list-style: disc; padding-left: 1.5em; margin-bottom: 16px; }
.entry-content ol { list-style: decimal; padding-left: 1.5em; margin-bottom: 16px; }
.entry-content li { margin-bottom: 4px; }
.entry-content figure { margin: 16px 0; }
.entry-content .aligncenter { margin-left: auto; margin-right: auto; }
.entry-content .alignleft { float: left; margin: 0 16px 8px 0; }
.entry-content .alignright { float: right; margin: 0 0 8px 16px; }
.entry-content .wp-caption { max-width: 100%; }
.entry-content .wp-caption-text { font-size: 13px; color: var(--green-dark); text-align: center; }

/* WPコアが出力するスクリーンリーダー用テキストを視覚的に隠す */
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	border: 0;
	word-wrap: normal;
}

/* スパム対策ハニーポット: 画面外に隠す（display:noneはボットに検知されやすいため使わない） */
.bsc-hp-field {
	position: absolute !important;
	left: -9999px !important;
	top: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* お問い合わせフォーム（Contact Form 7） */
.wpcf7 { max-width: 640px; margin: 0 auto; }
.wpcf7 label { display: block; margin-bottom: 20px; font-family: var(--font-serif); color: var(--brown); font-size: 15px; }
.wpcf7 input[type="text"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
	display: block;
	width: 100%;
	margin-top: 6px;
	padding: 12px 14px;
	font-family: var(--font-sans);
	font-size: 16px;
	color: var(--ink);
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 8px;
	box-sizing: border-box;
}
.wpcf7 input:focus, .wpcf7 textarea:focus { outline: 2px solid var(--green); border-color: var(--green); }
.wpcf7 textarea { min-height: 180px; resize: vertical; }
.wpcf7 .form-note { font-size: 13px; color: var(--green-dark); margin-bottom: 20px; }
.wpcf7 input[type="submit"] {
	display: block;
	margin: 0 auto;
	font-family: var(--font-serif);
	font-size: 16px;
	letter-spacing: 0.1em;
	color: #fff;
	background: var(--brown);
	border: none;
	border-radius: 999px;
	padding: 14px 56px;
	cursor: pointer;
	transition: opacity 0.2s;
}
.wpcf7 input[type="submit"]:hover { opacity: 0.85; }
.wpcf7 .wpcf7-not-valid-tip { color: #c0392b; font-size: 13px; font-family: var(--font-sans); }
.wpcf7 .wpcf7-response-output { border-radius: 8px; padding: 12px 16px; font-size: 14px; }

.pagination { margin-top: 32px; text-align: center; }
.pagination .page-numbers { display: inline-block; padding: 6px 12px; margin: 0 2px; border: 1px solid var(--line); border-radius: 4px; }
.pagination .current { background: var(--brown); color: #fff; border-color: var(--brown); }

/* --------------------------------------------------------------------------
   フッターCTA・フッター
   -------------------------------------------------------------------------- */
.footer-cta {
	background: linear-gradient(135deg, #efe9dc, #f6efe7);
	padding: 64px 0;
	text-align: center;
}
.footer-cta .section-title { align-items: center; }
.footer-cta-lead { margin-bottom: 28px; }

.site-footer {
	background: #3e352b;
	color: #d9d2c5;
	padding: 56px 0 24px;
	font-size: 14px;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 40px;
	margin-bottom: 36px;
}
.footer-brand { font-family: var(--font-serif); font-size: 22px; color: #fff; margin-bottom: 16px; letter-spacing: 0.06em; }
.footer-table th, .footer-table td { padding: 6px 10px 6px 0; text-align: left; vertical-align: top; }
.footer-table th { color: var(--gold); font-weight: 400; white-space: nowrap; }
.footer-table a { color: #d9d2c5; }
.footer-socials { margin-top: 14px; display: flex; gap: 18px; }
.footer-socials a { color: var(--gold); font-family: var(--font-serif); }
.footer-socials a::after { content: " ↗"; font-size: 12px; }
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { color: #d9d2c5; font-family: var(--font-serif); }
.copyright { text-align: center; font-size: 12px; color: #8f8678; border-top: 1px solid #55493c; padding-top: 20px; }

/* --------------------------------------------------------------------------
   レスポンシブ
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
	.nav-toggle {
		display: block;
		background: none;
		border: none;
		width: 44px;
		height: 44px;
		cursor: pointer;
		position: relative;
		z-index: 210;
	}
	.nav-toggle span {
		display: block;
		width: 24px;
		height: 2px;
		background: var(--brown);
		margin: 5px auto;
		transition: transform 0.25s, opacity 0.25s;
	}
	.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
	.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

	.site-nav {
		position: fixed;
		inset: 0;
		background: var(--bg);
		flex-direction: column;
		justify-content: center;
		gap: 32px;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.25s;
		z-index: 200;
	}
	.site-nav.is-open { opacity: 1; visibility: visible; }
	.nav-list { flex-direction: column; text-align: center; gap: 20px; }
	.nav-list a { font-size: 19px; }

	.renewal-grid, .access-grid, .footer-grid { grid-template-columns: 1fr; }
	.card-grid { grid-template-columns: 1fr; }
	.salon-features { grid-template-columns: 1fr; }
	.section { padding: 52px 0; }
	.hero { height: 66vh; }
	@supports (height: 100svh) {
		.hero { height: 66svh; }
	}
}
