/* コンテンツページ共通 — 明朝・優雅・SEO本文 */
.page-content {
  font-family: var(--font-serif);
  color: var(--text);
  line-height: 2;
  letter-spacing: 0.04em;
}

.page-content p {
  font-size: 15px;
  color: var(--text-body);
  margin-bottom: 1.35em;
}

.page-content .lead {
  font-size: 17px;
  line-height: 2.1;
  color: var(--brown);
  margin-bottom: 1.75em;
}

.page-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 500;
  color: var(--brown);
  letter-spacing: 0.12em;
  margin-bottom: 1.25em;
  padding-bottom: 0.65em;
  border-bottom: 1px solid rgba(184, 148, 74, 0.35);
}

.page-content h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--brown-mid, var(--brown));
  letter-spacing: 0.08em;
  margin: 1.75em 0 0.85em;
}

.section-block {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section-block.alt { background: var(--cream-2); }
.section-block.white { background: var(--white); }

.section-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* ヒーロー（コンテンツ版） */
.hero-content {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-content .hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(40,26,16,0.35) 0%, rgba(40,26,16,0.6) 100%),
    url("../assets/interior-bed.jpg") center/cover no-repeat;
}
.hero-content .hero-inner {
  position: relative;
  z-index: 2;
  padding: 5rem 1.5rem;
  max-width: 780px;
}
.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4.5vw, 2.65rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.65;
  letter-spacing: 0.14em;
  margin-bottom: 1.25rem;
}
.hero-content .hero-lead {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: rgba(255, 252, 248, 0.92);
  line-height: 2;
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
}
.hero-content .btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 14px 36px;
  border-radius: 999px;
  border: 2px solid var(--gold-light);
}

/* 2カラム（本文＋イラスト） */
.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split-content.reverse { direction: rtl; }
.split-content.reverse > * { direction: ltr; }

.content-illus {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(58, 42, 30, 0.08);
}
.content-illus img { width: 100%; height: auto; }

/* 理由カード */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.reason-card {
  background: var(--white);
  padding: 1.75rem 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(184, 148, 74, 0.2);
  box-shadow: 0 4px 20px rgba(58, 42, 30, 0.04);
}
.reason-card h3 {
  font-size: 1rem;
  margin: 0 0 0.75rem;
  color: var(--gold-dark);
  border: none;
  padding: 0;
}
.reason-card p {
  font-size: 14px;
  margin: 0;
  line-height: 1.9;
}

/* 症状タグ（BUASAWAN型） */
.symptom-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 1.75rem;
}
.symptom-tag {
  font-family: var(--font-serif);
  font-size: 13px;
  padding: 0.4rem 1rem;
  border: 1px solid var(--gold);
  color: var(--brown);
  border-radius: 999px;
  letter-spacing: 0.06em;
}

/* メニュープレビュー */
.menu-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.menu-preview-item {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(184,148,74,0.15);
}
.menu-preview-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.menu-preview-body {
  padding: 1.15rem 1.25rem 1.35rem;
}
.menu-preview-body h3 {
  font-size: 15px;
  margin: 0 0 0.35rem;
}
.menu-preview-body .price {
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.menu-preview-body p {
  font-size: 13px;
  margin: 0;
}

.text-link {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.text-link:hover { color: var(--gold); }

.text-center { text-align: center; }
.mt-lg { margin-top: 2.5rem; }

/* ヘッダー簡素化（デザイン細部は後回し） */
.site-header.simple .header-wave-edge { display: none; }
.site-header.simple .header-bar {
  border-bottom: 1px solid rgba(184, 148, 74, 0.45);
}
.hero-content { margin-top: 0; }

@media (max-width: 900px) {
  .split-content { grid-template-columns: 1fr; }
  .split-content.reverse { direction: ltr; }
  .reason-grid, .menu-preview { grid-template-columns: 1fr; }
}

/* 下層ページヒーロー */
.hero-sub {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--cream-2);
  border-bottom: 1px solid rgba(184, 148, 74, 0.25);
}
.hero-sub .hero-sub-inner {
  padding: clamp(3rem, 8vw, 4.5rem) 1.5rem;
  max-width: 720px;
}
.hero-sub h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 500;
  color: var(--brown);
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
}
.hero-sub .hero-lead {
  font-size: 15px;
  color: var(--text-body);
  line-height: 2;
  letter-spacing: 0.06em;
  margin: 0;
}

/* 施術の流れ（テキストステップ） */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.flow-step {
  background: var(--white);
  border: 1px solid rgba(184, 148, 74, 0.22);
  border-radius: 8px;
  padding: 1.5rem 1.15rem 1.35rem;
  text-align: center;
  box-shadow: 0 4px 18px rgba(58, 42, 30, 0.04);
}
.flow-step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-size: 13px;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.flow-step h3 {
  font-size: 14px;
  margin: 0 0 0.5rem;
  color: var(--brown);
}
.flow-step p {
  font-size: 13px;
  margin: 0;
  line-height: 1.85;
}

/* チェックリスト */
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.85rem;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.9;
}
.check-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 9px;
  top: 0.55em;
}

/* 初めての方へ：よくある不安 */
.concern-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.concern-card {
  background: var(--white);
  border: 1px solid rgba(184, 148, 74, 0.2);
  border-radius: 8px;
  padding: 1.5rem 1.35rem;
}
.concern-card h3 {
  font-size: 15px;
  margin: 0 0 0.65rem;
  color: var(--gold-dark);
}
.concern-card p {
  font-size: 14px;
  margin: 0;
  line-height: 1.9;
}

@media (max-width: 900px) {
  .concern-grid { grid-template-columns: 1fr; }
  .flow-steps { grid-template-columns: 1fr; }
}

/* コース・料金ページ */
.menu-category {
  margin-top: 2.75rem;
}
.menu-category:first-of-type {
  margin-top: 1.5rem;
}
.menu-category h3 {
  font-size: 1.05rem;
  color: var(--gold-dark);
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(184, 148, 74, 0.3);
}
.menu-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}
.menu-item-full {
  display: flex;
  gap: 1rem;
  background: var(--white);
  border: 1px solid rgba(184, 148, 74, 0.18);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(58, 42, 30, 0.04);
  min-width: 0;
}
.menu-item-full.no-img {
  padding: 1.25rem 1.35rem;
  flex-direction: column;
  gap: 0.35rem;
}
.menu-item-full img {
  width: 140px;
  max-width: 140px;
  min-width: 0;
  height: auto;
  max-height: 160px;
  object-fit: cover;
  flex-shrink: 0;
  align-self: stretch;
}
.menu-item-body {
  padding: 1.15rem 1.25rem 1.25rem 0;
  flex: 1;
  min-width: 0;
}
.menu-item-full.no-img .menu-item-body {
  padding: 0;
}
.menu-item-body h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--brown);
  margin: 0 0 0.35rem;
  letter-spacing: 0.06em;
}
.menu-item-body .price {
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 0.45rem;
}
.menu-item-body .time {
  font-size: 12px;
  color: var(--gold-dark);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.menu-item-body p {
  font-size: 13px;
  margin: 0;
  line-height: 1.85;
}
.menu-note-box {
  margin-top: 2rem;
  padding: 1.35rem 1.5rem;
  background: var(--white);
  border: 1px solid rgba(184, 148, 74, 0.22);
  border-radius: 8px;
}
.menu-note-box p {
  font-size: 14px;
  margin: 0 0 0.65rem;
}
.menu-note-box p:last-child {
  margin: 0;
}

/* コース一覧 — モバイル（ベース定義の後に置く） */
@media (max-width: 900px) {
  .menu-full-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .menu-item-full {
    flex-direction: column;
  }
  .menu-item-full img {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: clamp(100px, 28vw, 140px);
    max-height: none;
    object-fit: cover;
    align-self: auto;
    flex-shrink: 1;
  }
  .menu-item-body {
    padding: 1rem 1.15rem 1.25rem;
  }
}

/* セラピストページ */
.staff-profiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.staff-profile {
  background: var(--white);
  border: 1px solid rgba(184, 148, 74, 0.22);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(58, 42, 30, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.staff-profile-photo {
  width: 50%;
  max-width: 200px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin: 1.25rem auto 0;
}
.staff-profile-photo--square {
  aspect-ratio: 1 / 1;
  object-position: center center;
}
.staff-profile-body {
  padding: 1.5rem 1.4rem 1.6rem;
  width: 100%;
}
.staff-profile-body .staff-role {
  font-size: 12px;
  color: var(--gold-dark);
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
}
.staff-profile-body h3 {
  font-size: 1.2rem;
  margin: 0 0 0.25rem;
  color: var(--brown);
}
.staff-profile-body .staff-name-ja {
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 1rem;
}
.staff-profile-body p {
  font-size: 14px;
  margin: 0 0 0.85rem;
  line-height: 1.9;
}
.staff-profile-body p:last-child {
  margin: 0;
}
.staff-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}
.staff-tag {
  font-size: 12px;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(184, 148, 74, 0.35);
  border-radius: 999px;
  color: var(--brown);
  letter-spacing: 0.04em;
}

.voice-highlight {
  margin-top: 2rem;
  padding: 1.75rem 1.6rem;
  background: var(--white);
  border: 1px solid rgba(184, 148, 74, 0.2);
  border-radius: 8px;
}
.voice-highlight .score-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.voice-highlight .score-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
}
.voice-highlight .score-label {
  font-size: 14px;
  color: var(--text-body);
}
.review-note {
  font-size: 14px;
  color: var(--text-body);
  margin-top: 0.75rem;
}
.review-links {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .staff-profiles { grid-template-columns: 1fr; }
}

/* 店内案内 */
.interior-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.interior-gallery-item {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(184, 148, 74, 0.18);
  box-shadow: 0 6px 22px rgba(58, 42, 30, 0.05);
  background: var(--white);
  padding: 0.65rem 0.65rem 0;
}
.interior-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.interior-gallery-item--compact img {
  width: 33.333%;
  margin: 0 auto;
}
.interior-gallery-item figcaption {
  padding: 1rem 0.5rem 1.15rem;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.85;
}
.interior-gallery-item figcaption strong {
  display: block;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 0.35rem;
  font-size: 15px;
}
.interior-gallery-item.span-full {
  grid-column: 1 / -1;
}

@media (max-width: 900px) {
  .interior-gallery { grid-template-columns: 1fr; }
  .interior-gallery-item.span-full { grid-column: auto; }
}

/* アクセス */
.access-info-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  font-size: 15px;
}
.access-info-table th,
.access-info-table td {
  padding: 1rem 1.15rem;
  border-bottom: 1px solid rgba(184, 148, 74, 0.22);
  text-align: left;
  vertical-align: top;
  line-height: 1.85;
}
.access-info-table th {
  width: 28%;
  font-weight: 500;
  color: var(--brown);
  background: rgba(255, 252, 248, 0.6);
}
.access-info-table td {
  color: var(--text-body);
}
.access-steps {
  counter-reset: access-step;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.access-steps li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-body);
}
.access-steps li::before {
  counter-increment: access-step;
  content: counter(access-step);
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.access-map {
  margin-top: 2rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(184, 148, 74, 0.2);
  box-shadow: 0 6px 22px rgba(58, 42, 30, 0.05);
}
.access-map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}
.access-map-link {
  display: block;
  text-align: center;
  padding: 0.85rem;
  font-size: 14px;
  background: var(--white);
  border-top: 1px solid rgba(184, 148, 74, 0.15);
}
.access-video-wrap {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(184, 148, 74, 0.2);
  box-shadow: 0 6px 22px rgba(58, 42, 30, 0.05);
  background: var(--white);
}
.access-route-video {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}
.access-video-wrap figcaption {
  padding: 0.75rem 1rem;
  font-size: 13px;
  color: var(--text-body);
  text-align: center;
  border-top: 1px solid rgba(184, 148, 74, 0.15);
  background: rgba(255, 252, 248, 0.6);
}

@media (max-width: 900px) {
  .access-info-table th,
  .access-info-table td { display: block; width: 100%; }
  .access-info-table th {
    border-bottom: none;
    padding-bottom: 0.35rem;
  }
}

/* 運営会社情報 */
.company-intro-note {
  font-size: 14px;
  color: var(--text-body);
  margin: 0.5rem 0 0;
  line-height: 1.85;
}
.company-info-table {
  margin-top: 1.25rem;
}
.company-purpose-single {
  margin: 1.25rem 0 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-body);
}
.company-shop-links {
  font-size: 14px;
  color: var(--text-body);
}
.company-updated {
  margin-top: 1.5rem;
  font-size: 13px;
  color: #777;
}

/* よくある質問 */
.faq-category {
  margin-top: 2.5rem;
}
.faq-category:first-of-type {
  margin-top: 1.25rem;
}
.faq-category h3 {
  font-size: 1.05rem;
  color: var(--gold-dark);
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(184, 148, 74, 0.3);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid rgba(184, 148, 74, 0.2);
  border-radius: 8px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 1.35rem;
  font-size: 15px;
  font-weight: 500;
  color: var(--brown);
  letter-spacing: 0.04em;
  position: relative;
  padding-right: 2.25rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "＋";
  position: absolute;
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 18px;
  font-weight: 400;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item .faq-answer {
  padding: 0 1.35rem 1.2rem;
  font-size: 14px;
  line-height: 1.95;
  color: var(--text-body);
}
.faq-item .faq-answer p {
  margin: 0;
  font-size: 14px;
}
