/* ============================================
   Pieris - Rental Salon
   Shared Stylesheet
   ============================================ */

/* --- CSS Variables (色・フォント一括管理) --- */
:root {
  /* Colors */
  --color-primary: #8b6914;       /* ゴールド/ブラウン — CTA・アクセント */
  --color-primary-light: #a88a3d;
  --color-primary-dark: #6d5210;
  --color-green: #6fbc3e;         /* LINE・ロゴ葉っぱ（明るめに調整） */
  --color-green-light: #83ce5a;
  --color-orange: #e8941a;        /* 予約ボタン */
  --color-text: #333333;
  --color-text-light: #666666;
  --color-text-muted: #999999;
  --color-bg: #ffffff;
  --color-bg-alt: #f8f6f2;       /* セクション交互背景 */
  --color-bg-dark: #2c2c2c;      /* フッター */
  --color-border: #e0dcd5;
  --color-white: #ffffff;

  /* Typography */
  --font-heading: "Cormorant Garamond", "Noto Serif JP", serif;
  --font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-accent: "Cormorant Garamond", serif;

  /* Spacing */
  --section-padding: 80px 0;
  --container-width: 1200px;
  --gap: 24px;

  /* Transitions */
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-primary-light);
}

ul, ol {
  list-style: none;
}

/* --- Container --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* デスクトップ解像度別コンテナ幅（本文が中央に寄りすぎないように） */
@media (min-width: 1280px) {
  :root {
    --container-width: 1200px;
  }
}

@media (min-width: 1440px) {
  :root {
    --container-width: 1320px;
  }
}

@media (min-width: 1680px) {
  :root {
    --container-width: 1400px;
  }
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--transition);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 10px 20px;
  height: 80px;
}

.header-top-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 60px;
  width: auto;
}

.logo-text {
  font-family: var(--font-accent);
  font-size: 1.4rem;
  color: var(--color-text);
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--color-text-light);
  letter-spacing: 0.1em;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  border-top: 1px solid #eee;
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-links a {
  color: var(--color-text);
  font-size: 0.85rem;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.nav-links a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

/* Dropdown in nav */
.nav-item--dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  font-size: 0.85rem;
  font-family: inherit;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.nav-dropdown-trigger:hover,
.nav-item--dropdown:hover .nav-dropdown-trigger,
.nav-dropdown-trigger[aria-expanded="true"] {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.nav-dropdown-caret {
  width: 12px;
  height: 12px;
  transition: transform var(--transition);
}

.nav-item--dropdown:hover .nav-dropdown-caret,
.nav-dropdown-trigger[aria-expanded="true"] .nav-dropdown-caret {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 100;
}

.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown,
.nav-dropdown-trigger[aria-expanded="true"] + .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  color: var(--color-text);
  font-size: 0.85rem;
  border-radius: 4px;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}

.nav-dropdown a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.nav-cta {
  display: flex;
  gap: 8px;
  margin-left: 16px;
}

/* CTA Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn::before {
  content: "›";
  display: inline-block;
  margin-right: 6px;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.1em;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform var(--transition);
}

.btn:hover::before {
  transform: translate(3px, -1px);
}

/* 矢印不要なボタン（アイコンのみ・SNS等）は .btn--no-arrow を付与 */
.btn.btn--no-arrow::before {
  content: none;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.btn-green {
  background: var(--color-green);
  color: var(--color-white);
}

.btn-green:hover {
  background: var(--color-green-light);
  color: var(--color-white);
}

.btn-orange {
  background: var(--color-orange);
  color: var(--color-white);
}

.btn-orange:hover {
  background: #d4850f;
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-lg {
  padding: 14px 36px;
  font-size: 1rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  margin: 5px 0;
  transition: all var(--transition);
}

/* --- Hero --- */
.hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  max-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 130px; /* header height (2-row: 80+50) */
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg--split {
  display: flex;
  background: none;
}

.hero-bg-half {
  flex: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-bg--split .hero-bg-half + .hero-bg-half {
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px 20px;
}

.hero-content .logo-mark {
  width: 700px;
  max-width: 92%;
  height: auto;
  margin: 8px auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

.hero-content p {
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.55);
  font-weight: 500;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Section Common --- */
.section {
  padding: var(--section-padding);
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--color-text-light);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .section-header .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.04em;
  }
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.section-header .section-subtext {
  display: block;
  font-size: 0.9rem;
  color: var(--color-green, var(--color-primary));
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  font-weight: 500;
}
@media (max-width: 689px) {
  .section-header .section-subtext {
    font-size: 0.8rem;
  }
}

.section-header p {
  margin-top: 16px;
  color: var(--color-text-light);
  font-size: 0.95rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Card Grid --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.card-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card-body > p {
  text-align: left;
}

.card-body > .btn,
.card-body > a.btn,
.card-body > .btn-group {
  margin-left: auto;
  margin-right: auto;
}

.card-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.5;
}

.card-body p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- News List --- */
.news-list {
  max-width: 800px;
  margin: 0 auto;
}

.news-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  align-items: baseline;
}

.news-item:last-child,
.news-list > :last-child > .news-item {
  border-bottom: none;
}

.news-date {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  white-space: nowrap;
  min-width: 100px;
}

.news-tag {
  font-size: 0.75rem;
  padding: 2px 10px;
  border-radius: 3px;
  background: var(--color-primary);
  color: var(--color-white);
  white-space: nowrap;
}

.news-tag.tag-column {
  background: var(--color-green);
}

.news-tag.tag-case {
  background: #5b7bb3;
}

.news-tag.tag-voice {
  background: #9b6fb5;
}

.news-tag.tag-therapist {
  background: var(--color-green);
}

.news-title {
  font-size: 0.95rem;
  color: var(--color-text);
}

.news-title:hover {
  color: var(--color-primary);
}

/* --- Store Info --- */
.store-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.store-card {
  text-align: center;
}

.store-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.store-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.store-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

/* --- Message Section --- */
.message-section {
  position: relative;
  padding: 100px 0;
  color: var(--color-white);
  text-align: center;
}

.message-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.message-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.message-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

.message-content h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.message-content p {
  font-size: 0.95rem;
  line-height: 2;
  margin-bottom: 32px;
}

/* --- Footer (WP互換 2カラム) --- */
.footer {
  background: var(--color-bg-dark);
  color: #ccc;
  padding: 60px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  align-items: start;
}

.footer-col {
  min-width: 0;
}

.footer-col-info {
  text-align: center;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo-img {
  width: 260px;
  max-width: 100%;
  height: auto;
}

.footer-mail-note {
  font-size: 0.8rem;
  color: #aaa;
  margin: 4px 0 6px;
}

.footer-tel {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 12px 0 6px;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.footer-tel a {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-tel a:hover {
  color: var(--color-primary);
}

.footer-contact-line {
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: #ccc;
}

.footer-contact-line a {
  color: #ccc;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-contact-line a:hover {
  color: var(--color-white);
}

.footer-legal-links {
  font-size: 0.82rem;
  margin: 14px 0 20px;
  line-height: 1.8;
}

.footer-legal-links a {
  color: #bbb;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-legal-links a:hover {
  color: var(--color-white);
}

.footer-legal-sep {
  color: #555;
  margin: 0 2px;
}

.footer-sns {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.footer-sns a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid #555;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #ddd;
  transition: all var(--transition);
}

.footer-sns a:hover {
  border-color: #ccc;
  color: var(--color-white);
}

.footer-sns img,
.footer-sns svg {
  width: 18px;
  height: 18px;
  display: block;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 20px;
}

.footer-menu li a {
  display: block;
  color: #ccc;
  font-size: 0.88rem;
  padding: 8px 0;
  border-bottom: 1px dotted #444;
  transition: color var(--transition);
}

.footer-menu li a:hover {
  color: var(--color-white);
}

.footer-bottom {
  text-align: center;
  padding-top: 28px;
  margin-top: 40px;
  border-top: 1px solid #444;
  font-size: 0.78rem;
  color: #888;
}

.footer-copyright {
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.footer-site-link {
  color: #666;
  font-size: 0.75rem;
}

/* --- Voice Label --- */
.voice-label {
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 6px;
}

/* --- Fade-in Animation ---
   デフォルトは可視。JSが効いているときだけ初期 opacity:0 を適用し
   `.visible` が付いたら表示される Progressive Enhancement 型。
   これで JS 遅延・エラー時もコンテンツは常に見える。 */
.fade-in {
  opacity: 1;
  transform: none;
}

.js-ready .fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.js-ready .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-ready .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --- Header Scroll --- */
.header.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

/* --- Sub-page Hero --- */
.page-hero {
  padding: 60px 0;
  background: var(--color-bg-alt);
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.page-hero .eyebrow {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--color-primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.page-hero p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* --- Store Slider (店内ギャラリー・横スクロール) --- */
.store-slider {
  position: relative;
  margin: 16px 0 8px;
}
.store-slider__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  padding-bottom: 8px;
}
.store-slider__track::-webkit-scrollbar { height: 6px; }
.store-slider__track::-webkit-scrollbar-thumb {
  background: var(--color-border, #ddd);
  border-radius: 3px;
}
.store-slider__slide {
  flex: 0 0 70%;
  scroll-snap-align: center;
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-bg-alt);
}
.store-slider__slide img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}
.store-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.95);
  color: var(--color-text, #333);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 5;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.store-slider__btn:hover { background: #fff; transform: translateY(-50%) scale(1.05); }
.store-slider__btn--prev { left: 8px; }
.store-slider__btn--next { right: 8px; }
@media (max-width: 689px) {
  .store-slider__slide { flex: 0 0 85%; }
  .store-slider__slide img { height: 220px; }
  .store-slider__btn { width: 36px; height: 36px; font-size: 1.3rem; }
}

/* --- Store Hero Image (店舗ページ冒頭の大きな写真) --- */
.store-hero-image {
  padding: 0 0 40px;
  background: var(--color-bg-alt);
}
.store-hero-image img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
@media (max-width: 689px) {
  .store-hero-image { padding: 0 0 24px; }
  .store-hero-image img { max-height: 260px; border-radius: 4px; }
}

/* --- Feature List (店舗特徴) --- */
.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.feature-item {
  text-align: center;
  padding: 32px 24px;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.feature-item .feature-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.feature-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- Price Table --- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}

.price-table th,
.price-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}

.price-table th {
  background: var(--color-bg-alt);
  font-weight: 600;
  white-space: nowrap;
}

.price-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--color-primary);
}

.price-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 12px;
}

/* --- Equipment Grid --- */
.equip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.equip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--color-bg-alt);
  border-radius: 6px;
  font-size: 0.9rem;
}

.equip-item::before {
  content: "✓";
  color: var(--color-green);
  font-weight: 700;
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text);
  font-family: var(--font-body);
}

.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--color-primary);
  transition: transform var(--transition);
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 0 20px;
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* --- Steps (利用の流れ) --- */
.steps {
  max-width: 700px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}

.step:last-child {
  border-bottom: none;
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 1.2rem;
  font-weight: 600;
}

.step-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.step-body p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- Contact Form --- */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group label .required {
  color: #c0392b;
  font-size: 0.8rem;
  margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* --- Map embed --- */
.map-embed {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 8px;
}

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
}

/* --- Legal Table --- */
.legal-table {
  width: 100%;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
  vertical-align: top;
}

.legal-table th {
  background: var(--color-bg-alt);
  font-weight: 600;
  white-space: nowrap;
  width: 200px;
}

/* --- Prose (法務テキスト等) --- */
.prose h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 32px 0 12px;
}

.prose p {
  margin-bottom: 16px;
  line-height: 1.9;
}

.prose ul {
  margin-bottom: 16px;
  padding-left: 20px;
}

.prose ul li {
  list-style: disc;
  margin-bottom: 6px;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Two Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* --- Utilities --- */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }

/* --- Responsive --- */
@media (max-width: 768px) {
  :root {
    --section-padding: 56px 0;
  }

  .header-top {
    height: 60px;
    padding: 0 20px;
  }

  .logo img {
    height: 44px;
  }

  .nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  /* Mobile menu overlay */
  .header.open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: -1;
  }

  .header.open .nav,
  .header.open .nav-cta {
    display: flex;
    flex-direction: column;
  }

  .header.open .nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    padding: 24px 20px;
    overflow-y: auto;
    z-index: 999;
    border-top: none;
    height: auto;
    max-width: none;
    gap: 16px;
  }

  .header.open .nav-links {
    flex-direction: column;
    gap: 0;
  }

  .header.open .nav-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    z-index: 1000;
    gap: 8px;
  }

  .header.open .nav-links a {
    padding: 12px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--color-border);
  }

  /* Dropdown on mobile: accordion */
  .header.open .nav-item--dropdown {
    display: block;
    width: 100%;
  }

  .header.open .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
  }

  .header.open .nav-dropdown {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 16px;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .header.open .nav-dropdown-trigger[aria-expanded="true"] + .nav-dropdown {
    max-height: 300px;
  }

  .header.open .nav-dropdown a {
    padding: 12px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--color-border);
  }

  .hero {
    height: 50vh;
    min-height: 350px;
    margin-top: 60px;
  }

  .hero-bg--split {
    flex-direction: column;
  }

  .hero-bg--split .hero-bg-half + .hero-bg-half {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
  }

  .hero-content {
    padding: 28px 22px;
  }

  .hero-content p {
    font-size: 0.88rem;
    letter-spacing: 0.04em;
  }

  .hero-content .logo-mark {
    display: none;
  }

  .card-grid,
  .card-grid--2 {
    grid-template-columns: 1fr;
  }

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

  .section-header h2 {
    font-size: 1.4rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .news-item {
    flex-direction: column;
    gap: 4px;
  }

  .news-date {
    min-width: auto;
  }

  .page-hero {
    margin-top: 60px;
    padding: 40px 0;
  }

  .page-hero h1 {
    font-size: 1.5rem;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

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

  .two-col {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-table th,
  .price-table td {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .nav-links a {
    padding: 8px 8px;
    font-size: 0.8rem;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   Membership Page Components
   ============================================ */

/* 目次ボックス */
.toc-box {
  background: var(--color-bg-alt);
  border: 1px solid #e5ddcc;
  border-left: 4px solid var(--color-primary);
  padding: 24px 32px;
  margin: 0 auto;
  max-width: 720px;
  border-radius: 4px;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-list li {
  padding: 6px 0;
  border-bottom: 1px dashed #e5ddcc;
}

.toc-list li:last-child {
  border-bottom: none;
}

.toc-list a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.95rem;
  display: block;
  padding: 4px 0;
  transition: color 0.2s;
}

.toc-list a::before {
  content: "→ ";
  color: var(--color-primary);
  font-weight: 600;
}

.toc-list a:hover {
  color: var(--color-primary);
}

/* プランカード（メンバーシップ価格表示） */
.plan-card {
  background: var(--color-bg);
  border: 2px solid var(--color-primary);
  border-radius: 8px;
  padding: 32px 24px;
  max-width: 420px;
  margin: 24px auto 0;
  text-align: center;
  box-shadow: 0 4px 12px rgba(139, 105, 20, 0.08);
}

.plan-title {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  padding: 6px 24px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.plan-price {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: 16px;
}

.plan-price-unit {
  font-size: 0.9rem;
  color: var(--color-text-light);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  margin-left: 4px;
}

.plan-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: inline-block;
}

.plan-detail-list li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--color-text);
  font-size: 0.95rem;
}

.plan-detail-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* ボタン中央寄せ */
.btn-center {
  text-align: center;
}

/* 特典アイテム */
.benefit-item {
  max-width: 820px;
  margin: 40px auto 0;
}

.benefit-item h3 {
  border-left: 4px solid var(--color-primary);
  padding-left: 12px;
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.benefit-item p {
  line-height: 1.9;
  color: var(--color-text);
}

.benefit-item ul {
  line-height: 1.9;
  padding-left: 1.5em;
}

.benefit-item .note {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 12px;
}

.note-box {
  background: var(--color-bg-alt);
  border: 1px solid #e5ddcc;
  border-left: 4px solid var(--color-primary);
  padding: 16px 20px;
  margin-top: 20px;
  font-size: 0.9rem;
  line-height: 1.8;
  border-radius: 4px;
}

.benefit-img {
  max-width: 240px;
  height: auto;
  display: block;
  margin: 16px auto;
}

/* ============================================
   Store Page Components (Bakurochou / Matsudo)
   ============================================ */
.subsection-title {
  font-size: 1.3rem;
  border-left: 4px solid var(--color-primary);
  padding-left: 14px;
  margin: 48px 0 20px;
  color: var(--color-text);
}

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

.equipment-item {
  margin: 0;
  background: var(--color-bg);
  border: 1px solid #e5ddcc;
  border-radius: 4px;
  overflow: hidden;
}

.equipment-item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.equipment-item figcaption {
  padding: 12px 14px;
  font-size: 0.85rem;
  line-height: 1.6;
}

.equipment-item figcaption strong {
  display: block;
  color: var(--color-primary);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.equipment-item figcaption span {
  color: var(--color-text-light);
  font-size: 0.82rem;
}

.floorplan {
  max-width: 720px;
  margin: 0 auto 24px;
  text-align: center;
}

.floorplan img {
  max-width: 100%;
  height: auto;
  border: 1px solid #e5ddcc;
  border-radius: 4px;
}

.info-table {
  width: 100%;
  max-width: 820px;
  margin: 0 auto 24px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.info-table th,
.info-table td {
  padding: 14px 18px;
  border: 1px solid #e5ddcc;
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
}

.info-table th {
  background: var(--color-bg-alt);
  color: var(--color-text);
  font-weight: 600;
  width: 30%;
  white-space: nowrap;
}

.plan-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.plan-card-grid .plan-card {
  padding: 24px 16px;
  max-width: none;
  margin: 0;
}

.plan-card-grid .plan-price {
  font-size: 2rem;
}

.plan-card-grid .plan-title {
  font-size: 0.8rem;
  padding: 4px 16px;
  margin-bottom: 12px;
}

.cancel-list {
  margin: 0 0 12px;
  padding-left: 1.5em;
  line-height: 2;
}

@media (max-width: 768px) {
  .equipment-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .plan-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .info-table {
    font-size: 0.85rem;
  }

  .info-table th,
  .info-table td {
    padding: 10px 12px;
    display: block;
    width: 100%;
  }

  .info-table th {
    border-bottom: none;
    font-size: 0.8rem;
  }

  .subsection-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .equipment-gallery {
    grid-template-columns: 1fr;
  }
}

/* CTAボタングループ */
.btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .toc-box {
    padding: 20px 24px;
  }

  .plan-card {
    padding: 24px 20px;
  }

  .plan-price {
    font-size: 2.4rem;
  }

  .benefit-item h3 {
    font-size: 1.1rem;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-group .btn {
    width: 100%;
    max-width: 320px;
  }
}

/* セラピスト紹介ページ */
.therapist-list {
  display: grid;
  gap: 32px;
  max-width: 820px;
  margin: 0 auto;
}

.therapist-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  align-items: start;
}

.therapist-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.therapist-body h3 {
  font-size: 1.2rem;
  margin: 0 0 12px;
  color: var(--color-primary, #b98a5c);
}

.therapist-profile {
  margin: 0 0 10px;
  font-size: 0.95rem;
  color: #555;
}

.therapist-profile strong {
  color: #333;
}

.therapist-body p {
  margin: 0 0 10px;
  line-height: 1.75;
  font-size: 0.95rem;
}

.therapist-meta {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #777;
}

@media (max-width: 768px) {
  .therapist-card {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 16px;
  }

  .therapist-image img {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* --- ご利用の流れ（details/summary FAQ + flow-list） --- */
.flow-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 820px;
  counter-reset: flow;
}

.flow-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #e5e5e5;
  align-items: start;
}

.flow-step:last-child {
  border-bottom: none;
}

.flow-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary, #b98a5c);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-accent, serif);
}

.flow-step-body h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  color: var(--color-primary, #b98a5c);
}

.flow-step-body p {
  margin: 0;
  line-height: 1.8;
  font-size: 0.95rem;
}

.flow-list.flow-list-compact .flow-step {
  padding: 16px 0;
}

.flow-list.flow-list-compact .flow-step-body h3 {
  margin: 0;
}

/* details/summary ベースの FAQ（既存の .faq-item 定義と共存） */
details.faq-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 0;
}

details.faq-item > summary {
  list-style: none;
  padding: 18px 0;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

details.faq-item > summary::-webkit-details-marker {
  display: none;
}

details.faq-item > summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--color-primary, #b98a5c);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

details.faq-item[open] > summary::after {
  content: "−";
}

details.faq-item .faq-answer {
  padding: 0 0 20px;
  max-height: none;
  overflow: visible;
}

details.faq-item .faq-answer p {
  padding: 0;
  line-height: 1.8;
  font-size: 0.95rem;
  color: var(--color-text-light, #555);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .flow-step {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .flow-step-number {
    width: 40px;
    height: 40px;
    font-size: 1.05rem;
  }

  .flow-step-body h3 {
    font-size: 1rem;
  }
}

/* ============================================
   Sidebar (サイドバー + 2カラムレイアウト)
   ============================================ */

/* 2カラムレイアウト: .layout-with-sidebar を付与したセクションで有効化 */
.layout-with-sidebar .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 48px;
  align-items: start;
}

.layout-with-sidebar .layout-main {
  min-width: 0;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
  font-size: 0.9rem;
}

.sidebar-widget {
  background: var(--bg-light, #fafaf7);
  border: 1px solid var(--border, #e5e3dc);
  border-radius: 10px;
  padding: 20px 18px;
}

.sidebar-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary, #9b7c5d);
  color: var(--text, #2c2a26);
  letter-spacing: 0.02em;
}

/* 単純リンクリスト */
.sidebar-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-link-list li {
  border-bottom: 1px dotted var(--border, #d9d7d0);
}

.sidebar-link-list li:last-child {
  border-bottom: none;
}

.sidebar-link-list a {
  display: block;
  padding: 10px 0 10px 14px;
  color: var(--text, #2c2a26);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}

.sidebar-link-list a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--primary, #9b7c5d);
  font-weight: bold;
}

.sidebar-link-list a:hover {
  color: var(--primary, #9b7c5d);
}

/* お知らせリスト */
.sidebar-news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-news-item {
  border-bottom: 1px dotted var(--border, #d9d7d0);
}

.sidebar-news-item:last-child {
  border-bottom: none;
}

.sidebar-news-item a {
  display: block;
  padding: 12px 0;
  color: var(--text, #2c2a26);
  text-decoration: none;
}

.sidebar-news-item a:hover .sidebar-news-text {
  color: var(--primary, #9b7c5d);
}

.sidebar-news-date {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted, #7b7a75);
  margin-bottom: 4px;
}

.sidebar-news-text {
  display: block;
  line-height: 1.55;
  font-size: 0.88rem;
  transition: color 0.2s;
}

/* 最新記事（サムネイル付き） */
.sidebar-article-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-article-item {
  border-bottom: 1px dotted var(--border, #d9d7d0);
}

.sidebar-article-item:last-child {
  border-bottom: none;
}

.sidebar-article-item a {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding: 14px 0;
  color: var(--text, #2c2a26);
  text-decoration: none;
  align-items: start;
}

.sidebar-article-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 4px;
  background: var(--border, #e5e3dc);
}

.sidebar-article-thumb-placeholder {
  display: block;
}

.sidebar-article-body {
  min-width: 0;
}

.sidebar-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-bottom: 4px;
}

.sidebar-article-date {
  font-size: 0.74rem;
  color: var(--text-muted, #7b7a75);
}

.sidebar-article-category {
  font-size: 0.68rem;
  padding: 2px 6px;
  background: var(--primary, #9b7c5d);
  color: #fff;
  border-radius: 3px;
  line-height: 1.3;
}

.sidebar-article-title {
  display: block;
  font-size: 0.85rem;
  line-height: 1.45;
  transition: color 0.2s;
}

.sidebar-article-item a:hover .sidebar-article-title {
  color: var(--primary, #9b7c5d);
}

/* 運営者情報 */
.sidebar-info {
  font-size: 0.85rem;
  line-height: 1.7;
}

.sidebar-logo {
  margin: 0 0 16px;
  text-align: center;
}

.sidebar-logo img {
  max-width: 140px;
  width: 100%;
  height: auto;
  display: inline-block;
}

.sidebar-shop {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dotted var(--border, #d9d7d0);
}

.sidebar-shop:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.sidebar-shop-name {
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--primary, #9b7c5d);
}

.sidebar-shop p {
  margin: 0;
}

/* モバイル: サイドバーを本文下に積む */
@media (max-width: 960px) {
  .layout-with-sidebar .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sidebar {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .sidebar-widget {
    padding: 16px 14px;
  }

  .sidebar-article-item a {
    grid-template-columns: 60px 1fr;
    gap: 10px;
  }

  .sidebar-article-thumb {
    width: 60px;
    height: 60px;
  }
}

/* ============================================
   Breadcrumb
   ============================================ */
.breadcrumb {
  margin-top: 130px; /* header height (2-row: 80+50) */
  padding: 14px 0;
  font-size: 0.85rem;
  color: var(--text-muted, #666);
  background: transparent;
}

.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb li + li::before {
  content: '›';
  color: var(--text-muted, #999);
  font-weight: 300;
  margin-right: 2px;
}

.breadcrumb a {
  color: var(--text-muted, #666);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--primary, #9b7c5d);
  text-decoration: underline;
}

.breadcrumb [aria-current="page"] {
  color: var(--text, #333);
  font-weight: 500;
}

/* ============================================
   CTA Section (共通)
   ============================================ */
.cta-section {
  padding: 64px 0;
  background: transparent;
}

.cta-box {
  margin: 0;
  padding: 56px 40px;
  border: 2px solid var(--border, #ddd9cf);
  border-radius: 12px;
  text-align: center;
  background: #fff;
}

/* メインカラム内にCTAがある場合はfull-width、単独section時は従来通り中央寄せ */
.cta-section .container > .cta-box,
.cta-section > .cta-box {
  max-width: 820px;
  margin: 0 auto;
}

.layout-main > .cta-section {
  padding: 48px 0 0;
}

.layout-main .cta-box {
  max-width: none;
  margin: 0;
}

/* layout-with-sidebar 直後のCTAはメイン列の幅と左端に揃える（ずれ防止） */
.layout-with-sidebar + .cta-section > .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 48px;
}

.layout-with-sidebar + .cta-section > .container > .cta-box {
  max-width: none;
  margin: 0;
  grid-column: 1;
}

@media (max-width: 960px) {
  .layout-with-sidebar + .cta-section > .container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.cta-eyebrow {
  font-size: 1.4rem;
  color: var(--color-primary, #6a8f5d);
  letter-spacing: 0.12em;
  margin: 0 0 20px;
  font-weight: 600;
}

.cta-brand {
  font-family: 'Playfair Display', 'Noto Serif JP', serif;
  font-size: clamp(2.4rem, 6vw, 3.2rem);
  font-weight: 400;
  color: var(--text, #333);
  line-height: 1.2;
  margin: 0 0 36px;
  letter-spacing: 0.02em;
}

.cta-brand span {
  display: inline-block;
  padding-left: 2.5em;
}

.cta-brand-img {
  display: block;
  margin: 0 auto;
  max-width: 360px;
  width: 100%;
  height: auto;
}

.cta-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 680px;
  margin: 0 auto 32px;
}

.cta-buttons .btn {
  width: 100%;
}

.cta-note {
  font-size: 0.85rem;
  color: var(--text-muted, #666);
  line-height: 1.8;
  margin: 0;
  text-align: left;
}

@media (max-width: 720px) {
  .cta-box {
    padding: 40px 24px;
  }
  .cta-brand span {
    padding-left: 0;
    display: block;
  }
  .cta-buttons {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ============================================
   Step Illustration (about/flow)
   ============================================ */
.step-with-image {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
}

.step-with-image .step-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

@media (max-width: 600px) {
  .step-with-image {
    grid-template-columns: 1fr;
  }
  .step-with-image .step-image img {
    max-width: 320px;
    margin: 0 auto;
  }
}

.step-label {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--color-brand, #6a8f5d);
  font-weight: 600;
  margin-bottom: 6px;
}

/* ============================================
   Flow Grid (お問い合わせからご利用までの流れ 6ステップ)
   ============================================ */
.flow-grid {
  counter-reset: flow-num;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 40px;
  margin-top: 56px;
}

.flow-item {
  counter-increment: flow-num;
  position: relative;
  background: #fafaf7;
  border: 1px solid #e6e6de;
  border-radius: 10px;
  padding: 48px 18px 24px;
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.flow-item:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.flow-item::before {
  content: "STEP " counter(flow-num) ".";
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary, #6a8f5d);
  color: #fff;
  font-family: 'Playfair Display', 'Noto Serif JP', serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* デスクトップ時は行末以外に右矢印を表示 */
.flow-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -26px;
  width: 14px;
  height: 14px;
  border-top: 2px solid var(--color-primary, #6a8f5d);
  border-right: 2px solid var(--color-primary, #6a8f5d);
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

.flow-item:nth-child(3n)::after,
.flow-item:last-child::after {
  display: none;
}

.flow-image {
  margin: 0 auto 14px;
  max-width: 220px;
  overflow: hidden;
  border-radius: 8px;
}

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

.flow-title {
  font-size: 1.02rem;
  margin: 0 0 10px;
  color: #333;
  line-height: 1.5;
}

.flow-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.75;
  margin: 0;
  text-align: left;
}

@media (max-width: 900px) {
  .flow-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 32px;
  }
  .flow-item:nth-child(3n)::after {
    display: block;
  }
  .flow-item:nth-child(2n)::after,
  .flow-item:last-child::after {
    display: none;
  }
}

@media (max-width: 689px) {
  .flow-grid {
    grid-template-columns: 1fr;
    gap: 56px 0;
  }
  .flow-item::after {
    top: auto;
    bottom: -34px;
    right: 50%;
    transform: translateX(50%) rotate(135deg);
  }
  .flow-item:nth-child(n)::after {
    display: block;
  }
  .flow-item:last-child::after {
    display: none;
  }
}

/* ============================================
   Step Cards (回数券・領収書ステップ — WP funmaker-blocks flow 準拠)
   ============================================ */
.step-cards {
  counter-reset: step-num;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
  margin-top: 56px;
  position: relative;
}

.step-card {
  counter-increment: step-num;
  background: #fafaf7;
  border: 1px solid #e6e6de;
  border-radius: 10px;
  padding: 48px 18px 20px;
  text-align: center;
  position: relative;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.step-card:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.step-card::before {
  content: "STEP " counter(step-num) ".";
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-brand, #6a8f5d);
  color: #fff;
  font-family: 'Playfair Display', 'Noto Serif JP', serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.step-card::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -26px;
  width: 14px;
  height: 14px;
  border-top: 2px solid var(--color-brand, #6a8f5d);
  border-right: 2px solid var(--color-brand, #6a8f5d);
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

.step-card:last-child::after {
  display: none;
}

.step-card .step-image {
  margin: 0 auto 16px;
  max-width: 220px;
  overflow: hidden;
  border-radius: 6px;
}

.step-card .step-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.step-card h3 {
  font-size: 1.05rem;
  margin: 0 0 10px;
  color: #333;
}

.step-card p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
  text-align: left;
}

@media (max-width: 689px) {
  .step-cards {
    grid-template-columns: 1fr;
    gap: 56px 0;
  }
  .step-card {
    padding: 48px 18px 20px;
  }
  .step-card::after {
    top: auto;
    bottom: -36px;
    right: 50%;
    transform: translateX(50%) rotate(135deg);
  }
}

/* ============================================
   Sitemap Page
   ============================================ */
.sitemap {
  display: grid;
  gap: 32px;
}

.sitemap-group {
  background: var(--color-bg-soft, #fafafa);
  border-left: 4px solid var(--color-primary);
  border-radius: 6px;
  padding: 20px 28px;
}

.sitemap-group-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 4px 20px;
}

.sitemap-list li a {
  display: block;
  padding: 10px 0 10px 18px;
  border-bottom: 1px dotted #ddd;
  font-size: 0.95rem;
  color: var(--color-text);
  position: relative;
  transition: color var(--transition), padding var(--transition);
}

.sitemap-list li a::before {
  content: "›";
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-55%);
  color: var(--color-primary);
  font-weight: 700;
}

.sitemap-list li a:hover {
  color: var(--color-primary);
  padding-left: 24px;
}

/* ============================================
   Mobile Sticky Bottom Nav (WP footer-smp-menu 互換)
   ============================================ */
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 689px) {
  .mobile-bottom-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
    z-index: 900;
  }

  .mobile-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    padding: 8px 2px 8px;
    color: #3a3a3a;
    font-size: 0.62rem;
    text-align: center;
    line-height: 1.2;
    border-left: 1px solid #f2f2f2;
    transition: background var(--transition);
  }

  .mobile-bottom-nav-item:first-child {
    border-left: none;
  }

  .mobile-bottom-nav-item:hover,
  .mobile-bottom-nav-item:active {
    background: #fffaf0;
  }

  /* 店舗・流れ: ブランドオレンジの塗りつぶし丸アイコン */
  .mobile-bottom-nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--color-orange);
    color: #fff;
  }

  .mobile-bottom-nav-icon svg {
    width: 20px;
    height: 20px;
  }

  /* Instagram: グラデーション */
  .mobile-bottom-nav-item:nth-child(4) .mobile-bottom-nav-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  }

  /* LINE: 公式グリーン */
  .mobile-bottom-nav-item--line .mobile-bottom-nav-icon {
    background: #06c755;
  }

  .mobile-bottom-nav-label {
    white-space: nowrap;
    font-weight: 600;
    letter-spacing: 0.02em;
  }

  /* ページ本文が下部ナビに隠れないように余白 */
  body {
    padding-bottom: 72px;
  }
}

/* ============================================
   Footer モバイル調整
   ============================================ */
@media (max-width: 689px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-menu {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-logo-img {
    width: 220px;
  }
}

/* ============================================
   コラム個別記事ページ（.column-article）
   ============================================ */
.column-article {
  background: #fff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.column-article .article-header {
  border-bottom: 1px solid #e8e3dc;
  padding-bottom: 16px;
  margin-bottom: 24px;
}
.column-article .article-header h1 {
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 0 0 8px;
  color: #3a2e22;
}
.column-article .article-header .news-date {
  display: inline-block;
  font-size: 0.85rem;
  color: #8a7a66;
  letter-spacing: 0.05em;
}
.column-article .article-body {
  font-size: 0.95rem;
  line-height: 1.85;
  color: #3a2e22;
}
.column-article .article-body p {
  margin: 0 0 1.4em;
}
.column-article .article-body h2 {
  font-size: 1.25rem;
  margin: 2.4em 0 0.8em;
  padding: 12px 16px;
  background: linear-gradient(90deg, #c89d6a 0%, #e3c39a 100%);
  color: #fff;
  border-radius: 4px;
  line-height: 1.5;
}
.column-article .article-body h2 .maintext { display: inline; }
.column-article .article-body h3 {
  font-size: 1.08rem;
  margin: 2em 0 0.6em;
  padding-left: 14px;
  border-left: 4px solid #c89d6a;
  color: #5a4632;
  line-height: 1.5;
}
.column-article .article-body h3 .maintext { display: inline; }
.column-article .article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1.2em 0;
}
.column-article .article-body ul,
.column-article .article-body ol {
  padding-left: 1.4em;
  margin: 0 0 1.4em;
}
.column-article .article-body ul li,
.column-article .article-body ol li {
  margin-bottom: 0.4em;
}
.column-article .article-body a {
  color: #b07b3f;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.column-article .article-body a:hover { color: #8a5e2a; }
.column-article .article-body strong { color: #5a4632; }
.column-article .article-body blockquote {
  margin: 1.4em 0;
  padding: 16px 20px;
  background: #faf6f0;
  border-left: 4px solid #c89d6a;
  color: #5a4632;
  font-style: italic;
}
.column-article .article-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e8e3dc;
  text-align: center;
}

@media (max-width: 689px) {
  .column-article { padding: 20px 16px; }
  .column-article .article-header h1 { font-size: 1.3rem; }
  .column-article .article-body { font-size: 0.92rem; line-height: 1.8; }
  .column-article .article-body h2 { font-size: 1.1rem; padding: 10px 12px; }
  .column-article .article-body h3 { font-size: 1rem; }
}

/* ============================================
   コラム一覧ページ
   ============================================ */
.column-intro {
  margin-bottom: 2em;
}
.column-intro-catchcopy {
  border-left: 4px solid var(--color-primary);
  padding: 12px 16px;
  margin: 0 0 1.2em;
  font-size: 1rem;
  color: #5a4632;
  background: #faf6f0;
}
.column-intro p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text);
}
.column-separator {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 0 0 2em;
}
.column-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.column-list-item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  color: inherit;
  transition: background var(--transition);
}
.column-list-item:first-child,
.column-list > :first-child > .column-list-item {
  padding-top: 0;
}
.column-list-item:hover {
  background: #faf6f0;
}
.column-list-thumb {
  flex-shrink: 0;
  width: 280px;
}
.column-list-thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
}
.column-list-body {
  flex: 1;
  min-width: 0;
}
.column-list-date {
  display: block;
  text-align: right;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}
.column-list-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 8px;
  line-height: 1.5;
}
.column-list-item:hover .column-list-title {
  text-decoration: underline;
}
.column-list-excerpt {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 689px) {
  .column-list-item {
    flex-direction: column;
    gap: 12px;
  }
  .column-list-thumb {
    width: 100%;
  }
  .column-list-thumb img {
    height: 200px;
  }
  .column-list-title {
    font-size: 1rem;
  }
}

/* --- ページネーション --- */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 2.5em 0 1em;
}
.pagination-current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
}
.pagination-link,
.pagination-prev,
.pagination-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.95rem;
  transition: background var(--transition), color var(--transition);
}
.pagination-link:hover,
.pagination-prev:hover,
.pagination-next:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* ============================================
   記事末の店舗CTA・著者カード
   ============================================ */
.article-stores-cta {
  background: #faf6f0;
  border: 1px solid #ead9c2;
  border-radius: 8px;
  padding: 28px 24px;
  margin: 5em 0 2em;
}
.article-stores-cta .article-cta-title {
  text-align: center;
  font-size: 1.2rem;
  margin: 0 0 12px;
  color: #5a4632;
  background: none !important;
  padding: 0 !important;
  border: none !important;
}
.article-stores-cta > p {
  text-align: center;
  font-size: 0.92rem;
  color: #5a4632;
  margin: 0 0 20px;
}
.article-stores-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.article-store-card {
  display: block;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: #3a2e22;
  border: 1px solid #ead9c2;
  transition: transform .15s ease, box-shadow .15s ease;
}
.article-store-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(176,123,63,0.15);
}
.article-store-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  margin: 0 !important;
  border-radius: 0 !important;
}
.article-store-card-body {
  padding: 14px 16px 18px;
}
.article-store-card-body .store-tag {
  display: inline-block;
  font-size: 0.72rem;
  background: #c89d6a;
  color: #fff;
  padding: 2px 10px;
  border-radius: 3px;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.article-store-card-body h3 {
  font-size: 1rem;
  margin: 4px 0 4px;
  padding: 0 !important;
  border: none !important;
  color: #3a2e22 !important;
}
.article-store-card-body p {
  font-size: 0.85rem;
  color: #6b5a48;
  margin: 0;
}

.article-author {
  margin: 3em 0 1em;
}
.article-author .article-author-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: #3a2e22;
  background: none !important;
  padding: 0 !important;
  border: none !important;
}
.article-author-card {
  overflow: hidden;
}
.article-author-namecard {
  margin: 0 0 20px;
  padding: 12px 0 12px 16px;
  border-left: 4px solid #c89d6a;
  background: none;
  font-style: normal;
}
.article-author-role {
  display: block;
  font-size: 0.88rem;
  color: #5a4632;
  margin-bottom: 4px;
  line-height: 1.6;
}
.article-author-name {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #3a2e22;
}
.article-author-info {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #3a2e22;
}
.article-author-info p {
  margin: 0 0 0.3em;
}
.article-author-logo {
  float: right;
  margin: 0 0 16px 24px;
}
.article-author-logo img {
  max-width: 280px;
  height: auto;
  margin: 0 !important;
  border-radius: 0 !important;
}

@media (max-width: 689px) {
  .article-stores-grid {
    grid-template-columns: 1fr;
  }
  .article-store-card img { height: 180px; }
  .article-author-logo {
    float: none;
    margin: 0 0 16px 0;
  }
  .article-author-logo img { max-width: 180px; }
}

/* ============================================
   関連記事（コラム末尾・WP互換カードグリッド）
   ============================================ */
/* layout-with-sidebar の後に来る関連記事をメイン列幅に揃える */
.cta-section + .section > .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 48px;
}
.cta-section + .section > .container > .article-related {
  grid-column: 1;
}
@media (max-width: 960px) {
  .cta-section + .section > .container {
    display: block;
  }
}

.article-related {
  margin: 0;
}
.article-related .article-related-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: #3a2e22;
  background: none !important;
  padding: 0 !important;
  border: none !important;
}
.article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-related-card {
  display: block;
  text-decoration: none;
  color: #3a2e22;
  transition: opacity .15s ease;
}
.article-related-card:hover {
  opacity: 0.85;
}
.article-related-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  margin: 0 0 12px !important;
}
.article-related-card-body {
  padding: 0;
}
.article-related-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 6px;
  color: #3a2e22;
  padding: 0 !important;
  border: none !important;
  background: none !important;
}
.article-related-card-title::before {
  content: "❯ ";
  color: #b07b3f;
  font-size: 0.85em;
}
.article-related-card-date {
  display: block;
  font-size: 0.82rem;
  color: #8a7a66;
  margin-bottom: 6px;
  text-align: right;
}
.article-related-card-excerpt {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #5a4632;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 900px) {
  .article-related-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 689px) {
  .article-related-grid { grid-template-columns: 1fr; gap: 16px; }
  .article-related-card-img { height: 200px; }
}

