@charset "UTF-8";
/* =========================================================
   株式会社Coconeiro 公式サイト
   参考: fivot.co.jp（余白・大きな英字見出し・パステルのオーロラ）
   ========================================================= */
:root {
  --paper: #F7F7F5;
  --white: #FFFFFF;
  --ink: #1F2023;
  --ink2: #3A3D42;
  --mist: #7C8594;
  --line: #D9DDE3;
  --teal: #2A98A4;
  --teal-soft: #E3F1F3;
  --mint: #CDEFE6;
  --sky: #C4E2F6;
  --lilac: #DDD5F4;
  --peach: #FBE2D8;
  --en: 'Figtree', 'Helvetica Neue', Arial, sans-serif;
  --ja: 'Zen Kaku Gothic New', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --gutter: clamp(20px, 5vw, 64px);
  --header-h: 88px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ja);
  font-size: 15px;
  line-height: 2;
  letter-spacing: .06em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-loading { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
ul, ol { list-style: none; margin: 0; padding: 0; }
p, h1, h2, h3, figure, dl, dd { margin: 0; }
address { font-style: normal; }
::selection { background: var(--teal); color: #fff; }

.wrap { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); }
.pc { display: inline; }
.sp { display: none; }
@media (max-width: 767px) {
  .pc { display: none; }
  .sp { display: inline; }
}

/* ---------- ローディング ---------- */
#loader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--paper);
  display: grid; place-items: center;
  transition: opacity 1.1s var(--ease), visibility 1.1s;
}
#loader.is-done { opacity: 0; visibility: hidden; }
.ld-inner { position: relative; width: 200px; height: 200px; display: grid; place-items: center; }
.ld-ring { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.ld-ring circle { fill: none; stroke: url(#ldg); stroke-width: 1.2; stroke-dasharray: 604; stroke-dashoffset: 604; }
.ld-inf { width: 64px; margin-top: -26px; }
.ld-inf path { fill: none; stroke: var(--ink); stroke-width: 1.3; stroke-linecap: round; stroke-dasharray: 120; stroke-dashoffset: 120; }
.ld-word { position: absolute; top: 118px; font-family: var(--en); font-weight: 500; font-size: 17px; letter-spacing: .12em; opacity: 0; }
#loader.is-quick .ld-inner { display: none; }

/* ---------- 背景のオーロラ（スクロールで滲み出る） ---------- */
#aurora {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  opacity: var(--aurora, 0);
  overflow: hidden;
}
#aurora i { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .85; }
#aurora .a1 { width: 60vw; height: 60vw; left: -18vw; top: -10vw; background: var(--mint); animation: drift1 26s ease-in-out infinite alternate; }
#aurora .a2 { width: 55vw; height: 55vw; right: -16vw; top: 10vh; background: var(--sky); animation: drift2 30s ease-in-out infinite alternate; }
#aurora .a3 { width: 50vw; height: 50vw; left: 20vw; bottom: -22vw; background: var(--lilac); animation: drift3 34s ease-in-out infinite alternate; }
#aurora .a4 { width: 36vw; height: 36vw; right: 6vw; bottom: -8vw; background: var(--peach); animation: drift1 38s ease-in-out infinite alternate-reverse; }
@keyframes drift1 { to { transform: translate(8vw, 6vh) scale(1.08); } }
@keyframes drift2 { to { transform: translate(-10vw, 10vh) scale(.92); } }
@keyframes drift3 { to { transform: translate(6vw, -8vh) scale(1.1); } }

/* ---------- ヘッダー ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 3vw, 44px);
  transition: transform .8s var(--ease), background .6s, height .6s var(--ease);
}
.site-header.is-scrolled { background: rgba(247, 247, 245, .72); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); height: 72px; }
.site-header.is-hidden { transform: translateY(-100%); }
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-mark { width: 40px; height: 20px; }
.logo-mark path { fill: none; stroke: var(--ink); stroke-width: 2.2; stroke-linecap: round; }
.logo-text { font-family: var(--en); font-weight: 500; font-size: 24px; letter-spacing: .02em; line-height: 1; }
.logo:hover .logo-mark path { animation: logoDraw 1.4s var(--ease); }
@keyframes logoDraw { from { stroke-dasharray: 120; stroke-dashoffset: 120; } to { stroke-dasharray: 120; stroke-dashoffset: 0; } }
.gnav { display: flex; align-items: center; gap: clamp(16px, 2vw, 32px); font-family: var(--en); font-size: 14px; letter-spacing: .02em; }
.gnav > a:not(.pill) { position: relative; padding: 4px 0; }
.gnav > a:not(.pill)::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .6s var(--ease); }
.gnav > a:not(.pill):hover::after, .gnav > a.is-current::after { transform: scaleX(1); transform-origin: left; }
.menu-btn { display: none; }

.sp-menu { display: none; }
@media (max-width: 1120px) {
  :root { --header-h: 68px; }
  .site-header.is-scrolled { height: 60px; }
  .gnav { display: none; }
  .logo-text { font-size: 21px; }
  .menu-btn { display: grid; place-content: center; gap: 7px; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.8); border: 1px solid var(--line); position: relative; z-index: 120; }
  .menu-btn span { display: block; width: 18px; height: 1.5px; background: var(--ink); transition: transform .6s var(--ease); }
  .menu-btn[aria-expanded="true"] span:first-child { transform: translateY(4.25px) rotate(20deg); }
  .menu-btn[aria-expanded="true"] span:last-child { transform: translateY(-4.25px) rotate(-20deg); }
  .sp-menu {
    display: flex; flex-direction: column; justify-content: center;
    position: fixed; inset: 0; z-index: 110;
    padding: 90px 32px 40px;
    background: linear-gradient(135deg, #EEF8F6, #EEF2FB 55%, #FBF1EC);
    clip-path: circle(0 at calc(100% - 44px) 34px);
    transition: clip-path 1s var(--ease);
    visibility: hidden;
  }
  .sp-menu.is-open { clip-path: circle(150% at calc(100% - 44px) 34px); visibility: visible; }
  .sp-menu nav { display: grid; gap: 6px; }
  .sp-menu nav a { display: flex; align-items: baseline; gap: 14px; padding: 8px 0; border-bottom: 1px solid rgba(31,32,35,.08); opacity: 0; transform: translateY(16px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
  .sp-menu.is-open nav a { opacity: 1; transform: none; }
  .sp-menu nav a b { font-family: var(--en); font-weight: 400; font-size: 30px; letter-spacing: .01em; }
  .sp-menu nav a small { font-size: 11px; color: var(--mist); }
  .sp-menu-foot { margin-top: 32px; font-size: 11px; line-height: 1.8; color: var(--mist); }
}

/* ---------- ピルボタン（fivot風：右端のドット） ---------- */
.pill {
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: space-between; gap: 28px;
  min-width: 210px; height: 54px; padding: 0 10px 0 32px;
  border: 1px solid var(--line); border-radius: 999px;
  background: rgba(255,255,255,.72); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  font-family: var(--en); font-size: 14px; letter-spacing: .04em; line-height: 1;
  transition: color .7s var(--ease), border-color .7s var(--ease);
}
.pill::before {
  content: ''; position: absolute; z-index: -1;
  right: 10px; top: 50%; width: 34px; height: 34px; margin-top: -17px; border-radius: 50%;
  background: var(--teal);
  transform: scale(0); transition: transform .9s var(--ease);
}
.pill .dot { position: relative; width: 34px; height: 34px; border-radius: 50%; background: var(--teal-soft); flex: none; transition: background .6s; }
.pill .dot::after { content: ''; position: absolute; left: 50%; top: 50%; width: 8px; height: 8px; margin: -4px 0 0 -4px; border-radius: 50%; background: var(--teal); transition: background .6s, transform .6s var(--ease); }
.pill:hover { color: #fff; border-color: var(--teal); }
.pill:hover::before { transform: scale(16); }
.pill:hover .dot { background: rgba(255,255,255,.18); }
.pill:hover .dot::after { background: #fff; transform: translateX(3px); }
.pill-sm { min-width: 160px; height: 46px; padding-left: 26px; }
.pill-sm .dot, .pill-sm::before { width: 28px; height: 28px; }
.pill-sm::before { margin-top: -14px; right: 8px; }
.pill-sm .dot { margin-right: -2px; }
.pill-lg { min-width: 280px; height: 62px; font-family: var(--ja); font-size: 15px; }
.pill-ghost { justify-content: center; padding: 0 32px; min-width: 160px; font-family: var(--ja); }
.pill.is-current { border-color: var(--teal); }
.pill[disabled] { opacity: .5; pointer-events: none; }

.circle-btn { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: #fff; box-shadow: 0 4px 18px rgba(31,32,35,.06); transition: transform .8s var(--ease); }
.circle-btn .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }

/* ---------- 見出し ---------- */
.sec { position: relative; padding: clamp(96px, 13vw, 190px) 0; }
.sec-head { display: flex; flex-direction: column; gap: 14px; }
.sec-head.center { align-items: center; text-align: center; }
.sec-en { font-family: var(--en); font-weight: 300; font-size: clamp(44px, 6.4vw, 88px); line-height: 1; letter-spacing: -.01em; white-space: nowrap; }
.co-inner .sec-en, .creed-en { font-size: clamp(40px, 4.8vw, 66px); }
.sec-ja { display: inline-flex; align-items: center; gap: 14px; font-size: 12px; letter-spacing: .2em; color: var(--mist); line-height: 1.4; }
.sec-ja::before { content: ''; width: 26px; height: 1px; background: currentColor; transform-origin: left; transition: transform 1.2s var(--ease) .2s; }
.txt { font-size: 15px; line-height: 2.15; color: var(--ink2); }
.txt + .txt { margin-top: 1.2em; }
.txt.center { text-align: center; }
.right-btn { display: flex; justify-content: flex-end; margin-top: 48px; }

/* 文字・行の分割アニメ */
@media (min-width: 861px) { .statement .ln, .creed-main .ln, .msg-quote .ln, .vision-text .ln { white-space: nowrap; } }
.c { display: inline-block; }
.ln { display: block; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.ln-in { display: block; }

/* 表示前の状態（JSが動くときだけ） */
.js [data-reveal] { opacity: 0; transform: translateY(26px); filter: blur(6px); }
.js [data-reveal].is-in { opacity: 1; transform: none; filter: none; transition: opacity 1.4s var(--ease), transform 1.4s var(--ease), filter 1.4s var(--ease); transition-delay: var(--d, 0s); }
.js .sec-ja[data-reveal]::before { transform: scaleX(0); }
.js .sec-ja[data-reveal].is-in::before { transform: scaleX(1); }
.js [data-chars] .c { opacity: 0; transform: translateY(.45em); filter: blur(8px); }
.js [data-chars].is-in .c { opacity: 1; transform: none; filter: none; transition: opacity 1.3s var(--ease), transform 1.3s var(--ease), filter 1.3s var(--ease); transition-delay: calc(var(--i) * 45ms); }
.js [data-lines] .ln-in { transform: translateY(105%); }
.js [data-lines].is-in .ln-in { transform: none; transition: transform 1.5s var(--ease); transition-delay: calc(var(--i) * 120ms + .05s); }
.js [data-photo] { clip-path: inset(100% 0 0 0); }
.js [data-photo] img, .js [data-photo] iframe { transform: scale(1.18); }
.js [data-photo].is-in { clip-path: inset(0 0 0 0); transition: clip-path 1.6s var(--ease); }
.js [data-photo].is-in img, .js [data-photo].is-in iframe { transform: scale(1); transition: transform 2.2s var(--ease); }
.js [data-rule] { transform: scaleX(0); transform-origin: left; }
.js [data-rule].is-in { transform: scaleX(1); transition: transform 1.8s var(--ease); }

/* ---------- ヒーロー ---------- */
.hero { position: relative; height: 100vh; height: 100svh; min-height: 560px; display: flex; align-items: center; overflow: hidden; }
.waves { position: absolute; inset: 0; width: 100%; height: 100%; display: block; pointer-events: none; }
.hero-inner { position: relative; z-index: 1; padding-top: 20px; }
.hero-eyebrow { font-family: var(--en); font-size: 13px; letter-spacing: .24em; color: var(--mist); margin-bottom: 28px; overflow: hidden; }
.hero-eyebrow span { display: inline-block; }
.hero-title { font-weight: 500; font-size: clamp(34px, 5.4vw, 74px); line-height: 1.55; letter-spacing: .12em; }
.hero-title .line { display: block; white-space: nowrap; }
.hero-title .c { will-change: transform, opacity, filter; }
.hero-sub { margin-top: 34px; font-size: clamp(13px, 1.3vw, 16px); letter-spacing: .16em; color: var(--ink2); }
.js .hero-eyebrow span, .js .hero-sub { opacity: 0; }
.js .hero-title .c { opacity: 0; }
.scroll-ind { position: absolute; right: clamp(20px, 4vw, 60px); bottom: 36px; display: flex; align-items: center; gap: 16px; font-family: var(--en); font-size: 12px; letter-spacing: .06em; }
.scroll-ind i { position: relative; width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(124,133,148,.3); }
.scroll-ind i::after { content: ''; position: absolute; inset: -1px; border-radius: 50%; border: 1px solid transparent; border-top-color: var(--ink2); border-left-color: var(--ink2); animation: spin 2.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- 2カラム（左に見出し） ---------- */
.split-inner { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.statement { font-size: clamp(22px, 2.5vw, 34px); line-height: 1.85; font-weight: 500; letter-spacing: .1em; margin-bottom: 44px; }
.split-body .txt { max-width: 620px; }
.split-body .pill { margin-top: 48px; }
@media (max-width: 860px) {
  .split-inner { grid-template-columns: 1fr; }
}

/* ---------- ∞ ストーリー（スクロールで描く） ---------- */
.story { position: relative; height: 520vh; }
.story-pin { position: sticky; top: 0; height: 100vh; height: 100svh; display: flex; align-items: center; overflow: hidden; }
.story-inner { position: relative; height: 100%; display: flex; flex-direction: column; padding-top: calc(var(--header-h) + 3vh); padding-bottom: 5vh; }
.story-head { display: flex; flex-direction: column; gap: 14px; }
.story-stage { position: relative; flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.story-inf { width: min(64vw, 720px); height: auto; overflow: visible; }
.inf-base { fill: none; stroke: rgba(124,133,148,.18); stroke-width: .12; }
.inf-draw { fill: none; stroke: url(#infg); stroke-width: .42; stroke-linecap: round; }
.inf-dot { fill: var(--teal); filter: drop-shadow(0 0 .8px rgba(42,152,164,.8)); }
.story-steps { position: relative; width: 100%; height: 150px; margin-top: 3vh; }
.story-steps li { position: absolute; inset: 0; text-align: center; opacity: 0; transform: translateY(18px); filter: blur(6px); transition: opacity 1s var(--ease), transform 1s var(--ease), filter 1s var(--ease); pointer-events: none; }
.story-steps li.is-on { opacity: 1; transform: none; filter: none; }
.st-no { font-family: var(--en); font-size: 12px; letter-spacing: .2em; color: var(--teal); }
.st-title { font-size: clamp(24px, 2.8vw, 36px); font-weight: 500; letter-spacing: .14em; line-height: 1.6; margin: 4px 0 8px; }
.st-text { font-size: 14px; line-height: 2; color: var(--ink2); }
.story-bar { position: absolute; left: 50%; bottom: 0; width: 160px; height: 1px; margin-left: -80px; background: var(--line); }
.story-bar i { position: absolute; inset: 0; background: var(--ink); transform: scaleX(var(--p, 0)); transform-origin: left; }
@media (max-width: 767px) {
  .story { height: 460vh; }
  .story-inf { width: 92vw; }
  .story-steps { height: 170px; }
  .st-text { font-size: 13px; }
}
/* JSなし・動きを減らす設定：縦に並べる */
.no-story .story { height: auto; }
.no-story .story-pin { position: relative; height: auto; }
.no-story .story-steps { height: auto; display: grid; gap: 36px; }
.no-story .story-steps li { position: relative; opacity: 1; transform: none; filter: none; }
.no-story .story-bar { display: none; }

/* ---------- ビジョン ---------- */
.vision { position: relative; padding: clamp(110px, 14vw, 200px) 0; overflow: hidden; background: linear-gradient(120deg, rgba(205,239,230,.75), rgba(196,226,246,.7) 45%, rgba(221,213,244,.7) 75%, rgba(251,226,216,.75)); }
.marquee { position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%); pointer-events: none; }
.marquee-track { display: flex; width: max-content; gap: .6em; font-family: var(--en); font-weight: 300; font-size: clamp(80px, 13vw, 190px); line-height: 1; color: rgba(255,255,255,.55); white-space: nowrap; animation: marquee 70s linear infinite; }
.marquee-track span { font-family: var(--ja); font-weight: 400; }
.marquee-track span:nth-child(5n) { font-family: var(--en); }
.marquee-track span::after { content: '・'; margin-left: .6em; opacity: .6; }
@keyframes marquee { to { transform: translateX(-50%); } }
.vision-inner { position: relative; text-align: center; }
.vision-label { display: inline-flex; flex-direction: column; align-items: center; gap: 6px; font-size: 12px; letter-spacing: .2em; color: var(--ink2); margin-bottom: 36px; }
.vision-label span { font-family: var(--en); font-size: 15px; letter-spacing: .16em; color: var(--ink); }
.vision-text { font-size: clamp(21px, 2.7vw, 36px); line-height: 1.95; letter-spacing: .12em; font-weight: 500; }

/* ---------- 社名 ---------- */
.name-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(48px, 6vw, 80px); }
.name-word { font-family: var(--en); font-weight: 300; font-size: clamp(64px, 13vw, 190px); line-height: 1; letter-spacing: -.02em; background: linear-gradient(100deg, #1F2023 0%, #1F2023 30%, #2A98A4 50%, #8C84D8 65%, #E6A58F 80%, #1F2023 100%); background-size: 220% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; padding-bottom: .1em; animation: shimmer 14s ease-in-out infinite alternate; }
@keyframes shimmer { from { background-position: 0% 0; } to { background-position: 100% 0; } }
.js [data-wipe] { clip-path: inset(0 100% 0 0); }
.js [data-wipe].is-in { clip-path: inset(0 0 -10% 0); transition: clip-path 2.2s var(--ease); }
.name-lead { font-size: 14px; color: var(--ink2); letter-spacing: .12em; }
.name-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); }
.name-list li { padding: 32px 24px 8px 0; border-right: 1px solid var(--line); padding-left: 24px; }
.name-list li:first-child { padding-left: 0; }
.name-list li:last-child { border-right: 0; }
.nm-no { display: block; font-family: var(--en); font-size: 12px; color: var(--teal); letter-spacing: .16em; }
.name-list b { display: block; font-size: clamp(22px, 2.2vw, 30px); font-weight: 500; letter-spacing: .14em; margin: 8px 0 12px; }
.name-list p { font-size: 13.5px; line-height: 2; color: var(--ink2); }
.name-note { margin-top: 56px; font-size: 14px; color: var(--ink2); text-align: center; line-height: 2.1; }
@media (max-width: 860px) {
  .name-list { grid-template-columns: 1fr 1fr; }
  .name-list li { border-right: 0; padding: 26px 0 22px; border-bottom: 1px solid var(--line); }
  .name-list li:nth-child(odd) { padding-right: 16px; border-right: 1px solid var(--line); }
  .name-list li:nth-child(even) { padding-left: 16px; }
}

/* ---------- 事業（トップ）：特集カード ---------- */
.feature { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; min-height: 460px; margin-top: 64px; padding: clamp(32px, 5vw, 64px); border-radius: 6px; overflow: hidden; background: rgba(255,255,255,.6); isolation: isolate; }
.feature-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; background: linear-gradient(135deg, #F4FAF8, #F1F3FB 60%, #FCF4EF); }
.feature-bg i { position: absolute; border-radius: 50%; filter: blur(60px); transition: transform 2s var(--ease); }
.feature-bg i:nth-child(1) { width: 60%; height: 90%; right: -8%; top: -20%; background: #F8D5C8; animation: drift2 22s ease-in-out infinite alternate; }
.feature-bg i:nth-child(2) { width: 50%; height: 80%; right: 22%; bottom: -40%; background: #D8D0F4; animation: drift3 26s ease-in-out infinite alternate; }
.feature-bg i:nth-child(3) { width: 40%; height: 70%; left: -10%; top: -30%; background: #CFEDE5; animation: drift1 30s ease-in-out infinite alternate; }
.feature:hover .feature-bg i:nth-child(1) { transform: translate(-6%, 8%) scale(1.1); }
.feature:hover .circle-btn { transform: scale(1.12); }
.feature-tag { font-family: var(--en); font-size: 12px; letter-spacing: .2em; color: var(--mist); }
.feature-name { font-size: clamp(34px, 4.4vw, 58px); font-weight: 500; letter-spacing: .14em; line-height: 1.3; margin: 10px 0 6px; }
.feature-catch { font-size: clamp(16px, 1.6vw, 20px); letter-spacing: .14em; font-weight: 500; margin-bottom: 20px; }
.feature-text { font-size: 14px; line-height: 2.1; color: var(--ink2); max-width: 470px; }
.feature-copy { justify-self: end; align-self: center; writing-mode: vertical-rl; font-size: clamp(26px, 3.2vw, 44px); letter-spacing: .3em; line-height: 1.9; color: rgba(31,32,35,.82); font-weight: 500; }
.feature .circle-btn { position: absolute; right: 28px; bottom: 28px; }
.biz-mini { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 28px; border-top: 1px solid var(--line); }
.biz-mini li { padding: 20px 14px 18px 0; font-size: 14px; letter-spacing: .08em; line-height: 1.7; }
.biz-mini li span { display: block; font-family: var(--en); font-size: 11px; color: var(--teal); letter-spacing: .16em; }
@media (max-width: 860px) {
  .feature { grid-template-columns: 1fr; min-height: 0; padding-bottom: 96px; }
  .feature-copy { writing-mode: horizontal-tb; justify-self: start; margin-top: 28px; font-size: 26px; letter-spacing: .2em; }
  .biz-mini { grid-template-columns: 1fr 1fr; }
  .biz-mini li { border-bottom: 1px solid var(--line); padding-right: 10px; }
}

/* ---------- 代表（トップ） ---------- */
.msg-top-inner { display: grid; grid-template-columns: 5fr 6fr; gap: clamp(36px, 7vw, 110px); align-items: center; }
.photo { position: relative; overflow: hidden; border-radius: 4px; background: #E9EBEE; }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.msg-top .photo { aspect-ratio: 4 / 5; }
.msg-top .photo img { object-position: 50% 30%; }
.msg-quote { font-size: clamp(20px, 2.2vw, 28px); line-height: 1.95; letter-spacing: .1em; font-weight: 500; margin: 44px 0 28px; }
.msg-sign { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 16px; margin: 32px 0 40px; }
.msg-sign small { font-size: 12px; color: var(--mist); letter-spacing: .14em; width: 100%; }
.msg-name { font-size: 24px; letter-spacing: .24em; font-weight: 500; }
.msg-en { font-family: var(--en); font-size: 13px; color: var(--mist); letter-spacing: .12em; }
@media (max-width: 860px) {
  .msg-top-inner { grid-template-columns: 1fr; }
  .msg-top .photo { max-width: 460px; }
}

/* ---------- お知らせ ---------- */
.rule { border: 0; height: 1px; background: var(--mist); opacity: .5; margin: 0 0 clamp(64px, 8vw, 110px); }
.news-top { padding-top: 0; }
.news-top-inner { display: grid; grid-template-columns: 4fr 8fr; gap: clamp(32px, 5vw, 80px); }
.news-list li { border-bottom: 1px solid var(--line); }
.news-list li:first-child { border-top: 1px solid var(--line); }
.news-list a { display: block; padding: 28px 44px 28px 0; position: relative; transition: padding .8s var(--ease), background .8s; }
.news-list a::after { content: ''; position: absolute; right: 8px; top: 50%; width: 8px; height: 8px; margin-top: -4px; border-radius: 50%; background: var(--teal); transform: scale(.5); opacity: .4; transition: transform .6s var(--ease), opacity .6s; }
.news-list a:hover { padding-left: 14px; }
.news-list a:hover::after { transform: scale(1); opacity: 1; }
.n-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 8px; }
.n-meta time { font-family: var(--en); font-size: 13px; color: var(--mist); letter-spacing: .04em; }
.tag { display: inline-block; padding: 2px 12px; border: 1px solid var(--mist); border-radius: 999px; font-size: 11px; line-height: 1.6; color: var(--mist); letter-spacing: .08em; }
.n-title { display: block; font-size: 15px; line-height: 1.9; }
@media (max-width: 860px) { .news-top-inner { grid-template-columns: 1fr; } }

/* ---------- お問い合わせ帯 ---------- */
.cta { padding: 0 0 clamp(96px, 12vw, 170px); }
.cta-box { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(24px, 5vw, 80px); padding: clamp(40px, 6vw, 80px) clamp(28px, 6vw, 80px); border-radius: 6px; background: rgba(255,255,255,.65); border: 1px solid rgba(217,221,227,.8); overflow: hidden; isolation: isolate; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.cta-box::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, var(--mint), var(--sky) 40%, var(--lilac) 70%, var(--peach)); opacity: 0; transition: opacity 1.2s var(--ease); }
.cta-box:hover::before { opacity: .8; }
.cta-head { display: flex; flex-direction: column; gap: 12px; }
.cta-en { font-family: var(--en); font-weight: 300; font-size: clamp(44px, 6vw, 84px); line-height: 1; }
.cta-text { font-size: 14px; line-height: 2.1; color: var(--ink2); }
.cta-circle { position: relative; width: 84px; height: 84px; border-radius: 50%; border: 1px solid var(--ink); display: grid; place-items: center; transition: background .8s var(--ease), transform .8s var(--ease); }
.arr { position: relative; width: 22px; height: 1px; background: currentColor; }
.arr::after { content: ''; position: absolute; right: 1px; top: -4.5px; width: 9px; height: 9px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: rotate(45deg); }
.cta-box:hover .cta-circle { background: var(--ink); color: #fff; transform: scale(1.06); }
@media (max-width: 860px) {
  .cta-box { grid-template-columns: 1fr; }
  .cta-circle { width: 64px; height: 64px; justify-self: end; margin-top: -8px; }
}

/* ---------- フッター ---------- */
.site-footer { position: relative; padding: clamp(80px, 9vw, 120px) 0 36px; border-top: 1px solid rgba(124,133,148,.35); background: rgba(247,247,245,.6); }
.footer-inner { display: grid; grid-template-columns: 5fr 7fr; gap: 48px; }
.f-name { margin-top: 18px; font-size: 14px; letter-spacing: .1em; }
.f-addr { margin-top: 18px; font-size: 13px; line-height: 1.9; color: var(--mist); }
.f-nav { display: grid; grid-template-columns: repeat(5, auto); justify-content: end; gap: 34px 48px; }
.f-link { display: flex; flex-direction: column; gap: 2px; }
.f-link b { position: relative; font-family: var(--en); font-weight: 400; font-size: 20px; letter-spacing: .01em; display: inline-flex; align-items: center; gap: 10px; }
.f-link b::after { content: ''; width: 18px; height: 18px; border-radius: 50%; background: var(--teal-soft); box-shadow: inset 0 0 0 5.5px var(--teal-soft), inset 0 0 0 9px var(--teal); transform: scale(.8); transition: transform .6s var(--ease); }
.f-link:hover b::after { transform: scale(1.05); }
.f-link small { font-size: 10px; color: var(--mist); letter-spacing: .12em; }
.f-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: clamp(64px, 8vw, 110px); }
.f-bottom small { font-family: var(--en); font-size: 11px; color: var(--mist); letter-spacing: .06em; }
.to-top { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--line); background: #fff; transition: transform .8s var(--ease); }
.to-top i { width: 8px; height: 8px; border-top: 1px solid var(--teal); border-left: 1px solid var(--teal); transform: rotate(45deg); margin-top: 4px; }
.to-top:hover { transform: translateY(-6px); }
@media (max-width: 960px) {
  .footer-inner { grid-template-columns: 1fr; }
  .f-nav { grid-template-columns: repeat(2, 1fr); justify-content: start; gap: 26px 20px; }
}

/* ---------- 下層ページの見出し ---------- */
.page-hero { position: relative; min-height: 78vh; min-height: 78svh; display: flex; align-items: flex-end; padding: calc(var(--header-h) + 60px) 0 clamp(64px, 8vw, 110px); overflow: hidden; }
.ph-inner { position: relative; z-index: 1; }
.crumb { display: flex; align-items: center; gap: 12px; font-family: var(--en); font-size: 12px; color: var(--mist); letter-spacing: .06em; margin-bottom: clamp(40px, 7vh, 90px); }
.crumb .sep { width: 18px; height: 1px; background: currentColor; }
.crumb a:hover { color: var(--ink); }
.ph-title { display: flex; flex-direction: column; gap: 22px; font-weight: 400; }
.ph-en { font-family: var(--en); font-weight: 300; font-size: clamp(56px, 10vw, 150px); line-height: .95; letter-spacing: -.02em; }
.ph-ja { display: inline-flex; align-items: center; gap: 14px; font-size: 13px; letter-spacing: .22em; color: var(--mist); }
.ph-ja::before { content: ''; width: 26px; height: 1px; background: currentColor; }
.ph-lead { margin-top: clamp(36px, 5vw, 60px); font-size: clamp(16px, 1.6vw, 21px); letter-spacing: .12em; line-height: 2; font-weight: 500; }
.js .ph-en .c { opacity: 0; }
.js .ph-ja, .js .ph-lead, .js .crumb { opacity: 0; }

/* ---------- About ---------- */
.about-intro { padding-bottom: 0; }
.big-center { text-align: center; font-size: clamp(22px, 3vw, 40px); line-height: 1.95; letter-spacing: .12em; font-weight: 500; }
.big-center.small { font-size: clamp(18px, 2.2vw, 28px); margin: 48px 0 24px; }
.creed-row { display: grid; grid-template-columns: 4fr 8fr; gap: clamp(28px, 6vw, 90px); padding: clamp(64px, 8vw, 110px) 0; border-top: 1px solid var(--line); }
.creed-row:last-child { border-bottom: 1px solid var(--line); }
.creed-head { display: flex; flex-direction: column; gap: 12px; }
.creed-no { font-family: var(--en); font-size: 12px; color: var(--teal); letter-spacing: .2em; }
.creed-en { font-family: var(--en); font-weight: 300; font-size: clamp(40px, 5vw, 68px); line-height: 1; }
.creed-main { font-size: clamp(22px, 2.6vw, 34px); line-height: 1.85; letter-spacing: .1em; font-weight: 500; margin-bottom: 36px; }
.way-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.way-list li { display: flex; align-items: baseline; gap: 22px; padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 17px; letter-spacing: .12em; }
.way-list span { font-family: var(--en); font-size: 12px; color: var(--teal); }
@media (max-width: 860px) { .creed-row { grid-template-columns: 1fr; } }

.iam { position: relative; padding: clamp(120px, 16vw, 230px) 0; overflow: hidden; text-align: center; background: linear-gradient(120deg, rgba(205,239,230,.55), rgba(196,226,246,.5) 45%, rgba(221,213,244,.5) 75%, rgba(251,226,216,.55)); }
.iam-inner { position: relative; z-index: 1; }
.iam-label { font-size: 12px; letter-spacing: .24em; color: var(--ink2); margin-bottom: 28px; }
.iam-word { font-size: clamp(40px, 7vw, 100px); font-weight: 500; letter-spacing: .2em; line-height: 1.3; }

.value-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: clamp(48px, 6vw, 80px); }
.value-grid li { position: relative; padding: 34px 24px 30px; border-radius: 6px; background: rgba(255,255,255,.66); border: 1px solid rgba(217,221,227,.7); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); transition: transform 1s var(--ease), box-shadow 1s var(--ease); }
.value-grid li:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -24px rgba(42,152,164,.35); }
.v-no { font-family: var(--en); font-size: 12px; color: var(--teal); letter-spacing: .16em; }
.value-grid b { display: block; font-size: 21px; font-weight: 500; letter-spacing: .14em; margin: 10px 0 14px; }
.value-grid p { font-size: 13.5px; line-height: 2; color: var(--ink2); }
@media (max-width: 1080px) { .value-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .value-grid { grid-template-columns: 1fr; } }

/* ---------- Business ---------- */
.mama { padding-top: clamp(40px, 5vw, 80px); }
.mama-card { position: relative; border-radius: 6px; overflow: hidden; isolation: isolate; padding: clamp(40px, 7vw, 100px) clamp(24px, 7vw, 100px); }
.mama-inner { position: relative; }
.mama-name { font-size: clamp(48px, 7.5vw, 104px); font-weight: 500; letter-spacing: .16em; line-height: 1.25; margin: 18px 0 8px; }
.mama-catch { font-size: clamp(19px, 2.2vw, 28px); font-weight: 500; letter-spacing: .14em; margin-bottom: clamp(32px, 4vw, 56px); }
.mama-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 64px); max-width: 980px; }
.mama-cols .txt + .txt { margin-top: 0; }
.mama-copy { margin-top: clamp(40px, 5vw, 64px); font-size: clamp(22px, 2.6vw, 32px); font-weight: 500; letter-spacing: .18em; line-height: 1.8; }
.mama-copy small { font-size: 14px; letter-spacing: .14em; color: var(--ink2); font-weight: 400; }
.mama-points { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 14px; }
.mama-points li { padding: 28px 24px; border-radius: 6px; background: rgba(255,255,255,.7); border: 1px solid rgba(217,221,227,.7); }
.mama-points b { display: block; font-size: 22px; font-weight: 500; letter-spacing: .2em; margin-bottom: 8px; }
.mama-points p { font-size: 13.5px; line-height: 2; color: var(--ink2); }
@media (max-width: 860px) {
  .mama-cols { grid-template-columns: 1fr; }
  .mama-cols .txt + .txt { margin-top: 1.2em; }
  .mama-points { grid-template-columns: 1fr 1fr; }
}
.biz-list { margin-top: clamp(48px, 6vw, 80px); border-top: 1px solid var(--line); }
.biz-list > li { display: grid; grid-template-columns: 160px 1fr; gap: 24px; padding: clamp(32px, 4vw, 48px) 0; border-bottom: 1px solid var(--line); transition: background 1s var(--ease); }
.b-no { font-family: var(--en); font-weight: 300; font-size: clamp(40px, 5vw, 64px); line-height: 1; color: transparent; -webkit-text-stroke: 1px var(--mist); transition: color .8s var(--ease), -webkit-text-stroke-color .8s; }
.biz-list li:hover .b-no { color: var(--teal); -webkit-text-stroke-color: var(--teal); }
.biz-list h3 { font-size: clamp(19px, 2vw, 24px); font-weight: 500; letter-spacing: .12em; margin-bottom: 10px; line-height: 1.6; }
.biz-list p { font-size: 14.5px; line-height: 2.1; color: var(--ink2); max-width: 720px; }
@media (max-width: 640px) { .biz-list > li { grid-template-columns: 1fr; gap: 12px; } }
.words { text-align: center; padding-top: 0; }
.words-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px clamp(16px, 3vw, 40px); font-size: clamp(20px, 2.6vw, 34px); font-weight: 500; letter-spacing: .14em; }
.words-row span:nth-child(2) { --d: .12s; }
.words-row span:nth-child(3) { --d: .24s; }
.words-row span:nth-child(4) { --d: .36s; }
.words-row span:nth-child(5) { --d: .48s; }

/* ---------- Message ---------- */
.msg-inner { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(36px, 7vw, 110px); align-items: start; }
.msg-photo { position: sticky; top: 110px; aspect-ratio: 4 / 5; }
.msg-photo img { object-position: 50% 28%; }
.msg-body .msg-quote { margin-top: 0; }
@media (max-width: 860px) {
  .msg-inner { grid-template-columns: 1fr; }
  .msg-photo { position: relative; top: 0; max-width: 460px; }
}
.profile { padding-top: 0; }
.prof-card { display: grid; grid-template-columns: 4fr 8fr; gap: clamp(28px, 5vw, 80px); margin-top: clamp(40px, 5vw, 64px); padding: clamp(32px, 5vw, 64px); border-radius: 6px; background: rgba(255,255,255,.7); border: 1px solid rgba(217,221,227,.7); }
.prof-ja { font-size: 28px; font-weight: 500; letter-spacing: .2em; line-height: 1.5; }
.prof-ja small { display: block; font-size: 12px; letter-spacing: .2em; color: var(--mist); font-weight: 400; }
.prof-role { margin: 18px 0; font-size: 13px; line-height: 1.9; color: var(--ink2); }
.prof-list > div { display: grid; grid-template-columns: 150px 1fr; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.prof-list > div:first-child { border-top: 1px solid var(--line); }
.prof-list dt { font-weight: 500; letter-spacing: .12em; line-height: 1.8; }
.prof-list dt small { font-weight: 400; font-size: 12px; color: var(--mist); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips li { padding: 4px 14px; border-radius: 999px; background: var(--teal-soft); font-size: 13px; line-height: 1.7; letter-spacing: .06em; }
@media (max-width: 860px) {
  .prof-card { grid-template-columns: 1fr; }
  .prof-list > div { grid-template-columns: 1fr; gap: 8px; }
}

/* ---------- Company ---------- */
.co-inner { display: grid; grid-template-columns: 4fr 8fr; gap: clamp(28px, 6vw, 90px); }
.company { padding-bottom: 0; }
.co-table > div { display: grid; grid-template-columns: 160px 1fr; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.co-table > div:first-child { border-top: 1px solid var(--line); }
.co-table dt { color: var(--mist); font-size: 14px; letter-spacing: .14em; }
.co-table dd { font-size: 15px; line-height: 1.9; }
.co-biz li { position: relative; padding-left: 18px; }
.co-biz li::before { content: ''; position: absolute; left: 0; top: .85em; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.acc-addr { font-size: 16px; line-height: 1.9; margin-bottom: 28px; }
.map { aspect-ratio: 16 / 9; border-radius: 6px; overflow: hidden; margin-bottom: 32px; }
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.4) contrast(.95); }
@media (max-width: 860px) {
  .co-inner { grid-template-columns: 1fr; }
  .co-table > div { grid-template-columns: 1fr; gap: 4px; }
}

/* ---------- News ---------- */
.news-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.news-tabs button, .news-tabs a { padding: 8px 22px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,.7); font-size: 13px; letter-spacing: .08em; transition: background .6s, color .6s, border-color .6s; }
.news-tabs .is-active, .news-tabs button:hover, .news-tabs a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.news-empty { padding: 40px 0; color: var(--mist); }
.news-page { padding-top: clamp(40px, 5vw, 80px); }

/* ---------- Contact ---------- */
.contact-page { padding-top: clamp(40px, 5vw, 80px); }
.cp-inner { display: grid; grid-template-columns: 4fr 8fr; gap: clamp(32px, 6vw, 90px); }
.cp-notes { margin-top: 24px; font-size: 13px; line-height: 1.9; color: var(--mist); }
.cp-notes li { position: relative; padding-left: 16px; margin-bottom: 6px; }
.cp-notes li::before { content: ''; position: absolute; left: 0; top: .8em; width: 6px; height: 1px; background: currentColor; }
.form-steps { display: flex; gap: 10px; margin-bottom: 40px; }
.form-steps li { flex: 1; padding: 12px 0 0; border-top: 2px solid var(--line); font-size: 13px; color: var(--mist); letter-spacing: .1em; transition: border-color .8s, color .8s; }
.form-steps li span { font-family: var(--en); margin-right: 8px; }
.form-steps li.is-active { border-color: var(--teal); color: var(--ink); }
.form-steps li.is-done { border-color: var(--ink); }
.c-form, .c-confirm, .c-done { padding: clamp(28px, 4vw, 52px); border-radius: 6px; background: rgba(255,255,255,.75); border: 1px solid rgba(217,221,227,.7); }
.f-row { margin-bottom: 28px; }
.f-label { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; letter-spacing: .1em; margin-bottom: 10px; }
.f-label em { font-style: normal; font-size: 10px; padding: 1px 8px; border-radius: 999px; letter-spacing: .08em; }
.f-label .req { background: var(--teal); color: #fff; }
.f-label .opt { background: #ECEEF1; color: var(--mist); }
.f-input { width: 100%; padding: 14px 18px; border: 1px solid var(--line); border-radius: 4px; background: #fff; font: inherit; font-size: 16px; letter-spacing: .04em; color: var(--ink); transition: border-color .4s, box-shadow .4s; }
.f-input:focus { outline: 0; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(42,152,164,.12); }
textarea.f-input { resize: vertical; min-height: 180px; line-height: 1.9; }
.f-radios { display: flex; flex-wrap: wrap; gap: 10px; }
.f-radios label { cursor: pointer; }
.f-radios input { position: absolute; opacity: 0; pointer-events: none; }
.f-radios span { display: inline-block; padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line); background: #fff; font-size: 13px; letter-spacing: .06em; transition: background .4s, color .4s, border-color .4s; }
.f-radios input:checked + span { background: var(--ink); border-color: var(--ink); color: #fff; }
.f-radios input:focus-visible + span { box-shadow: 0 0 0 3px rgba(42,152,164,.3); }
.f-check { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; cursor: pointer; }
.f-check input { width: 18px; height: 18px; accent-color: var(--teal); }
.u-link { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.f-err { display: none; margin-top: 8px; font-size: 12px; color: #C2574A; }
.has-err .f-err { display: block; }
.has-err .f-input { border-color: #C2574A; }
.f-submit { display: flex; justify-content: center; margin-top: 40px; }
.f-submit.two { gap: 14px; flex-wrap: wrap; }
.cf-list > div { display: grid; grid-template-columns: 170px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cf-list dt { font-size: 13px; color: var(--mist); letter-spacing: .1em; }
.cf-list dd { white-space: pre-wrap; word-break: break-word; }
.c-done { text-align: center; }
.done-mark { width: 72px; margin: 0 auto 24px; }
.done-mark circle { fill: none; stroke: var(--teal); stroke-width: 1.5; }
.done-mark path { fill: none; stroke: var(--teal); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 40; stroke-dashoffset: 40; animation: drawCheck 1s var(--ease) .3s forwards; }
@keyframes drawCheck { to { stroke-dashoffset: 0; } }
.c-done h3 { font-size: 20px; font-weight: 500; letter-spacing: .12em; margin-bottom: 16px; }
.c-done p { font-size: 14px; color: var(--ink2); }
.c-done .pill { margin-top: 32px; }
.preview-note { margin-top: 12px; font-size: 12px !important; color: var(--mist) !important; }
.form-notice { margin-bottom: 20px; padding: 14px 18px; border-radius: 4px; background: #FBEDEA; color: #9E3F33; font-size: 14px; }
@media (max-width: 860px) {
  .cp-inner { grid-template-columns: 1fr; }
  .cf-list > div { grid-template-columns: 1fr; gap: 4px; }
}

/* ---------- 規約系 ---------- */
.doc-page { padding-top: clamp(40px, 5vw, 80px); }
.doc-inner { max-width: 880px; }
.doc-intro { font-size: 15px; line-height: 2.1; margin-bottom: 48px; }
.doc-box { padding: 30px 0; border-top: 1px solid var(--line); }
.doc-box h2 { font-size: 18px; font-weight: 500; letter-spacing: .1em; margin-bottom: 12px; }
.doc-box p, .doc-box li { font-size: 14.5px; line-height: 2.1; color: var(--ink2); }
.doc-box ul { margin-top: 8px; }
.doc-box li { position: relative; padding-left: 18px; }
.doc-box li::before { content: ''; position: absolute; left: 2px; top: .95em; width: 5px; height: 5px; border-radius: 50%; background: var(--teal); }
.doc-date { margin-top: 40px; text-align: right; font-size: 13px; color: var(--mist); }

/* ---------- 動きを減らす設定 ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; }
  .js [data-wipe], .js [data-reveal], .js [data-chars] .c, .js [data-lines] .ln-in, .js [data-photo], .js [data-photo] img, .js [data-rule] { opacity: 1 !important; transform: none !important; filter: none !important; clip-path: none !important; }
}

/* ---------- スマホの大きな文（行末の1〜2文字落ちを防ぐ） ---------- */
@media (max-width: 600px) {
  .statement, .creed-main { font-size: 5vw; letter-spacing: .05em; }
  .msg-quote { font-size: 4.5vw; letter-spacing: .05em; }
  .vision-text, .big-center { font-size: 4.2vw; letter-spacing: .04em; }
  .big-center.small { font-size: 4.2vw; }
  .hero-title { letter-spacing: .08em; }
}
@media (max-width: 600px) {
  .name-list p { font-size: 12.5px; letter-spacing: .02em; }
  .iam-word { letter-spacing: .12em; }
}

/* =========================================================
   追加ページ・追加セクション
   ========================================================= */
.center-btn { display: flex; justify-content: center; margin-top: 56px; }
.right-btn.two { gap: 12px; flex-wrap: wrap; }

/* こんな想いを持つあなたへ */
.voice-list { margin-bottom: 40px; }
.voice-list li { position: relative; padding: 22px 0 22px 44px; border-bottom: 1px solid var(--line); font-size: clamp(16px, 1.7vw, 21px); letter-spacing: .1em; line-height: 1.8; font-weight: 500; }
.voice-list li:first-child { border-top: 1px solid var(--line); }
.voice-list .q { position: absolute; left: 4px; top: 12px; font-family: var(--en); font-size: 44px; line-height: 1; color: var(--teal); opacity: .6; }

/* ページ案内カード（fivotのプロダクトカード風） */
.pages { padding-top: 0; }
.pages-sub { padding-top: clamp(40px, 6vw, 80px); }
.pcard-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: clamp(40px, 5vw, 64px); }
.pages-sub .pcard-grid { grid-template-columns: repeat(5, 1fr); }
.pages-sub .pcard { min-height: 230px; padding: 26px 22px 80px; }
.pages-sub .pcard-en { font-size: clamp(24px, 2.2vw, 32px); }
@media (max-width: 1120px) { .pages-sub .pcard-grid { grid-template-columns: repeat(3, 1fr); } }
.pcard { position: relative; display: flex; flex-direction: column; min-height: 250px; padding: 30px 30px 84px; border-radius: 6px; background: rgba(255,255,255,.62); border: 1px solid rgba(217,221,227,.75); overflow: hidden; isolation: isolate; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); transition: transform 1s var(--ease), box-shadow 1s var(--ease); }
.pcard::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(135deg, var(--mint), var(--sky) 45%, var(--lilac) 75%, var(--peach)); opacity: 0; transition: opacity 1s var(--ease); }
.pcard:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -30px rgba(42,152,164,.45); }
.pcard:hover::before { opacity: .75; }
.pcard-no { font-family: var(--en); font-size: 12px; color: var(--teal); letter-spacing: .16em; }
.pcard-en { font-family: var(--en); font-weight: 300; font-size: clamp(30px, 3vw, 42px); line-height: 1.1; margin: 14px 0 6px; }
.pcard-ja { font-size: 12px; letter-spacing: .2em; color: var(--mist); }
.pcard-text { margin-top: 18px; font-size: 13.5px; line-height: 1.9; color: var(--ink2); }
.pcard .circle-btn { position: absolute; right: 22px; bottom: 22px; width: 46px; height: 46px; }
.pcard:hover .circle-btn { transform: scale(1.12); }
@media (max-width: 960px) { .pcard-grid, .pages-sub .pcard-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .pcard-grid, .pages-sub .pcard-grid { grid-template-columns: 1fr; } .pcard { min-height: 0; } }

/* 理念ページ */
.creed-index { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; max-width: 900px; margin: 64px auto 0; }
.creed-index a { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 18px 10px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,.7); font-family: var(--en); font-size: 17px; line-height: 1.3; transition: background .6s, color .6s, border-color .6s; }
.creed-index span { font-size: 11px; color: var(--teal); letter-spacing: .16em; }
.creed-index small { font-family: var(--ja); font-size: 11px; color: var(--mist); letter-spacing: .1em; }
.creed-index a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.creed-index a:hover small, .creed-index a:hover span { color: rgba(255,255,255,.75); }
@media (max-width: 700px) { .creed-index { grid-template-columns: 1fr 1fr; } .creed-index a { border-radius: 14px; } }
.iam-sub { margin-top: 26px; font-size: clamp(14px, 1.4vw, 17px); letter-spacing: .16em; color: var(--ink2); }
.stance-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(20px, 3vw, 40px); align-items: stretch; margin-top: clamp(48px, 6vw, 80px); }
.stance-col { padding: clamp(28px, 4vw, 48px); border-radius: 6px; border: 1px solid var(--line); }
.stance-col.is-not { background: rgba(255,255,255,.35); }
.stance-col.is-not .stance-word { color: var(--mist); text-decoration: line-through; text-decoration-color: rgba(124,133,148,.5); text-decoration-thickness: 1px; }
.stance-col.is-yes { background: rgba(255,255,255,.8); border-color: rgba(42,152,164,.4); box-shadow: 0 24px 50px -34px rgba(42,152,164,.5); }
.stance-label { font-size: 12px; letter-spacing: .2em; color: var(--mist); margin-bottom: 16px; }
.stance-word { font-size: clamp(19px, 2vw, 26px); font-weight: 500; letter-spacing: .08em; line-height: 1.8; margin-bottom: 20px; }
.stance-arrow { display: grid; place-items: center; color: var(--teal); }
.stance-arrow .arr { width: 40px; }
@media (max-width: 860px) { .stance-grid { grid-template-columns: 1fr; } .stance-arrow { transform: rotate(90deg); height: 40px; } }
.hs-list { margin-bottom: 36px; }
.hs-list > div { display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.hs-list > div:first-child { border-top: 1px solid var(--line); }
.hs-list dt { font-size: 22px; font-weight: 500; letter-spacing: .14em; }
.hs-list > div:last-child dt { color: var(--teal); }
.hs-list dd { font-size: 16px; line-height: 1.9; letter-spacing: .06em; }
.hs-list small { font-size: 13px; color: var(--mist); }

/* Aboutページ */
.cycle-list { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(48px, 6vw, 80px); border-top: 1px solid var(--line); }
.cycle-list li { position: relative; padding: 34px 28px 30px; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }
.cycle-list li:nth-child(3n) { border-right: 0; }
.cy-no { font-family: var(--en); font-size: 12px; color: var(--teal); letter-spacing: .16em; }
.cycle-list b { display: block; font-size: clamp(19px, 1.9vw, 24px); font-weight: 500; letter-spacing: .12em; margin: 8px 0; }
.cycle-list p { font-size: 13.5px; color: var(--ink2); line-height: 1.9; }
.cycle-inf { text-align: center; font-family: var(--en); font-weight: 300; font-size: clamp(80px, 10vw, 140px); line-height: 1.2; margin: 30px 0 10px; background: linear-gradient(90deg, #7FCBD8, #A9A2E8, #EFB7A4); -webkit-background-clip: text; background-clip: text; color: transparent; }
@media (max-width: 860px) {
  .cycle-list { grid-template-columns: 1fr 1fr; }
  .cycle-list li, .cycle-list li:nth-child(3n) { border-right: 1px solid var(--line); padding: 26px 16px 22px; }
  .cycle-list li:nth-child(2n) { border-right: 0; }
}
.rings { position: relative; width: min(100%, 460px); aspect-ratio: 1; margin: 0 auto 40px; }
.ring { position: absolute; left: 50%; top: 50%; border-radius: 50%; border: 1px solid rgba(42,152,164,.35); transform: translate(-50%, -50%); }
.ring em { position: absolute; left: 50%; top: 0; transform: translate(-50%, -50%); font-style: normal; font-size: 13px; letter-spacing: .2em; color: var(--ink2); background: var(--paper); padding: 0 10px; line-height: 1.8; border-radius: 99px; white-space: nowrap; }
.ring.r1 { width: 26%; height: 26%; background: linear-gradient(135deg, var(--mint), var(--sky)); border: 0; }
.ring.r1 em { top: 50%; background: none; font-weight: 500; color: var(--ink); }
.ring.r2 { width: 50%; height: 50%; }
.ring.r3 { width: 75%; height: 75%; border-style: dashed; }
.ring.r4 { width: 100%; height: 100%; border-color: rgba(169,162,232,.45); }
.js .rings .ring { opacity: 0; transform: translate(-50%, -50%) scale(.6); }
.js .rings.is-in .ring { opacity: 1; transform: translate(-50%, -50%) scale(1); transition: opacity 1.6s var(--ease), transform 1.8s var(--ease); }
.js .rings.is-in .r2 { transition-delay: .25s; }
.js .rings.is-in .r3 { transition-delay: .5s; }
.js .rings.is-in .r4 { transition-delay: .75s; }
.js .rings.is-in .r1 { animation: pulse 5s ease-in-out 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 14px rgba(196,226,246,.35); } }

/* ままのおとページ */
.okaeri { position: relative; padding: clamp(130px, 17vw, 240px) 0; overflow: hidden; text-align: center; background: linear-gradient(120deg, rgba(251,226,216,.65), rgba(221,213,244,.55) 50%, rgba(205,239,230,.6)); }
.okaeri-inner { position: relative; z-index: 1; }
.okaeri-word { font-size: clamp(34px, 6.4vw, 92px); font-weight: 500; letter-spacing: .18em; line-height: 1.3; }
.do-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: clamp(40px, 5vw, 64px); }
.do-grid li { padding: 34px 28px 32px; border-radius: 6px; background: rgba(255,255,255,.7); border: 1px solid rgba(217,221,227,.7); transition: transform 1s var(--ease), box-shadow 1s var(--ease); }
.do-grid li:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -26px rgba(42,152,164,.4); }
.do-en { font-family: var(--en); font-size: 13px; color: var(--teal); letter-spacing: .14em; }
.do-grid b { display: block; font-size: 26px; font-weight: 500; letter-spacing: .2em; margin: 8px 0 14px; }
.do-grid p { font-size: 13.5px; line-height: 2; color: var(--ink2); }
@media (max-width: 960px) { .do-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .do-grid { grid-template-columns: 1fr; } }
.step-line { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: clamp(48px, 6vw, 80px); padding-top: 36px; }
.step-line::before { content: ''; position: absolute; left: 0; right: 0; top: 7px; height: 1px; background: linear-gradient(90deg, #7FCBD8, #A9A2E8, #EFB7A4); }
.step-line li { position: relative; }
.step-line li::before { content: ''; position: absolute; left: 0; top: -36px; width: 15px; height: 15px; border-radius: 50%; background: #fff; border: 1px solid var(--teal); box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px var(--teal); }
.sl-no { font-family: var(--en); font-size: 12px; color: var(--teal); letter-spacing: .14em; }
.step-line b { display: block; font-size: 21px; font-weight: 500; letter-spacing: .14em; margin: 6px 0 10px; }
.step-line p { font-size: 13.5px; line-height: 2; color: var(--ink2); }
@media (max-width: 860px) {
  .step-line { grid-template-columns: 1fr; padding-top: 0; padding-left: 36px; gap: 36px; }
  .step-line::before { left: 7px; right: auto; top: 0; bottom: 0; width: 1px; height: auto; background: linear-gradient(180deg, #7FCBD8, #A9A2E8, #EFB7A4); }
  .step-line li::before { left: -36px; top: 4px; }
}
.change-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: clamp(48px, 6vw, 80px) 0 80px; }
.change-list li { display: grid; place-items: center; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #fff, rgba(255,255,255,.4) 70%); border: 1px solid rgba(217,221,227,.8); text-align: center; }
.js .change-list li:nth-child(2).is-in, .change-list li:nth-child(2) { margin-top: 40px; }
.change-list p { font-size: clamp(16px, 1.9vw, 24px); font-weight: 500; letter-spacing: .1em; line-height: 1.8; }
@media (max-width: 700px) {
  .change-list { grid-template-columns: 1fr; max-width: 280px; margin-left: auto; margin-right: auto; margin-bottom: 48px; }
  .js .change-list li:nth-child(2).is-in, .change-list li:nth-child(2) { margin-top: 0; }
}
.leader-card { display: grid; grid-template-columns: 280px 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; padding-top: clamp(28px, 4vw, 48px); padding-bottom: clamp(28px, 4vw, 48px); border-radius: 6px; background: rgba(255,255,255,.7); border: 1px solid rgba(217,221,227,.7); max-width: 1000px; }
.leader-photo { border-radius: 50%; overflow: hidden; aspect-ratio: 1; }
.leader-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.leader-name { font-size: 26px; font-weight: 500; letter-spacing: .2em; margin: 8px 0 14px; line-height: 1.6; }
.leader-name small { display: block; font-size: 12px; color: var(--mist); letter-spacing: .14em; font-weight: 400; }
.leader-body .pill { margin-top: 28px; }
@media (max-width: 760px) { .leader-card { grid-template-columns: 1fr; margin: 0 20px; width: auto; } .leader-photo { width: 200px; } }

/* 事業ページ */
.b-points { margin-top: 18px; display: grid; gap: 6px; }
.b-points li { position: relative; padding-left: 18px; font-size: 14px; line-height: 1.9; color: var(--ink2); }
.b-points li::before { content: ''; position: absolute; left: 0; top: .85em; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.text-link { display: inline-flex; align-items: center; gap: 14px; margin-top: 22px; font-size: 14px; letter-spacing: .08em; color: var(--teal); }
.text-link .arr { width: 26px; transition: width .6s var(--ease); }
.text-link:hover .arr { width: 40px; }
.mama-mini { padding-top: 0; }
.mama-mini .feature { margin-top: 0; }

/* 代表ページ */
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: clamp(40px, 5vw, 64px) 0 clamp(64px, 8vw, 110px); }
.exp-grid li { padding: 34px 30px; border-radius: 6px; background: rgba(255,255,255,.7); border: 1px solid rgba(217,221,227,.7); }
.exp-no { font-family: var(--en); font-size: 12px; color: var(--teal); letter-spacing: .16em; }
.exp-grid b { display: block; font-size: 22px; font-weight: 500; letter-spacing: .16em; margin: 8px 0 14px; }
.exp-grid p { font-size: 13.5px; line-height: 2; color: var(--ink2); }
@media (max-width: 860px) { .exp-grid { grid-template-columns: 1fr; } }
.expertise { padding-top: 0; }

@media (max-width: 600px) {
  .okaeri-word { font-size: 7.4vw; letter-spacing: .14em; }
  .name-word { font-size: 16vw; }
}

/* =====================================================================
   WordPress 用の追加分
   ===================================================================== */
.admin-bar .site-header { top: 32px; }
.admin-bar .sp-menu { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header, .admin-bar .sp-menu { top: 46px; } }
#wpadminbar { position: fixed !important; }

.news-none { padding: 30px 0; color: var(--mist); }
.pager { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.pager .page-numbers { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,.7); font-family: var(--en); font-size: 13px; transition: background .4s, color .4s; }
.pager .page-numbers.current { background: var(--ink); color: #fff; border-color: var(--ink); }
.pager a.page-numbers:hover { background: var(--teal-soft); }
.pager .dots { border: 0; background: none; }

/* お知らせ詳細 */
.post-single { padding-top: clamp(40px, 5vw, 80px); }
.post-wrap { max-width: 900px; }
.post-article { padding: clamp(28px, 5vw, 64px); border-radius: 6px; background: rgba(255,255,255,.75); border: 1px solid rgba(217,221,227,.7); }
.post-meta { display: flex; align-items: center; gap: 16px; font-family: var(--en); font-size: 13px; color: var(--mist); }
.post-meta .cat { font-family: var(--ja); font-size: 11px; border: 1px solid var(--mist); border-radius: 999px; padding: 2px 12px; }
.post-title { margin-top: 18px; font-weight: 500; font-size: clamp(21px, 2.4vw, 30px); line-height: 1.7; letter-spacing: .08em; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.post-eye { margin: 36px 0 0; border-radius: 4px; overflow: hidden; }
.post-eye img { width: 100%; height: auto; }
.post-body { margin-top: 36px; color: var(--ink2); font-size: 15px; line-height: 2.15; }
.post-body > * + * { margin-top: 1.4em; }
.post-body h2 { font-weight: 500; font-size: 21px; letter-spacing: .08em; color: var(--ink); padding-left: 16px; border-left: 2px solid var(--teal); margin-top: 2.2em; }
.post-body h3 { font-weight: 500; font-size: 18px; color: var(--ink); margin-top: 2em; }
.post-body a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.post-body ul, .post-body ol { padding-left: 1.4em; }
.post-body ul { list-style: disc; }
.post-body ol { list-style: decimal; }
.post-body img { max-width: 100%; height: auto; border-radius: 4px; }
.post-nav { margin-top: 48px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; font-size: 13.5px; }
.post-nav .prev, .post-nav .next { display: flex; flex-direction: column; gap: 4px; }
.post-nav .next { text-align: right; }
.post-nav small { font-family: var(--en); font-size: 11px; letter-spacing: .14em; color: var(--teal); }
@media (max-width: 767px) { .post-nav { grid-template-columns: 1fr; } .post-nav .next { text-align: left; } }

.doc-page .post-body { margin-top: 0; }
.mm-site-btn { margin-top: 36px; }
