/*
Theme Name: Sho & Jeric Salon Academy
Theme URI: https://shojeric.com
Author: sho & jeric salon academy
Author URI: https://shojeric.com
Description: sho & jeric salon academy 横浜元町 カスタムテーマ
Version: 1.0.0
License: Private
Text Domain: shojeric
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400&family=Noto+Sans+JP:wght@300;400;500&display=swap');

/* ── VARIABLES ── */
:root {
  --cream: #FAF8F4;
  --ink: #1C1A17;
  --ink-light: #6B6660;
  --ink-muted: #A09A94;
  --border: rgba(28,26,23,0.12);
  --border-strong: rgba(28,26,23,0.22);
  --accent: #8B6F5E;
  --accent-light: #F0EAE4;
  --line-green: #06C755;
  --serif: 'Noto Serif JP', serif;
  --sans: 'Noto Sans JP', sans-serif;
  --radius: 4px;
  --radius-lg: 8px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

/* WordPress core overrides */
.wp-block-image img { height: auto; }
.alignnone, .alignleft, .alignright, .aligncenter { max-width: 100%; }

/* ── NAV ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 60px;
  background: var(--cream);
  border-bottom: 0.5px solid var(--border);
}
.site-branding a {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--ink);
}
.main-navigation ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-navigation ul li a {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--ink-light);
  transition: color 0.2s;
}
.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item > a { color: var(--ink); }
.main-navigation ul li.current-menu-item > a {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}
.nav-cta-btn {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 8px 20px;
  background: var(--ink);
  color: var(--cream) !important;
  border-radius: var(--radius);
  transition: opacity 0.2s;
  display: inline-block;
}
.nav-cta-btn:hover { opacity: 0.8; }

/* ── PAGE HEADER ── */
.page-header-block {
  padding: 64px 40px 48px;
  border-bottom: 0.5px solid var(--border);
}
.page-eyebrow {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.page-title-main {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 32px;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.page-sub-text {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.9;
  max-width: 520px;
}

/* ── SECTION UTILS ── */
.site-section { padding: 48px 40px; }
.site-section + .site-section { border-top: 0.5px solid var(--border); }
.section-eyebrow {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-heading {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 6px;
}
.section-subtext {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.9;
  margin-bottom: 28px;
}
.divider { height: 0.5px; background: var(--border); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 12px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.15s;
  text-decoration: none;
}
.btn:hover { opacity: 0.85; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--ink); color: var(--cream) !important; }
.btn-outline { background: transparent; color: var(--ink) !important; border: 0.5px solid var(--border-strong); }
.btn-line { background: var(--line-green); color: #fff !important; }

/* ── TAGS / BADGES ── */
.tag {
  display: inline-block;
  font-size: 11px;
  padding: 4px 12px;
  border: 0.5px solid var(--border-strong);
  border-radius: 20px;
  color: var(--ink-light);
}
.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 20px;
  vertical-align: middle;
  margin-left: 6px;
}
.badge-pop { background: #E8F0FB; color: #185FA5; }
.badge-rec { background: #E8F9EE; color: #0F6E56; }
.badge-new { background: #FCF0E8; color: #993C1D; }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.hero-text {
  padding: 64px 40px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  border-right: 0.5px solid var(--border);
}
.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  text-transform: uppercase;
}
.hero-h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 36px;
  line-height: 1.45;
  color: var(--ink);
}
.hero-sub {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.9;
  max-width: 340px;
}
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-actions { display: flex; align-items: center; gap: 16px; margin-top: 4px; }
.hero-link {
  font-size: 12px;
  color: var(--ink-light);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.hero-image {
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  overflow: hidden;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── MENU PREVIEW ── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}
.menu-card { background: var(--cream); padding: 28px 24px; }
.menu-card-name {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 8px;
}
.menu-card-desc {
  font-size: 12px;
  color: var(--ink-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.menu-card-price { font-size: 18px; font-weight: 500; color: var(--ink); }
.menu-card-price span { font-size: 11px; font-weight: 300; color: var(--ink-muted); }
.section-footer { display: flex; justify-content: flex-end; }
.text-link {
  font-size: 12px;
  color: var(--ink-light);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.text-link:hover { color: var(--ink); }

/* ── VOICES ── */
.voice-section { background: var(--accent-light); padding: 48px 40px; }
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.voice-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  border: 0.5px solid var(--border);
}
.stars { display: flex; gap: 3px; margin-bottom: 12px; }
.star {
  width: 12px;
  height: 12px;
  background: var(--accent);
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}
.voice-text { font-size: 12px; color: var(--ink-light); line-height: 1.85; margin-bottom: 14px; }
.voice-name { font-size: 11px; color: var(--ink-muted); }

/* ── FEATURES ── */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-item { background: var(--cream); padding: 28px 26px; }
.feature-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--border-strong);
  margin-bottom: 14px;
  line-height: 1;
}
.feature-title { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 8px; }
.feature-body { font-size: 12px; color: var(--ink-light); line-height: 1.85; }

/* ── INFO BAR ── */
.info-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}
.info-item { padding: 28px 32px; border-right: 0.5px solid var(--border); }
.info-item:last-child { border-right: none; }
.info-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.info-val { font-size: 13px; color: var(--ink); line-height: 1.7; }

/* ── CTA SECTION ── */
.cta-section { padding: 56px 40px; text-align: center; }
.cta-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 24px;
  margin-bottom: 10px;
}
.cta-sub { font-size: 13px; color: var(--ink-light); margin-bottom: 28px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-bar { padding: 48px 40px; text-align: center; border-top: 0.5px solid var(--border); }

/* ── MENU PAGE TABLE ── */
.notice-block {
  margin: 24px 40px 0;
  padding: 16px 20px;
  background: var(--accent-light);
  border-radius: var(--radius-lg);
  border: 0.5px solid rgba(139,111,94,0.2);
  font-size: 12px;
  color: var(--ink-light);
  line-height: 1.8;
}
.notice-block strong { color: var(--ink); font-weight: 500; }
.menu-section-block { padding: 40px 40px 0; }
.menu-section-block:last-of-type { padding-bottom: 48px; }
.menu-section-title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 16px;
}
.menu-section-title::after { content: ''; flex: 1; height: 0.5px; background: var(--border); }
.menu-table { width: 100%; border-collapse: collapse; margin-bottom: 36px; }
.menu-table th {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  text-align: left;
  padding: 10px 14px;
  border-bottom: 0.5px solid var(--border-strong);
  text-transform: uppercase;
}
.menu-table th:last-child { text-align: right; }
.menu-table td {
  font-size: 13px;
  padding: 18px 14px;
  border-bottom: 0.5px solid var(--border);
  vertical-align: top;
  color: var(--ink);
  line-height: 1.5;
}
.menu-table tr:last-child td { border-bottom: none; }
.menu-table td.desc { font-size: 12px; color: var(--ink-light); line-height: 1.8; }
.menu-table td.price { text-align: right; white-space: nowrap; font-weight: 500; }
.menu-table td.price span { display: block; font-size: 11px; font-weight: 300; color: var(--ink-muted); }
.menu-table tbody tr:hover td { background: var(--accent-light); }
.option-section { padding: 40px 40px 48px; border-top: 0.5px solid var(--border); }
.option-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 16px; }
.option-card { border: 0.5px solid var(--border); border-radius: var(--radius-lg); padding: 20px; }
.option-name { font-size: 13px; color: var(--ink); margin-bottom: 8px; }
.option-price { font-size: 18px; font-weight: 500; color: var(--ink); }
.option-price span { font-size: 11px; font-weight: 300; color: var(--ink-muted); }

/* ── FAQ ── */
.faq-section { background: var(--accent-light); padding: 48px 40px; }
.faq-list { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  border: 0.5px solid rgba(139,111,94,0.15);
}
.faq-q { font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 8px; }
.faq-a { font-size: 12px; color: var(--ink-light); line-height: 1.85; }

/* ── BOOKING ── */
.method-section { padding: 48px 40px; }
.method-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.method-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.method-card { border: 0.5px solid var(--border-strong); border-radius: var(--radius-lg); overflow: hidden; }
.method-card.featured { border: 1.5px solid var(--line-green); }
.method-header { padding: 24px 26px 20px; border-bottom: 0.5px solid var(--border); }
.method-icon-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.method-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.method-icon.line-icon { background: var(--line-green); }
.method-icon.app-icon { background: var(--accent-light); border: 0.5px solid var(--border); }
.method-name { font-size: 15px; font-weight: 500; color: var(--ink); }
.method-badge {
  font-size: 10px; font-weight: 500; padding: 2px 8px;
  background: #E8F9EE; color: #0F6E56;
  border-radius: 20px; margin-left: 8px; vertical-align: middle;
}
.method-desc { font-size: 12px; color: var(--ink-light); line-height: 1.8; }
.method-body { padding: 24px 26px; }
.steps { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.step { display: flex; gap: 14px; align-items: flex-start; }
.step-num {
  width: 22px; height: 22px; border-radius: 50%;
  border: 0.5px solid var(--border-strong);
  font-size: 11px; font-weight: 500; color: var(--ink-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.step-text { font-size: 12px; color: var(--ink-light); line-height: 1.75; }
.step-text strong { color: var(--ink); font-weight: 500; }
.btn-full {
  display: block; width: 100%; text-align: center;
  padding: 14px; border-radius: var(--radius);
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  cursor: pointer; border: none;
  transition: opacity 0.2s, transform 0.15s;
  text-decoration: none;
}
.btn-full:hover { opacity: 0.85; transform: translateY(-1px); }
.btn-full-line { background: var(--line-green); color: #fff !important; }
.btn-full-outline { background: transparent; color: var(--ink) !important; border: 0.5px solid var(--border-strong); }
.info-section { background: var(--accent-light); padding: 40px; border-top: 0.5px solid var(--border); }
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 16px; }
.info-card { background: var(--cream); border-radius: var(--radius-lg); padding: 18px 20px; border: 0.5px solid rgba(139,111,94,0.15); }
.info-card-label { font-size: 10px; letter-spacing: 0.1em; color: var(--ink-muted); text-transform: uppercase; margin-bottom: 6px; }
.info-card-val { font-size: 13px; color: var(--ink); line-height: 1.7; }
.fix-section { padding: 40px; border-top: 0.5px solid var(--border); }
.fix-card { display: flex; gap: 20px; align-items: flex-start; border: 0.5px solid var(--border-strong); border-radius: var(--radius-lg); padding: 24px 26px; }
.fix-badge { font-size: 10px; font-weight: 500; padding: 4px 10px; background: #FCF0E8; color: #993C1D; border-radius: 20px; white-space: nowrap; flex-shrink: 0; margin-top: 3px; }
.fix-title { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 8px; }
.fix-desc { font-size: 12px; color: var(--ink-light); line-height: 1.85; }

/* ── ACCESS ── */
.main-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: 380px; border-bottom: 0.5px solid var(--border); }
.map-area { background: var(--accent-light); border-right: 0.5px solid var(--border); overflow: hidden; position: relative; min-height: 340px; }
.map-area iframe { width: 100%; height: 100%; border: none; display: block; min-height: 340px; }
.info-panel { padding: 36px 32px; display: flex; flex-direction: column; }
.info-row { padding: 18px 0; border-bottom: 0.5px solid var(--border); }
.info-row:first-child { padding-top: 0; }
.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-row-label { font-size: 10px; letter-spacing: 0.14em; color: var(--ink-muted); text-transform: uppercase; margin-bottom: 6px; }
.info-row-val { font-size: 13px; color: var(--ink); line-height: 1.75; }
.info-row-val a { color: var(--line-green); text-decoration: underline; text-underline-offset: 3px; }
.route-section { padding: 48px 40px; }
.route-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 20px; }
.route-card { border: 0.5px solid var(--border); border-radius: var(--radius-lg); padding: 22px 20px; }
.route-from { font-size: 10px; letter-spacing: 0.1em; color: var(--ink-muted); text-transform: uppercase; margin-bottom: 6px; }
.route-name { font-family: var(--serif); font-size: 15px; color: var(--ink); margin-bottom: 12px; }
.route-time { font-family: var(--serif); font-size: 36px; font-weight: 300; color: var(--ink); line-height: 1; margin-bottom: 4px; }
.route-time-unit { font-size: 11px; color: var(--ink-muted); margin-bottom: 16px; }
.route-steps { display: flex; flex-direction: column; gap: 8px; padding-top: 14px; border-top: 0.5px solid var(--border); }
.route-step { font-size: 11px; color: var(--ink-light); line-height: 1.6; padding-left: 14px; position: relative; }
.route-step::before { content: ''; position: absolute; left: 2px; top: 7px; width: 5px; height: 5px; border-radius: 50%; background: var(--border-strong); }
.hours-section { background: var(--accent-light); padding: 48px 40px; border-top: 0.5px solid var(--border); }
.hours-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 20px; }
.hours-card { background: var(--cream); border-radius: var(--radius-lg); padding: 18px 20px; border: 0.5px solid rgba(139,111,94,0.15); }
.hours-card-label { font-size: 10px; letter-spacing: 0.1em; color: var(--ink-muted); text-transform: uppercase; margin-bottom: 6px; }
.hours-card-val { font-size: 13px; color: var(--ink); line-height: 1.75; }
.hours-note { font-size: 11px; color: var(--ink-muted); margin-top: 14px; line-height: 1.8; }

/* ── SITE FOOTER ── */
.site-footer {
  border-top: 0.5px solid var(--border);
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-name { font-family: var(--serif); font-size: 12px; letter-spacing: 0.1em; color: var(--ink-light); }
.footer-nav ul { list-style: none; display: flex; gap: 24px; }
.footer-nav ul li a { font-size: 11px; color: var(--ink-muted); transition: color 0.2s; }
.footer-nav ul li a:hover { color: var(--ink); }
.site-info { font-size: 11px; color: var(--ink-muted); margin-top: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image { min-height: 260px; }
  .menu-grid { grid-template-columns: 1fr; }
  .voice-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .info-bar { grid-template-columns: 1fr; }
  .info-item { border-right: none; border-bottom: 0.5px solid var(--border); }
  .info-item:last-child { border-bottom: none; }
  .method-grid { grid-template-columns: 1fr; }
  .main-layout { grid-template-columns: 1fr; }
  .map-area { border-right: none; border-bottom: 0.5px solid var(--border); min-height: 260px; }
  .route-grid { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr; }
  .option-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .site-header { padding: 0 20px; }
  .main-navigation { display: none; }
  .page-header-block { padding: 40px 20px 32px; }
  .site-section { padding: 36px 20px; }
  .voice-section { padding: 36px 20px; }
  .faq-section { padding: 40px 20px; }
  .method-section { padding: 36px 20px; }
  .info-section { padding: 36px 20px; }
  .fix-section { padding: 36px 20px; }
  .cta-section, .cta-bar { padding: 40px 20px; }
  .route-section { padding: 36px 20px; }
  .hours-section { padding: 36px 20px; }
  .notice-block { margin: 16px 20px 0; }
  .menu-section-block { padding: 32px 20px 0; }
  .option-section { padding: 32px 20px 40px; }
  .site-footer { flex-direction: column; align-items: flex-start; gap: 16px; padding: 28px 20px; }
  .footer-nav ul { flex-wrap: wrap; gap: 16px; }
  .menu-table th:nth-child(2),
  .menu-table td.desc { display: none; }
}


/* ════════════════════════════════════════
   STAFF PAGE
════════════════════════════════════════ */

.staff-section {
  padding: 0 40px 48px;
}

.staff-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  padding: 48px 0;
}

.staff-photo-wrap {
  background: var(--accent-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 400px;
  flex-shrink: 0;
}

.staff-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink-muted);
  text-align: center;
  padding: 24px;
}

.staff-photo-placeholder p {
  font-size: 11px;
  line-height: 1.7;
}

.staff-info {
  padding: 0 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.staff-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.staff-role {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.staff-name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 28px;
  color: var(--ink);
  line-height: 1.2;
}

.staff-name-ja {
  font-size: 14px;
  color: var(--ink-light);
  margin-left: 8px;
}

.staff-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.specialty-tag {
  font-size: 11px;
  padding: 4px 12px;
  border: 0.5px solid var(--border-strong);
  border-radius: 20px;
  color: var(--ink-light);
}

.staff-message {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.95;
  padding: 20px 0;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

.staff-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.staff-detail-item {
  display: flex;
  gap: 16px;
  font-size: 12px;
  line-height: 1.7;
}

.staff-detail-label {
  color: var(--ink-muted);
  white-space: nowrap;
  min-width: 80px;
}

.staff-detail-val {
  color: var(--ink-light);
}

.staff-divider {
  height: 0.5px;
  background: var(--border);
  margin: 0;
}

/* Philosophy */
.staff-philosophy {
  background: var(--accent-light);
  padding: 48px 40px;
  border-top: 0.5px solid var(--border);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 24px;
}

.philosophy-item {
  background: var(--cream);
  padding: 28px 24px;
}

.philosophy-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--border-strong);
  margin-bottom: 14px;
  line-height: 1;
}

.philosophy-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.5;
}

.philosophy-body {
  font-size: 12px;
  color: var(--ink-light);
  line-height: 1.85;
}

/* Staff Responsive */
@media (max-width: 900px) {
  .staff-card {
    grid-template-columns: 1fr;
    padding: 36px 0;
  }
  .staff-photo-wrap {
    max-height: 280px;
    aspect-ratio: 4/3;
  }
  .staff-info { padding: 24px 0 0; }
  .philosophy-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .staff-section { padding: 0 20px 36px; }
  .staff-philosophy { padding: 36px 20px; }
}


/* ════════════════════════════════════════
   VOICE PAGE
════════════════════════════════════════ */

/* 総評バー */
.voice-summary-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-bottom: 0.5px solid var(--border);
}

.voice-summary-item {
  flex: 1;
  padding: 28px 32px;
  text-align: center;
}

.voice-summary-divider {
  width: 0.5px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

.voice-summary-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}

.voice-summary-stars {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 6px;
}

.voice-summary-label {
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

/* カテゴリセクション */
.voice-category-section {
  padding: 48px 40px;
  border-top: 0.5px solid var(--border);
}

.voice-category-section.alt {
  background: var(--accent-light);
}

.voice-category-header {
  margin-bottom: 24px;
}

.voice-grid-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.voice-card-full {
  background: var(--cream);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.voice-category-section.alt .voice-card-full {
  background: var(--cream);
}

.voice-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 8px;
}

.stars-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 3px;
}

.stars-row .star {
  display: inline-block;
  flex-shrink: 0;
}

.voice-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.voice-menu-tag {
  font-size: 10px;
  font-weight: 500;
  padding: 3px 10px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 20px;
  border: 0.5px solid rgba(139,111,94,0.2);
}

.voice-profile {
  font-size: 11px;
  color: var(--ink-muted);
}

.voice-title {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 12px;
}

.voice-body {
  font-size: 12px;
  color: var(--ink-light);
  line-height: 1.9;
}

/* Googleレビューセクション */
.google-review-section {
  border-top: 0.5px solid var(--border);
  padding: 48px 40px;
}

.google-review-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 680px;
  margin: 0 auto;
}

.google-review-text { flex: 1; }

.google-review-badge {
  text-align: center;
  flex-shrink: 0;
  padding: 24px 32px;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
}

.g-badge-stars {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 8px;
}

.g-badge-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}

.g-badge-label {
  font-size: 11px;
  color: var(--ink-muted);
}

/* Voice Responsive */
@media (max-width: 900px) {
  .voice-grid-full { grid-template-columns: 1fr; }
  .google-review-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .voice-summary-bar { flex-direction: column; }
  .voice-summary-divider { width: 60px; height: 0.5px; }
  .voice-category-section { padding: 36px 20px; }
  .google-review-section { padding: 36px 20px; }
}


/* ── STAFF CATEGORY LABEL & ALT SECTION ── */
.staff-category-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  text-transform: uppercase;
  padding: 0 0 20px;
  border-bottom: 0.5px solid var(--border);
  margin-bottom: 0;
}

.staff-section-alt {
  background: var(--accent-light);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

.staff-contact-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 12px;
}
.staff-contact-link:hover { opacity: 0.7; }


/* ════════════════════════════════════════
   BLOG PAGE
════════════════════════════════════════ */

/* カテゴリフィルター */
.blog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 24px 40px;
  border-bottom: 0.5px solid var(--border);
}

.blog-filter-btn {
  font-size: 11px;
  padding: 5px 14px;
  border: 0.5px solid var(--border-strong);
  border-radius: 20px;
  color: var(--ink-light);
  transition: all 0.2s;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* 記事一覧 */
.blog-section {
  padding: 40px 40px 56px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

/* 記事カード */
.blog-card {
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(28,26,23,0.08);
}

.blog-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* サムネイル */
.blog-card-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--accent-light);
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.blog-card:hover .blog-card-thumb img {
  transform: scale(1.03);
}

.blog-card-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
}

/* カード本文 */
.blog-card-body {
  padding: 20px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.blog-card-date {
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

.blog-card-cat {
  font-size: 10px;
  font-weight: 500;
  padding: 2px 9px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 20px;
  border: 0.5px solid rgba(139,111,94,0.2);
}

.blog-card-title {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 8px;
}

.blog-card-excerpt {
  font-size: 12px;
  color: var(--ink-light);
  line-height: 1.8;
  margin-bottom: 14px;
}

.blog-card-more {
  font-size: 11px;
  color: var(--ink-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-card:hover .blog-card-more {
  color: var(--ink);
}

/* ページネーション */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0.5px solid var(--border-strong);
  border-radius: var(--radius);
  font-size: 12px;
  color: var(--ink-light);
  transition: all 0.2s;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.blog-pagination .page-numbers.prev,
.blog-pagination .page-numbers.next {
  width: auto;
  padding: 0 14px;
}

/* 記事なし */
.blog-empty {
  padding: 80px 0;
  text-align: center;
  font-size: 13px;
  color: var(--ink-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .blog-filter { padding: 20px; }
  .blog-section { padding: 28px 20px 40px; }
  .blog-grid { grid-template-columns: 1fr; gap: 16px; }
}
