/* ================================================================
   Atacama — design tokens
   style: Nature Distilled × Anti-Polish Raw (warm paper, hand marks)
   ================================================================ */
:root {
  /* color — Tiffany blue base */
  --bg: #f9f8f4;
  --panel: #ecf4f2;
  --card: #ffffff;
  --ink: #1e2726;
  --ink-dim: #5f6c6a;
  --accent: #0d8f89;        /* 深めのティファニー(文字・ボタン用、コントラスト確保) */
  --accent-bright: #0abab5; /* 明るいティファニー(飾り・線用) */
  --marker: #ffe27a;        /* イエローの蛍光ペン(補色系の暖色) */
  --pop: #d0491b;           /* コーラル: 注目バッジ専用 */
  --line: #d9e4e1;
  --shadow: 24, 38, 36;

  /* type */
  --sans: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  --hand-font: "Yomogi", "Zen Kaku Gothic New", cursive;
  --fs-hero: clamp(30px, 4.6vw, 58px);
  --fs-title: clamp(27px, 3.6vw, 42px);
  --fs-sub: clamp(19px, 2.2vw, 24px);

  /* rhythm */
  --sp-section: clamp(72px, 10vh, 120px);
  --sp-gutter: clamp(20px, 4.5vw, 56px);
  --maxw: 1160px;
  --radius: 14px;
}

/* ================= base ================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 2.1;
  letter-spacing: 0.03em;
  overflow-x: hidden;
}
/* 紙の質感(ごく薄いグレイン) */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.8 0 0 0 0 0.77 0 0 0 0 0.72 0 0 0 0.028 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
strong { font-weight: 700; }
::selection { background: var(--marker); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* 蛍光ペン */
.marker {
  background: linear-gradient(transparent 60%, var(--marker) 60%, var(--marker) 94%, transparent 94%);
  background-repeat: no-repeat;
  padding: 0 2px;
}
/* JSアニメ有効時: スクロールに合わせて左から塗られる */
.js-anim .marker {
  background-size: 0% 100%;
  transition: background-size 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}
.js-anim .marker.swept { background-size: 100% 100%; }
/* 手書き */
.hand { font-family: var(--hand-font); letter-spacing: 0.06em; }

/* 改行制御: 意味のカタマリの途中では折り返さない */
.nb { display: inline-block; white-space: nowrap; }
h1, h2, h3, .concern-q, .trust-head {
  word-break: auto-phrase; /* 対応ブラウザでは文節単位で折り返し */
}

/* ================= reveal motion ================= */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0ms);
}
.reveal.on { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition-duration: 0.01ms !important; }
}

/* ================= header ================= */
.site-header {
  position: sticky; top: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px var(--sp-gutter);
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}
.logo {
  font-weight: 900; font-size: 21px; letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 8px;
}
.logo::after {
  content: "";
  width: 9px; height: 9px;
  background: var(--accent);
  border-radius: 49% 51% 46% 54% / 52% 48% 55% 45%;  /* 手塗りの丸 */
}
.global-nav { display: flex; gap: clamp(10px, 2vw, 26px); align-items: center; font-size: 14px; font-weight: 700; }
.nav-links { display: flex; gap: clamp(10px, 2vw, 26px); align-items: center; }
.nav-links a { padding: 8px 4px; position: relative; }
.nav-links a::after {
  content: "";
  position: absolute; left: 4px; right: 100%; bottom: 4px;
  height: 2px; background: var(--accent);
  transition: right 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links a:hover::after { right: 4px; }
.nav-cta {
  background: var(--ink); color: var(--bg);
  padding: 10px 22px; border-radius: 10px;
  white-space: nowrap;
  transition: background 0.25s, transform 0.25s;
}
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); }

/* できること のドロップダウン */
.nav-item { position: relative; }
.nav-item > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-caret { width: 11px; height: 7px; margin-top: 1px; transition: transform 0.25s; }
.nav-item:hover .nav-caret, .nav-item:focus-within .nav-caret { transform: scaleY(-1); }
.nav-item::after {
  content: "";
  position: absolute; left: -10px; right: -10px; top: 100%; height: 16px;
}
.sub-menu {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(8px) rotate(-0.5deg);
  min-width: 178px;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(var(--shadow), 0.15);
  padding: 8px;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden;
  transition: opacity 0.22s, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.22s;
  z-index: 80;
}
.nav-item:hover .sub-menu, .nav-item:focus-within .sub-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0) rotate(0deg);
}
.sub-menu a { padding: 10px 14px; border-radius: 9px; font-size: 14px; white-space: nowrap; }
.sub-menu a::after { display: none; }
.sub-menu a:hover { background: var(--panel); color: var(--accent); }

/* ハンバーガー(モバイル) */
.menu-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  background: none; border: none; cursor: pointer;
}
.menu-toggle span {
  display: block; height: 2.5px; width: 100%;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ================= buttons ================= */
.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 16px;
  padding: 16px 32px; border-radius: 12px;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s, border-color 0.25s, color 0.25s;
}
.btn-primary {
  background: var(--ink); color: var(--bg);
  box-shadow: 0 4px 0 rgba(var(--shadow), 0.22);
}
.btn-primary::after { content: "→"; transition: transform 0.25s; }
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 6px 0 rgba(var(--shadow), 0.2); }
.btn-primary:hover::after { transform: translateX(4px); }
.btn-primary:active { transform: translateY(1px); box-shadow: 0 2px 0 rgba(var(--shadow), 0.25); }
.btn-primary.big { font-size: 18px; padding: 19px 42px; }
.btn-ghost { border: 2px solid var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ================= section scaffolding ================= */
section { padding: var(--sp-section) var(--sp-gutter); }
.inner { max-width: var(--maxw); margin: 0 auto; }

/* 色が変わるセクションの上端は波の切り替え */
.concerns, .flow, .contact, .trust { position: relative; }
.concerns::before, .flow::before, .contact::before, .trust::before {
  content: "";
  position: absolute;
  top: -15px; left: 0;
  width: 100%; height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='16' viewBox='0 0 120 16' preserveAspectRatio='none'%3E%3Cpath d='M0 16 L0 9 C 15 3, 30 13, 45 8 C 60 3, 75 12, 90 7 C 100 4, 110 9, 120 6 L120 16 Z' fill='%23ecf4f2'/%3E%3C/svg%3E") repeat-x bottom;
  pointer-events: none;
}
.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='8' viewBox='0 0 34 8'%3E%3Cpath d='M1.5 5 C 8 2.5, 14 6, 20 4 S 29 5.5, 32.5 3.5' fill='none' stroke='%230abab5' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
}
.section-title {
  font-size: var(--fs-title);
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.03em;
  margin-bottom: clamp(30px, 5vh, 52px);
}

/* ================= hero ================= */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: clamp(48px, 8vh, 100px);
  padding-bottom: clamp(48px, 7vh, 90px);
  text-align: center;
}
.hero-wrap {
  position: relative; z-index: 2;
  display: flex; align-items: center;
  gap: clamp(28px, 5vw, 72px);
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
}
.hero-inner { max-width: 580px; text-align: left; }

/* 背景の巨大タイポ */
.hero-word {
  position: absolute;
  left: 50%; bottom: -0.12em;
  transform: translateX(-50%) rotate(-1.2deg);
  z-index: 0;
  font-weight: 900;
  font-size: clamp(64px, 12.5vw, 168px);
  line-height: 1;
  letter-spacing: 0.03em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 2px color-mix(in srgb, var(--accent-bright) 38%, transparent);
  pointer-events: none;
  user-select: none;
}

/* 右側の大きな写真パネル */
.hero-visual { position: relative; flex: 1; min-width: 0; max-width: 470px; }
.hero-photo-main {
  position: relative;
  margin: 0;
  background: #fff;
  padding: 10px 10px 14px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 50px rgba(var(--shadow), 0.18);
  transform: rotate(1.8deg);
}
.hero-photo-main img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.visual-play {
  position: absolute;
  right: -18px; bottom: -18px;
  display: flex; align-items: center; justify-content: center;
  width: 72px; height: 72px;
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: 47% 53% 50% 50% / 52% 46% 54% 48%;
  color: var(--accent);
  box-shadow: 0 10px 24px rgba(var(--shadow), 0.18);
  transform: rotate(-4deg);
}
.visual-play svg { width: 26px; height: 26px; margin-left: 3px; }
.pola-sub {
  position: absolute;
  left: -34px; bottom: -30px;
  width: clamp(110px, 11vw, 150px);
  --rot: -6deg;
  --dur: 12s;
}
/* 背景動画(assets/hero.mp4 があるときだけ .has-video が付く) */
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  display: none;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  pointer-events: none;
  display: none;
}
.hero.has-video { min-height: clamp(440px, 62vh, 680px); }
.hero.has-video .hero-bg { display: block; }
.hero.has-video::before { display: block; }
@media (prefers-reduced-motion: reduce) {
  .hero-bg { display: none !important; }
  .hero::before { display: none !important; }
}

/* 方眼ノート風の下地(下に向かってフェードアウト) */
.hero::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(color-mix(in srgb, var(--line) 60%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--line) 60%, transparent) 1px, transparent 1px);
  background-size: 30px 30px;
  -webkit-mask-image: linear-gradient(#000 45%, transparent 96%);
  mask-image: linear-gradient(#000 45%, transparent 96%);
}
.hero.has-video::after { display: none; }

/* 浮かぶ手描きドゥードル */
.hero-doodles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-doodles svg {
  position: absolute;
  opacity: 0.55;
  animation: doodle-float var(--dur, 9s) ease-in-out var(--delay, 0s) infinite alternate;
}
@keyframes doodle-float {
  from { transform: translateY(-7px) rotate(-3deg); }
  to   { transform: translateY(9px) rotate(4deg); }
}
.hero-doodles .d1 { width: 70px; top: 12%; left: 5%; --dur: 11s; }
.hero-doodles .d2 { display: none; }
.hero-doodles .d3 { width: 32px; top: 16%; right: 5%; --dur: 7.5s; --delay: -1.5s; }
.hero-doodles .d4 { width: 52px; top: 8%; right: 34%; --dur: 12s; --delay: -6s; opacity: 0.4; }
.hero-doodles .d5 { width: 92px; bottom: 12%; left: 6%; --dur: 8.5s; --delay: -4s; }
.hero.has-video .hero-doodles { display: none; }

/* ポラロイド写真(テープ留め・ゆっくり浮遊) */
.pola {
  margin: 0;
  background: #fff;
  padding: 8px 8px 22px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(var(--shadow), 0.16);
  animation: pola-float var(--dur, 11s) ease-in-out var(--delay, 0s) infinite alternate;
}
.pola img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.pola-tape {
  position: absolute; top: -11px; left: 50%;
  width: 64px; height: 22px;
  transform: translateX(-50%) rotate(-2deg);
  background: color-mix(in srgb, var(--marker) 68%, transparent);
  border-left: 1px dashed rgba(var(--shadow), 0.12);
  border-right: 1px dashed rgba(var(--shadow), 0.12);
  z-index: 1;
}
@keyframes pola-float {
  from { transform: rotate(var(--rot, 0deg)) translateY(-5px); }
  to   { transform: rotate(calc(var(--rot, 0deg) + 2.5deg)) translateY(7px); }
}
.hero.has-video .hero-visual, .hero.has-video .hero-word { display: none; }
.hero.has-video .hero-inner { margin: 0 auto; text-align: center; }

/* H1の一文字スタンプ演出用 */
.hero-title .ch { display: inline-block; }

@media (max-width: 900px) {
  .hero-wrap { flex-direction: column; gap: 34px; }
  .hero-inner { text-align: center; max-width: none; }
  .hero-visual { max-width: min(360px, 82vw); width: 100%; margin: 0 auto; }
  .hero-word { font-size: clamp(52px, 15vw, 96px); bottom: -0.1em; -webkit-text-stroke-width: 1.5px; }
  .visual-play { width: 56px; height: 56px; right: -12px; bottom: -12px; }
  .visual-play svg { width: 20px; height: 20px; }
  .pola-sub { width: 96px; left: -18px; bottom: -22px; }
  .pola-sub .pola-tape { width: 44px; height: 16px; top: -8px; }
  .hero { padding-bottom: clamp(70px, 10vh, 100px); }
}
@media (max-width: 700px) {
  .hero-doodles svg { opacity: 0.4; }
  .hero-doodles .d1 { width: 48px; top: 6%; left: 4%; }
  .hero-doodles .d3 { top: 10%; right: 8%; width: 24px; }
  .hero-doodles .d4 { display: none; }
  .hero-doodles .d5 { display: none; }
}
.hero-eyebrow {
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--ink-dim);
  margin-bottom: 24px;
}
.hero-actions { justify-content: center; }
.hero-title {
  font-size: var(--fs-hero);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin-bottom: 26px;
}
.hero-lead {
  color: var(--ink-dim);
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 700;
  letter-spacing: 0.05em;
  max-width: 33em;
  margin-bottom: 38px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 20px; }
.hero-note { font-size: 16px; color: var(--ink-dim); }

/* ================= trust — 手描きの丸で囲んだ数字 ================= */
.trust {
  background: var(--panel);
  padding-top: clamp(48px, 7vh, 84px);
  padding-bottom: clamp(60px, 8vh, 100px);
}
.trust-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3.5vw, 52px);
  text-align: center;
}
.trust-item { padding-top: 10px; }
.trust-num {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 900;
  line-height: 1.2;
  color: var(--ink);
  padding: 10px 26px;
  margin-bottom: 12px;
  font-feature-settings: "palt";
}
/* ぐるっと囲む手描き楕円 */
.trust-num::before {
  content: "";
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 84' preserveAspectRatio='none'%3E%3Cpath d='M100 8 C 150 4, 192 18, 194 42 C 196 66, 152 78, 100 78 C 48 79, 6 68, 5 44 C 4 20, 44 6, 96 7 C 142 8, 186 16, 190 38' fill='none' stroke='%230abab5' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}
.trust-unit { font-size: 0.55em; margin-left: 2px; }
.trust-head { font-size: clamp(15px, 1.7vw, 17px); font-weight: 900; line-height: 1.8; margin-bottom: 8px; }
.trust-body { font-size: 14px; line-height: 1.95; color: var(--ink-dim); }

/* ================= showcase ================= */
.showcase { max-width: calc(var(--maxw) + 2 * var(--sp-gutter)); margin: 0 auto; padding-top: clamp(56px, 8vh, 92px); padding-bottom: clamp(56px, 8vh, 90px); }
.showcase-lead { color: var(--ink-dim); margin: -22px 0 34px; }
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3.5vw, 44px);
  align-items: start;
}
.video-item { margin: 0; }
.video-item:nth-child(odd) .video-wrap { transform: rotate(-0.4deg); }
.video-item:nth-child(even) .video-wrap { transform: rotate(0.4deg); }
.video-wrap {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #10201e;
  border: 6px solid #fff;
  box-shadow: 0 20px 48px rgba(var(--shadow), 0.16);
}
.video-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-note { margin-top: 14px; font-size: 15px; color: var(--ink-dim); text-align: center; }

/* ================= concerns — 吹き出し ================= */
.concerns { background: var(--panel); }
.concerns-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 26px;
}
.concerns-list li { list-style: none; }
.bubble {
  position: relative;
  background: var(--card);
  border: 1.8px solid var(--ink);
  /* 手描きのいびつな角丸 */
  border-radius: 26px 20px 24px 18px / 20px 26px 18px 24px;
  padding: 26px 30px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
}
.concerns-list li:nth-child(odd) .bubble { transform: rotate(-0.5deg); }
.concerns-list li:nth-child(even) .bubble { transform: rotate(0.5deg); }
.concerns-list li:hover .bubble { transform: rotate(0deg) translateY(-3px); box-shadow: 0 12px 26px rgba(var(--shadow), 0.1); }
/* 吹き出しのしっぽ(話者に向かって下へ) */
.bubble::after {
  content: "";
  position: absolute;
  bottom: -11px; left: 44px;
  width: 14px; height: 14px;
  background: var(--card);
  border-right: 1.8px solid var(--ink);
  border-bottom: 1.8px solid var(--ink);
  transform: rotate(35deg) skewX(-18deg);
}
/* 話者 */
.concern-who {
  display: flex; align-items: center; gap: 12px;
  margin: 26px 0 0 26px;
}
.who-face {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  width: 54px; height: 54px;
  background: #fff;
  border: 1.8px solid var(--ink);
  border-radius: 47% 53% 50% 50% / 52% 46% 54% 48%;
  overflow: hidden;
}
.who-face svg { width: 44px; height: 44px; }
.who-label { font-size: 13.5px; font-weight: 900; line-height: 1.5; }
.who-label small { display: block; font-size: 11.5px; font-weight: 500; color: var(--ink-dim); }
.concern-q { font-size: 17px; font-weight: 900; line-height: 1.8; margin-bottom: 10px; }
.concern-q::before { content: "「"; color: var(--accent); }
.concern-q::after { content: "」"; color: var(--accent); }
.concern-a { font-size: 14px; line-height: 2; color: var(--ink-dim); }

/* ================= stance ================= */
.stance { padding-bottom: clamp(28px, 4vh, 48px); }
.stance .inner { max-width: var(--maxw); margin: 0 auto; }
.stance-cols { max-width: 700px; }
.stance-cols p { color: var(--ink-dim); margin-bottom: 1.6em; }
.stance-punch {
  color: var(--ink) !important;
  font-size: var(--fs-sub);
  font-weight: 900;
  line-height: 1.8;
}

/* ================= service ================= */
.service { background: var(--panel); }
.service > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.service-card {
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(30px, 4vw, 46px);
  margin-bottom: 26px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(var(--shadow), 0.1); }
.service-card.featured { border: 2.5px solid var(--ink); position: relative; }
.service-card p.service-label {
  position: absolute; top: -16px; left: 30px;
  background: var(--pop); color: #fff;
  font-size: 13px; font-weight: 700;
  padding: 4px 16px;
  border-radius: 6px;
  transform: rotate(-1.2deg);
}
.service-card h3 {
  display: flex; align-items: center; gap: 12px;
  font-size: clamp(21px, 2.4vw, 27px);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.7;
}
.svc-icon {
  display: inline-flex; flex-shrink: 0;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  background: var(--panel);
  border-radius: 47% 53% 50% 50% / 52% 46% 54% 48%;
  color: var(--accent);
}
.svc-icon svg { width: 24px; height: 24px; }
.service-card h3 small { font-size: 0.65em; font-weight: 700; color: var(--accent); margin-left: 8px; }
.service-card p { color: var(--ink-dim); max-width: 44em; }
.service-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin-top: 22px; }
.service-tags li {
  font-size: 13px; font-weight: 700;
  background: var(--panel);
  padding: 7px 15px;
  border-radius: 6px;
}

/* ================= works ================= */
.works .inner { max-width: var(--maxw); margin: 0 auto; }
.works-list { list-style: none; }
.work-item {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: baseline;
  padding: 30px 14px;
  border-top: 1px solid var(--line);
  transition: background 0.25s, padding-left 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.works-list li:last-child .work-item { border-bottom: 1px solid var(--line); }
.work-item:hover { background: var(--panel); padding-left: 24px; }
.work-item::after { content: "→"; font-weight: 700; color: var(--accent); transition: transform 0.25s; }
.work-item:hover::after { transform: translateX(5px); }
.work-meta { font-size: 13px; font-weight: 700; color: var(--accent); letter-spacing: 0.06em; }
.work-title { font-weight: 700; line-height: 1.9; }

/* ================= flow — 手描きの道でつなぐ ================= */
.flow { background: var(--panel); }
.flow > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.flow-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  counter-reset: step;
  position: relative;
}
/* 工程をつなぐ手描きの点線 */
.flow-list::before {
  content: "";
  position: absolute;
  top: 37px; left: 9%; right: 9%;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='10' viewBox='0 0 60 10'%3E%3Cpath d='M2 6 C 12 3, 20 8, 30 5 S 48 6.5, 58 4' fill='none' stroke='%230abab5' stroke-width='2.4' stroke-linecap='round' stroke-dasharray='7 7'/%3E%3C/svg%3E") repeat-x left center;
  animation: flow-march 5s linear infinite;
}
/* 点線がゆっくり進む(納品へ向かう感じ) */
@keyframes flow-march {
  from { background-position-x: 0; }
  to { background-position-x: 60px; }
}
.flow-list li {
  counter-increment: step;
  position: relative;
  text-align: center;
  padding: 0 4px;
}
.flow-icon {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 76px; height: 76px;
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: 47% 53% 50% 50% / 52% 46% 54% 48%;  /* 手描きの丸 */
  color: var(--accent);
  margin-bottom: 14px;
  z-index: 1;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.flow-list li:hover .flow-icon { transform: translateY(-4px) rotate(-3deg); }
.flow-icon svg { width: 38px; height: 38px; }
/* ステップ番号バッジ */
.flow-icon::after {
  content: "0" counter(step);
  position: absolute; top: -7px; right: -9px;
  display: flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  font-size: 11px; font-weight: 900;
  background: var(--accent); color: #fff;
  border-radius: 52% 48% 50% 50% / 48% 54% 46% 52%;
  transform: rotate(6deg);
}
.flow-list h3 { font-size: 16px; font-weight: 900; margin-bottom: 6px; line-height: 1.7; }
.flow-list p { font-size: 13px; color: var(--ink-dim); line-height: 2; text-align: left; }

/* ================= mission (手紙) ================= */
.letter-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: 6px;
  padding: clamp(38px, 6vw, 66px);
  transform: rotate(-0.5deg);
  box-shadow: 0 16px 36px rgba(var(--shadow), 0.09);
  position: relative;
}
/* マスキングテープ */
.letter-card::before {
  content: "";
  position: absolute; top: -14px; left: 50%;
  width: 110px; height: 28px;
  transform: translateX(-50%) rotate(1.5deg);
  background: color-mix(in srgb, var(--marker) 72%, transparent);
  border-left: 1px dashed rgba(var(--shadow), 0.15);
  border-right: 1px dashed rgba(var(--shadow), 0.15);
}
.mission-label { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 18px; }
.mission-title { font-size: clamp(24px, 3.2vw, 34px); font-weight: 900; line-height: 1.75; margin-bottom: 24px; }
.mission-body { color: var(--ink-dim); margin-bottom: 34px; }
.mission-sign { font-size: 19px; text-align: right; }

/* ================= company ================= */
.company .inner { max-width: var(--maxw); margin: 0 auto; }
.company-table { max-width: 800px; }
.company-table > div {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 10px;
  border-top: 1px solid var(--line);
}
.company-table > div:last-child { border-bottom: 1px solid var(--line); }
.company-table dt { color: var(--ink-dim); font-size: 14px; }
.company-table dd { font-size: 15px; }

/* ================= faq ================= */
.faq-list { max-width: 820px; }
.faq-item {
  padding: 26px 10px;
  border-top: 1px solid var(--line);
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item dt {
  font-size: 16px; font-weight: 900;
  line-height: 1.9;
  margin-bottom: 10px;
  display: flex; gap: 12px;
}
.faq-item dt::before {
  content: "Q";
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  font-size: 14px; font-weight: 900;
  color: #fff; background: var(--accent);
  border-radius: 52% 48% 50% 50% / 48% 54% 46% 52%;
  margin-top: 2px;
}
.faq-item dd {
  font-size: 15px; color: var(--ink-dim); line-height: 2.1;
  padding-left: 42px;
}

/* ================= contact ================= */
.contact { background: var(--panel); text-align: center; }
.contact-title { font-size: clamp(30px, 4.8vw, 52px); font-weight: 900; line-height: 1.6; margin-bottom: 22px; }
.contact-body { color: var(--ink-dim); margin-bottom: 40px; }
.contact-hand { margin-top: 16px; font-size: 17px; color: var(--accent); }
.contact-mail { margin-top: 26px; font-size: 14px; color: var(--ink-dim); letter-spacing: 0.04em; }

/* フォーム */
.contact-form {
  max-width: 540px;
  margin: 0 auto;
  text-align: left;
  background: var(--card);
  border: 1.8px solid var(--ink);
  border-radius: 22px 18px 20px 16px / 18px 22px 16px 20px;
  padding: clamp(28px, 4.5vw, 44px);
  box-shadow: 0 14px 32px rgba(var(--shadow), 0.1);
}
.form-row { margin-bottom: 22px; }
.form-row label {
  display: block;
  font-size: 14px; font-weight: 900;
  margin-bottom: 8px;
}
.req {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  color: #fff; background: var(--pop);
  border-radius: 5px;
  padding: 1px 8px;
  margin-left: 6px;
  vertical-align: 2px;
}
.form-row input, .form-row textarea {
  width: 100%;
  font: inherit;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 13px 16px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}
.form-row textarea { resize: vertical; }
.contact-form .btn-primary { width: 100%; justify-content: center; border: none; }
.contact-form .contact-hand { text-align: center; margin-top: 12px; }
.hp-field { position: absolute; left: -9999px; height: 0; width: 0; opacity: 0; }

/* ================= use(活用シーン) ================= */
.use-stat {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-size: 13.5px;
  color: var(--ink-dim);
  line-height: 2;
}
.use-stat strong { color: var(--accent); font-weight: 900; font-size: 1.25em; }
.use-note { margin-top: 22px; color: var(--ink-dim); font-size: 14px; }

/* ================= news(FV直下・中央の小さなお知らせ) ================= */
.news { text-align: center; }
/* マスキングテープ風の「お知らせ」ラベル(英字eyebrowとは別物に) */
.news-label {
  display: inline-block;
  font-family: var(--hand-font);
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ink);
  background: color-mix(in srgb, var(--marker) 70%, transparent);
  padding: 3px 24px;
  transform: rotate(-1.6deg);
  border-left: 1px dashed rgba(var(--shadow), 0.15);
  border-right: 1px dashed rgba(var(--shadow), 0.15);
  margin-bottom: 12px;
}
.news-list { list-style: none; max-width: 640px; margin: 0 auto; }
.news-list li {
  display: flex; flex-wrap: wrap; gap: 6px 14px;
  justify-content: center; align-items: baseline;
  padding: 7px 0;
  font-size: 14px;
}
.news-list time { flex-shrink: 0; font-weight: 900; color: var(--ink); font-size: 13px; letter-spacing: 0.05em; }
.news-list span { color: var(--ink-dim); line-height: 1.9; }
.news-list span a { text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--accent-bright); }
.news-list span a:hover { color: var(--accent); }

/* ================= footer ================= */
.site-footer {
  border-top: 1px solid var(--line);
  padding: clamp(40px, 6vh, 64px) var(--sp-gutter) 24px;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: clamp(24px, 4vw, 60px);
}
.footer-logo { font-weight: 900; font-size: 20px; margin-bottom: 10px; }
.footer-brand p:not(.footer-logo) { font-size: 13px; color: var(--ink-dim); line-height: 2.1; }
.footer-nav { display: flex; flex-direction: column; gap: 4px; }
.footer-nav a { font-size: 13.5px; font-weight: 500; padding: 4px 0; }
.footer-nav a:hover { color: var(--accent); }
.footer-info p { font-size: 13px; color: var(--ink-dim); line-height: 2.1; }
.footer-info a:hover { color: var(--accent); }
.footer-copyright {
  max-width: var(--maxw); margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12px; color: var(--ink-dim);
}

/* ================= 下層ページ共通 ================= */
.breadcrumb {
  max-width: calc(var(--maxw) + 2 * var(--sp-gutter));
  margin: 0 auto;
  padding: 16px var(--sp-gutter) 0;
  font-size: 12.5px;
  color: var(--ink-dim);
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 6px; }
.page-hero {
  max-width: calc(var(--maxw) + 2 * var(--sp-gutter));
  margin: 0 auto;
  padding: clamp(40px, 7vh, 80px) var(--sp-gutter) clamp(30px, 5vh, 60px);
}
.page-hero h1 {
  font-size: clamp(28px, 4.2vw, 46px);
  font-weight: 900;
  line-height: 1.6;
  margin: 14px 0 18px;
}
.page-lead { color: var(--ink-dim); max-width: 40em; }
.cta-band {
  background: var(--panel);
  text-align: center;
}
.cta-band h2 { font-size: clamp(24px, 3.6vw, 38px); font-weight: 900; margin-bottom: 18px; }
.cta-band p { color: var(--ink-dim); margin-bottom: 30px; }
.map-wrap {
  aspect-ratio: 16 / 8;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--line);
  margin-top: 26px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.prose { max-width: 760px; }
.prose p { color: var(--ink-dim); margin-bottom: 1.5em; }
.prose h2 { font-size: clamp(21px, 2.8vw, 28px); font-weight: 900; margin: 2.2em 0 0.8em; line-height: 1.7; }
.prose h3 { font-size: 17px; font-weight: 900; margin: 1.8em 0 0.6em; }
.prose ul { margin: 0 0 1.5em 1.4em; color: var(--ink-dim); }
.prose li { margin-bottom: 0.4em; }
.check-list { list-style: none; margin: 0 0 1.5em 0 !important; }
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 0.7em !important;
}
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 16px; height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 12'%3E%3Cpath d='M1.5 6.5 C 3.5 8, 5 9.5, 6.2 10.5 C 9 7, 12 3.5, 14.8 1.2' fill='none' stroke='%230d8f89' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* ================= responsive ================= */
@media (max-width: 900px) {
  .hero { padding-top: 34px; }
  .hero-title { font-size: clamp(23px, 7.2vw, 44px); }
  .hero-lead { font-size: 17px; margin-bottom: 30px; }
  .hero-actions .btn-primary { width: 100%; justify-content: center; font-size: 17px; }

  /* 強みは横並びを維持(コンパクト表示) */
  .trust-inner { gap: 12px; }
  .trust-num { font-size: clamp(17px, 3.2vw, 28px); padding: 7px 10px; }
  .trust-head { font-size: 13px; }
  .trust-body { font-size: 12px; line-height: 1.9; }

  /* ハンバーガーメニュー */
  .menu-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 77px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(var(--shadow), 0.12);
    padding: 10px var(--sp-gutter) 18px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s, visibility 0.3s;
  }
  .nav-links.open { transform: none; opacity: 1; visibility: visible; }
  .nav-links a { padding: 14px 6px; font-size: 16px; border-bottom: 1px dashed var(--line); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a::after { display: none; }

  /* モバイルではドロップダウンを展開表示 */
  .nav-item { position: static; }
  .nav-item::after { display: none; }
  .nav-caret { display: none; }
  .nav-item > a { display: flex; }
  .sub-menu {
    position: static;
    transform: none;
    opacity: 1; visibility: visible;
    background: transparent;
    border: none; border-radius: 0;
    box-shadow: none;
    padding: 0 0 0 22px;
    min-width: 0;
  }
  .sub-menu a { font-size: 15px; padding: 12px 6px; border-radius: 0; border-bottom: 1px dashed var(--line); }
  .sub-menu a:last-child { border-bottom: 1px dashed var(--line); }
  .sub-menu a:hover { background: transparent; }

  .concerns-list, .service-pair, .video-grid { grid-template-columns: 1fr; }
  .doodle-arrow, .doodle-caption { display: none; }
  .work-item { grid-template-columns: 1fr; gap: 6px; }
  .company-table > div { grid-template-columns: 1fr; gap: 2px; }
}

/* サービスカードの下層リンク */
.service-more { margin-top: 18px; }
.service-more a {
  font-size: 14px; font-weight: 700;
  color: var(--accent);
  border-bottom: 1.5px solid var(--accent-bright);
  padding-bottom: 2px;
}
.service-more a:hover { color: var(--accent); opacity: 0.75; }

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr; gap: 26px; }
}

/* 会社概要: バリュー3枚(料金プラン3枚も共用。PCでは必ず横3列) */
.value-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
/* プラン名の補足(インタビュー動画 等)は名前の下の行に */
.value-grid .service-card h3 { display: block; }
.value-grid .service-card h3 small { display: block; margin: 2px 0 0; }
@media (max-width: 1000px) {
  .value-grid .service-card { padding: 20px 16px; }
  .value-grid .plan-price { font-size: 22px; }
}
@media (max-width: 760px) {
  .value-grid { grid-template-columns: 1fr; }
}

/* ================= 写真マーキー(現場の空気が流れる帯) ================= */
.marquee {
  padding: clamp(20px, 3vh, 40px) 0 clamp(72px, 10vh, 110px);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 48s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group {
  display: flex;
  gap: 22px;
  padding-right: 22px;
}
.marquee img {
  height: clamp(150px, 24vh, 220px);
  width: auto;
  border: 5px solid #fff;
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(var(--shadow), 0.13);
}
.marquee img:nth-child(odd) { transform: rotate(-0.8deg); }
.marquee img:nth-child(even) { transform: rotate(0.8deg); }
@keyframes marquee-scroll {
  to { transform: translateX(-50%); }
}

/* アタカマについて 見出し */
.trust-head-row { grid-column: 1 / -1; text-align: left; margin-bottom: 6px; }
.trust-head-row .eyebrow { justify-content: flex-start; }
.trust-title { font-size: clamp(22px, 3vw, 32px); font-weight: 900; }
.trust-lead { margin-top: 12px; color: var(--ink-dim); font-size: 15px; }


/* フロー: 640px以下でだけ縦積みに(それ以上は点線の道を維持) */
@media (max-width: 640px) {
  .flow-list { grid-template-columns: 1fr; gap: 30px; }
  .flow-list::before { display: none; }
  .flow-list li {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 8px 20px;
    text-align: left;
    align-items: center;
  }
  .flow-list .flow-icon { grid-row: 1 / 3; margin-bottom: 0; }
}
@media (max-width: 900px) and (min-width: 641px) {
  .flow-list { gap: 10px; }
  .flow-list h3 { font-size: 14px; }
  .flow-list p { font-size: 12px; }
  .flow-icon { width: 60px; height: 60px; }
  .flow-icon svg { width: 30px; height: 30px; }
  .flow-list::before { top: 29px; }
}

/* 縦型ショート動画の埋め込み(video-gridの1枠に横動画と同じ高さで収める) */
.video-item-short { display: flex; flex-direction: column; align-items: center; justify-content: start; }
.video-item-short .short-embed { margin: 0; }
.video-item-short .video-note { margin-top: 14px; }
.short-embed {
  aspect-ratio: 9 / 16;
  max-width: 200px;
  border-radius: 12px;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 12px 28px rgba(var(--shadow), 0.14);
  background: #10201e;
  margin: 18px auto 6px;
}
.short-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.short-note { font-size: 13px; color: var(--ink-dim); text-align: center; }

/* 料金プラン 2x2 */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.plan-price {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  color: var(--accent);
  margin: 4px 0 12px;
}
.plan-price small { font-size: 0.55em; color: var(--ink-dim); font-weight: 700; }
@media (max-width: 700px) {
  .plan-grid { grid-template-columns: 1fr; }
}

/* 費用の足し算(企画+現場ディレクション+撮影+編集=費用) */
.price-formula {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin: 6px 0 26px;
}
.pf-item {
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: 10px;
  padding: 9px 16px;
  font-weight: 900;
  font-size: clamp(14px, 1.6vw, 17px);
  box-shadow: 3px 3px 0 rgba(var(--shadow), 0.14);
  transform: rotate(-0.6deg);
}
.pf-item:nth-child(odd) { transform: rotate(0.6deg); }
.pf-item small { font-size: 0.72em; color: var(--ink-dim); font-weight: 700; }
.pf-op {
  font-weight: 900;
  font-size: 20px;
  color: var(--ink-dim);
}
.pf-total {
  background: var(--marker);
  border-color: var(--ink);
}
@media (max-width: 480px) {
  .price-formula { gap: 8px; }
  .pf-item { padding: 7px 11px; }
}

/* 半額キャンペーンバナー */
.campaign {
  position: relative;
  max-width: 720px;
  margin: 0 auto clamp(26px, 4vh, 40px);
  background: var(--card);
  border: 2px solid var(--accent);
  border-radius: 16px 20px 14px 18px / 18px 14px 20px 16px;
  padding: clamp(20px, 3vw, 28px) clamp(20px, 3.4vw, 34px);
  text-align: center;
}
.campaign::before {
  content: "";
  position: absolute; top: -14px; left: 50%;
  width: 110px; height: 28px;
  transform: translateX(-50%) rotate(-1.5deg);
  background: color-mix(in srgb, var(--marker) 75%, transparent);
  border-left: 1px dashed rgba(var(--shadow), 0.15);
  border-right: 1px dashed rgba(var(--shadow), 0.15);
}
.campaign p.campaign-badge {
  display: inline-block;
  font-size: 13px; font-weight: 900;
  color: #fff; background: var(--pop);
  border-radius: 6px;
  padding: 4px 16px;
  transform: rotate(-1deg);
  margin-bottom: 14px;
}
.campaign h2 {
  font-size: clamp(19px, 2.3vw, 25px);
  font-weight: 900;
  line-height: 1.7;
  margin-bottom: 10px;
}
.campaign p { color: var(--ink-dim); font-size: 14.5px; }
.plan-price .off {
  text-decoration: line-through;
  text-decoration-thickness: 2.5px;
  text-decoration-color: rgba(208, 82, 31, 0.75);
  color: var(--ink-dim);
  font-size: 0.62em;
  margin-right: 8px;
}

/* サービスカードの対象者ラベル */
.service-card p.svc-for {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  background: color-mix(in srgb, var(--marker) 40%, transparent);
  border-radius: 6px;
  padding: 3px 12px;
  margin-bottom: 14px;
}


/* ================= 超狭幅(〜480px)の破綻防止 ================= */
@media (max-width: 480px) {
  .logo { font-size: 17px; }
  .global-nav { gap: 8px; }
  .nav-cta { padding: 8px 13px; font-size: 13px; }
  .menu-toggle { width: 38px; }
  .campaign h2 { font-size: clamp(19px, 5.6vw, 26px); }
  .campaign { padding: 20px 16px; }
  .section-title { font-size: clamp(22px, 6.4vw, 27px); }
  .hero-lead { font-size: 15.5px; }
}
