/* ============================================
   ハピフル — コーポレートサイト
   warm craft / soft minimalism
   coming-soon のデザイン語彙を踏襲
   ============================================ */

:root {
  /* brand — coming-soon と同じトークン */
  --coral-deep:  #d96b86;
  --coral:       #ee8ba0;
  --coral-soft:  #f8c4cf;
  --coral-mist:  #fde3e8;
  --leaf:        #a8c97f;
  --leaf-deep:   #7ea659;

  /* surface */
  --cream:       #fbf6f1;
  --cream-warm:  #f6ede3;
  --paper:       #fffaf5;

  /* ink */
  --ink:         #5a4646;
  --ink-soft:    #8c7a73;
  --ink-faint:   #c9b8af;

  /* type */
  --font-display: "Klee One", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  --font-body:    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  --font-serif:   "Shippori Mincho", "Yu Mincho", serif;

  /* layout */
  --max-w:        1180px;
  --gutter:       clamp(24px, 5vw, 72px);
  --section-py:   clamp(88px, 11vw, 148px);

  /* easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   Reset + Base
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.8;
  font-feature-settings: "palt" 1;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ============================================
   Background blobs（coming-soon の雰囲気を継承・抑制）
   ============================================ */
.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.site-bg .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.site-bg .blob--1 {
  width: 640px; height: 640px;
  top: 10px; left: -100px;
  background: radial-gradient(circle, #d3e5b8 0%, #eaf3da 45%, transparent 75%);
  opacity: 0.5;
}
.site-bg .blob--2 {
  width: 560px; height: 560px;
  bottom: -120px; right: -80px;
  background: radial-gradient(circle, var(--coral-soft) 0%, var(--coral-mist) 45%, transparent 75%);
  opacity: 0.55;
}

/* ============================================
   Site Header
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,246,241,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(248,196,207,0.3);
}
.site-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.site-logo img {
  width: 42px; height: 42px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.site-logo__name {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.26em;
  color: var(--coral-deep);
  text-transform: uppercase;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-nav__link {
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.25s;
}
.site-nav__link::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.site-nav__link:hover,
.site-nav__link[aria-current="page"] {
  color: var(--coral-deep);
}
.site-nav__link:hover::after,
.site-nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}
.site-nav__cta {
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--paper);
  background: var(--coral-deep);
  padding: 10px 24px;
  border-radius: 999px;
  transition: background 0.25s, transform 0.2s;
}
.site-nav__cta:hover {
  background: var(--coral);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink-soft);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 36px var(--gutter) 52px;
    gap: 32px;
    border-top: 1px solid var(--coral-mist);
    box-shadow: 0 24px 40px -16px rgba(90,70,70,0.12);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease-out), opacity 0.3s;
  }
  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav__link { font-size: 16px; }
  .site-nav__cta { align-self: stretch; text-align: center; padding: 14px 24px; }
}

/* ============================================
   Layout
   ============================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================
   Eyebrow（coming-soon の eyebrow を踏襲）
   ============================================ */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.eyebrow__line {
  width: 36px; height: 1px;
  background: var(--coral-soft);
  flex-shrink: 0;
}
.eyebrow__label {
  font-family: var(--font-serif);
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink-faint);
  white-space: nowrap;
}

/* ============================================
   Section Header
   ============================================ */
.section-header { margin-bottom: clamp(48px, 6vw, 80px); }
.section-header--center { text-align: center; }
.section-header--center .eyebrow { justify-content: center; }

.section-en {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--coral-mist);
  line-height: 1;
  margin-bottom: 4px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2.8vw, 28px);
  color: var(--ink);
  line-height: 1.6;
  letter-spacing: 0.06em;
  display: inline-block;
  position: relative;
}
/* coming-soon のウェーブアンダーラインを継承 */
.section-title::after {
  content: "";
  display: block;
  margin-top: 10px;
  width: 72px; height: 5px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 8' fill='none'><path d='M2 5 Q 25 1, 50 4 T 98 4' stroke='%23ee8ba0' stroke-width='1.6' stroke-linecap='round'/></svg>") center/contain no-repeat;
}
.section-header--center .section-title::after { margin-inline: auto; }

.section-lead {
  margin-top: 20px;
  font-size: clamp(13px, 1.5vw, 15px);
  color: var(--ink-soft);
  line-height: 2.2;
  letter-spacing: 0.06em;
  /* max-width: 48ch; */
}
.section-header--center .section-lead { margin-inline: auto; }

/* ============================================
   Image Placeholder
   ============================================ */
.img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--cream-warm);
  border: 1px dashed var(--coral-soft);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--ink-faint);
  overflow: hidden;
  position: relative;
}
.img-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, var(--coral-soft) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.25;
}
.img-placeholder svg { position: relative; z-index: 1; opacity: 0.45; width: 40px; }
.img-placeholder__label {
  position: relative; z-index: 1;
  font-family: var(--font-serif);
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 0.22em;
  padding: 14px 34px;
  border-radius: 999px;
  transition: transform 0.2s var(--ease-out), background 0.25s, box-shadow 0.25s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--coral-deep);
  color: var(--paper);
  box-shadow: 0 8px 24px -8px rgba(217,107,134,0.45);
}
.btn--primary:hover {
  background: var(--coral);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(217,107,134,0.55);
}
.btn--outline {
  background: transparent;
  color: var(--coral-deep);
  border: 1.5px solid var(--coral-soft);
}
.btn--outline:hover {
  background: var(--coral-mist);
  transform: translateY(-2px);
}
.btn__arrow { transition: transform 0.25s var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ============================================
   Page Header（下層ページ共通）
   ============================================ */
.page-header {
  position: relative;
  z-index: 1;
  padding: clamp(56px, 8vw, 112px) var(--gutter) clamp(40px, 5vw, 64px);
  max-width: var(--max-w);
  margin: 0 auto;
  overflow: hidden;
}
.page-header__ghost {
  position: absolute;
  top: 50%; left: var(--gutter);
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: clamp(72px, 14vw, 160px);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--coral-mist);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}
.page-header__content { position: relative; z-index: 1; }
.page-header__ja {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 3vw, 30px);
  color: var(--ink);
  letter-spacing: 0.08em;
  line-height: 1;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  position: relative;
  z-index: 1;
  background: var(--cream-warm);
  border-top: 1px solid var(--coral-mist);
  padding: clamp(56px, 7vw, 88px) var(--gutter) 0;
}
.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px 80px;
  align-items: start;
  padding-bottom: clamp(40px, 5vw, 64px);
}
.site-footer__brand { display: flex; flex-direction: column; gap: 16px; }
.site-footer__logo { display: flex; align-items: center; gap: 10px; }
.site-footer__logo img { width: 36px; height: 36px; object-fit: contain; mix-blend-mode: multiply; }
.site-footer__logo-name {
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--coral-deep);
  text-transform: uppercase;
}
.site-footer__tagline {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ink-faint);
  line-height: 2;
}
.site-footer__addr {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 2.2;
  letter-spacing: 0.04em;
}
.site-footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  padding-top: 4px;
}
.site-footer__nav-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-footer__nav-link {
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  transition: color 0.25s;
}
.site-footer__nav-link:hover { color: var(--coral-deep); }
.site-footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 0 28px;
  border-top: 1px solid var(--coral-mist);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer__copy,
.site-footer__privacy {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
}
.site-footer__privacy { transition: color 0.25s; }
.site-footer__privacy:hover { color: var(--coral-deep); }

@media (max-width: 640px) {
  .site-footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .site-footer__nav { align-items: flex-start; }
  .site-footer__nav-links { justify-content: flex-start; }
}

/* ============================================
   Scroll Reveal
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--d1 { transition-delay: 0.1s; }
.reveal--d2 { transition-delay: 0.2s; }
.reveal--d3 { transition-delay: 0.3s; }
.reveal--d4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================
   TOP: Hero（パーティクル版）
   ============================================ */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--cream) 0%, #f5ece4 50%, var(--cream-warm) 100%);
}

/* パーティクルコンテナ */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* パーティクル外枠：マウス押しのトランジション用 */
.hp {
  position: absolute;
  pointer-events: none;
  will-change: transform;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* パーティクル内枠：ふわふわアニメーション */
.hp__inner {
  width: 100%; height: 100%;
  animation: hp-bob-a var(--dur, 9s) ease-in-out var(--delay, 0s) infinite;
  will-change: transform;
}
.hp--anim-b .hp__inner { animation-name: hp-bob-b; }
.hp--anim-c .hp__inner { animation-name: hp-bob-c; }

/* SVG 色（coming-soon と同じトークン） */
.hp--heart       { color: var(--coral); }
.hp--heart-deep  { color: var(--coral-deep); }
.hp--leaf        { color: var(--leaf-deep); }
.hp--leaf-light  { color: var(--leaf); }

/* ドット */
.hp--dot .hp__inner {
  background: var(--coral-soft);
  border-radius: 50%;
}
.hp--dot-green .hp__inner {
  background: var(--leaf);
  border-radius: 50%;
}

/* 3種のふわふわパターン（coming-soon の sway / float-heart を踏襲・拡張） */
@keyframes hp-bob-a {
  0%   { transform: translate(0px,   0px)  rotate(-4deg); }
  25%  { transform: translate(7px,  -18px) rotate( 3deg); }
  50%  { transform: translate(2px,  -30px) rotate(-2deg); }
  75%  { transform: translate(-6px, -16px) rotate( 4deg); }
  100% { transform: translate(0px,   0px)  rotate(-4deg); }
}
@keyframes hp-bob-b {
  0%   { transform: translate( 0px,  0px) rotate( 7deg) scale(1); }
  30%  { transform: translate(-8px,-22px) rotate(-4deg) scale(1.04); }
  65%  { transform: translate( 5px,-34px) rotate( 5deg) scale(0.97); }
  100% { transform: translate( 0px,  0px) rotate( 7deg) scale(1); }
}
@keyframes hp-bob-c {
  0%   { transform: translate(0px,   0px) rotate(-2deg); }
  40%  { transform: translate(10px, -12px) rotate( 6deg); }
  70%  { transform: translate(-3px, -26px) rotate(-3deg); }
  100% { transform: translate(0px,   0px) rotate(-2deg); }
}

/* コンテンツ：中央配置 */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  /* max-width: 640px; */
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  /* テキスト可読性のための淡いハロー */
  background: radial-gradient(ellipse 640px 480px at center,
    rgba(251,246,241,0.82) 30%, transparent 100%);
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
  animation: rise 1s var(--ease-out) 0.1s both;
}
.hero__eyebrow-line { width: 28px; height: 1px; background: var(--coral-soft); }
.hero__eyebrow-label {
  font-family: var(--font-serif);
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(31px, 5vw, 60px);
  line-height: 1.55;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 24px;
  animation: rise 1s var(--ease-out) 0.2s both;
}
.hero__title-accent {
  color: var(--coral-deep);
  display: block;
}
/* coming-soon のウェーブ下線を継承 */
.hero__title-accent::after {
  content: "";
  display: block;
  margin: 10px auto 0;
  width: 96px; height: 6px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 8' fill='none'><path d='M2 5 Q 30 1, 60 4 T 118 4' stroke='%23ee8ba0' stroke-width='1.6' stroke-linecap='round'/></svg>") center/contain no-repeat;
}

.hero__sub {
  font-size: clamp(12px, 1.5vw, 16px);
  color: var(--ink-soft);
  line-height: 2.2;
  letter-spacing: 0.08em;
  margin-bottom: 44px;
  animation: rise 1s var(--ease-out) 0.35s both;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: rise 1s var(--ease-out) 0.5s both;
}

/* prefers-reduced-motion：パーティクルを止める */
@media (prefers-reduced-motion: reduce) {
  .hp__inner { animation: none; }
  .hp { transition: none; }
}

/* ============================================
   TOP: Hero パターン2（スプリット）— index2.html
   ============================================ */
.hero--split {
  min-height: auto;
  display: block;
  padding: clamp(72px, 10vw, 132px) 0;
  background: linear-gradient(155deg, var(--cream) 0%, #f7eee6 58%, var(--cream-warm) 100%);
}
.hero-split {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}
.hero-split__text { position: relative; z-index: 2; }
.hero--split .hero__eyebrow { justify-content: flex-start; margin-bottom: 26px; }
.hero--split .hero__title { animation: rise 1s var(--ease-out) 0.15s both; }
.hero--split .hero__title-accent::after { margin-left: 0; margin-right: auto; }
.hero--split .hero__sub { animation: rise 1s var(--ease-out) 0.3s both; }
.hero--split .hero__actions { justify-content: flex-start; animation: rise 1s var(--ease-out) 0.45s both; }

.hero-split__visual {
  position: relative;
  animation: rise 1.1s var(--ease-out) 0.25s both;
}
.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 46% 54% 52% 48% / 54% 46% 53% 47%;
  overflow: hidden;
  background: var(--cream-warm);
  box-shadow:
    0 36px 70px -30px rgba(217,107,134,0.34),
    0 0 0 1px rgba(248,196,207,0.5) inset;
}
.hero-photo .img-placeholder {
  width: 100%; height: 100%;
  aspect-ratio: auto;
  border: none;
  border-radius: 0;
}
.hero-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
  height: auto;
}
.hero-deco--leaf-1 { top: -12px;  right: 8%;   width: 46px; color: var(--leaf-deep); animation: deco-float 7s ease-in-out infinite; }
.hero-deco--leaf-2 { bottom: 4%;  left: -16px; width: 34px; color: var(--leaf);      animation: deco-float 9s ease-in-out infinite reverse; }
.hero-deco--heart  { top: 16%;    left: -18px; width: 26px; color: var(--coral);     opacity: 0.65; animation: deco-float 6s ease-in-out infinite 0.6s; }

@keyframes deco-float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-12px) rotate(6deg); }
}

@media (max-width: 768px) {
  .hero-split { grid-template-columns: 1fr; gap: 44px; }
  .hero-split__visual { max-width: 360px; margin: 0 auto; order: -1; }
  .hero-split__text { text-align: center; }
  .hero--split .hero__eyebrow,
  .hero--split .hero__actions { justify-content: center; }
  .hero--split .hero__title-accent::after { margin-inline: auto; }
}

/* ============================================
   TOP: Hero パターン3（フルカバー＋ウォーターマーク）— index3.html
   ============================================ */
.hero--cover {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px var(--gutter);
  background:
    radial-gradient(ellipse 80% 60% at 18% 12%, var(--coral-mist) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 85% 88%, #eaf3da 0%, transparent 55%),
    linear-gradient(160deg, var(--cream) 0%, var(--cream-warm) 100%);
}
.hero-cover__watermark {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(140px, 32vw, 460px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--paper);
  opacity: 0.55;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.hero-cover__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  /* max-width: 600px; */
  padding: clamp(48px, 6vw, 72px) clamp(30px, 5vw, 60px);
  background: rgba(255,250,245,0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(248,196,207,0.5);
  border-radius: 30px;
  box-shadow:
    0 40px 90px -44px rgba(217,107,134,0.36),
    0 1px 0 rgba(255,255,255,0.7) inset;
  animation: rise 1s var(--ease-out) 0.15s both;
}
.hero--cover .hero__eyebrow { margin-bottom: 24px; }
.hero--cover .hero__sub { margin-bottom: 36px; }
.hero-cover__scroll {
  position: absolute;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 9px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero-cover__scroll::after {
  content: "";
  width: 1px; height: 40px;
  background: linear-gradient(var(--coral-soft), transparent);
  transform-origin: top;
  animation: scroll-pulse 1.8s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50%      { transform: scaleY(1);   opacity: 1; }
}
@media (max-width: 480px) {
  .hero-cover__watermark { font-size: clamp(110px, 48vw, 240px); }
}

/* ============================================
   写真の馴染ませ処理（ブランドトーン統一）
   ============================================ */
.media {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--cream-warm);
}
.media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.01);
}
/* コーラル→リーフの薄い色被せで色温度を統一 */
.media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(155deg,
    rgba(238,139,160,0.16) 0%,
    rgba(251,246,241,0.05) 50%,
    rgba(126,166,89,0.14) 100%);
}
.media--soft { box-shadow: 0 24px 50px -24px rgba(217,107,134,0.28); }

/* FV パターン2：ブロブ写真 */
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.93) contrast(1.01);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(155deg,
    rgba(238,139,160,0.18), transparent 55%, rgba(126,166,89,0.16));
}

/* FV パターン3：全面写真バージョン */
.hero-cover__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-cover__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) contrast(1.02);
}
.hero-cover__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 75% at 50% 50%, rgba(251,246,241,0.46), rgba(251,246,241,0.78)),
    linear-gradient(160deg, rgba(253,227,232,0.5), rgba(234,243,218,0.4));
}
.hero--cover.has-photo { background: var(--cream-warm); }
.hero--cover.has-photo .hero-cover__watermark { opacity: 0.32; }

/* ============================================
   TOP: Services
   ============================================ */
.services-top {
  position: relative;
  z-index: 1;
  padding: var(--section-py) 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
}
@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--paper);
  border: 1px solid var(--coral-mist);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 44px);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px -16px rgba(217,107,134,0.22);
}
.service-card__media {
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  margin-bottom: 24px;
}
.service-card__icon {
  width: 44px; height: 44px;
  margin-bottom: 22px;
  color: var(--coral-deep);
}
/* 写真ありカードではアイコンを小さめのアクセントに */
.service-card__media + .service-card__icon {
  width: 34px; height: 34px;
  margin-bottom: 14px;
}
.service-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--ink);
  letter-spacing: 0.06em;
  line-height: 1.7;
  margin-bottom: 14px;
}
.service-card__body {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 2.1;
  letter-spacing: 0.04em;
}
.services-top__more {
  text-align: center;
  margin-top: clamp(40px, 5vw, 60px);
}

/* ============================================
   TOP: About Teaser
   ============================================ */
.about-teaser {
  position: relative;
  z-index: 1;
  background: var(--cream-warm);
  padding: var(--section-py) 0;
}
.about-teaser__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 104px);
  align-items: center;
}
@media (max-width: 768px) { .about-teaser__inner { grid-template-columns: 1fr; } }

.about-teaser__img .img-placeholder { aspect-ratio: 4/3; }
.about-teaser__img .media { aspect-ratio: 4 / 3; }
.about-teaser__quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(16px, 2.2vw, 22px);
  color: var(--ink);
  line-height: 2;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.about-teaser__body {
  font-size: clamp(13px, 1.4vw, 15px);
  color: var(--ink-soft);
  line-height: 2.4;
  letter-spacing: 0.06em;
  margin-bottom: 36px;
}
.about-teaser__sig {
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--ink-faint);
  margin-bottom: 36px;
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
  position: relative;
  z-index: 1;
  background: var(--coral-deep);
  padding: clamp(64px, 9vw, 112px) var(--gutter);
  text-align: center;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 2.8vw, 28px);
  color: var(--paper);
  letter-spacing: 0.06em;
  line-height: 1.9;
  margin-bottom: 10px;
}
.cta-banner__sub {
  font-family: var(--font-serif);
  font-size: clamp(11px, 1.3vw, 13px);
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
  line-height: 2;
}
.cta-banner .btn--primary {
  background: var(--paper);
  color: var(--coral-deep);
  box-shadow: 0 8px 32px -8px rgba(0,0,0,0.18);
}
.cta-banner .btn--primary:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

/* フォーム／電話の2つのCTAを並列に */
.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
}
.cta-banner__actions .btn { justify-content: center; }

/* 電話CTA */
.btn--tel {
  padding: 10px 30px;
  background: transparent;
  color: var(--paper);
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn--tel:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}
.btn--tel__num {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: 0.06em;
}
.btn--tel__num svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* PC：電話リンクは無効（JSでhrefを外す。以下はJS未実行時のフォールバック） */
@media (min-width: 769px) {
  .btn--tel[href^="tel:"] { pointer-events: none; }
}
@media (max-width: 768px) {
  .cta-banner__actions { flex-direction: column; }
  .cta-banner__actions .btn {
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }
}

/* ============================================
   SERVICE PAGE
   ============================================ */
.service-detail {
  position: relative;
  z-index: 1;
  padding-bottom: var(--section-py);
}
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  padding: clamp(64px, 8vw, 104px) 0;
  border-bottom: 1px solid var(--coral-mist);
}
.service-block:last-child { border-bottom: none; }
.service-block--reverse { direction: rtl; }
.service-block--reverse > * { direction: ltr; }
@media (max-width: 768px) {
  .service-block { grid-template-columns: 1fr; direction: ltr; }
  .service-block--reverse > * { direction: ltr; }
}
.service-block__img .img-placeholder { aspect-ratio: 4/3; border-radius: 16px; }
.service-block__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* border-radius: 16px; */
}


.service-block__num {
  font-family: var(--font-serif);
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--coral-soft);
  margin-bottom: 16px;
}
.service-block__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(17px, 2.4vw, 24px);
  color: var(--ink);
  line-height: 1.7;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.service-block__title::after {
  content: "";
  display: block;
  margin-top: 8px;
  width: 56px; height: 4px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 6' fill='none'><path d='M1 4 Q 20 1, 40 3 T 79 3' stroke='%23f8c4cf' stroke-width='1.4' stroke-linecap='round'/></svg>") center/contain no-repeat;
}
.service-block__body {
  font-size: clamp(13px, 1.4vw, 15px);
  color: var(--ink-soft);
  line-height: 2.4;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}
.service-block__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-block__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  line-height: 1.9;
}
.service-block__list li::before {
  content: "";
  flex-shrink: 0;
  margin-top: 9px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--coral-soft);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-message {
  position: relative;
  z-index: 1;
  padding: 0 0 var(--section-py);
}
.about-message__inner { max-width: 980px; }
.about-message__grid {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: start;
}
.about-message__photo {
  position: sticky;
  top: 110px;
}
.about-message__photo .media { aspect-ratio: 3 / 4; }
/* 写真の後ろにずらしたラインの額縁 */
.about-message__photo::after {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid var(--coral-mist);
  border-radius: 16px;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 768px) {
  .about-message__grid { grid-template-columns: 1fr; gap: 40px; }
  .about-message__photo {
    position: relative;
    top: auto;
    max-width: 420px;
  }
  .about-message__photo .media { aspect-ratio: 4 / 3; }
}
.about-message__lead {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(17px, 2.4vw, 24px);
  color: var(--ink);
  line-height: 2;
  letter-spacing: 0.06em;
  margin-bottom: 36px;
  position: relative;
}
.about-message__lead::before {
  content: "\201C";
  font-family: var(--font-serif);
  font-size: 3em;
  color: var(--coral-mist);
  position: absolute;
  top: -0.2em;
  left: -0.5em;
  line-height: 1;
  pointer-events: none;
}
.about-message__body {
  font-size: clamp(13px, 1.4vw, 15px);
  color: var(--ink-soft);
  line-height: 2.6;
  letter-spacing: 0.06em;
}
.about-message__body p + p { margin-top: 1.8em; }
.about-message__sig {
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid var(--coral-mist);
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--ink-soft);
  line-height: 2.2;
}

.about-info {
  position: relative;
  z-index: 1;
  background: var(--cream-warm);
  padding: var(--section-py) 0;
}
.info-table { width: 100%; border-collapse: collapse; }
.info-table th,
.info-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid var(--coral-mist);
  vertical-align: top;
  line-height: 2;
  letter-spacing: 0.05em;
}
.info-table th {
  width: 156px;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ink-faint);
  white-space: nowrap;
}
.info-table td { font-size: clamp(13px, 1.4vw, 15px); color: var(--ink-soft); }
@media (max-width: 480px) {
  .info-table, .info-table tbody, .info-table tr, .info-table th, .info-table td { display: block; }
  .info-table th { padding-bottom: 2px; border-bottom: none; }
  .info-table td { padding-top: 2px; }
}

.about-access {
  position: relative;
  z-index: 1;
  padding: var(--section-py) 0;
}
.map-placeholder {
  width: 100%;
  aspect-ratio: 16 / 6;
  background: var(--cream-warm);
  border: 1px dashed var(--coral-soft);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--ink-faint);
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
}
.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--coral-soft) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.2;
}
.map-placeholder svg { position: relative; z-index: 1; opacity: 0.4; width: 36px; }
.map-placeholder__label {
  position: relative; z-index: 1;
  font-family: var(--font-serif);
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}
.about-access__addr {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 2.4;
  letter-spacing: 0.06em;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  position: relative;
  z-index: 1;
  padding-bottom: var(--section-py);
}
.contact-section .container { max-width: 680px; }
.contact-lead {
  font-size: clamp(13px, 1.5vw, 15px);
  color: var(--ink-soft);
  line-height: 2.4;
  letter-spacing: 0.06em;
  margin-bottom: clamp(44px, 6vw, 64px);
}
.form-group { margin-bottom: clamp(24px, 3vw, 32px); }
.form-label {
  display: block;
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.form-label .req {
  color: var(--coral-deep);
  margin-left: 6px;
  font-size: 10px;
  letter-spacing: 0.1em;
}
.form-input,
.form-textarea {
  width: 100%;
  background: var(--paper);
  border: 1.5px solid var(--coral-mist);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  letter-spacing: 0.04em;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(238,139,160,0.14);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--ink-faint);
  font-size: 14px;
}
.form-textarea { resize: vertical; min-height: 160px; line-height: 1.9; }
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.9;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
  cursor: pointer;
}
.form-consent input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--coral-deep);
  cursor: pointer;
}
.form-consent a { color: var(--coral-deep); border-bottom: 1px solid var(--coral-soft); }
.form-consent a:hover { border-bottom-color: var(--coral-deep); }
.form-submit { text-align: center; }
.form-note {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
  text-align: center;
  margin-top: 20px;
  line-height: 2;
}
.contact-thanks {
  display: none;
  text-align: center;
  padding: clamp(64px, 10vw, 112px) 0;
}
.contact-thanks.is-visible { display: block; }
.contact-thanks__icon {
  width: 60px; height: 60px;
  margin: 0 auto 24px;
  color: var(--coral-soft);
}
.contact-thanks__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--ink);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.contact-thanks__body {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 2.4;
  letter-spacing: 0.06em;
  margin-bottom: 44px;
}

/* ============================================
   PRIVACY PAGE
   ============================================ */
.privacy-content {
  position: relative;
  z-index: 1;
  padding-bottom: var(--section-py);
}
.privacy-content .container { max-width: 700px; }
.privacy-section {
  padding-bottom: 44px;
  margin-bottom: 44px;
  border-bottom: 1px solid var(--coral-mist);
}
.privacy-section:last-child { border-bottom: none; }
.privacy-section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(14px, 1.8vw, 17px);
  color: var(--ink);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.privacy-section__body {
  font-size: clamp(13px, 1.4vw, 14px);
  color: var(--ink-soft);
  line-height: 2.6;
  letter-spacing: 0.05em;
}
.privacy-section__body p + p { margin-top: 1em; }
.privacy-date {
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
  margin-top: 56px;
}

/* ============================================
   Keyframes（coming-soon 継承）
   ============================================ */
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
