/* ===========================
   YOHAKU LP — base styles
   =========================== */

:root {
  --bg-base:     #FFFFFF;
  --bg-surface:  #F7F7F7;
  --border:      #F2F2F2;
  --text-main:   #666666;
  --text-sub:    #B1B1B1;
  --gold:        #BAA05F;
  --gold-light:  #CCB887;
  --gold-dark:   #A98A3E;

  --font-serif: 'Noto Serif JP', serif;
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-en: 'Cormorant Garamond', serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg-base);
  color: var(--text-main);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  margin: 0;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

h2 { font-size: 26px; }
h3 { font-size: 19px; }

p { margin: 0; }

a { color: inherit; text-decoration: none; }

.inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.inner.narrow {
  max-width: 720px;
}

.section {
  padding: 88px 0;
}

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

/* reasons セクションだけ、背景グレーの開始位置を "Reasons" ラベルの縦中央に合わせる */
#reasons {
  position: relative;
  background: var(--bg-base);
}

#reasons::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 118px;
  bottom: 0;
  background: var(--bg-surface);
  z-index: 0;
}

#reasons > .inner {
  position: relative;
  z-index: 1;
}

#scenes {
  padding-top: 160px;
}

#faq {
  padding-top: 160px;
}

#pricing {
  padding-top: 160px;
  padding-bottom: 168px;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 104px;
}

.section-head h2 {
  margin-top: 24px;
  margin-bottom: 70px;
}

/* ---------- 英日2段見出し ---------- */
.section-heading {
  position: relative;
  text-align: center;
  margin-bottom: 16px;
}

.en-label {
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin: 0 0 4px;
}

.ja-label {
  font-size: 13px;
  color: var(--text-sub);
  letter-spacing: 0.08em;
  margin: 0 0 16px;
}

.gold-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
}

.lead-text {
  font-size: 15.5px;
  color: #555;
  line-height: 2.2;
}

.lead-serif {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 24px;
  text-align: center;
}

.body-text {
  font-size: 16px;
  margin-bottom: 18px;
}

.body-text:last-child { margin-bottom: 0; }

.emphasis {
  font-weight: 700;
  color: var(--gold);
}

.section-closing {
  max-width: 640px;
  margin: 56px auto 0;
  text-align: center;
  font-size: 16px;
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--gold);
  line-height: 1.95;
}

#empathy .section-closing {
  color: var(--text-main);
  margin-top: 104px;
}

#empathy .section-closing .gold-text {
  color: var(--gold);
}

#reasons .section-closing {
  color: var(--text-main);
}

#reasons .section-closing .gold-text {
  color: var(--gold);
}

#scenes .section-closing {
  color: var(--text-main);
  margin-top: 120px;
}

#scenes .section-closing .gold-text {
  color: var(--gold);
}

.brand-closing {
  position: relative;
  max-width: 640px;
  margin: 64px auto 0;
  padding: 64px 56px;
  text-align: center;
}

.brand-closing-leaf {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 36px;
  margin: 0 auto 24px;
  display: block;
}

.brand-closing-leaf path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.3;
  stroke-linecap: round;
}

.brand-closing-text {
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--text-main);
  line-height: 2.05;
}

.brand-closing-text .emphasis {
  font-weight: 700;
  color: var(--gold);
}

.brand-closing-divider {
  position: relative;
  z-index: 1;
  width: 120px;
  height: 10px;
  margin: 32px auto 0;
  display: block;
}

.brand-closing-divider line {
  stroke: var(--gold-light);
  stroke-width: 1;
}

.brand-closing-divider rect {
  fill: var(--gold-light);
}

@media (max-width: 860px) {
  .brand-closing {
    padding: 48px 28px;
  }
}

.brand-block {
  max-width: 720px;
  margin: 48px auto 0;
}

.brand-block h3 {
  margin-bottom: 16px;
  color: var(--gold);
}

#brand .brand-block {
  text-align: center;
}

#brand .brand-block h3 {
  font-size: 26px;
}

#compare .brand-block h3 {
  text-align: center;
}

/* ---------- フェードイン ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ---------- ヘッダー ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 0;
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
  max-width: none;
  padding-left: 32px;
  padding-right: 32px;
}

.logo-group {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.logo-img {
  display: block;
  align-self: flex-start;
  height: 20px;
  width: auto;
  margin-bottom: 4px;
}

.logo {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-main);
}

.logo-yohaku {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  color: var(--gold);
  margin-left: 8px;
  letter-spacing: 0.1em;
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  color: var(--text-sub);
  letter-spacing: 0.04em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.header-nav a {
  font-size: 13.5px;
  color: var(--text-main);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.header-nav a:hover { color: var(--gold); }

.header-cta {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  padding: 10px 22px;
  border-radius: 2px;
  background: var(--gold);
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.header-cta:hover { background: var(--gold-dark); }

.header-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(185, 153, 88, 0.45);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.45);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
  cursor: pointer;
}

.header-menu-button span {
  width: 18px;
  height: 1px;
  background: var(--text-main);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header.is-menu-open .header-menu-button span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

.site-header.is-menu-open .header-menu-button span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

main { padding-top: 0; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 52px;
  padding: 0 16px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-align: center;
}

.btn-primary {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #fff;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-primary:hover {
  background: #fff;
  color: var(--gold);
}

.btn-large {
  display: inline-block;
  width: auto;
  height: auto;
  padding: 18px 52px;
  font-size: 14px;
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-outline:hover {
  background: var(--gold);
  color: #fff;
}

#founder .founder-body .btn-outline {
  background: var(--gold);
  color: #fff;
}

#founder .founder-body .btn-outline:hover {
  background: transparent;
  color: var(--gold);
}

.link-sub {
  display: inline-block;
  margin-top: 30px;
  font-size: 13px;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

/* トップページのみ: ヒーローを固定し、下のセクションが上に重なってくる演出 */
#hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* 下層ページ用: hero-bg 直下の素のimgにも全面カバーを適用 */
.hero-bg > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 2s ease, transform 7.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide-01,
.hero-slide-03,
.hero-slide-04,
.hero-slide-05 {
  object-position: center center;
}

.hero-slide-02 {
  object-position: left center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(252, 248, 239, 0.18) 0%, rgba(252, 248, 239, 0.08) 36%, rgba(252, 248, 239, 0) 72%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 560px;
  margin: 0 0 0 120px;
  padding-bottom: 64px;
}

/* 中間幅(861〜1300px)だけ、ヘッダーの詰まりとヒーロー右側の欠けを緩和 */
@media (min-width: 861px) and (max-width: 1300px) {
  .site-header .inner {
    padding-left: 20px;
    padding-right: 20px;
    gap: 16px;
  }

  .header-nav {
    gap: 16px;
  }

  .header-nav a {
    font-size: 12.5px;
  }

  .logo-sub {
    display: none;
  }

  .hero-inner {
    margin-left: max(24px, calc((100vw - 1080px) / 2));
  }
}

@media (max-width: 1100px) {
  .site-header {
    background: rgba(255, 255, 255, 0.72);
  }

  .site-header.is-menu-open {
    background: rgba(255, 255, 255, 0.94);
    height: 100vh;
  }

  .site-header .inner {
    position: relative;
    z-index: 2;
    gap: 12px;
    height: 72px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .logo-group {
    position: relative;
    z-index: 2;
    flex: 1 1 auto;
    min-width: 0;
  }

  .logo-sub {
    display: none;
  }

  .header-nav {
    position: absolute;
    top: 0;
    left: -20px;
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-columns: minmax(280px, 36vw) repeat(2, minmax(0, 1fr));
    align-content: center;
    gap: clamp(36px, 6vw, 84px);
    padding: 112px clamp(28px, 5vw, 72px) 64px 0;
    background: #f7f4ee;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-22px) scale(0.975);
    transform-origin: top center;
    pointer-events: none;
    transition:
      opacity 0.72s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.95s cubic-bezier(0.16, 1, 0.3, 1),
      visibility 0.72s;
    overflow-y: auto;
    z-index: 1;
  }

  .header-nav::before {
    content: "";
    grid-column: 1;
    grid-row: 1 / span 4;
    align-self: stretch;
    min-height: calc(100vh - 176px);
    background:
      linear-gradient(rgba(255, 248, 236, 0.1), rgba(255, 248, 236, 0.1)),
      url("assets/generated/hero-fv-gold/hero-yohaku-01.webp") 72% center / cover no-repeat;
    opacity: 0;
    transform: translateX(-28px) scale(1.06);
    transition:
      opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.12s,
      transform 1.15s cubic-bezier(0.16, 1, 0.3, 1) 0.12s;
  }

  .site-header.is-menu-open .header-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-header.is-menu-open .header-nav::before {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  .header-nav a {
    width: 100%;
    min-height: 86px;
    padding: 22px 0 16px;
    text-align: left;
    font-family: var(--font-serif);
    font-size: clamp(18px, 2vw, 24px);
    letter-spacing: 0.08em;
    border-top: 1px solid rgba(92, 82, 67, 0.42);
    border-bottom: 0;
    color: var(--text-main);
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
      color 0.2s ease;
  }

  .site-header.is-menu-open .header-nav a {
    opacity: 1;
    transform: translateY(0);
  }

  .site-header.is-menu-open .header-nav a:nth-child(1) { transition-delay: 0.08s; }
  .site-header.is-menu-open .header-nav a:nth-child(2) { transition-delay: 0.12s; }
  .site-header.is-menu-open .header-nav a:nth-child(3) { transition-delay: 0.16s; }
  .site-header.is-menu-open .header-nav a:nth-child(4) { transition-delay: 0.2s; }
  .site-header.is-menu-open .header-nav a:nth-child(5) { transition-delay: 0.24s; }
  .site-header.is-menu-open .header-nav a:nth-child(6) { transition-delay: 0.28s; }
  .site-header.is-menu-open .header-nav a:nth-child(7) { transition-delay: 0.32s; }
  .site-header.is-menu-open .header-nav a:nth-child(8) { transition-delay: 0.36s; }

  .site-header:not(.is-menu-open) .header-nav a {
    transition-delay: 0s;
  }

  .header-nav a:last-child {
    border-bottom: 0;
  }

  .header-nav a::before {
    content: "";
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-en);
    font-size: 13px;
    letter-spacing: 0.08em;
    color: var(--text-sub);
  }

  .header-nav a:nth-child(1)::before { content: "Mission"; }
  .header-nav a:nth-child(2)::before { content: "Service"; }
  .header-nav a:nth-child(3)::before { content: "Area"; }
  .header-nav a:nth-child(4)::before { content: "Story"; }
  .header-nav a:nth-child(5)::before { content: "Voice"; }
  .header-nav a:nth-child(6)::before { content: "Flow"; }
  .header-nav a:nth-child(7)::before { content: "Price"; }
  .header-nav a:nth-child(8)::before { content: "FAQ"; }

  .header-cta {
    position: relative;
    z-index: 2;
    padding: 9px 16px;
    font-size: 12px;
    letter-spacing: 0.06em;
  }

  .header-menu-button {
    position: relative;
    z-index: 2;
    display: inline-flex;
  }

  @media (prefers-reduced-motion: reduce) {
    .header-nav,
    .header-nav::before,
    .header-nav a {
      transition: none;
      transform: none;
    }
  }
}

@media (max-width: 700px) {
  .site-header .inner {
    padding-left: 16px;
    padding-right: 16px;
    gap: 8px;
  }

  .logo {
    font-size: 18px;
  }

  .logo-yohaku {
    margin-left: 6px;
  }

  .logo-img {
    height: 17px;
    margin-bottom: 0;
  }

  .header-cta {
    padding: 8px 10px;
    font-size: 11px;
    letter-spacing: 0.03em;
  }

  .header-menu-button {
    width: 40px;
    height: 40px;
  }

  .header-nav {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 0;
    left: -16px;
    padding: 104px 28px 40px;
  }

  .header-nav::before {
    display: none;
  }

  .header-nav a {
    min-height: 0;
    padding: 18px 0 14px;
    text-align: center;
    font-size: 20px;
  }
}

@media (max-width: 860px) {
  .hero-inner {
    margin-left: 0;
  }
}

/* 下層ページ（ギフト）ヒーローのコンテンツ */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 640px;
  margin: 0 0 0 120px;
  padding-bottom: 64px;
}

.hero-content .section-heading {
  text-align: left;
}

.hero-content .gold-line {
  margin: 0;
}

.hero-content .hero-copy {
  font-size: 34px;
  margin-bottom: 20px;
}

.hero-content .hero-cta {
  margin-top: 8px;
}

.hero-inner .section-heading {
  text-align: left;
}

.hero-inner .ja-label {
  color: var(--text-main);
}

.hero-inner .gold-line {
  margin: 0;
}

.hero-badge {
  display: inline-block;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 18px;
  margin-bottom: 22px;
}

.hero-copy-wrap {
  position: relative;
}

.hero-line {
  position: absolute;
  top: -14px;
  left: -12px;
  width: calc(100% + 24px);
  height: calc(100% + 28px);
  pointer-events: none;
  z-index: 1;
}

.hero-line path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  transition: stroke-dashoffset 1.8s ease 0.3s;
}

.fade-in.is-visible .hero-line path {
  stroke-dashoffset: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--text-main);
}

.hero-sub {
  font-size: 15px;
  color: #4a4a4a;
  max-width: 560px;
  margin: 0 0 24px;
  line-height: 2.4;
}

.hero-highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 20px;
  margin-bottom: 26px;
  max-width: 480px;
  transition: border-color 0.2s ease;
}

.hero-highlight:hover { border-color: var(--gold); }

.hero-highlight-title {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  white-space: nowrap;
}

.hero-highlight-note {
  font-size: 12px;
  color: var(--text-sub);
  line-height: 1.6;
  flex: 1;
}

.hero-highlight-arrow {
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.approach-scatter {
  position: relative;
  width: 100%;
  max-width: 610px;
  height: 1400px;
  margin: 8px 0 32px;
}

.approach-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.approach-line path {
  fill: none;
  stroke: var(--gold);
  stroke-opacity: 0.6;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
  transition: stroke-dashoffset 8s ease 0.2s;
}

.fade-in.is-visible .approach-line path {
  stroke-dashoffset: 0;
}

.approach-item {
  position: absolute;
  width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 1;
  opacity: 0;
  transform: scale(0.92) translateY(14px);
  transition: opacity 1.1s ease, transform 1.1s ease;
}

.approach-item-1 { left: 15px;  top: 15px; }
.approach-item-2 { left: 315px; top: 355px; }
.approach-item-3 { left: 15px;  top: 695px; }
.approach-item-4 { left: 315px; top: 1035px; }

.fade-in.is-visible .approach-item-1 { opacity: 1; transform: none; transition-delay: 0s; }
.fade-in.is-visible .approach-item-2 { opacity: 1; transform: none; transition-delay: 2.6s; }
.fade-in.is-visible .approach-item-3 { opacity: 1; transform: none; transition-delay: 3.6s; }
.fade-in.is-visible .approach-item-4 { opacity: 1; transform: none; transition-delay: 4.6s; }

.approach-photo {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  margin-bottom: 12px;
}

.approach-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.approach-text {
  font-size: 12.5px;
  color: var(--text-main);
  line-height: 1.6;
}

@media (min-width: 601px) and (max-width: 860px) {
  .approach-scatter {
    width: min(100%, 610px);
    margin-left: auto;
    margin-right: auto;
  }

  .approach-line {
    left: 50%;
    width: 610px;
    max-width: 100%;
    transform: translateX(-50%);
  }

  .approach-item {
    align-items: center;
    text-align: center;
  }

  .approach-item-1,
  .approach-item-3 {
    left: calc(50% - 290px);
  }

  .approach-item-2,
  .approach-item-4 {
    left: calc(50% + 10px);
  }

  .approach-photo {
    margin-left: auto;
    margin-right: auto;
  }

  .approach-text {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .approach-scatter {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 320px;
    margin: 8px auto 32px;
  }
  .approach-item {
    position: static;
  }
  .approach-line {
    display: none;
  }
}

.hero-cta-note {
  font-size: 12.5px;
  color: #6a6a6a;
  margin-top: 28px;
  line-height: 1.8;
}


/* ---------- ステートメント（写真コラージュ＋縦書き） ---------- */
.statement {
  position: relative;
  padding: 100px 0 80px;
  background: var(--bg-base);
  /* statement-blobの右はみ出しがタブレット幅で水平オーバーフローになるのを遮断。
     hidden はスクロールコンテナ化して sticky を壊すため clip を使う */
  overflow-x: clip;
}

.page-content {
  position: relative;
  z-index: 1;
  margin-top: 80vh;
  background: var(--bg-base);
}

/* お客様の声＋ご利用の流れセクションで、固定背景の写真をごく薄く覗かせる */
/* 2セクションにまたがる継ぎ目の線を防ぐため、背景画像は.voices-flow-bg-wrap側で1枚だけ描画する */
.voices-flow-bg-wrap {
  position: relative;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
    url('assets/generated/hero-fv-gold/hero-yohaku-01.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

#voices {
  position: relative;
  padding-top: 160px;
}

.statement-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: stretch;
  gap: 40px;
}

.statement-main {
  min-width: 0;
}

.statement-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 56px;
}

.statement-blob {
  position: absolute;
  top: 40%;
  right: -60px;
  width: 340px;
  height: 340px;
  background: var(--bg-surface);
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

.statement-photo {
  position: relative;
  z-index: 1;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.statement-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.statement-photo-1 {
  grid-column: 1;
  aspect-ratio: 4 / 5;
  margin-top: 70px;
  transform: translateY(40px);
}

.statement-photo-2 {
  grid-column: 2;
  aspect-ratio: 3 / 4;
}

.statement-photo-3 {
  grid-column: 1 / span 2;
  width: 62%;
  margin-left: 34%;
  margin-top: -8px;
  aspect-ratio: 5 / 4;
}

.statement-sticky {
  position: relative;
}

.statement-text {
  position: sticky;
  top: 112px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.statement-cta {
  display: inline-block;
  border: 1px solid var(--text-main);
  color: var(--text-main);
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 14px 22px;
  margin-bottom: 40px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.statement-cta:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.statement-copy {
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.statement-en {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-block-end: 18px;
}

.statement-ja {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.9;
  color: var(--text-main);
}

@media (max-width: 860px) {
  .statement {
    padding: 72px 0 64px;
  }
  .statement-grid {
    grid-template-columns: minmax(0, 1fr) minmax(92px, 0.28fr);
    align-items: start;
    gap: 24px;
  }
  .statement-visual {
    grid-template-columns: 0.9fr 0.72fr;
    gap: 18px;
    margin-bottom: 0;
    padding-top: 10px;
  }
  .statement-blob {
    width: 210px;
    height: 210px;
    top: 48%;
    right: -24px;
    opacity: 0.72;
  }
  .statement-photo {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  }
  .statement-photo-1 {
    aspect-ratio: 4 / 5;
    margin-top: 96px;
    transform: none;
  }
  .statement-photo-2 {
    aspect-ratio: 1 / 1.18;
    width: 82%;
    justify-self: end;
  }
  .statement-photo-3 {
    grid-column: 1 / span 2;
    width: 68%;
    margin-left: 25%;
    margin-top: 12px;
    aspect-ratio: 5 / 3.6;
  }
  .statement-text {
    position: static;
    top: auto;
    align-items: flex-start;
  }
  .statement-copy {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-align: left;
  }
  .statement-en {
    font-size: 12px;
    margin-block-end: 12px;
  }
  .statement-ja {
    font-size: 26px;
    line-height: 1.75;
    letter-spacing: 0.06em;
  }
  .statement-ja br { display: block; }
  .hero-message-intro {
    transform: translateX(clamp(58px, 11.5vw, 94px));
  }
}

@media (max-width: 600px) {
  .statement { padding: 60px 0 52px; }
  .statement-grid {
    grid-template-columns: minmax(0, 1fr) minmax(72px, 0.25fr);
    gap: 16px;
  }
  .statement-visual {
    gap: 12px;
    padding-top: 0;
  }
  .statement-photo-1 {
    margin-top: 76px;
  }
  .statement-photo-2 {
    width: 78%;
  }
  .statement-photo-3 {
    width: 72%;
    margin-left: 18%;
    margin-top: 10px;
  }
  .statement-blob {
    width: 170px;
    height: 170px;
    right: -42px;
  }
  .statement-ja {
    font-size: 22px;
    line-height: 1.65;
  }
  .statement-en {
    font-size: 11px;
    letter-spacing: 0.16em;
  }
  .hero-message-intro {
    transform: translateX(clamp(38px, 11.5vw, 68px));
  }
}

/* ---------- Hero直下メッセージ ---------- */
.hero-message-intro {
  text-align: center;
  margin-top: 240px;
  margin-bottom: 56px;
}

.hero-message-intro .hero-sub,
.hero-message-intro .hero-highlight {
  margin-left: auto;
  margin-right: auto;
}

.hero-message-intro .hero-highlight {
  margin-bottom: 266px;
}

.hero-message-intro .hero-cta {
  text-align: center;
  margin-top: 60px;
}

/* ---------- Care: 赤ちゃんとお母さんへのメッセージ ---------- */
.care-section {
  padding: 40px 0 490px;
  background: var(--bg-base);
}

.care-visual {
  position: relative;
  width: 100%;
}

.care-photo-main {
  width: 100%;
  aspect-ratio: 16 / 5.85;
  overflow: hidden;
}

.care-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.care-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}

.care-overlay > * {
  pointer-events: auto;
}

.care-photo-sub {
  position: absolute;
  right: 0;
  top: calc(100% + 20px);
  width: 32%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.15);
  z-index: 4;
}

.care-photo-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.care-card {
  position: absolute;
  left: -76px;
  bottom: -55%;
  width: 680px;
  max-width: 92%;
  background: rgba(250, 248, 244, 0.94);
  padding: 48px 44px;
  z-index: 3;
}

.care-label {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 14px;
}

.care-card .lead-serif {
  text-align: left;
  font-size: 24px;
}

.care-card .body-text {
  font-size: 15px;
  color: var(--text-main);
}

/* 中間幅(861〜1300px)だけ、固定サイズのCONCEPTカードが赤ちゃんの顔に重なるのを回避 */
@media (min-width: 861px) and (max-width: 1300px) {
  .care-photo-main {
    aspect-ratio: 16 / 6;
  }

  .care-card {
    width: 560px;
    padding: 36px 32px;
    bottom: -62%;
    transform: translate(calc(108px - max(0px, (100vw - 1080px) / 2)), clamp(-16px, calc(-16px + (1300px - 100vw) * 0.16), 54px));
  }

  .care-card .lead-serif {
    font-size: 20px;
  }

  .care-card .body-text {
    font-size: 13.5px;
  }
}

@media (max-width: 860px) {
  .care-section { padding: 32px 0 64px; }
  .care-photo-main { aspect-ratio: 2.05 / 1; }
  .care-overlay {
    position: static;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
  }
  .care-photo-sub {
    position: static;
    width: 42%;
    aspect-ratio: 4 / 5;
    margin: -72px 0 0 24px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  }
  .care-card {
    position: static;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    margin-top: 40px;
    padding: 32px 24px;
  }
}

/* ---------- 共感セクション ---------- */
#empathy .inner {
  max-width: 1160px;
}

.empathy-grid {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 8px;
}

.empathy-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 64px;
  min-width: 0;
}

.empathy-col-offset {
  margin-top: 236px;
}

.empathy-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 36px 0 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.empathy-title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 10px;
  min-height: 63px;
}

.empathy-text {
  font-size: 14.5px;
  color: #4f4f4f;
  line-height: 2.1;
  min-height: 153px;
}

.empathy-photo {
  position: relative;
  margin: 18px -36px 0 -36px;
  flex: 1 1 auto;
  min-height: 140px;
  overflow: hidden;
}

.empathy-photo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0.6) 45%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.empathy-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- ブランド紹介 ---------- */
.brand-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: 500px;
  margin-bottom: 16px;
}

.brand-panel-photo {
  position: relative;
  align-self: center;
  height: 460px;
}

.brand-panel-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  mask-image: linear-gradient(to right, transparent, black 12%);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%);
}

.brand-panel-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px 72px max(64px, calc((100vw - 1080px) / 2 + 24px));
}

.brand-panel-title h2 {
  margin-bottom: 22px;
  line-height: 1.9;
}

.brand-panel-title .section-heading {
  text-align: left;
}

.brand-panel-title .gold-line {
  margin: 0;
}

.brand-panel-copy .body-text {
  max-width: 440px;
  line-height: 2.1;
}

.brand-panel-leaf {
  width: 150px;
  height: 62px;
  margin-top: 32px;
  display: block;
}

.brand-panel-leaf path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.3;
  stroke-linecap: round;
}

/* 1100px以下は、ミッション本文まで上に置いて中央揃えにする */
@media (min-width: 861px) and (max-width: 1100px) {
  .brand-panel {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "copy"
      "photo";
    row-gap: 28px;
    align-items: center;
    min-height: 0;
    padding: 48px max(48px, calc((100vw - 1080px) / 2 + 24px));
    text-align: center;
  }
  .brand-panel-text {
    display: contents;
    padding: 0;
  }
  .brand-panel-title {
    grid-area: text;
  }
  .brand-panel-title .section-heading {
    text-align: center;
  }
  .brand-panel-title .gold-line {
    margin: 0 auto;
  }
  .brand-panel-title h2 {
    margin-bottom: 0;
  }
  .brand-panel-copy {
    grid-area: copy;
    width: min(100%, 620px);
    margin: 0 auto;
  }
  .brand-panel-photo {
    grid-area: photo;
    width: min(100%, 760px);
    height: auto;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
  }
  .brand-panel-photo img {
    mask-image: none;
    -webkit-mask-image: none;
  }
  .brand-panel-copy .body-text {
    max-width: none;
    line-height: 2;
    text-align: center;
  }
  .brand-panel-leaf {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 860px) {
  .brand-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .brand-panel-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .brand-panel-photo img {
    mask-image: none;
    -webkit-mask-image: none;
  }
  .brand-panel-text {
    padding: 40px 28px;
    text-align: center;
  }
  .brand-panel-copy {
    width: min(100%, 620px);
    margin-left: auto;
    margin-right: auto;
  }
  .brand-panel-copy .body-text {
    margin-left: auto;
    margin-right: auto;
  }
  .brand-panel-title .section-heading,
  .brand-panel-title h2,
  .brand-panel-copy .body-text {
    text-align: center;
  }
  .brand-panel-title .gold-line,
  .brand-panel-leaf {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---------- 選ばれる理由 ---------- */
#reasons .inner {
  max-width: 1240px;
}

#reasons .section-closing {
  margin-top: 92px;
}

.reason-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.reason-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0 0 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.reason-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 20px;
}

.reason-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reason-heading {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0 32px;
  margin-bottom: 14px;
}

.reason-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.reason-item h3 {
  margin-bottom: 0;
  font-size: 16px;
  color: var(--gold);
}

.reason-item .body-text {
  padding: 0 32px;
  font-size: 13.5px;
  flex: 1 0 auto;
}

/* ---------- 利用シーン ---------- */
.scene-rows {
  display: flex;
  flex-direction: column;
  gap: 128px;
  margin-bottom: 56px;
}

.scene-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
}

.scene-row-reverse .scene-row-photo {
  order: 2;
}

.scene-row-reverse .scene-row-text {
  order: 1;
}

.scene-row-photo {
  position: relative;
  height: 428px;
  width: calc(100% + 60px);
  overflow: hidden;
}

.scene-row:not(.scene-row-reverse) .scene-row-photo {
  margin-right: -60px;
}

.scene-row-reverse .scene-row-photo {
  margin-left: -60px;
}

.scene-row-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.scene-row-text {
  padding: 0 40px 0 clamp(96px, calc(8vw + 48px), 148px);
}

.scene-row-reverse .scene-row-text {
  padding: 0 clamp(48px, 8vw, 100px) 0 40px;
}

.scene-row-text h3 {
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.6;
  margin-bottom: 22px;
}

.scene-row-text .body-text {
  color: #6a6a6a;
  font-size: clamp(13px, 1.3vw, 15px);
}

@media (max-width: 860px) {
  .scene-rows {
    gap: 48px;
  }
  .scene-row,
  .scene-row-reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .scene-row-reverse .scene-row-photo,
  .scene-row-reverse .scene-row-text {
    order: 0;
  }
  .scene-row-photo {
    height: auto;
    aspect-ratio: 4 / 3;
    width: 88%;
    margin: 0 auto 0 0;
  }
  .scene-row-reverse .scene-row-photo {
    margin: 0 0 0 auto;
  }
  .scene-row-text,
  .scene-row-reverse .scene-row-text {
    padding: 0 24px;
  }
  .scene-row-reverse .scene-row-text {
    padding-left: 12%;
  }
  .scene-row-text h3 {
    font-size: 22px;
  }
  .scene-row-text .body-text {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .scene-row-text h3 {
    font-size: 18px;
  }
  .scene-row-text .body-text {
    font-size: 14px;
  }
}

/* ---------- サービス紹介 ---------- */
.service-section {
  background: #fff;
  padding-top: 160px;
  padding-bottom: 0;
}

.service-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 40px;
  margin: 0 0 56px;
}

.service-head-text {
  text-align: left;
}

.service-head-text h2 {
  margin-bottom: 70px;
}

.service-head-text .lead-text {
  text-align: left;
}

.service-head-vertical {
  display: flex;
  align-items: center;
  gap: 14px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding-top: 4px;
}

.service-head-vertical .en-label {
  margin: 0;
}

.service-head-vertical .ja-label {
  margin: 0;
}

.service-head-vertical .gold-line {
  width: 1px;
  height: 72px;
  margin: -140px 0 0;
}

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

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 28px;
}

.service-card h3 {
  font-size: 17px;
  color: var(--gold);
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--gold);
}

.service-card .body-text {
  font-size: 14px;
  color: #4f4f4f;
  line-height: 1.9;
}

.service-photo-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr 0.9fr 1.15fr;
  gap: 32px;
  align-items: center;
  margin-top: 72px;
  padding: 0 0 40px;
}

.service-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-photo:nth-child(even) {
  aspect-ratio: 3 / 2;
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-section .brand-block {
  padding-top: 56px;
  padding-bottom: 56px;
  text-align: center;
}

@media (max-width: 600px) {
  .service-photo-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-head-vertical {
    writing-mode: horizontal-tb;
    flex-direction: row;
    gap: 10px;
  }
  .service-head-vertical .gold-line {
    width: 24px;
    height: 1px;
  }
}

/* ---------- 対応エリア ---------- */
.area-section {
  overflow: hidden;
}

.area-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0;
}

.area-text {
  position: relative;
  z-index: 2;
  box-sizing: content-box;
  max-width: 420px;
  padding-left: max(64px, calc((100vw - 1080px) / 2 - 36px));
  padding-right: 40px;
}

.area-map {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  overflow: visible;
}

.area-map-visual {
  position: relative;
  width: calc(100% + 40px);
  margin-left: -40px;
  margin-top: 128px;
  flex-shrink: 0;
}

.area-text h2 {
  margin-bottom: 70px;
}

.area-text .section-heading {
  text-align: left;
}

.area-text .gold-line {
  margin: 0;
}

.area-lead {
  margin-bottom: 14px;
}

.area-boxes {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}

.area-box {
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  padding: 22px 26px;
}

.area-box-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 12px;
}

.area-box-list {
  font-size: 14.5px;
  color: var(--text-main);
  line-height: 1.9;
  margin: 0;
}

.area-note {
  font-size: 12.5px;
  color: #8a8a8a;
  margin: 16px 0 0;
}

.area-online {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  padding: 22px 16px;
  background: var(--bg-surface);
  border-radius: 4px;
}

.area-online p {
  flex: 1;
}

.area-online-mark {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  margin-top: 2px;
}

.area-online p {
  font-size: 14px;
  color: #4a4a4a;
  margin: 0;
}

.area-map-img {
  width: 100%;
  height: auto;
  display: block;
  mask-image: linear-gradient(to right, transparent 0%, black 22%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 22%);
}

.area-map-label {
  position: absolute;
  transform: translate(-50%, -50%);
  font-size: 13px;
  letter-spacing: 0.03em;
  color: #6b6f60;
  white-space: nowrap;
  pointer-events: none;
}

.area-map-label--tokyo {
  font-size: 14px;
  font-weight: 700;
  color: #2f3a2e;
}

/* ---------- 比較テーブル ---------- */
.table-wrap {
  position: relative;
  overflow-x: auto;
  margin-bottom: 48px;
  -webkit-overflow-scrolling: touch;
}

.table-scroll-hint {
  display: none;
  font-size: 12px;
  color: #8a8a8a;
  text-align: right;
  margin-bottom: 8px;
}

.compare-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  font-size: 13.5px;
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.compare-table thead th {
  background: var(--bg-surface);
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--text-main);
}

.compare-table tbody th {
  text-align: left;
  font-family: var(--font-sans);
  font-weight: 500;
  color: #4f4f4f;
  background: var(--bg-base);
}

.compare-table .highlight {
  background: rgba(186, 160, 95, 0.1);
  color: var(--gold);
  font-weight: 700;
}

.compare-table thead th.highlight {
  background: var(--gold);
  color: #fff;
}

.check-list {
  list-style: none;
  margin: 18px auto 0;
  padding: 0;
  display: grid;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  transform: translateX(64px);
}

.check-list li {
  font-size: 14.5px;
  padding-left: 26px;
  position: relative;
}

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

/* ---------- 代表ストーリー ---------- */
.founder-section {
  padding-top: 0;
  background: #fff;
}

.founder-pin {
  position: relative;
  height: calc(100vh + 45vh);
  margin-bottom: 120px;
}

.founder-visual {
  --fp-fade: 0;
  --fp-scale: 0;
  --fp-overlay: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.founder-visual-media {
  position: absolute;
  inset: 0;
  opacity: var(--fp-fade);
  transform: scale(calc(0.55 + 0.45 * var(--fp-scale)));
  transform-origin: center center;
  will-change: transform, opacity;
}

.founder-visual-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-overlay {
  position: absolute;
  left: 64px;
  right: 0;
  bottom: 0;
  background: rgba(24, 22, 18, 0.58);
  padding: 44px max(24px, calc((100vw - 1080px) / 2 + 24px)) 48px;
  opacity: var(--fp-overlay);
  transform: translateY(calc((1 - var(--fp-overlay)) * 36px));
}

.founder-overlay .section-heading {
  text-align: left;
}

.founder-overlay .en-label {
  color: var(--gold-light);
}

.founder-overlay .ja-label {
  color: rgba(255, 255, 255, 0.75);
}

.founder-overlay .gold-line {
  margin: 0;
}

.founder-overlay h2 {
  color: #fff;
  margin-top: 14px;
  margin-bottom: 18px;
}

.founder-overlay .lead-text {
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
}

.founder-body {
  max-width: 860px;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .founder-body .body-text {
    word-break: keep-all;
    overflow-wrap: break-word;
  }
}

/* ---------- 代表プロフィールページ ---------- */
.founder-profile-hero {
  position: relative;
  padding-top: 0;
  padding-bottom: 64px;
}

.founder-profile-photo {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 40px;
}

.founder-profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-profile-hero .inner {
  text-align: center;
}

.founder-profile-hero h1 {
  font-size: 26px;
  line-height: 1.6;
  margin-top: 18px;
}

@media (max-width: 600px) {
  .founder-profile-photo {
    aspect-ratio: 4/3;
  }
  .founder-profile-hero h1 {
    font-size: 21px;
  }
}

/* ---------- お客様の声 ---------- */
.voice-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.voice-card {
  background: var(--bg-base);
  border-radius: 4px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.voice-text {
  font-size: 14px;
  color: #4a4a4a;
  margin-bottom: 18px;
  line-height: 1.95;
}

.voice-attr {
  font-size: 12.5px;
  color: var(--gold);
  font-weight: 700;
  text-align: right;
}

/* ---------- ご利用の流れ ---------- */
.flow-section {
  position: relative;
}

#flow::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 174px;
  bottom: 0;
  background: var(--bg-surface);
  z-index: 0;
}

#flow .flow-surface {
  position: relative;
  z-index: 1;
  background: transparent;
}

.flow-surface,
.service-surface {
  width: 70%;
  max-width: 1300px;
  margin: 0 auto 0 0;
  background: var(--bg-surface);
  padding: 56px 0;
}

.service-surface-wrap {
  position: relative;
}

.service-surface-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 70%;
  max-width: 1300px;
  background: var(--bg-surface);
  z-index: 0;
}

.service-surface-wrap > * {
  position: relative;
  z-index: 1;
}

.flow-surface .inner,
.service-surface .inner {
  /* 親のグレーボックスは左寄せ70%幅のため、コンテンツはビューポート基準で中央に置く */
  margin: 0;
  margin-left: max(24px, calc((100vw - 1080px) / 2));
  width: min(1080px, calc(100vw - 48px));
  max-width: none;
}

@media (max-width: 860px) {
  .flow-surface,
  .service-surface {
    width: 100%;
    margin: 0 auto 0 0;
    padding: 40px 0;
  }
  .service-surface {
    width: calc(100% - 48px);
  }
  .flow-surface .inner,
  .service-surface .inner {
    margin-left: 0;
  }
  .service-surface-wrap::before {
    width: calc(100% - 48px);
  }
}

.flow-list {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
}

.flow-item {
  flex: 1 1 0;
  min-width: 0;
  padding: 0 14px;
}

.flow-num-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.flow-num {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.flow-num-line {
  flex: 1 1 auto;
  height: 1px;
  background: var(--gold-light);
}

.flow-content h3 {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
  min-height: 51px;
}

.flow-content .body-text {
  font-size: 13px;
  line-height: 1.8;
  min-height: 148px;
}

@media (min-width: 861px) and (max-width: 980px) {
  .flow-content h3 {
    min-height: 77px;
  }
}

/* ---------- 料金 ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

@media (min-width: 861px) {
  #g-pricing .price-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 30px 28px;
  text-align: center;
}

.price-main {
  background: var(--gold);
  color: #fff;
  border: none;
}

.price-label {
  font-size: 12.5px;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gold);
}

.price-main .price-label { color: rgba(255,255,255,0.85); }

.price-value {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  white-space: nowrap;
}

.price-value span {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  margin-left: 6px;
  white-space: nowrap;
}

.price-note {
  font-size: 12.5px;
  color: #6a6a6a;
  margin-top: 12px;
}

.price-main .price-note { color: rgba(255,255,255,0.85); }

.option-block {
  background: var(--bg-surface);
  border-radius: 4px;
  padding: 28px 30px;
  margin-bottom: 16px;
}

.option-list {
  list-style: none;
  margin: 14px 0 12px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.option-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14.5px;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 8px;
}

.option-list li span:first-child {
  word-break: keep-all;
}

.option-list li span:last-child {
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.pricing-cta {
  max-width: 640px;
  margin: 56px auto 0;
  text-align: center;
  background: var(--bg-surface);
  border-radius: 4px;
  padding: 44px 36px;
}

.pricing-cta h3 { margin-bottom: 32px; }
.pricing-cta .body-text { margin-bottom: 50px; }

/* ---------- 料金プラン（新レイアウト） ---------- */
.pricing-head {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}

.pricing-intro {
  margin-left: clamp(-60px, calc(40px - (100vw - 1080px) / 2), 40px);
}

.pricing-intro .en-label {
  margin-bottom: 6px;
}

.pricing-title {
  font-size: 32px;
  margin-bottom: 16px;
}

.pricing-intro .lead-text {
  text-align: left;
  font-size: 14.5px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.price-card-main,
.price-card-option {
  background: #fff;
  border: none;
  border-radius: 16px;
  padding: 32px 30px;
  text-align: left;
}

.price-card-main .price-label-sub {
  margin-top: 20px;
}

.price-card-option .price-label {
  margin-bottom: 16px;
}

.price-card-option .option-list {
  margin: 0;
}

.pricing-support {
  border-radius: 16px;
  padding: 40px 36px;
  margin-bottom: 136px;
}

.pricing-support-title {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}

.pricing-support-title .line {
  flex: 1 1 auto;
  max-width: 120px;
  height: 1px;
  background: var(--gold);
}

.support-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 16px;
}

.support-icon-item {
  text-align: center;
}

.support-icon-item svg {
  width: 32px;
  height: 32px;
  margin: 0 auto 14px;
  display: block;
  color: var(--gold);
}

.support-icon-item svg path,
.support-icon-item svg circle,
.support-icon-item svg rect,
.support-icon-item svg line {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-icon-item p {
  font-size: 12.5px;
  color: var(--text-main);
  line-height: 1.7;
}

/* 中間幅(861〜1100px)だけ、料金カードが窮屈になって価格がはみ出すのを防ぐ */
@media (min-width: 861px) and (max-width: 1100px) {
  .pricing-head {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 860px) {
  .pricing-head {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

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

/* ---------- FAQ ---------- */
.faq-list {
  display: grid;
  gap: 14px;
  margin-bottom: 8px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 6px 26px;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 32px 18px 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 15.5px;
  position: relative;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 20px;
  color: var(--gold);
  transition: transform 0.2s ease;
}

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

.faq-item .body-text {
  padding-bottom: 22px;
  font-size: 14.5px;
  color: #4f4f4f;
}

/* 開閉をふわっと見せる。高さのアニメーションは対応ブラウザのみ(Chrome 131+)、
   それ以外は回答のフェードインのみ効く */
.faq-item {
  interpolate-size: allow-keywords;
}

.faq-item::details-content {
  opacity: 0;
  height: 0;
  overflow: clip;
  transition: height 0.35s ease, opacity 0.35s ease, content-visibility 0.35s allow-discrete;
}

.faq-item[open]::details-content {
  opacity: 1;
  height: auto;
}

.faq-item[open] .body-text {
  animation: faqFadeIn 0.45s ease both;
}

@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- CTA セクション ---------- */
.cta-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.93);
}

.cta-section .inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-section h2 {
  font-size: 28px;
  margin-bottom: 40px;
}

.cta-section .lead-text {
  margin-bottom: 26px;
}

.cta-section .body-text {
  margin-bottom: 0;
}

.cta-button-wrap {
  margin: 36px 0 8px;
}

/* ---------- フッター ---------- */
.site-footer {
  position: relative;
  z-index: 1;
  background: var(--text-main);
  color: #e8e6e1;
  padding: 64px 0 0;
  text-align: center;
}

.footer-brand {
  margin-bottom: 32px;
}

.footer-logo-img {
  display: inline-block;
  height: 26px;
  width: auto;
  margin-bottom: 10px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.footer-logo span {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  margin-left: 8px;
  color: var(--gold-light);
}

.footer-copy {
  font-size: 13px;
  color: #b9b6b0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 40px;
  width: fit-content;
  max-width: 100%;
  margin: 32px auto 40px;
}

.footer-nav a {
  font-size: 13.5px;
  color: #e8e6e1;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--gold-light);
}

.footer-contact-bar {
  display: block;
  max-width: 1080px;
  margin: 0 auto 56px;
  padding: 18px 24px;
  background: var(--gold);
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.15em;
  border: 1px solid var(--gold);
  border-radius: 2px;
  transition: background 0.3s ease, color 0.3s ease;
}

.footer-contact-bar:hover {
  background: #fff;
  color: var(--gold);
  border-color: var(--gold);
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
}

.footer-rights {
  font-size: 11.5px;
  color: #8a8782;
}

.footer-policy-link {
  font-size: 12px;
  color: #b9b6b0;
  transition: color 0.2s ease;
}

.footer-policy-link:hover {
  color: var(--gold-light);
}

@media (max-width: 600px) {
  .footer-nav {
    gap: 12px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}

/* ===========================
   レスポンシブ
   =========================== */
@media (max-width: 860px) {
  .brand-layout,
  .area-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .founder-overlay {
    left: 0;
    right: 0;
    padding: 28px 20px 32px;
  }

  .founder-overlay .lead-text {
    max-width: none;
  }

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

  .area-text {
    max-width: 720px;
    width: min(100%, calc(100vw - 48px));
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
    text-align: center;
  }

  .area-text .section-heading {
    text-align: center;
  }

  .area-text .gold-line {
    margin-left: auto;
    margin-right: auto;
  }

  .area-boxes {
    align-items: center;
  }

  .area-box {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .area-map {
    max-width: 360px;
    margin: 0 auto;
    display: block;
  }

  .area-map-visual {
    width: 100%;
    margin-top: 64px;
  }

  .area-map-img {
    width: 100%;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .brand-image img {
    aspect-ratio: 16/10;
  }

  .empathy-grid {
    flex-direction: column;
  }

  .empathy-col-offset {
    margin-top: 0;
  }

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

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

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

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }

  h2 { font-size: 22px; }

  .hero { min-height: 70vh; }
  .hero-copy { font-size: 26px; }
  .hero-slide { object-position: 58% center; }
  .hero-slide-02,
  .hero-slide-03 { object-position: 68% center; }

  .hero-badges {
    flex-direction: column;
    align-items: center;
  }

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

  .flow-list {
    flex-direction: column;
    gap: 28px;
  }

  .flow-item {
    padding: 0;
  }

  .flow-content h3 {
    min-height: 0;
  }

  .flow-content .body-text {
    min-height: 0;
  }

  .compare-table { font-size: 12px; min-width: 560px; }
  .compare-table th, .compare-table td { padding: 12px 10px; }
  .table-scroll-hint { display: block; }

  .cta-section h2 { font-size: 23px; }
}

@media (max-width: 420px) {
  .inner { padding: 0 18px; }
  .area-text {
    width: min(100%, calc(100vw - 36px));
    padding-left: 18px;
    padding-right: 18px;
  }
  .hero-copy { font-size: 23px; }
}

/* ---------- ギフトバナー（LP内） ---------- */
.gift-banner {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gift-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gift-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gift-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(28, 24, 20, 0.55);
}

.gift-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.gift-banner__en {
  position: relative;
  font-family: var(--font-en);
  font-size: 24px;
  letter-spacing: 0.25em;
  color: #fff;
  margin-bottom: 8px;
}

.gift-banner__line {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 20px;
}

.gift-banner__heading {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 300;
  color: #FFFFFF;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.gift-banner__sub {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  letter-spacing: 0.06em;
}

.gift-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 52px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding: 0 16px;
  border-radius: 2px;
  transition: background 0.3s ease, color 0.3s ease;
}

.gift-banner__cta:hover {
  background: #fff;
  color: var(--gold);
}

@media (max-width: 600px) {
  .gift-banner { height: 220px; }
}

/* ---------- ギフトページ：カード4枚（できること） ---------- */
.gift-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.gift-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 28px;
  text-align: center;
}

.gift-card__icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 18px;
  color: var(--gold);
}

.gift-card__icon svg { width: 100%; height: 100%; }

.gift-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

@media (max-width: 860px) {
  .gift-card-grid { grid-template-columns: 1fr; }
}

/* ---------- ギフトページ：バッジ ---------- */
/* ギフトページ: ヒーローはテキスト側（左）を白く沈めて視認性を確保 */
#g-hero .hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(252, 248, 239, 0.94) 0%,
    rgba(252, 248, 239, 0.86) 34%,
    rgba(252, 248, 239, 0.45) 60%,
    rgba(252, 248, 239, 0) 88%
  );
}

/* ギフトページ: 特徴3カード（写真なし・番号つき） */
#g-reasons .reason-list {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

#g-reasons .reason-item {
  padding: 36px 32px;
}

#g-reasons .reason-num {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold-light);
}

#g-reasons .reason-item h3 {
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 14px;
}

#g-reasons .reason-item .body-text {
  padding: 0;
  font-size: 13.5px;
}

.gift-hero-badge {
  display: inline-block;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 6px 18px;
  margin-bottom: 22px;
  background: transparent;
}

/* ==========================================================
   C案追加: 2つの過ごし方（choice-card）／3本柱（pillar）／
   サービス5項目（service-item）／代表実績（founder-creds）
   ========================================================== */

/* ---------- 2つの過ごし方（選択ボタン＋シーングループ） ---------- */
.choice-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 32px 0 40px;
}

.choice-btn {
  display: inline-block;
  min-width: 220px;
  padding: 14px 32px;
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 0.14em;
  text-align: center;
  color: var(--gold-dark);
  text-decoration: none;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--bg-base);
  transition: background 0.3s ease, color 0.3s ease;
}

.choice-btn:hover {
  background: var(--gold);
  color: #fff;
}

.scene-group {
  scroll-margin-top: 96px;
  margin-top: 160px;
}

#scene-home {
  margin-top: 96px;
}

.scene-group-head {
  text-align: left;
  margin-bottom: 64px;
}

.scene-group-heading-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 22px;
}

.scene-group-num {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--gold);
  white-space: nowrap;
}

.scene-group-jp {
  font-size: 14px;
  color: var(--text-sub);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.scene-group-title-line {
  flex: 1 1 auto;
  height: 1px;
  background: var(--gold);
}

.scene-group-lead {
  font-size: 14.5px;
  line-height: 2;
  color: var(--text-main);
}

/* ---------- 3本柱タブ ---------- */
.pillar-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 64px;
}

.pillar-tab {
  appearance: none;
  background: transparent;
  border: none;
  border-top: 1px solid var(--border);
  padding: 20px 4px 16px;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.3s ease, border-color 0.3s ease;
}

.pillar-tab:hover {
  opacity: 0.85;
}

.pillar-tab.is-active {
  border-top: 2px solid var(--gold);
  opacity: 1;
}

.pillar-num {
  display: block;
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 10px;
}

.pillar-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  color: #4f4f4f;
  margin-bottom: 10px;
}

.pillar-text {
  display: block;
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--text-main);
}

.pillar-panel[hidden] {
  display: none;
}

/* ---------- サービス5項目 ---------- */
.service-items {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.service-item {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 40px;
  align-items: center;
}

.service-item-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-item-text h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--gold);
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--gold);
}

.service-item-text .body-text {
  font-size: 14.5px;
  line-height: 2;
  color: #4f4f4f;
}

/* ---------- 代表実績 ---------- */
.founder-creds {
  list-style: none;
  width: fit-content;
  margin: 40px auto 0;
  padding: 28px 36px;
  border: 1px solid var(--border);
  background: var(--bg-base);
  text-align: left;
}

.founder-creds li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  line-height: 2.1;
  color: var(--text-main);
}

.founder-creds li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ---------- 中間幅・モバイル ---------- */
@media (max-width: 860px) {
  .choice-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
  }
  .choice-btn {
    min-width: 0;
    flex: 1 1 150px;
    padding: 12px 16px;
    font-size: 14.5px;
  }
  .scene-group {
    scroll-margin-top: 80px;
    margin-top: 96px;
  }
  #scene-home {
    margin-top: 56px;
  }
  .scene-group-head {
    margin-bottom: 40px;
    padding: 0 24px;
  }
  .scene-group-heading-row {
    gap: 14px;
    margin-bottom: 16px;
  }
  .scene-group-num {
    font-size: 26px;
  }
  .scene-group-jp {
    font-size: 12px;
  }
  .scene-group-lead {
    font-size: 13.5px;
    text-align: left;
  }
  .pillar-tabs {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 48px;
  }
  .pillar-tab {
    padding: 16px 4px 12px;
  }
  .service-items {
    gap: 48px;
  }
  .service-item {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-item-photo {
    aspect-ratio: 16 / 10;
  }
  .founder-creds {
    max-width: 100%;
    padding: 24px 24px;
  }
  .founder-creds li {
    font-size: 13px;
  }
}
