/*
Theme Name: Maple LP
*/
/* header */
/*
Theme Name: Maple LP
*/

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
  scrollbar-gutter: stable;
}

.booking-section-anchor {
  position: relative;
  height: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  color: #070707;
}

main {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --layout-edge-x: 32px;
}

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

a {
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

body.admin-bar .site-header {
  top: 32px;
}

/* =========================
   GLOBAL LAYOUT
========================= */
/*
  ブレークポイント（統一）
  - スマホ: 〜767px（基準幅 375px）
  - タブレット: 768px 〜 1199px（外周 60px 100px 統一・背景は全幅）
  - PC レイアウト目安: 1200px 〜（FEEL BETTER 等）
  - ヘッダー横ナビ: 1010px 〜（〜1009px はハンバーガー）
*/
section {
  padding: 60px 100px;
}

main p {
  color: #2a2523;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .trust-section {
    padding: 60px 100px;
  }

  .trust-container {
    padding-left: 0;
    padding-right: 0;
  }

  .feel-better-today-section {
    padding: 60px 100px;
    overflow: visible;
  }

  .feel-better-today-section::after {
    left: -100px;
    right: -100px;
    bottom: -90px;
    top: auto;
    width: auto;
    transform: none;
    max-width: none;
  }

  .menu-section {
    padding: 60px 100px;
  }

  .therapist-section {
    padding: 60px 100px;
  }

  .therapist-container {
    padding-left: 0;
    padding-right: 0;
  }

  .faq-section {
    padding: 60px 0;
  }

  .faq-container {
    padding-left: 100px;
    padding-right: 100px;
    grid-template-columns: max-content minmax(0, 1fr);
    column-gap: 10px;
  }

  .faq-right {
    max-width: none;
  }

  .faq-bg img {
    object-position: 16% 50%;
  }

  .reviews-section {
    padding: 60px 100px;
  }

  .location-section {
    padding: 60px 100px;
  }

  .footer {
    padding: 60px 100px;
  }
}

/* =========================
  TYPOGRAPHY TOKENS
========================= */
h2,
.trust-heading,
.feel-better-today-heading,
.menu-heading,
.flow-kicker,
.faq-heading,
.reviews-heading,
.location-heading {
  font-family: "Playfair Display", serif;
  font-size: 60px;
  line-height: 0.92;
  font-weight: 700;
  color: #2a2523;
}

.trust-subheading,
.menu-subheading,
.flow-sub,
.location-lead,
.feel-better-today-lead {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #5a5a5a;
  margin-bottom: 10px;
}

.fv {
  padding: 0;
}

/* header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: transparent;
  --header-bg-opacity: 0;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(58, 58, 58, 0.55);
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  opacity: var(--header-bg-opacity, 0);
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.25, 0.85, 0.35, 1);
}

.site-header.is-solid {
  --header-bg-opacity: 1;
}

.site-header.is-solid::before {
  opacity: 1;
}

.header-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 16px var(--layout-edge-x);
  min-height: 100px;
  box-sizing: border-box;
}

.header-logo {
  position: absolute;
  top: 50%;
  left: var(--layout-edge-x);
  transform: translateY(-50%);
  line-height: 0;
}

.header-logo img {
  display: block;
  width: auto;
  height: 72px;
  max-height: 76px;
  max-width: 280px;
  object-fit: contain;
}

.header-nav {
  position: absolute;
  top: 50%;
  left: calc(var(--layout-edge-x) + 280px + 20px);
  transform: translateY(-50%);
}

.header-menu {
  display: flex;
  gap: 24px;
  align-items: center;
}

.header-menu a {
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

button.header-cta {
  margin: 0;
  border: none;
  font-family: "Outfit", sans-serif;
  letter-spacing: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  text-align: center;
}

.header-cta {
  position: absolute;
  top: 50%;
  right: var(--layout-edge-x);
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 146px;
  height: 54px;
  padding: 0;
  border-radius: 999px;
  background: #ef5a32;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.header-cta:hover {
  opacity: 0.85;
}

.header-toggle {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

#header-menu-toggle {
  display: none;
}

.header-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  margin: 5px auto;
  border-radius: 999px;
  background: #fff;
}

@media (max-width: 1009px) {
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    min-height: 72px;
    padding: 10px var(--layout-edge-x);
    box-sizing: border-box;
  }

  .header-logo {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    flex: 1 1 0;
    min-width: 0;
    line-height: 0;
  }

  .header-logo img {
    display: block;
    width: auto;
    height: auto;
    max-height: 44px;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
  }

  .header-nav {
    display: none;
  }

  .header-cta {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
    height: 42px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
  }

  .header-toggle {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    z-index: 1001;
  }

  #header-menu-toggle {
    display: block;
  }

  .header-toggle span {
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    width: 22px;
    height: 2px;
    margin: 0;
    border-radius: 1px;
    background: #fff;
    transform-origin: center center;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .header-toggle span:nth-child(1) {
    transform: translate(-50%, calc(-50% - 7px));
  }

  .header-toggle span:nth-child(2) {
    transform: translate(-50%, -50%);
  }

  .header-toggle span:nth-child(3) {
    transform: translate(-50%, calc(-50% + 7px));
  }

  .site-header.is-menu-open .header-toggle span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .site-header.is-menu-open .header-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .header-toggle span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .site-header.is-menu-open .header-nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: calc(72px + 24px) 0 32px;
    box-sizing: border-box;
    transform: none;
    z-index: 1000;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(58, 58, 58, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .site-header.is-menu-open .header-menu {
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 360px;
    padding: 0 28px;
    align-items: stretch;
    list-style: none;
    margin: 0;
  }

  .site-header.is-menu-open .header-menu a {
    display: block;
    padding: 16px 0;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-header.is-menu-open .header-logo,
  .site-header.is-menu-open .header-cta {
    z-index: 1001;
    position: relative;
  }
}

/* タブレット（768〜1009px）: ハンバーガー行でもロゴ・Book Now は PC と同寸 */
@media (min-width: 768px) and (max-width: 1009px) {
  .header-inner {
    min-height: 100px;
    padding: 16px var(--layout-edge-x);
  }

  .header-logo img {
    max-height: 76px;
    max-width: 280px;
    height: 72px;
    width: auto;
    object-fit: contain;
    object-position: left center;
  }

  .header-cta {
    width: 146px;
    height: 54px;
    padding: 0;
    font-size: 17px;
    font-weight: 500;
    line-height: normal;
    white-space: normal;
    flex: 0 0 auto;
    min-width: 146px;
  }

  .site-header.is-menu-open .header-nav {
    padding-top: calc(100px + 24px);
  }
}

@media (min-width: 1010px) {
  .header-inner {
    display: block;
    min-height: 100px;
    padding: 16px var(--layout-edge-x);
  }

  .header-logo {
    position: absolute;
    top: 50%;
    left: var(--layout-edge-x);
    transform: translateY(-50%);
    flex: unset;
    min-width: 0;
    line-height: 0;
  }

  .header-logo img {
    max-height: 76px;
    max-width: 280px;
    height: 72px;
    object-position: center;
  }

  #site-header #header-nav {
    display: block;
    position: absolute;
    top: 50%;
    left: calc(var(--layout-edge-x) + 280px + 20px);
    transform: translateY(-50%);
    margin: 0;
    padding: 0;
    right: auto;
    bottom: auto;
    width: auto;
    height: auto;
    overflow: visible;
    align-items: unset;
    justify-content: unset;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: auto;
  }

  .header-cta {
    position: absolute;
    top: 50%;
    right: var(--layout-edge-x);
    transform: translateY(-50%);
    width: 146px;
    height: 54px;
    padding: 0;
    font-size: 17px;
    font-weight: 500;
    flex: unset;
    min-width: 0;
    white-space: normal;
    line-height: normal;
  }

  #header-menu-toggle {
    display: none;
  }

  .header-toggle span {
    position: static;
    width: 30px;
    height: 3px;
    margin: 5px auto;
    border-radius: 999px;
    transform: none;
    opacity: 1;
    transition: none;
  }
}

/* FV */
.fv {
  position: relative;
  min-height: 100vh;
  background-image: url('./assets/img/top.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.fv-inner {
  position: absolute;
  top: 170px;
  left: 40px;
  width: 520px;
  color: #fff;
}

.fv h1 {
  margin: 0;
  margin-left: 85px;
  font-family: "Playfair Display", serif;
  font-size: 78px;
  line-height: 0.92;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #f7f2ec;
}

.fv p {
  margin: 10;
}

.fv-copy {
  margin-top: 50px;
  margin-left: 85px;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 300;
  color: #f7f2ec;
  opacity: 0.9;
}

.fv-sub {
  margin-left: 85px;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
  color: #f7f2ec;
  opacity: 0.9;
}

/* =========================
   TRUST
========================= */
.trust-section {
  background: #fff;
  padding: 60px 0;
}

.trust-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 100px;
  text-align: center;
}

.trust-heading {
  margin: 0 0 10px;
}

.trust-subheading {
  margin: 0;
  line-height: 1.4;
}

.trust-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(5, auto);
  justify-content: center;
  gap: 80px;
}

.trust-container {
  max-width: none;   /* ←これ追加 */
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 150px;
}

.trust-item img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  display: block;
  margin-bottom: 14px;
}

.trust-item p {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #111;
}

/* =========================
   FEEL BETTER TODAY
========================= */
.feel-better-today-section {
  position: relative;
  background: #fff;
  padding: 60px 100px 80px;
  overflow: hidden;
}

.feel-better-today-section::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -90px;
  width: 110%;
  height: 130%;
  background: url('./assets/img/solution-curve.png') no-repeat right bottom;
  background-size: contain;
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

.feel-better-today-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  align-items: center;
  column-gap: 70px;
}

.feel-better-today-text {
  min-width: 0;
  padding-left: 0;
  align-self: start;
  padding-top: 0;
}

.feel-better-today-image-wrap {
  width: 100%;
  max-width: 540px;
  min-width: 0;
  justify-self: start;
  margin-left: 20px;
}

.feel-better-today-image {
  transform: translate(0, 30px);
}

/* 見出し下マージン（リードとの間） */
.feel-better-today-heading {
  margin: 0 0 10px;
}

/* サブコピーは MENU の .menu-subheading と同一トークン（上記グループ）／左揃え */
.feel-better-today-lead {
  margin-top: 0;
  margin-bottom: 0;
  text-align: left;
  line-height: 1.4;
}

.feel-better-today-copy {
  margin: 26px 0 0;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: #070707;
}

.feel-better-today-image-wrap img {
  width: 100%;
  max-width: 100%;
  height: 295px;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

/* PC（1200px〜）: 見出し1行・写真は右寄せ（セクションの横 padding はそのまま） */
@media (min-width: 1200px) {
  .feel-better-today-image-wrap img {
    box-shadow: 0 4px 14px rgba(42, 37, 35, 2.0);
  }
  
  .feel-better-today-container {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 540px);
    column-gap: 40px;
    align-items: center;
  }

  /* PCでも TODAY を2段目に固定 */
  .feel-better-today-heading br {
    display: block;
  }

  .feel-better-today-heading {
    white-space: normal;
    font-size: clamp(36px, 3.85vw, 56px);
    margin-top: 18px;
  }

  .feel-better-today-image-wrap {
    justify-self: end;
    margin-left: 0;
    max-width: min(540px, 46vw);
    width: 100%;
  }

  .feel-better-today-image {
    transform: translate(0, 24px);
  }
}

/* タブレット横向き（1200〜1365px）でも見出しサイズを60pxで維持 */
@media (min-width: 1200px) and (max-width: 1365px) {
  .feel-better-today-heading {
    font-size: 60px;
    line-height: 0.92;
  }
}

/* タブレット: 写真を横長に広げ、テキストとの隙間を詰める（PC/スマホは上記のまま） */
@media (min-width: 768px) and (max-width: 1199px) {
  .feel-better-today-heading {
    font-size: 60px;
    line-height: 0.92;
  }

  .feel-better-today-container {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 24px;
    align-items: center;
  }

  .feel-better-today-heading {
    margin-top: -18px;
  }

  .feel-better-today-text {
    padding-top: 0;
  }

  .feel-better-today-image-wrap {
    width: 100%;
    max-width: none;
    margin-left: 0;
    justify-self: stretch;
  }

  .feel-better-today-image {
    transform: translate(0, 30px);
  }

  .feel-better-today-image-wrap img {
    width: 100%;
    height: 295px;
    max-width: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 4px 14px rgba(42, 37, 35, 0.07);
    display: block;
  }
}

/* =========================
   MENU
========================= */

.menu-section {
  background: #fff;
  padding: 60px 100px 48px;
}

.menu-container {
  max-width: 1180px;
  margin: 0 auto;
}

/* タイトル */
.menu-heading {
  margin: 0 0 10px;
  text-align: center;
}

.menu-subheading {
  margin-top: 0;
  text-align: center;
  line-height: 1.4;
}

/* MENU: PC は3列表、スマホのみ Figma（1ppl / 2ppl） */
.menu-list--mobile {
  display: none;
}

.menu-table--desktop {
  margin-top: 50px;
}

.menu-table-head {
  display: grid;
  grid-template-columns: 1fr 160px 160px;
  margin-bottom: 10px;
}

.menu-head-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: 68px;
  height: 17px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(90, 143, 82, 0.8);
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.menu-table--desktop .menu-row {
  display: grid;
  grid-template-columns: 1fr 160px 160px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #ddd;
}

.menu-table--desktop .menu-info h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
}

.menu-table--desktop .menu-info p {
  margin-top: 5px;
  font-size: 14px;
  color: #666;
}

.menu-table--desktop .menu-price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 8px;
  width: 160px;
  font-size: 20px;
}

.price-num {
  font-variant-numeric: tabular-nums;
}

.price-unit {
  font-size: 12px;
  letter-spacing: 0.2em;
}

/* 注意書き（PC） */
.menu-notes {
  margin-top: 10px;
  margin-left: auto;
  width: fit-content;
  text-align: left;
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

.menu-notes p {
  margin: 0 0 4px;
}

.menu-notes p:last-child {
  margin-bottom: 0;
}

/*
  FLOW 背景: セクションを 100vw にブレイクアウトし、装飾は <img.flow-section__bg> で表示。
  CSS background より確実に全幅になり、object-fit:cover + scale で写真を拡大して端の余白を減らす。
*/
section.flow-section {
  position: relative;
  padding: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  max-width: none;
  box-sizing: border-box;
  background: transparent;
  overflow: hidden;
}

.flow-section__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.18);
  transform-origin: center center;
  z-index: 0;
  opacity: 0.35;
  pointer-events: none;
  user-select: none;
}

.flow-bg {
  width: 100%;
  max-width: none;
  margin: 0;
  background: none;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

.flow-section > .flow-bg {
  padding: 60px 100px;
}

/* MENU の .menu-container（max-width:1180px・中央）と左端を揃える */
.flow-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  min-width: 0;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 420px 1fr;
  column-gap: 120px;
}

.flow-kicker {
  margin: 0;
}

.flow-sub {
  margin-top: 10;
  line-height: 1.4;
}

.flow-right {
  display: flex;
  flex-direction: column;
  gap: 52px;
  min-width: 0;
  padding-right: 60px;
  box-sizing: border-box;
}

.flow-item {
  position: relative;
  min-height: 95px;
  min-width: 0;
}

/* 数字（Figma再現） */
.flow-num {
  position: absolute;
  left: 0;
  top: -6px;
  font-size: 60px;
  font-family: "Outfit", serif;
  color: #E34E32;
  opacity: 0.6;
  line-height: 1;
  letter-spacing: 0.02;
  font-weight: 500;
  z-index: 1;
}

/* テキスト */
.flow-text {
  margin-left: 48px;
  max-width: 520px;
  min-width: 0;
  z-index: 2;
  position: relative;
  overflow-wrap: break-word;
  word-break: break-word;
}

.flow-text p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  margin-top: 30px;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* スマホ（〜767px） */
@media (max-width: 767.98px) {
  .flow-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .flow-right {
    padding-right: 0;
  }

  .flow-num {
    font-size: 70px;
    top: -10px;
  }

  .flow-text {
    margin-left: 80px;
  }
}

/* タブレット: 外周 60/100 は他セクションと統一。背景は .flow-section__bg */
@media (min-width: 768px) and (max-width: 1199px) {
  .flow-section > .flow-bg {
    padding: 60px 100px;
  }

  .flow-wrap {
    grid-template-columns: minmax(240px, 330px) minmax(0, 1fr);
    column-gap: 24px;
    align-items: start;
  }

  .flow-left {
    min-width: 0;
  }

  .flow-right {
    justify-self: stretch;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding-right: 0;
  }

  .flow-text {
    margin-left: 40px;
    max-width: none;
  }
}

.therapist-section {
  padding: 48px 0 100px;
  background: #fff;
}

.therapist-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 100px;
  box-sizing: border-box;
}

.therapist-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  grid-template-rows: auto auto;
  column-gap: 120px;
  align-items: start;
}

.therapist-text {
  display: contents;
}

.therapist-eyebrow {
  grid-column: 1;
  grid-row: 1;
  margin: 0 0 12px;
  font-family: "Playfair Display", serif;
  font-size: 54px;
  line-height: 1.05;
  font-weight: 700;
  color: #2a2523;
}

.therapist-body {
  grid-column: 1;
  grid-row: 2;
  min-width: 0;
}

.therapist-name {
  margin: 0 0 36px;
  font-family: "Playfair Display", serif;
  font-size: 54px;
  line-height: 1.05;
  font-weight: 700;
  color: #2a2523;
}

.therapist-copy {
  max-width: 520px;
}

.therapist-copy p {
  margin: 0 0 18px;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  color: #5c5957;
}

.therapist-copy p:last-child {
  margin-bottom: 0;
}

.therapist-profile-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.therapist-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.therapist-profile-image {
  grid-column: 2;
  grid-row: 2;
  width: auto;
  height: 100%;
  aspect-ratio: 1 / 1;
  align-self: stretch;
  justify-self: end;
  min-height: 0;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

/* PC・タブレット2カラム: 正方形クロップで頭が切れにくいよう上寄せ */
@media (min-width: 1010px) {
  .therapist-profile-image img {
    object-position: center 18%;
  }
}

.therapist-gallery {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.therapist-gallery-item {
  aspect-ratio: 1 / 0.78;
}

/* 1009px以下は About をスマホ同様の1カラムにする */
@media (max-width: 1009px) {
  .therapist-section {
    position: relative;
    overflow: visible;
    background: #fff;
    padding: 40px;
  }

  .therapist-section::before {
    content: none;
  }

  .therapist-container {
    position: relative;
    z-index: auto;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .therapist-top {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    row-gap: 40px;
  }

  .therapist-eyebrow,
  .therapist-body,
  .therapist-profile-image {
    grid-column: 1;
    grid-row: auto;
  }

  .therapist-profile-image {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    aspect-ratio: 346 / 238;
    align-self: stretch;
    justify-self: stretch;
    height: auto;
  }

  .therapist-profile-image img {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 14%;
    border-radius: 24px;
  }
}

/* タブレット上位幅のみ2カラム（1010px〜） */
@media (min-width: 1010px) and (max-width: 1199px) {
  .therapist-top {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    column-gap: 40px;
  }

  /* 画像が本文に重ならないよう、タブレットは幅基準で正方形化 */
  .therapist-profile-image {
    width: 100%;
    height: auto;
    max-width: 340px;
    aspect-ratio: 1 / 1;
    justify-self: end;
    align-self: start;
  }
}

@media (max-width: 767.98px) {
  .therapist-eyebrow,
  .therapist-name {
    font-size: 40px;
  }

  .therapist-name {
    margin-bottom: 24px;
  }

  .therapist-top {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    row-gap: 40px;
  }

  .therapist-eyebrow,
  .therapist-body,
  .therapist-profile-image {
    grid-column: 1;
    grid-row: auto;
  }

  .therapist-gallery {
    margin-top: 48px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .therapist-profile-image {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    aspect-ratio: 346 / 238;
    align-self: stretch;
    overflow: hidden;
    border-radius: 24px;
  }

  .therapist-profile-image img {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 14%;
    border-radius: 24px;
  }
}

.faq-section {
  position: relative;
  padding: 60px 0;
  background: #fff;
  overflow: hidden;
}

.faq-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.faq-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 8% 50%;
  opacity: 0.35;
  display: block;
}

.faq-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 100px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  column-gap: 70px;
  align-items: start;
}

.faq-left {
  padding-top: 160px;
}

.faq-heading {
  margin: 0;
}

.faq-heading-short {
  display: none;
}

.faq-right {
  width: 100%;
  max-width: 820px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(42, 37, 35, 0.08);
}

.faq-item:first-child {
  border-top: 1px solid rgba(42, 37, 35, 0.08);
}

.faq-question {
  list-style: none;
  position: relative;
  cursor: pointer;
  padding: 30px 46px 30px 0;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  color: #6d9a57;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 34px;
  line-height: 1;
  color: #6d9a57;
}

.faq-item[open] .faq-question::after {
  content: "−";
}

.faq-answer {
  padding: 0 46px 24px 0;
}

.faq-answer p {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: #5c5957;
}

.reviews-section {
  background: #fff;
  padding: 60px 100px;
  overflow: hidden;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.reviews-heading {
  margin: 0;
  margin-bottom: 60px;
}

.reviews-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.reviews-slider {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 0 260px;
  width: 100%;
  max-width: 1100px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reviews-slider::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 460px;
  min-height: 260px;
  background: #fff;
  border: 1.5px solid #222;
  border-radius: 14px;
  padding: 28px 24px 24px;
  text-align: left;
  scroll-snap-align: center;
  box-sizing: border-box;
  transition: all 0.3s ease;
  opacity: 0.6;
  transform: scale(0.9);
}

.review-card.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.review-stars {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
}

.star-svg-wrap {
  display: inline-flex;
  line-height: 0;
  vertical-align: middle;
}

.star-svg-wrap svg {
  display: block;
  width: 20px;
  height: 20px;
}

.star-svg-wrap path {
  fill: #fff;
  stroke: #000;
  stroke-width: 1.15;
  stroke-linejoin: round;
}

.star-svg-wrap.is-filled path {
  fill: #f5c518;
}

.review-text {
  font-size: 18px;
  line-height: 1.7;
  color: #222;
  margin: 0 0 24px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-user-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #eee;
  border: 1px solid #ccc;
}

.review-user-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-user-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-name {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  line-height: 1.4;
}

.review-date {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

.reviews-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid #222;
  background: #fff;
  color: #111;
  font-size: 34px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.2s ease;
}

.reviews-arrow:hover {
  background: #111;
  color: #fff;
}

.reviews-subtext {
  font-size: 24px;
  line-height: 1.4;
  color: #555;
  margin: 20px 0 0;
}

button.reviews-cta {
  margin: 0;
  border: none;
  font-family: "Outfit", sans-serif;
  letter-spacing: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  text-align: center;
}

.reviews-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  height: 68px;
  padding: 0 32px;
  border-radius: 8px;
  background: #ef5b3f;
  color: #fff;
  text-decoration: none;
  font-size: 34px;
  font-weight: 300;
  transition: 0.2s ease;
  border-radius: 999px;
}

.reviews-cta:hover {
  opacity: 0.85;
}

/* タブレット: 見出しはPCと同じ60px。カードはPCデザインの等比縮小（460px系→400px） */
@media (min-width: 768px) and (max-width: 1199px) {
  .reviews-heading {
    font-size: 60px;
    line-height: 0.92;
  }

  .reviews-slider {
    gap: 28px;
    padding: 0 max(40px, calc(50% - 200px));
  }

  .review-card {
    flex: 0 0 400px;
    min-height: 228px;
    padding: 24px 21px 21px;
  }

  .review-stars {
    margin-bottom: 16px;
    gap: 5px;
  }

  .star-svg-wrap svg {
    width: 16px;
    height: 16px;
  }

  .review-text {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 20px;
  }

  .review-user-icon {
    width: 45px;
    height: 45px;
  }

  .review-name {
    font-size: 13px;
  }

  .review-date {
    font-size: 11px;
  }

  .reviews-subtext {
    font-size: 22px;
    margin-bottom: 0;
  }

  .reviews-cta {
    min-width: 300px;
    height: 68px;
    font-size: 30px;
  }

  .reviews-arrow {
    width: 48px;
    height: 48px;
    font-size: 30px;
  }
}

@media (max-width: 767.98px) {
  .reviews-heading {
    font-size: 34px;
    margin-bottom: 28px;
  }

  .reviews-slider-wrap {
    gap: 10px;
  }

  .reviews-slider {
    gap: 16px;
  }

  .review-card {
    flex: 0 0 82%;
    min-height: auto;
  }

  .review-text {
    font-size: 15px;
  }

  .reviews-arrow {
    width: 42px;
    height: 42px;
    font-size: 28px;
  }

  .reviews-subtext {
    font-size: 16px;
    margin: 20px 0 0;
  }

  .reviews-cta {
    min-width: 220px;
    height: 56px;
    font-size: 24px;
  }
}

.location-section {
  padding: 60px 100px;
  background: rgba(231, 219, 208, 0.25);
}

.location-container {
  max-width: 1200px;
  margin: 0 auto;
}

.location-heading {
  margin: 0 0 10px;
}

.location-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 80px;
}

.location-info {
  flex: 1;
  max-width: 380px;
}

.location-lead {
  margin: 0 0 12px;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  color: #555555;
}

.location-details p {
  margin: 0 0 4px;
  font-size: 12px;
  line-height: 1.5;
  color: #333;
}

/* 駅アクセス2行のみ FAQ の質問行（.faq-question）と同色・同太さ */
.location-details p.location-detail-station {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  color: #6d9a57;
}

.location-details p.location-detail-station:first-child {
  margin-top: 2em;
}

/* 英語補足行（駅名・住所の英語）：12px・直上の日本語行に密着 */
.location-details p.location-detail-en {
  font-size: 12px;
  line-height: 1.35;
  margin-top: 0;
  margin-bottom: 4px;
}

.location-details p:has(+ p.location-detail-en) {
  margin-bottom: 0;
  line-height: 1.35;
}

/* 英語行の直後が次ブロックの日本語など（.location-detail-en 以外）のときだけ一段空ける */
.location-details p.location-detail-en:has(+ p:not(.location-detail-en)) {
  margin-bottom: 14px;
}

.location-map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 500;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.location-btn-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
  width: 100%;
  max-width: 420px;
}

.location-map-btn:hover {
  opacity: 0.85;
}

.location-map {
  flex: 1;
  max-width: 672px;
}

.location-map img,
.location-map iframe {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
}

@media (max-width: 1199px) {
  .location-heading {
    font-size: 60px;
    margin-bottom: 10px;
  }

  .location-content {
    gap: 48px;
  }
}

@media (max-width: 767.98px) {
  .location-heading {
    font-size: 46px;
    margin-bottom: 10px;
  }

  .location-content {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }

  .location-info,
  .location-map {
    max-width: 100%;
  }

  .location-details p {
    font-size: 16px;
  }

  .location-map-btn {
    width: 100%;
    height: 42px;
    padding: 0 12px;
    font-size: 16px;
  }

  .location-btn-row {
    gap: 10px;
    max-width: 100%;
  }
}

.footer {
  background: #5A8F52;
  color: #fff;
  /* 他セクションの section（60px 100px）と横位置・余白を揃える */
  padding: 60px 100px 60px;
  font-family: "Outfit", sans-serif;
  box-sizing: border-box;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-left h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 60px;
  line-height: 0.92;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #fff;
}

.footer-right {
  text-align: right;
  min-width: 170px;
}

.footer-icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.footer-icons img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-left: 0;
}

/* HOME〜LOCATION：PC/タブレットは右カラム内で縦並び */
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 12px;
}

.footer-menu li {
  margin: 0;
}

.footer-menu a {
  color: #fff;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.footer-contact-lead {
  margin: 0;
  padding: 0;
  transform: translateY(12px);
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.92);
}

.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  min-width: 170px;
  height: 54px;
  padding: 0 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.footer-contact-btn:hover {
  background: #fff;
  color: #5a8f52;
}

/* 下ライン */
.footer-bottom {
  max-width: 1280px;
  margin: 34px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  line-height: 1.2;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
}

/* 汎用固定ページ（Privacy Policy など） */
.maple-page {
  padding: 140px 20px 80px;
  background: #fff;
  box-sizing: border-box;
}

.maple-page__inner {
  max-width: 720px;
  margin: 0 auto;
}

.maple-page__title {
  margin: 0 0 28px;
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 0.95;
  font-weight: 700;
  color: #2a2523;
}

.maple-page__content {
  font-family: "Noto Sans", "Outfit", sans-serif;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 400;
  color: #333;
}

.maple-page__content > *:first-child {
  margin-top: 0;
}

.maple-page__content p {
  margin: 0 0 1em;
}

.maple-page__content h2,
.maple-page__content h3 {
  margin: 1.5em 0 0.5em;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #2a2523;
}

.maple-page__content h2 {
  font-size: 1.35em;
}

.maple-page__content h3 {
  font-size: 1.15em;
}

.maple-page__content ul,
.maple-page__content ol {
  margin: 0 0 1em 1.25em;
  padding: 0;
}

.maple-page__content a {
  color: #5a8f52;
  text-decoration: underline;
}

.maple-page__content a:hover {
  opacity: 0.85;
}

body.page:not(.home) .site-header,
body.page-template-default .site-header {
  --header-bg-opacity: 1;
}

body.page:not(.home) .site-header::before,
body.page-template-default .site-header::before {
  opacity: 1 !important;
  background: rgba(58, 58, 58, 0.55);
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

/* =========================
  Send Message page
========================= */
.send-message-page {
  padding: 140px 20px 80px;
  background: #fff;
}

.send-message-page__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.send-message-page__title {
  margin: 0 0 24px;
  font-family: "Playfair Display", serif;
  font-size: 60px;
  line-height: 0.92;
  font-weight: 700;
  color: #2a2523;
}

.send-message-page__form {
  font-family: "Outfit", sans-serif;
}

.send-message-page__form form {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.send-message-page__form,
.send-message-page__form label,
.send-message-page__form input,
.send-message-page__form textarea,
.send-message-page__form button,
.send-message-page__form .wpcf7-submit {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #5a5a5a;
  margin-bottom: 10px;
}

/*
 * CONTACT 系ページ: トップ LP（2枚目）と同じグレーヘッダー。
 * - header に is-solid（PHP）で ::before を常時表示
 * - スラッグが contact のときも body クラスでフォロー
 * - 背面が白でも薄っすら見えないよう、通常 LP と同じ rgba をそのまま不透明で載せる
 */
body.page-send-message .site-header,
body.page-template-page-send-message .site-header,
body.page-slug-send-message .site-header,
body.page-slug-contact .site-header {
  --header-bg-opacity: 1;
}

body.page-send-message .site-header::before,
body.page-template-page-send-message .site-header::before,
body.page-slug-send-message .site-header::before,
body.page-slug-contact .site-header::before {
  opacity: 1 !important;
  background: rgba(58, 58, 58, 0.55);
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

body.page-send-message .site-header.is-solid::before,
body.page-template-page-send-message .site-header.is-solid::before,
body.page-slug-send-message .site-header.is-solid::before,
body.page-slug-contact .site-header.is-solid::before {
  opacity: 1 !important;
}

.send-message-page__form p,
.send-message-page__form label {
  width: 100%;
  max-width: 420px;
  text-align: left;
}

.send-message-page__form input,
.send-message-page__form textarea {
  width: 100%;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}

.send-message-page__form input[type="text"],
.send-message-page__form input[type="email"] {
  min-height: 40px;
  padding: 8px 10px;
}

.send-message-page__response-note {
  width: 100%;
  max-width: 420px;
  margin: 4px auto 18px;
  text-align: center;
}

.send-message-page__response-note p {
  margin: 0;
  text-align: center;
  line-height: 1.55;
  letter-spacing: 0.06em;
  color: #5a5a5a;
}

.send-message-page__form .wpcf7-submit {
  display: block;
  width: 170px;
  min-width: 170px;
  height: 54px;
  margin: 0 auto 10px;
  padding: 0 20px;
  border: 1.5px solid rgba(90, 143, 82, 0.9);
  border-radius: 999px;
  background: #5a8f52;
  color: #fff;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.send-message-page__form .wpcf7-submit:hover {
  background: #fff;
  color: #5a8f52;
}

/* CF7 error UI: remove yellow box and match required text color */
.send-message-page__form .wpcf7 form .wpcf7-response-output {
  margin: 12px 0 0;
  padding: 0;
  max-width: none;
  border: 0;
  background: transparent;
  color: #dc3232;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-align: left;
  white-space: nowrap;
}

.send-message-page__form .wpcf7-not-valid-tip {
  color: #dc3232;
}

/* 送信成功（Thank you. Your message has been sent. 等） */
.send-message-page__form .wpcf7 form .wpcf7-response-output.wpcf7-mail-sent-ok {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  white-space: normal;
  line-height: 1.35;
}

@media (max-width: 767.98px) {
  .send-message-page__form .wpcf7 form .wpcf7-response-output {
    white-space: normal;
  }

  .send-message-page__form .wpcf7 form .wpcf7-response-output.wpcf7-mail-sent-ok {
    font-size: 18px;
  }
}

/* =========================
  スマホ（〜767px・基準幅 375px）
========================= */
@media (max-width: 767.98px) {
  .send-message-page {
    padding: 116px 20px 56px;
  }

  .maple-page {
    padding: 116px 20px 56px;
  }

  .send-message-page__title {
    margin-bottom: 18px;
  }

  .send-message-page__form form {
    max-width: 100%;
  }

  :root {
    --layout-edge-x: 20px;
  }

  /* 共通: セクション内コンテンツ 40px（背景フルブリードは下で個別に 0） */
  section {
    padding: 40px;
  }

  /* .location-section はベースが section より詳細度が高いため明示 */
  .location-section {
    padding: 40px;
  }

  /* MENU スマホ: 外側 section は 0、内側コンテナで四辺 40px（.menu-container { padding:0 } との競合を避ける） */
  .menu-section {
    padding: 0;
  }

  .menu-section .menu-container {
    padding: 40px;
    box-sizing: border-box;
    max-width: 100%;
  }

  section.fv,
  section.flow-section,
  section.trust-section,
  section.feel-better-today-section,
  section.faq-section {
    padding: 0;
  }

  /* 添付: タイトル（Playfair Display / 700 / #2a2523 / 行間 0.92） */
  h2,
  .trust-heading,
  .feel-better-today-heading,
  .menu-heading,
  .flow-kicker,
  .faq-heading,
  .reviews-heading,
  .location-heading,
  .therapist-eyebrow,
  .therapist-name {
    font-family: "Playfair Display", serif;
    font-size: 52px;
    line-height: 0.92;
    font-weight: 700;
    color: #2a2523;
  }

  /* 添付: サブタイトル（Outfit Regular 14px / #555） */
  .trust-subheading,
  .menu-subheading,
  .flow-sub,
  .feel-better-today-lead,
  .location-lead {
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    color: #555555;
    margin-bottom: 10px;
  }

  .menu-subheading {
    text-align: center;
  }

  .trust-subheading {
    text-align: center;
  }

  /* 本文: 14px・行間は海外LPで一般的な 1.55〜1.6 前後（固定28pxは実効2.0で空きすぎ） */
  .feel-better-today-copy,
  .flow-text p,
  .faq-answer p,
  .location-details p {
    font-family: "Noto Sans", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.58;
    color: #555555;
  }

  /* LOCATION: 日本語→英語の組は行ボックスを詰める */
  .location-details p:has(+ p.location-detail-en) {
    line-height: 1.35;
  }

  .location-details p.location-detail-en {
    line-height: 1.35;
  }

  /* 駅アクセス2行: FAQ 質問行と同色・同太さ（上の .location-details p より後で Outfit を確定） */
  .location-details p.location-detail-station {
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 400;
    color: #6d8a52;
  }

  /* LOCATION 本文: 海外サイトでは本文 400 が主流。共通グループの 300 より一段太くして可読性を上げる */
  .location-section .location-details p {
    font-weight: 400;
  }

  /* FLOW ステップ文 */
  .flow-section .flow-text p {
    font-weight: 400;
  }

  /* About: 本文はPC版と同じ書体・サイズ */
  .therapist-section .therapist-copy p {
    margin: 0 0 12px;
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    color: #5c5957;
  }

  .therapist-section .therapist-copy p:last-child {
    margin-bottom: 0;
  }

  /* FEEL BETTER TODAY 本文: 同上（.feel-better-today-copy は共通グループで 300） */
  .feel-better-today-section .feel-better-today-copy {
    font-weight: 400;
  }

  .fv-inner {
    top: 150px;
    left: 50%;
    width: calc(100% - 80px);
    transform: translateX(-50%);
    text-align: center;
  }

  .fv h1 {
    margin-left: 0;
    margin-right: 0;
    font-size: 60px;
    line-height: 0.93;
  }

  .fv-copy,
  .fv-sub {
    margin-left: 0;
    margin-right: 0;
    font-size: 13px;
    line-height: 1.35;
    text-align: center;
  }

  .fv-copy {
    margin-top: 26px;
  }

  /* 背景フルブリード: 外側 0、内側コンテナのみ 40px */
  .trust-container {
    position: relative;
    z-index: 1;
    padding: 40px;
  }

  .feel-better-today-container {
    padding: 0;
  }

  .feel-better-today-text {
    padding: 40px;
  }

  .faq-container {
    padding: 40px;
  }

  .flow-section > .flow-bg {
    padding: 40px;
  }

  /* 通常セクション: 内側ラッパーは余白なし（MENU は上で .menu-section .menu-container に 40px） */
  .reviews-container,
  .location-container {
    padding: 0;
  }

  /* ABOUT: スマホは四辺 40px・背景画像なし・下段ギャラリー非表示 */
  .therapist-section {
    position: relative;
    overflow: visible;
    background: #fff;
    padding: 40px;
  }

  .therapist-section::before {
    content: none;
  }

  .therapist-container {
    position: relative;
    z-index: auto;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .therapist-gallery {
    display: none;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    justify-items: start;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    gap: 16px;
    margin-top: 24px;
  }

  .trust-item {
    display: grid;
    grid-template-columns: 56px auto;
    width: max-content;
    min-height: auto;
    align-items: center;
    justify-content: start;
    column-gap: 14px;
  }

  .trust-item img {
    width: 52px;
    height: 52px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .trust-item p {
    margin: 0;
    text-align: left;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    color: #555555;
    white-space: nowrap;
  }

  .trust-item p br {
    display: none;
  }

  .trust-section {
    position: relative;
    overflow: hidden;
    background: #fff;
  }

  .trust-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('./assets/img/solution-curve2.png') -520px bottom / 260% auto no-repeat;
    transform: scaleX(-1);
    transform-origin: center;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
  }

  .trust-section::after {
    content: none;
  }

  .trust-heading {
    margin-bottom: 8px;
    font-size: 56px;
    text-align: center;
  }

  .trust-subheading {
    margin-bottom: 0;
  }

  .feel-better-today-section {
    padding-bottom: 0;
  }

  .feel-better-today-section::after {
    display: none;
  }

  .feel-better-today-container {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .feel-better-today-heading,
  .feel-better-today-text {
    text-align: left;
  }

  .feel-better-today-lead {
    margin-top: 0;
    margin-bottom: 0;
  }

  .feel-better-today-copy {
    margin-top: 18px;
    line-height: 1.65;
    color: #070707;
  }

  .flow-text p {
    color: #5c5957;
  }

  .feel-better-today-image-wrap,
  .feel-better-today-image {
    max-width: 100%;
    margin-left: 0;
    transform: none;
  }

  .feel-better-today-image-wrap img {
    height: auto;
    border-radius: 0;
  }

  .menu-heading {
    text-align: center;
  }

  .menu-subheading {
    letter-spacing: normal;
  }

  .menu-table--desktop {
    display: none;
  }

  .menu-list--mobile {
    display: flex;
    flex-direction: column;
    margin-top: 28px;
  }

  .menu-list--mobile .menu-item {
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .menu-list--mobile .menu-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .menu-list--mobile .menu-info h3 {
    margin: 0;
    font-family: "Noto Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
    color: #000000;
  }

  .menu-list--mobile .menu-info h3 span {
    font-weight: 400;
  }

  .menu-list--mobile .menu-info p {
    margin: 4px 0 0;
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 18px;
    letter-spacing: 0;
    color: #333333;
  }

  .menu-list--mobile .menu-prices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 16px;
    row-gap: 8px;
    align-items: center;
    margin-top: 10px;
  }

  .menu-list--mobile .menu-price-group {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    justify-self: start;
  }

  .menu-list--mobile .menu-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-width: 48px;
    height: 17px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(90, 143, 82, 0.8);
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
  }

  .menu-list--mobile .menu-yen {
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: #333333;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
  }

  .menu-notes {
    margin-top: 18px;
    margin-left: 0;
    width: 100%;
    max-width: 100%;
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 15px;
    color: #333333;
  }

  .menu-notes p {
    margin: 0 0 6px;
  }

  .flow-section__bg {
    object-position: 58% center;
    opacity: 0.28;
    transform: scale(1.12);
  }

  .flow-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .flow-right {
    gap: 22px;
    padding-right: 0;
  }

  .flow-item {
    min-height: 84px;
  }

  .flow-num {
    font-size: 58px;
    top: -8px;
  }

  /* PC同様に番号へ軽く重なる配置に戻す */
  .flow-text {
    margin-left: 48px;
    padding-top: calc(14px * 1.58);
  }

  .flow-text p {
    margin-top: 12px;
    line-height: 1.58;
    color: #2a2523;
    font-weight: 400;
  }

  .flow-text p:first-of-type {
    margin-top: 0;
  }


  .therapist-eyebrow {
    font-size: 56px;
    line-height: 0.95;
    margin-bottom: 0;
  }

  /* 氏名のみ狭い幅でも1行（Playfair はやや広めのため clamp + トラッキング詰め） */
  .therapist-name {
    font-size: clamp(22px, 6.2vw, 34px);
    line-height: 1.12;
    margin-top: 0;
    margin-bottom: 16px;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }


  .therapist-gallery {
    margin-top: 28px;
    gap: 12px;
  }


  /* FAQ: 見本どおり（ベージュ・背景画像なし・見出し右上・緑アコーディオン） */
  .faq-section {
    background: #ebe8e4;
    overflow: visible;
  }

  .faq-bg {
    display: none;
  }

  .faq-container {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    row-gap: 0;
    gap: 28px;
    padding: 40px;
  }

  .faq-left {
    padding-top: 0;
    width: 100%;
  }

  .faq-heading-short {
    display: block;
    text-align: right;
    font-family: "Playfair Display", serif;
    font-size: 56px;
    line-height: 0.92;
    font-weight: 700;
    color: #2a2523;
  }

  .faq-heading-long {
    display: none;
  }

  .faq-right {
    max-width: none;
  }

  .faq-item {
    border-color: rgba(42, 37, 35, 0.1);
  }

  .faq-item:first-child {
    border-top: none;
  }

  .faq-question {
    padding: 18px 36px 18px 0;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    color: #6d8a52;
    text-align: left;
  }

  .faq-question::after {
    font-size: 22px;
    font-weight: 400;
    color: #6d8a52;
  }

  .faq-item[open] .faq-question {
    font-weight: 600;
  }

  .faq-answer {
    padding: 0 36px 20px 0;
  }

  .faq-answer p {
    font-family: "Noto Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.58;
    color: #5c5957;
  }



  /* カード＋矢印は左右フルブリード（セクションの横パディングなし） */
  .reviews-section {
    background: #fff;
    padding-left: 0;
    padding-right: 0;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .reviews-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .reviews-heading {
    text-align: center;
    margin-bottom: 20px;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
  }

  /* 矢印30pxと列幅を一致させないと左右非対称に見える */
  .reviews-slider-wrap {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr) 30px;
    align-items: center;
    justify-items: center;
    gap: 4px;
    width: 100%;
    margin-bottom: 16px;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
  }

  .reviews-slider-wrap .reviews-slider {
    justify-self: stretch;
    width: 100%;
  }

  /* 300pxカードをトラックの可視幅に対して中央に置く（flex-startのままだと左寄りに見える） */
  .reviews-slider {
    display: flex;
    gap: 12px;
    box-sizing: border-box;
    padding-left: max(0px, calc(50% - 150px));
    padding-right: max(0px, calc(50% - 150px));
    scroll-padding-inline: max(0px, calc(50% - 150px));
    max-width: 100%;
    width: 100%;
    min-width: 0;
    scroll-snap-type: none;
  }

  /* スマホ: カード寸法固定 300×200（展開時のみ高さ可変） */
  .review-card {
    flex: 0 0 300px;
    width: 300px;
    min-width: 300px;
    max-width: 300px;
    height: 200px;
    min-height: 200px;
    max-height: 200px;
    border: 1px solid #d0d0d0;
    border-radius: 14px;
    padding: 11px 14px 10px;
    text-align: left;
    opacity: 0.6;
    transform: scale(0.9);
    transform-origin: center center;
    box-shadow: none;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    overflow: hidden;
  }

  .review-card.is-expanded {
    width: 300px;
    min-width: 300px;
    max-width: 300px;
    height: auto;
    min-height: 200px;
    max-height: min(78vh, 520px);
    overflow-y: auto;
  }

  .review-excerpt {
    flex: 1 1 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .review-read-more {
    display: none;
    flex-shrink: 0;
    align-self: flex-start;
    margin: 2px 0 0;
    padding: 0;
    border: 0;
    background: transparent;
    font-family: "Outfit", sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #d94a2b;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .review-read-more:not([hidden]) {
    display: block;
  }

  .review-card.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
  }

  .review-stars {
    justify-content: flex-start;
    gap: 5px;
    margin-bottom: 6px;
    flex-shrink: 0;
  }

  .star-svg-wrap svg {
    width: 16px;
    height: 16px;
  }

  .review-card:not(.is-expanded) .review-text {
    text-align: left;
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;
    color: #222222;
    margin: 0;
    flex: 1 1 0;
    min-height: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .review-card.is-expanded .review-text {
    text-align: left;
    font-family: "Outfit", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;
    color: #222222;
    margin: 0 0 6px;
    flex: 0 0 auto;
    min-height: 0;
    overflow: visible;
    display: block;
    -webkit-line-clamp: unset;
  }

  .review-user {
    justify-content: flex-start;
    text-align: left;
    flex-shrink: 0;
  }

  .review-card:not(.is-expanded) .review-user {
    margin-top: auto;
  }

  .review-card.is-expanded .review-user {
    margin-top: 10px;
  }

  .review-user-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #bbb;
  }

  .review-date {
    font-size: 11px;
    font-weight: 400;
    color: #666666;
    line-height: 1.35;
  }

  .reviews-arrow {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border: 1px solid #111;
    background: #fff;
    color: #111;
    font-size: 16px;
    line-height: 1;
    margin-top: 0;
    padding: 0;
    align-self: center;
  }

  .reviews-arrow:hover {
    background: #fff;
    color: #111;
  }

  .reviews-subtext {
    margin: 8px 0 0;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
    font-family: "Noto Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #555555;
    text-align: center;
  }

  .reviews-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    min-width: 200px;
    height: 48px;
    margin: 0;
    padding: 0 28px;
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-weight: 500;
    border-radius: 999px;
    background: #ef5b3f;
    box-sizing: border-box;
    max-width: calc(100% - 80px);
  }


  .location-heading {
    margin-bottom: 10px;
  }

  .location-content {
    gap: 18px;
  }

  .location-info {
    max-width: none;
  }

  .location-lead {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .location-details p {
    margin-bottom: 2px;
  }

  .location-details p.location-detail-en {
    margin-top: 0;
    margin-bottom: 2px;
  }

  .location-map-btn {
    min-width: 126px;
    height: 42px;
    font-size: 13px;
    margin-top: 10px;
  }

  .location-map {
    max-width: 100%;
  }

  .footer {
    padding: 40px;
  }

  .footer-inner {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 14px;
    max-width: none;
    width: 100%;
  }

  .footer-right {
    min-width: 0;
    width: 100%;
    text-align: center;
  }

  .footer-icons {
    justify-content: center;
    margin-bottom: 14px;
  }

  .footer-icons img {
    width: 30px;
    height: 30px;
  }

  .footer-menu {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 10px 14px;
    padding: 0;
    margin: 0 auto;
    max-width: 100%;
    box-sizing: border-box;
  }

  .footer-menu a {
    font-size: 14px;
  }

  .footer-menu li {
    margin: 0;
    flex: 0 0 auto;
  }

  .footer-contact-btn {
    display: inline-flex;
    margin-top: 14px;
    min-width: 152px;
    height: 42px;
    padding: 0 16px;
    font-size: 14px;
  }

  .footer-contact-lead {
    text-align: center;
  }

  .footer-left h2 {
    text-align: center;
    font-size: 52px;
    line-height: 0.92;
    font-weight: 400;
    color: #fff;
  }

  .footer-bottom {
    margin-top: 12px;
    padding-top: 10px;
    flex-direction: column-reverse;
    gap: 6px;
    text-align: center;
    font-size: 10px;
  }
}

