/* =================================================================
   紡 -tsumugi- design  Landing Page Styles
   Mobile First / Breakpoints:
     base       : ~767px   (smartphone)
     min 768px  : tablet
     min 1024px : pc  (content max-width 1200px)
   ================================================================= */

:root{
  --bg:           #fdfbf5;
  --bg-warm:      #f7eedd;
  --bg-card:      #fdf5e7;
  --bg-card-soft: #fbf2e1;
  --ink:          #3a3a36;
  --ink-soft:     #5b5a52;
  --ink-muted:    #8a8678;
  --green:        #6d7a4a;
  --green-deep:   #5a6a3f;
  --green-soft:   #a6b282;
  --coral:        #e89a72;
  --coral-deep:   #d97a4d;
  --line:         #d9d2c0;
  --line-soft:    #e8e0cc;

  --font-serif: "Shippori Mincho", "Noto Serif JP", "游明朝", "Yu Mincho", serif;
  --font-sans:  "Zen Kaku Gothic New", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", sans-serif;

  --container: 1200px;
  --gutter: 20px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 14px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-locked{ overflow: hidden; }
body.is-loading{ overflow: hidden; }

/* ============================== LOADER ============================== */
.loader{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(55% 48% at 26% 20%, #fff8ea 0%, transparent 62%),
    radial-gradient(45% 42% at 80% 84%, #f4dcbd 0%, transparent 65%),
    radial-gradient(38% 32% at 90% 10%, #e8cfa8 0%, transparent 60%),
    radial-gradient(32% 28% at 10% 70%, #f1e3cb 0%, transparent 60%),
    linear-gradient(178deg, #fdfbf5 0%, #f1e4ca 100%);
  transition: opacity 1.05s cubic-bezier(.6,.05,.2,1),
              visibility 1.05s ease,
              filter 1.05s ease;
}
/* 紙のような微かなノイズ */
.loader::before{
  content:"";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 .22 0 0 0 0 .2 0 0 0 0 .15 0 0 0 .35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .14;
  mix-blend-mode: multiply;
  pointer-events: none;
}
/* 上下の柔らかいヴィネット */
.loader::after{
  content:"";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% 50%, transparent 55%, rgba(60,50,30,.10) 100%);
  pointer-events: none;
}
.loader.is-hidden{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  filter: blur(6px);
}

/* 浮遊する粒子（背景に散らす） */
.loader__motes{
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
}
.loader__motes span{
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, #e89a72 0%, rgba(232,154,114,0) 70%);
  filter: blur(.3px);
  opacity: 0;
  animation: tsumugi-mote 9s ease-in-out infinite;
}
.loader__motes span:nth-child(1){ left: 12%; top: 78%; animation-delay: .0s; }
.loader__motes span:nth-child(2){ left: 22%; top: 28%; animation-delay: 1.4s; transform: scale(.7); }
.loader__motes span:nth-child(3){ left: 68%; top: 18%; animation-delay: 2.6s; transform: scale(1.4); }
.loader__motes span:nth-child(4){ left: 82%; top: 64%; animation-delay: 3.8s; transform: scale(.9); }
.loader__motes span:nth-child(5){ left: 40%; top: 86%; animation-delay: 5.0s; transform: scale(1.2); background: radial-gradient(circle, #a6b282 0%, rgba(166,178,130,0) 70%); }
.loader__motes span:nth-child(6){ left: 58%; top: 42%; animation-delay: 6.2s; transform: scale(.6); background: radial-gradient(circle, #d97a4d 0%, rgba(217,122,77,0) 70%); }
@keyframes tsumugi-mote{
  0%   { opacity: 0; translate: 0 0; }
  20%  { opacity: .85; }
  100% { opacity: 0; translate: 0 -60px; }
}

.loader__inner{
  position: relative;
  z-index: 2;
  text-align: center;
}
.loader__stage{
  position: relative;
  width: min(260px, 72vw);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}
.loader__svg{
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* 同心リングのゆっくり回転 */
.loader__ring{
  transform-origin: 120px 120px;
}
.loader__ring--dotted{ animation: tsumugi-rotate 28s linear infinite; }
.loader__ring--inner { animation: tsumugi-rotate-rev 18s linear infinite; }
@keyframes tsumugi-rotate    { to { transform: rotate(360deg); } }
@keyframes tsumugi-rotate-rev{ to { transform: rotate(-360deg); } }

/* 織機を思わせる4本のアーク（時間差で描かれる） */
.loader__arc{
  --L: 252;
  stroke-dasharray: var(--L);
  stroke-dashoffset: var(--L);
  opacity: 0;
  animation: tsumugi-arc 2.2s cubic-bezier(.7,.05,.25,1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes tsumugi-arc{
  0%   { stroke-dashoffset: var(--L); opacity: 0; }
  20%  { opacity: .55; }
  100% { stroke-dashoffset: 0; opacity: .55; }
}

/* 一筆書きで描かれていく糸の円（2.5秒で一度だけ描かれる） */
.loader__thread{
  --c: 578; /* 2π × 92 ≒ 578 */
  stroke-dasharray: var(--c);
  stroke-dashoffset: var(--c);
  transform-origin: 120px 120px;
  transform: rotate(-90deg);
  opacity: .25;
  animation: tsumugi-draw 2.5s cubic-bezier(.7,.05,.25,1) forwards;
}
@keyframes tsumugi-draw{
  0%   { stroke-dashoffset: var(--c); opacity: .25; }
  15%  { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 1; }
}

/* 針が円周上を巡る（2.5秒で一周して止まる） */
.loader__needle{
  transform-origin: 120px 120px;
  opacity: 0;
  animation: tsumugi-orbit 2.5s cubic-bezier(.7,.05,.25,1) forwards;
}
.loader__needle circle{
  filter: drop-shadow(0 0 5px rgba(217,122,77,.6));
}
@keyframes tsumugi-orbit{
  0%   { transform: rotate(0deg);   opacity: 0; }
  15%  { opacity: 1; }
  100% { transform: rotate(360deg); opacity: 1; }
}


/* 中央の漢字「紡」— 円が描き終わって 0.5秒後（= 3.0秒時点）にふわっと現れる */
.loader__kanji{
  opacity: 0;
  font-weight: 300;
  letter-spacing: 0;
  animation: tsumugi-kanji-fade 0.7s cubic-bezier(.25,.1,.25,1) 3s forwards;
}
@keyframes tsumugi-kanji-fade{
  0%   { opacity: 0; }
  100% { opacity: .95; }
}

/* ============== ブランド表記：-tsumugi- / design ============== */
/* メインサイクル(4.6s)と完全同期。
   罫線(58→68%) → -tsumugi-(62→72%) → design(70→80%) → 全体フェードアウト(92→100%) */
.loader__brand{
  margin: 30px auto 0;
  text-align: center;
}
.loader__brand-rule{
  width: 32px;
  height: 1px;
  margin: 0 auto 12px;
  background: var(--coral-deep);
  transform-origin: center;
  transform: scaleX(0);
  animation: tsumugi-rule 0.6s cubic-bezier(.5,.05,.2,1) 3.6s forwards;
}

/* -tsumugi- と design は同じフォント・同じアニメーションで統一。
   タイミングだけずらして「つむぎ → デザイン」の順に現れる。 */
.loader__brand-latin,
.loader__brand-sub{
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .42em;
  text-indent: .42em;
  color: var(--ink-soft);
  text-transform: lowercase;
  margin: 0;
  opacity: 0;
  transform: translateY(6px);
}
.loader__brand-sub{
  margin-top: 9px;
}
.loader__brand-latin{
  /* -tsumugi- は 4.0秒時点でふわっと出現 */
  animation: tsumugi-brand-fade 0.6s cubic-bezier(.25,.1,.25,1) 4s forwards;
}
.loader__brand-sub{
  /* design は 4.5秒時点でふわっと出現（= 完了は約5.1秒） */
  animation: tsumugi-brand-fade 0.6s cubic-bezier(.25,.1,.25,1) 4.5s forwards;
}
.loader__brand-latin span,
.loader__brand-sub span{ display: inline-block; }

@keyframes tsumugi-rule{
  0%   { transform: scaleX(0); opacity: 1; }
  100% { transform: scaleX(1); opacity: 1; }
}
@keyframes tsumugi-brand-fade{
  0%   { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* 最下部の細い進捗ライン */
.loader__bar{
  position: relative;
  width: 160px;
  height: 1px;
  margin: 26px auto 0;
  background: rgba(58,58,54,.09);
  overflow: hidden;
}
.loader__bar i{
  position: absolute;
  left: -40%; top: 0;
  width: 40%; height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--coral-deep) 35%,
    var(--green) 65%,
    transparent 100%);
  animation: tsumugi-bar 2.4s cubic-bezier(.5,.05,.3,1) infinite;
}
@keyframes tsumugi-bar{
  0%   { left: -45%; }
  100% { left: 105%; }
}

/* ============== コーナーのヘアラインフレーム ============== */
.loader__frame{
  position: absolute;
  inset: clamp(24px, 6vmin, 48px);
  pointer-events: none;
  z-index: 1;
}
.loader__corner{
  position: absolute;
  width: 22px; height: 22px;
  opacity: 0;
  animation: tsumugi-corner 1s ease-out forwards;
}
.loader__corner::before, .loader__corner::after{
  content:"";
  position: absolute;
  background: rgba(90,75,55,.32);
}
.loader__corner::before{ width: 100%; height: 1px; }
.loader__corner::after { width: 1px;  height: 100%; }
.loader__corner--tl{ top: 0; left: 0; animation-delay: .1s; }
.loader__corner--tl::before{ top: 0; left: 0; }
.loader__corner--tl::after { top: 0; left: 0; }
.loader__corner--tr{ top: 0; right: 0; animation-delay: .2s; }
.loader__corner--tr::before{ top: 0; right: 0; }
.loader__corner--tr::after { top: 0; right: 0; }
.loader__corner--bl{ bottom: 0; left: 0; animation-delay: .3s; }
.loader__corner--bl::before{ bottom: 0; left: 0; }
.loader__corner--bl::after { bottom: 0; left: 0; }
.loader__corner--br{ bottom: 0; right: 0; animation-delay: .4s; }
.loader__corner--br::before{ bottom: 0; right: 0; }
.loader__corner--br::after { bottom: 0; right: 0; }
@keyframes tsumugi-corner{
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

/* ============== 縦書きラベル (LOADING) ============== */
.loader__vlabel{
  position: absolute;
  top: 50%; right: clamp(28px, 7vmin, 64px);
  transform: translateY(-50%);
  display: flex; flex-direction: column;
  gap: 6px;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: 9.5px;
  letter-spacing: .15em;
  color: var(--ink-muted);
  writing-mode: horizontal-tb;
}
.loader__vlabel span{
  display: block;
  text-align: center;
  opacity: .7;
}
@media (max-width: 520px){ .loader__vlabel{ display: none; } }

@media (prefers-reduced-motion: reduce){
  .loader__thread, .loader__needle, .loader__kanji, .loader__arc,
  .loader__ring, .loader__brand-rule,
  .loader__brand-latin, .loader__brand-sub,
  .loader__bar i, .loader__motes span, .loader__corner{
    animation: none;
  }
  .loader__thread{ stroke-dashoffset: 0; }
  .loader__arc{ stroke-dashoffset: 0; opacity: .55; }
  .loader__kanji{ opacity: .95; }
  .loader__brand-latin, .loader__brand-sub{
    opacity: 1; transform: none;
  }
  .loader__corner{ opacity: 1; transform: none; }
  .loader__brand-rule{ transform: scaleX(1); }
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul,ol{list-style:none;margin:0;padding:0}
h1,h2,h3,h4{margin:0;font-weight:500}
p{margin:0}

/* Hide decorations from interactions */
.deco{
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ----------------------------- Buttons ----------------------------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:.7em;
  font-family: var(--font-sans);
  font-weight: 500;
  border-radius: 999px;
  padding: .85em 1.4em;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s;
  cursor:pointer;
  border: none;
  white-space: nowrap;
  letter-spacing: .02em;
  position: relative;
  z-index: 2;
  font-size: 13px;
}
.btn:hover{ transform: translateY(-1px); }
.btn__icon{display:inline-flex;align-items:center;justify-content:center}
.btn__arrow{font-family: var(--font-serif); font-weight: 400; padding-left:.3em; font-size:1.1em}

.btn--green{
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 14px rgba(109,122,74,.18);
}
.btn--green:hover{ background: var(--green-deep); }

.btn--orange{
  background: var(--coral);
  color: #fff;
  box-shadow: 0 8px 22px rgba(232,154,114,.28);
}
.btn--orange:hover{ background: var(--coral-deep); }

.btn--ghost{
  background: #fdf8ec;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  padding: .9em 1.8em;
  font-weight: 500;
}
.btn--ghost:hover{ background: #fff; }

.btn--sm{ padding: .55em 1em; font-size: 11.5px; gap:.4em; }
.btn--lg{ padding: .95em 1.7em; font-size: 14px; }
.btn--xl{ padding: 1em 1.7em; font-size: 16px; font-family: var(--font-serif); font-weight:500; flex-shrink: 0; }
.btn--cta{ background:#fdf8ec; font-family: var(--font-serif); }

/* ----------------------------- Section heads ----------------------------- */
.section-head{
  text-align:center;
  padding: 44px 20px 24px;
  position: relative;
  z-index: 2;
}
.section-title{
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--ink);
  position: relative;
  display: inline-block;
}
.section-eyebrow{
  font-family: var(--font-serif);
  font-size: 10px;
  letter-spacing: .34em;
  color: var(--coral);
  text-transform: uppercase;
  margin: 0 0 8px;
}

/* ============================== HEADER ============================== */
/* backdrop-filter は ::before に逃がすことで、.site-header 自体が
   position:fixed な子孫の "含有ブロック" にならないようにする
   （= モバイルドロワーが viewport 基準で配置される）。 */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
}
.site-header::before{
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(253,251,245,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
  pointer-events: none;
}
.header-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.brand{
  display:flex;
  align-items:center;
  gap:6px;
  position:relative;
  flex-shrink:0;
  z-index: 2;
}
.brand__mark{
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
}
.brand__sub{
  font-family: var(--font-serif);
  font-size: 9.5px;
  letter-spacing: .06em;
  color: var(--ink-soft);
  line-height: 1.3;
}
.brand__pin{
  width: 18px; height: 18px;
  position: absolute;
  top: -4px; right: -14px;
  transform: rotate(8deg);
}

/* ----- Hamburger toggle (mobile / tablet) ----- */
.nav-toggle{
  margin-left: auto;
  width: 40px;
  height: 40px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  z-index: 60;
}
.nav-toggle__bar{
  display: block;
  width: 22px;
  height: 1.6px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .28s ease, opacity .2s ease;
}
.site-header.is-nav-open .nav-toggle__bar:nth-child(1){ transform: translateY(6.6px) rotate(45deg); }
.site-header.is-nav-open .nav-toggle__bar:nth-child(2){ opacity: 0; }
.site-header.is-nav-open .nav-toggle__bar:nth-child(3){ transform: translateY(-6.6px) rotate(-45deg); }

/* ----- Nav: mobile = full-screen drawer ----- */
.site-nav{
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  height: calc(100vh - 60px);
  height: calc(100dvh - 60px);
  background: rgba(253,251,245,.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  padding: 32px 24px 80px;
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--ink);
  transform: translateY(-100%);
  transition: transform .35s cubic-bezier(0.22,1,.36,1);
  z-index: 40;
  overflow-y: auto;
}
.site-nav.is-open{ transform: translateY(0); }
.site-nav a{
  display: block;
  padding: 16px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--line-soft);
}
.site-nav a:hover{ color: var(--green); }
.site-nav a::after{ display: none; } /* mobile: 下線アニメ無効 */

/* Header CTA: スマホ・タブレットでは隠す（ナビ内 / Hero CTA でカバー） */
.header-cta{ display: none; }

/* ============================== HERO ============================== */
.hero{
  position:relative;
  padding: 24px 20px 56px;
  overflow:hidden;
  isolation: isolate;
}
.hero__inner{
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero__copy{
  padding: 0;
  position: relative;
  z-index: 3;
  transform: none;
  text-align: center;
  order: 2;
}
.hero__title{
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: .02em;
  color: var(--ink);
  margin-bottom: 22px;
  white-space: normal;
}
.hero__title .accent{ color: var(--coral-deep); font-weight: 700; }
.hero__lead{
  font-family: var(--font-serif);
  font-size: 13px;
  line-height: 2.05;
  color: var(--ink-soft);
  margin-bottom: 26px;
  letter-spacing: .04em;
}

/* ---- HERO VISUAL ---- */
.hero__visual{
  position: relative;
  aspect-ratio: 5 / 4;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  align-self: center;
  z-index: 1;
  order: 1;
}
.hero__photo-stack{
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hero__photo{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 380" preserveAspectRatio="none"><path fill="white" d="M245 10 C 320 4 402 18 442 68 C 478 112 470 172 458 210 C 448 244 484 282 452 315 C 414 350 344 344 290 338 C 246 333 218 358 172 356 C 120 354 58 332 28 286 C -2 240 10 180 32 142 C 52 108 24 62 66 38 C 112 10 178 6 245 10 Z"/></svg>');
          mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 380" preserveAspectRatio="none"><path fill="white" d="M245 10 C 320 4 402 18 442 68 C 478 112 470 172 458 210 C 448 244 484 282 452 315 C 414 350 344 344 290 338 C 246 333 218 358 172 356 C 120 354 58 332 28 286 C -2 240 10 180 32 142 C 52 108 24 62 66 38 C 112 10 178 6 245 10 Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
}
.hero__photo.is-active{ opacity: 1; }

#heroPhotoStack .hero__photo:nth-child(2){ filter: sepia(.18) hue-rotate(-8deg) brightness(1.02); }
#heroPhotoStack .hero__photo:nth-child(3){ filter: saturate(1.15) brightness(1.05); }
#heroPhotoStack .hero__photo:nth-child(4){ filter: hue-rotate(8deg) brightness(.98) saturate(.95); }
#heroPhotoStack .hero__photo:nth-child(5){ filter: contrast(1.05) saturate(.9) brightness(1.03); }

/* Vertical tag */
.hero__tag{
  position: absolute;
  top: 6%;
  right: 4%;
  width: 70px;
  min-height: 200px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(253,251,245,.94);
  box-shadow:
    0 10px 32px rgba(60,55,40,.14),
    0 2px 8px rgba(0,0,0,.06),
    inset 0 1px 0 rgba(255,255,255,.9);
  border: 1px solid rgba(217,210,192,.55);
}
.hero__tag::before{
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 999px;
  border: 1px dashed rgba(109,122,74,.28);
  pointer-events: none;
}
.hero__tag-text{
  position: relative;
  z-index: 2;
  writing-mode: vertical-rl;
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .22em;
  line-height: 1.9;
  padding: 18px 0;
}

/* Hero decorations — モバイルでは大胆に間引く */
.deco--hero-vine-top,
.deco--hero-bow,
.deco--hero-heart,
.deco--hero-dots,
.deco--hero-greendots,
.deco--hero-leaf-r{ display: none; }

.deco--hero-cosmos{
  bottom: 8px; left: -14px; width: 78px; opacity: .9; transform: rotate(-10deg);
}
.deco--hero-gyps-l{
  position: absolute; top: 4%; left: -4%; width: 36%; opacity: 1;
  transform: rotate(-10deg); z-index: 3;
}
.deco--hero-gyps-br{
  position: absolute; bottom: -6%; right: 4%; width: 28%; opacity: 1;
  transform: rotate(15deg) scaleX(-1); z-index: 10;
}
.deco--hero-gyps-b{ display: none; }

/* ============================== ABOUT ============================== */
.about{
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 50%, var(--bg) 100%);
  padding-bottom: 56px;
  overflow: hidden;
}
.about__inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.about__lead{ position: relative; text-align: center; }
.about__title{
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 18px;
  letter-spacing: .04em;
  color: var(--ink);
}
.about__title span{
  background: linear-gradient(transparent 62%, rgba(109,122,74,.22) 62%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.about__text{
  font-family: var(--font-serif);
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 2.1;
  letter-spacing: .02em;
  margin-top: 16px;
}

.about__pillars{
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.pillar{
  text-align: center;
  background: transparent;
  padding: 8px 10px;
}
.pillar__visual{
  position: relative;
  width: 120px;
  height: 130px;
  margin: 0 auto 8px;
}
.pillar__oval{ display: none; }
.pillar__icon{
  position: absolute;
  top: 50%; left: 50%;
  width: 96px;
  transform: translate(-50%, -50%);
}
.pillar__bg{
  position: absolute;
  inset: 8% 12%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff7e6 0%, #fbe9c8 55%, #f3d9a8 100%);
  box-shadow:
    inset 0 2px 6px rgba(255,255,255,.8),
    0 6px 18px rgba(196,160,100,.18);
  z-index: 0;
}
.pillar__bg::after{
  content: '';
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  border: 1px dashed rgba(109,122,74,.35);
}
.pillar__svg{
  position: absolute;
  top: 50%; left: 50%;
  width: 70%;
  height: 70%;
  transform: translate(-50%, -50%);
  color: var(--green-deep);
  z-index: 1;
  transition: transform .5s ease;
}
.pillar:hover .pillar__svg{ transform: translate(-50%, -50%) rotate(-4deg) scale(1.05); }
.pillar__title{
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .18em;
  margin-bottom: 6px;
  color: var(--ink);
}
.pillar__text{
  font-family: var(--font-serif);
  font-size: 11.5px;
  color: var(--ink-soft);
  line-height: 1.9;
}

/* ABOUT decorations: モバイルでは大胆に間引く */
.deco--about-sprig-l,
.deco--about-flower-l,
.deco--about-sprig-r,
.deco--about-dots-tr,
.deco--about-loop,
.deco--about-star-y,
.deco--about-star-c,
.deco--about-heart,
.deco--about-heart2,
.deco--about-confetti-y,
.deco--about-confetti-o,
.deco--about-confetti-g{ display: none; }

.deco--about-blob-bg{
  top: -40px; left: 50%; width: 480px; opacity: .12; z-index: 0;
  animation: aboutBlobSpin 32s linear infinite;
  transform-origin: center;
}
.deco--about-blob-r{
  bottom: -20px; right: -40px; width: 140px; opacity: .5; z-index: 0;
  animation: aboutBlobDrift 14s ease-in-out infinite;
}

/* ============================== SERVICES ============================== */
.services{
  position: relative;
  padding-bottom: 56px;
  overflow:hidden;
}
.services__grid{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
  z-index: 2;
}
.svc-card{
  background: var(--bg-card);
  border-radius: 22px;
  padding: 22px 18px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.svc-card__head{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 14px;
  width: 100%;
  justify-content: center;
}
.svc-card__icon{ width: 28px; height: 28px; object-fit: contain; }
.svc-card__title{
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .04em;
}
.svc-card__mock{
  width: 100%;
  max-width: 280px;
  height: auto;
  margin-bottom: 14px;
}
.svc-card__text{
  font-family: var(--font-serif);
  font-size: 12px;
  line-height: 1.95;
  color: var(--ink-soft);
}

/* services decorations: 大胆に間引く */
.deco--svc-sprig-l,
.deco--svc-sprig-r,
.deco--svc-confetti,
.deco--svc-dots,
.deco--svc-flower-tl{ display: none; }

/* ============================== WORKS ============================== */
.works{
  position: relative;
  padding-bottom: 56px;
  overflow:hidden;
}
.works__grid{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
  z-index: 2;
}
.work{
  text-align: center;
  background: var(--bg-card);
  border-radius: 16px;
  padding: 14px 14px 16px;
  box-shadow: 0 3px 14px rgba(0,0,0,.05);
  transition: transform .28s ease, box-shadow .28s ease;
}
.work__img{
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 10px;
  border-radius: 10px;
  background: #fff;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.07));
}
.work__cap{
  font-family: var(--font-serif);
  font-size: 12px;
  color: var(--ink);
  line-height: 1.8;
  letter-spacing: .02em;
}
.works__more{ text-align: center; margin-top: 48px; position: relative; z-index: 2; }

.deco--wk-leaf-l,
.deco--wk-flower-r,
.deco--wk-dots-r,
.deco--wk-sprig-bl{ display: none; }

/* ============================== FLOW ============================== */
.flow{
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, #fdf0de 35%, var(--bg-warm) 100%);
  padding-bottom: 56px;
  overflow:hidden;
}
.flow__steps{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.step{ text-align: center; padding-top: 8px; position: relative; }
.step__blob{
  position: relative;
  width: 170px;
  height: 190px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step__blob-img{
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
}
.step__num{
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  letter-spacing: .05em;
  z-index: 2;
}
.step__icon{
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  object-fit: contain;
  margin-top: 30px;
}
.step__title{
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: .08em;
}
.step__text{
  font-family: var(--font-serif);
  font-size: 12px;
  line-height: 1.85;
  color: var(--ink-soft);
}

/* mobile: 矢印は非表示（縦並び） */
.step:not(:last-child)::after{ display: none; }

.deco--flow-sprig-l,
.deco--flow-flower-tl,
.deco--flow-spool,
.deco--flow-sprig-r,
.deco--flow-leaf-br,
.deco--flow-flower-br,
.deco--flow-dots,
.deco--flow-stars{ display: none; }

/* ============================== VOICE ============================== */
.voice{
  position: relative;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
  padding-bottom: 64px;
  overflow: hidden;
}
.voice__head{ position: relative; }
.voice__eyebrow{
  font-family: var(--font-serif);
  font-size: 10px;
  letter-spacing: .34em;
  color: var(--coral);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.voice.is-section-visible .voice__eyebrow{
  animation: voiceFadeUp .65s cubic-bezier(0.22,1,.36,1) .1s both;
}
.voice__title-deco{
  display: block;
  width: 72px;
  margin: 10px auto 8px;
  transform-origin: center;
}
.voice.is-section-visible .voice__title-deco{
  animation: voiceDecoLine .7s cubic-bezier(0.22,1,.36,1) .42s both;
}
.voice__subtitle{
  font-family: var(--font-serif);
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: .16em;
  margin-top: 4px;
}
.voice.is-section-visible .voice__subtitle{
  animation: voiceFadeUp .65s cubic-bezier(0.22,1,.36,1) .7s both;
}

.voice__grid{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.voice-card{
  background: linear-gradient(148deg, #ffffff 0%, #fdf8ef 55%, #fdf1e3 100%);
  border-radius: 24px;
  padding: 28px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow:
    0 4px 26px rgba(0,0,0,.06),
    0 1px 4px rgba(0,0,0,.03),
    inset 0 1px 0 rgba(255,255,255,.95);
  border: 1px solid rgba(232,154,114,.14);
  position: relative;
  overflow: hidden;
  transition:
    opacity .78s cubic-bezier(0.22, 1, 0.36, 1),
    transform .78s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow .3s ease,
    border-color .3s ease;
}
.voice-card.is-visible{
  opacity: 1;
  transform: translateY(0) rotate(0deg) scale(1);
}
.voice-card:hover{
  transform: translateY(-10px) rotate(0.5deg) scale(1.01);
  box-shadow:
    0 24px 56px rgba(232,154,114,.18),
    0 8px 22px rgba(0,0,0,.08),
    0 0 0 1.5px rgba(232,154,114,.28),
    inset 0 1px 0 rgba(255,255,255,.95);
  border-color: rgba(232,154,114,.28);
}
.voice-card::after{
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255,255,255,.65) 50%,
    transparent 70%
  );
  transform: skewX(-10deg);
  transition: left .72s ease;
  pointer-events: none;
  z-index: 10;
}
.voice-card:hover::after{ left: 130%; }
.voice-card::before{
  content: "\201C";
  position: absolute;
  top: 8px;
  left: 14px;
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: 1;
  color: var(--coral);
  opacity: .28;
  transition:
    opacity .6s cubic-bezier(0.34, 1.56, 0.64, 1) .22s,
    transform .6s cubic-bezier(0.34, 1.56, 0.64, 1) .22s;
}
.voice-card.is-visible::before{
  opacity: .28;
  transform: scale(1) rotate(0deg);
}
.voice-card__corner{
  position: absolute;
  bottom: -10px;
  right: -4px;
  width: 76px;
  opacity: .22;
  transform: rotate(14deg);
  transition: opacity .42s ease, transform .45s ease;
  pointer-events: none;
  z-index: 0;
}
.voice-card:hover .voice-card__corner{
  opacity: .38;
  transform: rotate(7deg) scale(1.08) translateY(-4px);
}
.voice-card__stars{
  display: flex;
  gap: 4px;
  position: relative;
  z-index: 1;
}
.voice-star{
  display: inline-block;
  color: var(--coral);
  font-size: 17px;
  transition:
    opacity .38s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform .42s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.voice-card.is-visible .voice-star:nth-child(1){ opacity:1; transform:none; transition-delay:.38s; }
.voice-card.is-visible .voice-star:nth-child(2){ opacity:1; transform:none; transition-delay:.49s; }
.voice-card.is-visible .voice-star:nth-child(3){ opacity:1; transform:none; transition-delay:.60s; }
.voice-card.is-visible .voice-star:nth-child(4){ opacity:1; transform:none; transition-delay:.71s; }
.voice-card.is-visible .voice-star:nth-child(5){ opacity:1; transform:none; transition-delay:.82s; }
.voice-card__quote{
  font-family: var(--font-serif);
  font-size: 13px;
  line-height: 2.05;
  color: var(--ink-soft);
  letter-spacing: .02em;
  margin: 0;
  flex: 1;
  position: relative;
  z-index: 1;
  padding-top: 4px;
}
.voice-card__client{
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: .05em;
  border-top: 1px solid rgba(217,210,192,.55);
  padding-top: 12px;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

/* JS入場アニメーション用の初期状態（.js のときだけ隠す）。
   他セクションと同様に、JS が無い環境では最初から表示されるフォールバック。 */
.js .voice__eyebrow{ opacity: 0; transform: translateY(10px); }
.js .voice__title-deco{ opacity: 0; transform: scaleX(0); }
.js .voice__subtitle{ opacity: 0; transform: translateY(8px); }
.js .voice-card{ opacity: 0; transform: translateY(52px) rotate(-1.8deg) scale(0.95); }
.js .voice-card::before{ opacity: 0; transform: scale(0.3) rotate(-25deg); }
.js .voice-star{ opacity: 0; transform: scale(0.2) rotate(-35deg); }

/* voice decorations: 大胆に間引く（背景ブロブだけ残す） */
.deco--voice-sprig-l,
.deco--voice-sprig-r,
.deco--voice-botanical,
.deco--voice-swash,
.deco--voice-dots-l,
.deco--voice-dots-r,
.deco--voice-heart,
.deco--voice-heart2,
.deco--voice-bow,
.deco--voice-star-y,
.deco--voice-star-c,
.deco--voice-confetti-y1,
.deco--voice-confetti-y2,
.deco--voice-confetti-o1,
.deco--voice-confetti-g1{ display: none; }
.deco--voice-blob-bg{
  top:-20px; left:50%; transform:translateX(-50%);
  width:460px; opacity:.11;
  animation:voiceBlobSpin 28s linear infinite; z-index:0;
}

/* ============================== FAQ ============================== */
.faq{
  position: relative;
  padding-bottom: 56px;
  overflow:hidden;
}
.faq__inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.faq__list{ display:flex; flex-direction: column; gap: 10px; list-style: none; padding: 0; margin: 0; }
.faq__item{ background: transparent; padding: 0; }
.faq__row{
  width: 100%;
  background: #fff;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px 12px 14px;
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,.03);
  cursor: pointer;
  text-align: left;
  transition: box-shadow .2s, border-radius .25s;
}
.faq__row:hover{ box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.faq__plus-circle{
  width: 24px; height: 24px;
  border: 1.4px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  flex-shrink: 0;
}
.faq__q{ flex: 1; }
.faq__plus{
  color: var(--green);
  font-size: 18px;
  font-weight: 300;
  margin-left: 8px;
  transition: transform .3s ease;
}
.faq__answer{
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease, margin .35s ease;
  background: #fff;
  margin-top: 0;
  border-radius: 18px;
  padding: 0 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.03);
}
.faq__answer p{
  font-family: var(--font-serif);
  font-size: 12.5px;
  line-height: 1.95;
  color: var(--ink-soft);
  margin: 0;
}
.faq__item.is-open .faq__answer{
  max-height: 400px;
  padding: 12px 20px 16px;
  margin-top: 6px;
}
.faq__item.is-open .faq__plus{ transform: rotate(45deg); }
.faq__item.is-open .faq__row{ border-radius: 22px; }

.faq__cta{
  background: var(--bg-card);
  border-radius: 20px;
  padding: 22px 20px;
  text-align: center;
}
.faq__cta-icon{
  width: 68px;
  height: auto;
  margin: 0 auto 10px;
}
.faq__cta-text{
  font-family: var(--font-serif);
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.9;
  margin-bottom: 14px;
}

.deco--faq-sprig-l,
.deco--faq-flower-l,
.deco--faq-sprig-r,
.deco--faq-pink-r,
.deco--faq-yellow-r{ display: none; }

/* ============================== FINAL CTA ============================== */
.final-cta{
  position: relative;
  background: transparent;
  padding: 40px 20px 70px;
  overflow:hidden;
}
.final-cta__inner{ z-index: 3; position: relative; }
.final-cta__inner{
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.final-cta__copy{ position: relative; z-index: 3; flex: 1; min-width: 0; padding-left: 0; }
.final-cta__title{
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: .04em;
}
.final-cta__heart{ width: 26px; display: inline-block; vertical-align: -2px; margin-left: 6px; }
.final-cta__text{
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.9;
}

.deco--cta-wave{ bottom: -14px; left: 0; right: 0; width: 100%; height: auto; opacity: 1; z-index: 1; pointer-events: none; }
/* スマホでは波を少し上まで伸ばし、リード文「はじめの一歩を…」あたりまで届かせる */
@media (max-width: 767px){
  .deco--cta-wave{ transform: scaleY(2.4); transform-origin: bottom center; }
}
/* モバイル：装飾を控えめに散らす */
/* === モバイル基準：素材が重ならないよう、要らないものは隠し、小さく散らす === */
.deco--cta-woven { display: block; position: absolute; bottom: -10px; left: -10px; width: 92px; opacity: .82; z-index: 1; }
.deco--cta-leaf  { display: block; position: absolute; top: 18px; left: 4%; width: 36px; opacity: .78; z-index: 1; transform: rotate(-14deg); }
.deco--cta-flower{ display: block; position: absolute; top: 14px; right: 5%; width: 38px; opacity: .8; z-index: 1; transform: rotate(12deg); }
.deco--cta-pink  { display: block; position: absolute; bottom: 14px; right: 6%; width: 30px; opacity: .85; z-index: 2; }
.deco--cta-heart { display: block; position: absolute; top: 30%; right: 12%; width: 18px; opacity: .55; z-index: 2; }
/* モバイルでは過密を避けるため非表示 */
.deco--cta-petal-l,
.deco--cta-petal-r,
.deco--cta-confetti,
.deco--cta-bow,
.deco--cta-stem{ display: none; }

/* ============================== FOOTER ============================== */
.site-footer{
  background: #3a3a36;
  padding: 28px 20px 24px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner{
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
  gap: 16px;
  align-items: center;
}
.brand--footer{ justify-content: center; }
.brand--footer .brand__mark{ font-size: 26px; color: rgba(255,255,255,.9); }
.brand--footer .brand__sub{ color: rgba(255,255,255,.48); }
.footer-nav{ display: flex; flex-direction: column; gap: 10px; }
.footer-nav__row{
  display:flex;
  gap: 14px;
  font-family: var(--font-serif);
  font-size: 12.5px;
  color: rgba(255,255,255,.65);
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav__row a:hover{ color: var(--coral); }
.footer-nav__row--small{
  font-size: 11.5px;
  color: rgba(255,255,255,.4);
}
.footer-copy{
  font-family: var(--font-serif);
  font-size: 11.5px;
  color: rgba(255,255,255,.36);
  letter-spacing: .04em;
  white-space: nowrap;
}


/* =================================================================
   TABLET  768px ~ 1023px
   ================================================================= */
@media (min-width: 768px){
  body{ font-size: 14.5px; }

  .section-head{ padding: 54px 24px 30px; }
  .section-title{ font-size: 23px; }
  .section-eyebrow{ font-size: 10.5px; }

  /* ---- HERO ---- */
  .hero{ padding: 28px 28px 72px; }
  .hero__inner{
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 32px;
    align-items: center;
  }
  .hero__copy{ text-align: left; padding-top: 16px; order: 0; }
  .hero__visual{ order: 0; }
  .hero__title{ font-size: 30px; line-height: 1.55; margin-bottom: 24px; }
  .hero__lead{ font-size: 14px; margin-bottom: 30px; }
  .hero__visual{ aspect-ratio: 1.1 / 1; max-width: none; margin: 0; }
  .hero__tag{ width: 84px; min-height: 240px; right: 6%; top: 6%; }
  .hero__tag-text{ font-size: 14px; padding: 22px 0; }

  /* hero decorations — タブレットでは少し復活 */
  .deco--hero-vine-top{ display: block; top: 16px; left: 60px; width: 280px; opacity: .82; transform: rotate(-4deg); }
  .deco--hero-cosmos  { display: block; bottom: 14px; left: -16px; width: 100px; }
  .deco--hero-leaf-r  { display: block; top: 22%; right: -40px; width: 140px; opacity: .85; transform: rotate(18deg); z-index: 10; }

  /* ---- ABOUT ---- */
  .about{ padding-bottom: 64px; }
  .about__inner{ padding: 0 28px; grid-template-columns: 1fr 1fr; gap: 40px; }
  .about__lead{ text-align: left; }
  .about__title{ font-size: 23px; }
  .about__pillars{ grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .pillar__visual{ width: 130px; height: 140px; }
  .pillar__icon{ width: 100px; }
  .deco--about-blob-bg{ width: 620px; }

  /* ---- SERVICES ---- */
  .services{ padding-bottom: 72px; }
  .services__grid{ grid-template-columns: repeat(3, 1fr); gap: 14px; padding: 0 28px; }
  .svc-card{ padding: 24px 18px 26px; }
  .svc-card__title{ font-size: 15px; }

  /* ---- WORKS ---- */
  .works{ padding-bottom: 64px; }
  .works__grid{ grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 0 28px; }

  /* ---- FLOW ---- */
  .flow{ padding-bottom: 72px; }
  .flow__steps{ grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 0 28px; }
  .step__blob{ width: 180px; height: 200px; }

  /* ---- VOICE ---- */
  .voice{ padding-bottom: 80px; }
  .voice__grid{ grid-template-columns: 1fr; max-width: 560px; padding: 0 28px; }
  .voice__title-deco{ width: 80px; }
  .deco--voice-blob-bg{ width: 620px; }

  /* ---- FAQ ---- */
  .faq{ padding-bottom: 72px; }
  .faq__inner{ padding: 0 28px; }

  /* ---- FINAL CTA ---- */
  .final-cta{ padding: 110px 28px 90px; }
  .final-cta__title{ font-size: 26px; }
  .final-cta__inner{ gap: 24px; }

  /* タブレットでは装飾を中サイズで散らす（重ならない位置に） */
  .deco--cta-woven { width: 120px; }
  .deco--cta-leaf  { top: 28px; left: 5%; width: 52px; }
  .deco--cta-flower{ top: 22px; right: 6%; width: 52px; }
  .deco--cta-pink  { bottom: 22px; right: 7%; width: 38px; }
  .deco--cta-heart { top: 28%; right: 14%; width: 22px; }
  .deco--cta-petal-l{ display: block; bottom: 28%; left: 4%; width: 36px; opacity: .65; z-index: 1; transform: rotate(-22deg); }
  .deco--cta-confetti{ display: block; bottom: 40px; left: 12%; width: 64px; opacity: .55; z-index: 1; }

  /* ---- FOOTER ---- */
  .site-footer{ padding: 28px 28px 24px; }
}


/* =================================================================
   PC  1024px 〜  (content max-width 1200px / centered)
   ================================================================= */
@media (min-width: 1024px){
  body{ font-size: 15px; }

  .section-head{ padding: 60px 24px 36px; }
  .section-title{ font-size: 26px; }
  .section-eyebrow{ font-size: 11px; margin-bottom: 10px; }

  /* ---- HEADER : 横並びナビ ---- */
  .header-inner{ padding: 12px 24px; gap: 18px; flex-wrap: nowrap; }
  .brand__mark{ font-size: 38px; }
  .brand__sub{ font-size: 10px; }
  .brand__pin{ width: 22px; height: 22px; top: -4px; right: -16px; }

  .nav-toggle{ display: none; }
  .header-cta{ display: inline-flex; }

  .site-nav{
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    height: auto;
    transform: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    padding: 0;
    margin-left: auto;
    margin-right: 4px;
    font-family: var(--font-serif);
    font-size: 13.5px;
    color: var(--ink);
    white-space: nowrap;
    overflow: visible;
  }
  .site-nav a{
    display: inline;
    padding: 0;
    width: auto;
    text-align: left;
    border-bottom: 0;
    position: relative;
  }
  .site-nav a::after{
    display: block;
    content:'';
    position:absolute;
    bottom:-2px; left:0;
    width:0; height:1px;
    background:var(--green);
    transition:width .28s ease;
  }
  .site-nav a:hover::after{ width:100%; }

  /* ---- HERO ---- */
  .hero{ padding: 30px 0 90px 32px; }
  .hero__inner{
    max-width: var(--container);
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.7fr);
    gap: 20px;
  }
  .hero__copy{
    padding-top: 90px;
    padding-left: 20px;
    transform: translateY(-50px);
    text-align: left;
  }
  .hero__title{
    font-size: 42px;
    line-height: 1.55;
    margin-bottom: 28px;
    white-space: nowrap;
  }
  .hero__lead{ font-size: 15px; line-height: 2.1; margin-bottom: 38px; }
  .hero__visual{
    aspect-ratio: 1.15 / 1;
    width: calc(100% - 60px);
    max-width: none;
    margin-left: 230px;
    margin-right: calc(50% - 50vw - 230px);
    margin-top: -40px;
    align-self: start;
  }
  .hero__tag{
    width: 112px;
    min-height: 300px;
    top: 8%;
    right: 20%;
  }
  .hero__tag-text{ font-size: 18px; letter-spacing: .26em; line-height: 2; padding: 28px 0; }

  /* hero decorations — 全部表示 */
  .deco--hero-vine-top   { display: block; top: 20px;  left: 140px; width: 420px; opacity: .88; transform: rotate(-4deg); }
  .deco--hero-bow        { display: block; top: 90px;  left: 46%;   width: 62px;  opacity: 1;   transform: rotate(-15deg); z-index: 4; }
  .deco--hero-heart      { display: block; top: 190px; left: 37%;   width: 24px;  opacity: .9;  transform: rotate(-6deg); }
  .deco--hero-cosmos     { display: block; bottom: 20px; left: -20px; width: 130px; opacity: .95; transform: rotate(-10deg); }
  .deco--hero-dots       { display: block; bottom: 80px; left: 46%;   width: 95px;  opacity: .85; }
  .deco--hero-greendots  { display: block; bottom: 30px; left: 37%;   width: 76px;  opacity: .72; }
  .deco--hero-leaf-r     { display: block; top: 24%; right: -60px; width: 200px; opacity: .88; transform: rotate(18deg); z-index: 10; }
  .deco--hero-gyps-l     { top: 8%;  left: -6%;  width: 40%; transform: rotate(-10deg); }
  .deco--hero-gyps-br    { bottom: -8%; right: 6%; width: 28%; transform: rotate(15deg) scaleX(-1); }

  /* ---- ABOUT ---- */
  .about{ padding-bottom: 80px; }
  .about__inner{ padding: 0 32px; grid-template-columns: 1fr 1fr; gap: 64px; }
  .about__title{ font-size: 26px; }
  .about__text{ font-size: 13.5px; line-height: 2.15; margin-top: 20px; }
  .about__pillars{ gap: 8px; }
  .pillar{ padding: 20px 10px 18px; }
  .pillar__visual{ width: 140px; height: 150px; margin: 0 auto 10px; }
  .pillar__icon{ width: 110px; }
  .pillar__title{ font-size: 18px; }

  /* about decorations — 全部復活 */
  .deco--about-blob-bg { top:-60px; left:50%; width:780px; opacity:.12; }
  .deco--about-sprig-l { display: block; top:50%; left:-40px; width:140px; opacity:.7;  animation: aboutSway 7s ease-in-out infinite; transform-origin: top center; }
  .deco--about-flower-l{ display: block; bottom:40px; left:0; width:70px; opacity:.6; animation: aboutFloat 6s ease-in-out infinite .4s; }
  .deco--about-blob-r  { bottom:-30px; right:-60px; width:220px; opacity:.5; }
  .deco--about-sprig-r { display: block; top:60px; right:-8px; width:90px; opacity:.6; animation: aboutSwayR 8s ease-in-out infinite; transform-origin: top right; }
  .deco--about-dots-tr { display: block; top:50px; right:100px; width:65px; opacity:.55; animation: aboutFloat 7s ease-in-out infinite 1.2s; }
  .deco--about-loop    { display: block; top:40px; right:32%; width:65px; opacity:.4; animation: aboutFloat 9s ease-in-out infinite .8s; }
  .deco--about-star-y  { display: block; top:18%; left:24%; width:26px; opacity:.72; animation: aboutTwinkle 4.2s ease-in-out infinite; }
  .deco--about-star-c  { display: block; bottom:22%; right:28%; width:22px; opacity:.68; animation: aboutTwinkle 3.6s ease-in-out infinite 1.1s; }
  .deco--about-heart   { display: block; top:28%; right:18%; width:22px; opacity:.78; animation: aboutPulse 3.2s ease-in-out infinite; }
  .deco--about-heart2  { display: block; bottom:28%; left:22%; width:16px; opacity:.62; animation: aboutPulse 4s ease-in-out infinite 1.3s; }
  .deco--about-confetti-y{ display: block; top:14%; left:8%;  width:36px; opacity:.55; animation: aboutDrift1 10s ease-in-out infinite; }
  .deco--about-confetti-o{ display: block; top:58%; right:6%; width:30px; opacity:.48; animation: aboutDrift2 11s ease-in-out infinite 2s; }
  .deco--about-confetti-g{ display: block; bottom:16%; left:46%; width:34px; opacity:.42; animation: aboutDrift3 9s ease-in-out infinite 1.5s; }

  /* ---- SERVICES ---- */
  .services{ padding-bottom: 90px; }
  .services__grid{ padding: 0 32px; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .svc-card{ border-radius: 26px; padding: 26px 22px 30px; }
  .svc-card__icon{ width: 32px; height: 32px; }
  .svc-card__title{ font-size: 16px; }
  .svc-card__mock{ max-width: 320px; margin-bottom: 16px; }
  .svc-card__text{ font-size: 12.5px; }

  .deco--svc-sprig-l  { display: block; top: 180px; left: -40px; width: 110px; opacity: .65; transform: rotate(-10deg); }
  .deco--svc-sprig-r  { display: block; bottom: 20px; right: -50px; width: 170px; opacity: .5; }
  .deco--svc-confetti { display: block; top: 70px; right: 40px; width: 72px; opacity: .55; }
  .deco--svc-dots     { display: block; bottom: 50px; left: 3%; width: 68px; opacity: .52; }
  .deco--svc-flower-tl{ display: block; top: 110px; left: 14px; width: 60px; opacity: .6; }

  /* ---- WORKS ---- */
  .works{ padding-bottom: 80px; }
  .works__grid{ padding: 0 32px; grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .work{ border-radius: 18px; padding: 16px 16px 18px; }
  .work__cap{ font-size: 12.5px; }
  .works__more{ margin-top: 64px; }

  .deco--wk-leaf-l   { display: block; bottom: 60px; left: -20px; width: 100px; opacity: .72; }
  .deco--wk-flower-r { display: block; top: 200px; right: -6px; width: 58px; opacity: .82; }
  .deco--wk-dots-r   { display: block; bottom: 40px; right: 5%; width: 58px; opacity: .52; }
  .deco--wk-sprig-bl { display: block; bottom: 20px; left: 30%; width: 60px; opacity: .6; }

  /* ---- FLOW ---- */
  .flow{ padding-bottom: 90px; }
  .flow__steps{ padding: 0 32px; grid-template-columns: repeat(5, 1fr); gap: 8px; }
  .step__blob{ width: 200px; height: 220px; margin: 0 auto 16px; }
  .step__num{ top: 34px; font-size: 28px; }
  .step__icon{ width: 80px; height: 80px; margin-top: 36px; }
  .step__title{ font-size: 16px; }
  .step__text{ font-size: 11.5px; }

  /* Arrow between steps — PCのみ表示 */
  .step:not(:last-child)::after{
    display: block;
    content: "";
    position: absolute;
    top: 110px;
    right: -28px;
    width: 56px;
    height: 18px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 18" fill="none" stroke="%236d7a4a" stroke-width="1.1" stroke-linecap="round" stroke-linejoin="round"><path d="M2 9 C 20 3 44 15 58 9"/><path d="M50 4 L58 9 L50 14"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: .7;
    z-index: 3;
  }

  .deco--flow-sprig-l   { display: block; top: 160px; left: -20px; width: 100px; opacity: .65; }
  .deco--flow-flower-tl { display: block; top: 40px; left: 16px; width: 65px; opacity: .6; }
  .deco--flow-spool     { display: block; top: 40px; right: 20%; width: 55px; opacity: .55; transform: rotate(10deg); }
  .deco--flow-sprig-r   { display: block; bottom: 20px; right: -20px; width: 90px; opacity: .78; }
  .deco--flow-leaf-br   { display: block; bottom: 60px; left: 3%; width: 60px; opacity: .72; }
  .deco--flow-flower-br { display: block; bottom: 14px; right: 26%; width: 50px; opacity: .78; }
  .deco--flow-dots      { display: block; top: 200px; left: 3%; width: 64px; opacity: .52; }
  .deco--flow-stars     { display: block; top: 45px; right: 5%; width: 75px; opacity: .55; }

  /* ---- VOICE ---- */
  .voice{ padding-bottom: 100px; }
  .voice__eyebrow{ font-size: 10.5px; }
  .voice__title-deco{ width: 88px; }
  .voice__subtitle{ font-size: 12.5px; }
  .voice__grid{
    padding: 0 32px;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: var(--container);
  }
  .voice-card{ border-radius: 28px; padding: 34px 28px 26px; gap: 14px; }
  .voice-card::before{ top: 10px; left: 18px; font-size: 68px; }
  .voice-card__corner{ width: 88px; }
  .voice-star{ font-size: 18px; }
  .voice-card__quote{ font-size: 13.5px; line-height: 2.08; padding-top: 6px; }
  .voice-card__client{ font-size: 11.5px; padding-top: 13px; }

  .deco--voice-blob-bg    { width:820px; opacity:.11; }
  .deco--voice-sprig-l    { display: block; top:44px; left:-18px; width:78px; opacity:.75; animation:voiceFloat 5s ease-in-out infinite; }
  .deco--voice-sprig-r    { display: block; top:52px; right:-8px; width:88px; opacity:.68; animation:voiceFloat 6.5s ease-in-out infinite reverse; }
  .deco--voice-botanical  { display: block; bottom:90px; left:12%; width:64px; opacity:.52; animation:voiceFloat 8s ease-in-out infinite .5s; }
  .deco--voice-swash      { display: block; top:155px; right:11%; width:72px; opacity:.42; animation:voiceFloat 9.5s ease-in-out infinite 1.2s; }
  .deco--voice-dots-l     { display: block; bottom:52px; left:3%; width:56px; opacity:.55; animation:voiceFloat 7s ease-in-out infinite 1s; }
  .deco--voice-dots-r     { display: block; bottom:42px; right:4%; width:56px; opacity:.50; animation:voiceFloat 5.5s ease-in-out infinite .5s; }
  .deco--voice-heart      { display: block; top:82px; right:22%; width:23px; opacity:.78; animation:voicePulse 3s ease-in-out infinite; }
  .deco--voice-heart2     { display: block; bottom:94px; left:29%; width:17px; opacity:.62; animation:voicePulse 3.8s ease-in-out infinite 1.2s; }
  .deco--voice-bow        { display: block; bottom:32px; left:42%; width:62px; opacity:.40; animation:voiceFloat 8.5s ease-in-out infinite 2s; }
  .deco--voice-star-y     { display: block; top:58px; left:26%; width:26px; opacity:.72; animation:voiceTwinkle 4s ease-in-out infinite; }
  .deco--voice-star-c     { display: block; bottom:115px; right:24%; width:22px; opacity:.68; animation:voiceTwinkle 3.5s ease-in-out infinite .9s; }
  .deco--voice-confetti-y1{ display: block; top:20%; left:7%; width:38px; opacity:.55; animation:voiceDrift1 9.5s ease-in-out infinite; }
  .deco--voice-confetti-y2{ display: block; top:62%; right:8%; width:32px; opacity:.48; animation:voiceDrift2 11.5s ease-in-out infinite 2.2s; }
  .deco--voice-confetti-o1{ display: block; top:38%; left:51%; width:30px; opacity:.38; animation:voiceDrift3 8.5s ease-in-out infinite 1.2s; }
  .deco--voice-confetti-g1{ display: block; bottom:22%; right:16%; width:35px; opacity:.42; animation:voiceDrift1 10.5s ease-in-out infinite 3.2s; }

  /* ---- FAQ ---- */
  .faq{ padding-bottom: 90px; }
  .faq__inner{
    max-width: 960px; /* FAQ は読みやすさを優先して 1200px より狭く */
    padding: 0 32px;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
  }
  .faq__list{ gap: 12px; }
  .faq__row{ padding: 14px 24px 14px 18px; font-size: 14px; gap: 14px; }
  .faq__plus-circle{ width: 26px; height: 26px; font-size: 14px; }
  .faq__plus{ font-size: 20px; margin-left: 12px; }
  .faq__answer{ border-radius: 20px; padding: 0 28px; }
  .faq__answer p{ font-size: 13.5px; }
  .faq__item.is-open .faq__answer{ padding: 14px 28px 18px; }
  .faq__item.is-open .faq__row{ border-radius: 24px; }
  .faq__cta{ border-radius: 22px; padding: 24px 22px; }
  .faq__cta-icon{ width: 80px; }
  .faq__cta-text{ font-size: 13px; }

  .deco--faq-sprig-l { display: block; top: 30px; left: -14px; width: 90px; opacity: .75; }
  .deco--faq-flower-l{ display: block; bottom: 100px; left: 6px; width: 44px; opacity: .82; }
  .deco--faq-sprig-r { display: block; bottom: 10px; right: -16px; width: 100px; opacity: .78; }
  .deco--faq-pink-r  { display: block; top: 50px; right: 14px; width: 38px; opacity: .82; }
  .deco--faq-yellow-r{ display: block; bottom: 50px; right: 7%; width: 42px; opacity: .82; }

  /* ---- FINAL CTA ---- */
  /* 上下paddingを均等にしてコンテンツをセクション内で縦中央寄せに */
  .final-cta{ padding: 148px 32px 148px; }
  .final-cta__inner{
    max-width: var(--container);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 24px;
  }
  .final-cta__copy{ padding-left: 80px; }
  .final-cta__title{ font-size: 30px; margin-bottom: 14px; }
  .final-cta__heart{ width: 28px; }
  .final-cta__text{ font-size: 15.5px; }

  /* デスクトップ：大きな葉素材を控えめにして他と重ねず、空きエリアへ分散配置 */
  .deco--cta-woven { display: block; bottom: -14px; left: -14px; width: 180px; opacity: .88; z-index: 1; }
  .deco--cta-leaf  { display: block; top: 36px; left: 3%; width: 70px; opacity: .82; z-index: 1; transform: rotate(-18deg); }
  .deco--cta-flower{ display: block; top: 20px; right: 4%; width: 64px; opacity: .8; z-index: 1; transform: rotate(14deg); }
  .deco--cta-pink  { display: block; bottom: 28px; right: 4%; width: 44px; opacity: .9; z-index: 2; }
  .deco--cta-petal-l{ display: block; top: 30%; left: 14%; width: 44px; opacity: .65; z-index: 1; transform: rotate(-22deg); }
  .deco--cta-petal-r{ display: block; bottom: 18%; right: 14%; width: 36px; opacity: .6; z-index: 1; transform: rotate(18deg); }
  .deco--cta-confetti{ display: block; bottom: 36px; left: 22%; width: 72px; opacity: .5; z-index: 1; }
  .deco--cta-bow    { display: block; top: 18%; left: 44%; width: 48px; opacity: .55; z-index: 1; transform: rotate(-8deg); }
  .deco--cta-heart  { display: block; top: 60%; right: 30%; width: 24px; opacity: .55; z-index: 2; }
  /* 大きな葉っぱ：他要素と重ならない右端の隙間へ控えめに配置 */
  .deco--cta-stem   { display: block; bottom: -16px; right: -30px; width: 110px; opacity: .55; z-index: 1; transform: scaleX(-1) rotate(-6deg); }

  /* ---- FOOTER ---- */
  .site-footer{ padding: 28px 32px 24px; }
  .footer-inner{
    grid-template-columns: auto 1fr auto;
    text-align: left;
    gap: 24px;
  }
  .brand--footer{ justify-content: flex-start; }
  .brand--footer .brand__mark{ font-size: 28px; }
  .footer-nav{ flex-direction: column; gap: 4px; }
  .footer-nav__row{ gap: 20px; font-size: 13px; justify-content: flex-start; }
  .footer-nav__row--small{ font-size: 12px; }
  .footer-copy{ font-size: 12px; }
}


/* =================================================================
   KEYFRAMES (shared)
   ================================================================= */
@keyframes aboutBlobSpin{
  0%   { transform: translateX(-50%) rotate(0deg); }
  100% { transform: translateX(-50%) rotate(360deg); }
}
@keyframes aboutBlobDrift{
  0%,100%{ transform: translate(0, 0)        rotate(0deg); }
  50%    { transform: translate(-14px, -10px) rotate(-6deg); }
}
@keyframes aboutFloat{
  0%,100%{ transform: translateY(0); }
  50%    { transform: translateY(-10px); }
}
@keyframes aboutSway{
  0%,100%{ transform: translateY(-50%) rotate(0deg); }
  50%    { transform: translateY(-50%) rotate(3deg); }
}
@keyframes aboutSwayR{
  0%,100%{ transform: rotate(10deg); }
  50%    { transform: rotate(16deg) translateY(-6px); }
}
@keyframes aboutPulse{
  0%,100%{ transform: scale(1)    rotate(-6deg); opacity: .78; }
  50%    { transform: scale(1.26) rotate(-6deg); opacity: 1; }
}
@keyframes aboutTwinkle{
  0%,100%{ opacity: .72; transform: scale(1)    rotate(0deg); }
  25%    { opacity: 1;   transform: scale(1.32) rotate(18deg); }
  75%    { opacity: .42; transform: scale(0.82) rotate(-14deg); }
}
@keyframes aboutDrift1{
  0%,100%{ transform: translate(0, 0)        rotate(0deg); }
  33%    { transform: translate(8px, -18px)  rotate(12deg); }
  66%    { transform: translate(-5px, 8px)   rotate(-8deg); }
}
@keyframes aboutDrift2{
  0%,100%{ transform: translate(0, 0)         rotate(0deg); }
  40%    { transform: translate(-8px, -14px)  rotate(-14deg); }
  70%    { transform: translate(6px, 14px)    rotate(10deg); }
}
@keyframes aboutDrift3{
  0%,100%{ transform: translate(0, 0)        rotate(0deg)  scale(1); }
  50%    { transform: translate(10px, -20px) rotate(22deg) scale(1.12); }
}
@keyframes voiceFadeUp{
  from{ opacity:0; transform:translateY(10px); }
  to  { opacity:1; transform:translateY(0); }
}
@keyframes voiceDecoLine{
  from{ opacity:0; transform:scaleX(0); }
  to  { opacity:.62; transform:scaleX(1); }
}
@keyframes voiceFloat{
  0%,100%{ transform:translateY(0); }
  50%    { transform:translateY(-10px); }
}
@keyframes voicePulse{
  0%,100%{ transform:rotate(-8deg) scale(1);    opacity:.78; }
  50%    { transform:rotate(-8deg) scale(1.24); opacity:1; }
}
@keyframes voiceTwinkle{
  0%,100%{ opacity:.72; transform:scale(1)    rotate(0deg); }
  25%    { opacity:1;   transform:scale(1.32) rotate(16deg); }
  75%    { opacity:.48; transform:scale(0.82) rotate(-12deg); }
}
@keyframes voiceBlobSpin{
  0%  { transform:translateX(-50%) rotate(0deg); }
  100%{ transform:translateX(-50%) rotate(360deg); }
}
@keyframes voiceDrift1{
  0%,100%{ transform:translateY(0)    rotate(0deg)   translateX(0); }
  33%    { transform:translateY(-18px) rotate(12deg)  translateX(8px); }
  66%    { transform:translateY(8px)   rotate(-8deg)  translateX(-5px); }
}
@keyframes voiceDrift2{
  0%,100%{ transform:translateY(0)    rotate(0deg); }
  40%    { transform:translateY(-14px) rotate(-16deg); }
  70%    { transform:translateY(14px)  rotate(11deg); }
}
@keyframes voiceDrift3{
  0%,100%{ transform:translateY(0)    rotate(0deg)   scale(1); }
  50%    { transform:translateY(-20px) rotate(22deg)  scale(1.12); }
}

/* =================================================================
   SCROLL ANIMATIONS & MICRO-INTERACTIONS  (shared, all breakpoints)
   ================================================================= */
html{ scroll-behavior: smooth; }

.site-header{ transition:box-shadow .35s ease; }
.site-header.is-scrolled{ box-shadow:0 2px 24px rgba(58,54,40,.10); }

.section-title::after{
  content:'';
  display:block;
  width:0;
  height:1.5px;
  background:linear-gradient(90deg, var(--coral), var(--green-soft));
  margin:12px auto 0;
  border-radius:2px;
  transition:width .95s cubic-bezier(0.22,1,.36,1) .38s;
}
.section-head.is-visible .section-title::after{ width:44px; }

/* JS入場アニメーション */
.js .section-head{
  opacity:0; translate:0 28px;
  transition: opacity .82s cubic-bezier(0.22,1,.36,1), translate .82s cubic-bezier(0.22,1,.36,1);
}
.js .section-head.is-visible{ opacity:1; translate:0 0; }

.js .about__lead{
  opacity:0; translate:0 20px;
  transition: opacity .85s cubic-bezier(0.22,1,.36,1), translate .85s cubic-bezier(0.22,1,.36,1);
}
.js .about__lead.is-visible{ opacity:1; translate:0 0; }

.js .pillar{
  opacity:0; translate:0 32px; scale:.93;
  transition: opacity .72s cubic-bezier(0.22,1,.36,1), translate .72s cubic-bezier(0.22,1,.36,1), scale .72s cubic-bezier(0.22,1,.36,1);
}
.js .pillar.is-visible{ opacity:1; translate:0 0; scale:1; }

.js .svc-card{
  opacity:0; translate:0 42px;
  transition: opacity .75s cubic-bezier(0.22,1,.36,1), translate .75s cubic-bezier(0.22,1,.36,1), transform .35s ease, box-shadow .3s ease;
}
.js .svc-card.is-visible{ opacity:1; translate:0 0; }
.svc-card:hover{ transform:translateY(-8px); box-shadow:0 20px 48px rgba(0,0,0,.10); }

.js .work{
  opacity:0; translate:0 30px;
  transition: opacity .72s cubic-bezier(0.22,1,.36,1), translate .72s cubic-bezier(0.22,1,.36,1);
}
.js .work.is-visible{ opacity:1; translate:0 0; }

.js .step{
  opacity:0; translate:0 36px;
  transition: opacity .72s cubic-bezier(0.22,1,.36,1), translate .72s cubic-bezier(0.22,1,.36,1);
}
.js .step.is-visible{ opacity:1; translate:0 0; }

.js .faq__item{
  opacity:0; translate:-20px 0;
  transition: opacity .65s cubic-bezier(0.22,1,.36,1), translate .65s cubic-bezier(0.22,1,.36,1), box-shadow .2s;
}
.js .faq__item.is-visible{ opacity:1; translate:0 0; }

.js .faq__cta{
  opacity:0; translate:0 28px;
  transition: opacity .7s cubic-bezier(0.22,1,.36,1) .18s, translate .7s cubic-bezier(0.22,1,.36,1) .18s;
}
.js .faq__cta.is-visible{ opacity:1; translate:0 0; }

.js .final-cta__copy{
  opacity:0; translate:0 22px;
  transition: opacity .88s cubic-bezier(0.22,1,.36,1), translate .88s cubic-bezier(0.22,1,.36,1);
}
.js .final-cta__copy.is-visible{ opacity:1; translate:0 0; }

.js .final-cta .btn--orange{
  opacity:0; translate:0 22px;
  transition: opacity .75s cubic-bezier(0.22,1,.36,1) .28s, translate .75s cubic-bezier(0.22,1,.36,1) .28s, transform .22s ease, box-shadow .22s ease, background-color .2s;
}
.js .final-cta .btn--orange.is-visible{ opacity:1; translate:0 0; }

.js .works__more{
  opacity:0; translate:0 22px;
  transition: opacity .7s cubic-bezier(0.22,1,.36,1) .18s, translate .7s cubic-bezier(0.22,1,.36,1) .18s;
}
.js .works__more.is-visible{ opacity:1; translate:0 0; }

/* PC : 横スライド演出に切替（モバイルでは縦に統一） */
@media (min-width: 1024px){
  .js .about__lead{ translate:-38px 0; }
  .js .faq__item{ translate:-28px 0; }
  .js .final-cta__copy{ translate:-32px 0; }
}

/* 実績：ホバー画像ズーム */
.work{ overflow:hidden; }
.work__img{
  transition: transform .52s cubic-bezier(0.22,1,.36,1), filter .52s ease;
}
.work:hover .work__img{
  transform:scale(1.05);
  filter:drop-shadow(0 12px 28px rgba(0,0,0,.13));
}

/* ボタン：シマースウィープ */
.btn{ overflow:hidden; }
.btn::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(110deg, transparent 30%, rgba(255,255,255,.24) 50%, transparent 70%);
  transform:translateX(-130%) skewX(-8deg);
  transition:transform .58s ease;
  pointer-events:none;
  mix-blend-mode:screen;
}
.btn:hover::after{ transform:translateX(210%) skewX(-8deg); }

/* ヒーロー：文字送り */
.hero-char{
  display: inline-block;
  vertical-align: baseline;
  opacity: 0;
  animation: heroCharReveal .6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes heroCharReveal{
  from{ opacity:0; translate:0 10px; filter:blur(4px); }
  to  { opacity:1; translate:0 0;    filter:blur(0);   }
}

.js .hero__lead{
  opacity: 0; translate: 0 16px;
  transition: opacity .9s cubic-bezier(0.22,1,.36,1), translate .9s cubic-bezier(0.22,1,.36,1);
}
.js .hero__lead.is-visible{ opacity:1; translate:0 0; }

.js .hero__copy .btn--green{
  opacity: 0; translate: 0 14px;
  transition: opacity .75s cubic-bezier(0.22,1,.36,1), translate .75s cubic-bezier(0.22,1,.36,1), transform .22s ease, box-shadow .22s ease;
}
.js .hero__copy .btn--green.is-visible{ opacity:1; translate:0 0; }

/* =================================================================
   WordPress 連携：テーマが出すヘッダー上／フッター下の余白を打ち消す
   ※ このデザインの html/body 自体は余白 0。上下の余白はテーマの
     本文コンテナ（.entry-content 等）が持つ margin/padding が原因。
     テーマにより class 名が異なるため、代表的なものをまとめて 0 に。
     効かない場合は使用テーマの本文ラッパー class を教えてください。
   ================================================================= */
.entry-content,
.wp-block-post-content,
.site-main,
.site-content,
.content-area,
main#main,
#main,
#content,
#primary{
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
/* 本文ラッパー内の最初／最後の要素が持つ既定マージンも除去 */
.entry-content > *:first-child,
.wp-block-post-content > *:first-child{ margin-top: 0 !important; }
.entry-content > *:last-child,
.wp-block-post-content > *:last-child{ margin-bottom: 0 !important; }
/* 貼り付けたフッターを最下部までフラットに */
.site-footer{ margin-bottom: 0 !important; }
