@charset "utf-8";
/* =========================================================
   雲乃ふわり Official Site  —  v3 "ふわふわポップ"
   Theme : 水色 × 白 を軸に、レモン・ピーチ・ラベンダーを淡く差す
   Motif : もこもこの雲 / ハート / ステッカー
   NG    : ネオン / 黒などハッキリした色 / ごちゃごちゃ・激しい動き
   ========================================================= */

/* ---------- design tokens ---------- */
:root {
  --sky-50:  #f6fcfe;
  --sky-100: #eaf6fc;
  --sky-200: #d6eef8;
  --sky-300: #b6e2f2;
  --sky-400: #8ed2ea;
  --sky-500: #63bcdd;
  --sky-600: #47a2c6;

  /* 差し色はすべて淡いまま（ポップさは「色の数」と「形」で出す） */
  --lemon:     #fff6c9;
  --lemon-deep:#ffe89a;
  --peach:     #ffe6ef;
  --peach-deep:#ffc6d8;
  --lavender:  #ece7fb;
  --lavender-deep: #cfc6f2;
  --mint:      #e4f7f1;
  --cream:     #fffdf7;

  /* 文字色は黒を使わず、やわらかいネイビーグレー */
  --ink:      #4d6377;
  --ink-mid:  #6f879b;
  --ink-soft: #93a8b8;
  --white:    #ffffff;

  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;

  --shadow-sm: 0 2px 10px rgba(99, 188, 221, .12);
  --shadow-md: 0 8px 24px rgba(99, 188, 221, .18);
  --shadow-lg: 0 16px 44px rgba(99, 188, 221, .22);

  --wrap: 720px;
  --ease:   cubic-bezier(.22, .68, .35, 1);
  /* 行き過ぎて戻る「弾む」イージング。動きの量は増やさず質だけ変える */
  --bounce: cubic-bezier(.34, 1.56, .64, 1);

  --font-pop: "Mochiy Pop One", "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
  --font-body: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic Medium", Meiryo, system-ui, sans-serif;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }

/* 背景は html に置く（body だと端末がダークモードのときにルートが黒く見える） */
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  color-scheme: light;
  background-color: var(--sky-100);
  background-image:
    radial-gradient(60% 40% at 15% 8%, rgba(255,255,255,.9), rgba(255,255,255,0)),
    radial-gradient(50% 35% at 90% 30%, rgba(255,246,201,.35), rgba(255,246,201,0)),
    linear-gradient(180deg, #ffffff 0%, var(--sky-50) 20%, var(--sky-100) 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink);
  letter-spacing: .02em;
  background: none;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }
a { color: var(--sky-600); text-decoration: none; }
button { font: inherit; color: inherit; }

/* ---------- 背景の雲（形のある雲を、ごくゆっくり流す） ---------- */
.sky {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.sky svg {
  position: absolute;
  left: -30%;
  width: 260px;
  height: auto;
  fill: var(--white);
  opacity: .55;
  filter: drop-shadow(0 6px 10px rgba(99, 188, 221, .12));
  animation: drift linear infinite;
}
.sky svg:nth-child(1) { top:  6%; width: 300px; animation-duration: 110s; }
.sky svg:nth-child(2) { top: 26%; width: 170px; animation-duration: 150s; animation-delay: -60s; opacity: .45; }
.sky svg:nth-child(3) { top: 50%; width: 320px; animation-duration: 180s; animation-delay: -120s; opacity: .5; }
.sky svg:nth-child(4) { top: 72%; width: 140px; animation-duration: 130s; animation-delay: -30s; opacity: .6; }
.sky svg:nth-child(5) { top: 88%; width: 220px; animation-duration: 160s; animation-delay: -95s; opacity: .5; }

@keyframes drift {
  from { transform: translateX(0); }
  to   { transform: translateX(170vw); }
}

/* ---------- layout ---------- */
.wrap {
  width: min(100% - 36px, var(--wrap));
  margin-inline: auto;
}
.section { margin-block: 44px; position: relative; }

/* 色の帯。セクションごとに背景を変えてスクロールにリズムを出す */
.band {
  position: relative;
  margin: 52px 0;
  padding: 40px 0 48px;
  border-radius: var(--radius-xl);
}
.band .section { margin-block: 0; }
.band-peach { background: linear-gradient(180deg, #fff3f7, var(--peach)); }
.band-sky   { background: linear-gradient(180deg, var(--sky-100), var(--sky-200)); }
.band-lemon { background: linear-gradient(180deg, #fffbe8, var(--lemon)); }

/* ---------- header / logo ---------- */
.site-head { text-align: center; }

.head-band {
  position: relative;
  padding: 34px 0 46px;
  border-radius: 0 0 48px 48px;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(255,255,255,.9) 0%, rgba(255,255,255,0) 60%),
    linear-gradient(180deg, var(--sky-200) 0%, var(--sky-400) 62%, var(--sky-300) 100%);
  box-shadow: 0 10px 30px rgba(99, 188, 221, .2);
}
.head-band.is-slim { padding: 20px 0 22px; }


.logo {
  display: block;
  margin: 0 auto;
  max-width: min(86%, 420px);
  line-height: 0;
}
.logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 3px 8px rgba(71, 162, 198, .28));
}
.logo.is-slim { max-width: min(62%, 230px); }
.logo.is-slim img { filter: drop-shadow(0 2px 5px rgba(71, 162, 198, .26)); }

.logo-fallback {
  display: block;
  line-height: 1.4;
  font-family: var(--font-pop);
  font-size: 30px;
  letter-spacing: .06em;
  color: var(--white);
  text-shadow: 0 2px 6px rgba(71, 162, 198, .35);
}
.logo.is-slim .logo-fallback { font-size: 20px; }

.site-name {
  margin: 26px 0 0;
  font-family: var(--font-pop);
  font-weight: 400;
  font-size: 23px;
  letter-spacing: .06em;
  color: var(--ink);
}
.site-name .mark { color: var(--sky-400); }
.site-name-en {
  margin: 2px 0 0;
  font-family: Quicksand, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .34em;
  text-indent: .34em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

/* キャッチフレーズは、ロゴから話しかけている吹き出しにする */
.catch {
  /* 改行しきれない狭い画面でも、語の途中（「心理士のた／まご」など）で切らない */
  word-break: auto-phrase;
  text-wrap: pretty;
  position: relative;
  display: inline-block;
  margin: 30px auto 0;
  max-width: 30em;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.catch::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  translate: -50% 0;
  border: 10px solid transparent;
  border-top: 0;
  border-bottom-color: var(--white);
}

/* ---------- global nav ---------- */
/* 帯は敷かず、ボタンだけを浮かせる（追従はそのまま） */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 12px 0 14px;
  pointer-events: none;      /* 帯の空白部分は下の内容をさわれるように */
}
.nav ul { pointer-events: auto; width: max-content; max-width: 100%; margin-inline: auto; }
.nav li { flex: none; }

/* メニューのページ内リンクで飛んだとき、上に付いてくるメニューに見出しが隠れないように */
.section[id] { scroll-margin-top: 112px; }
.nav ul {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 0;
  list-style: none;
}
.nav a {
  display: block;
  padding: 8px 20px;
  border-radius: 999px;
  font-family: var(--font-pop);
  font-size: 13.5px;
  color: var(--ink-mid);
  background: var(--white);
  box-shadow: 0 3px 0 var(--sky-200), var(--shadow-sm);
  transition: transform .3s var(--bounce), box-shadow .3s var(--bounce), color .25s;
}
.nav a:hover { transform: translateY(-3px); color: var(--sky-600); }
.nav a:active { transform: translateY(1px); box-shadow: 0 1px 0 var(--sky-200), var(--shadow-sm); }
.nav a[aria-current="page"] {
  color: var(--white);
  background: linear-gradient(135deg, var(--sky-400), var(--sky-500));
  box-shadow: 0 3px 0 var(--sky-600), var(--shadow-sm);
}

/* スマホ：メニュー4つを1行に収める。
   それでも入らない狭い端末では横スクロール。中央寄せのまま横スクロールにすると
   左側にもはみ出して先頭（ホーム）に届かなくなるため、左寄せ＋先頭と末尾の auto 余白で
   「収まるときは中央、収まらないときは左から」にしている */
@media (max-width: 640px) {
  .nav ul {
    width: 100%;
    justify-content: flex-start;
    gap: 5px;
    overflow-x: auto;
    padding: 2px 4px 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .nav ul::-webkit-scrollbar { display: none; }
  .nav li:first-child { margin-left: auto; }
  .nav li:last-child  { margin-right: auto; }
  .nav a { padding: 7px 10px; font-size: 11px; letter-spacing: 0; }
}

/* ---------- card ---------- */
.card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 32px 26px;
}

/* ---------- section title：日本語の見出しに淡いマーカーを引く ---------- */
.sec-title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 0 0 12px;
  font-family: var(--font-pop);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: .06em;
  color: var(--ink);
  text-align: center;
}
.sec-title .sec-en {
  display: inline-block;
  padding: 2px 12px;
  border-radius: 999px;
  font-family: Quicksand, sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .28em;
  text-indent: .28em;
  color: var(--sky-600);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.sec-title .sec-jp {
  position: relative;
  isolation: isolate; /* ::before の z-index:-1 を、この要素の中で完結させる */
  padding: 0 10px;
}
.sec-title .sec-jp::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 12px;
  border-radius: 6px;
  background: var(--marker, var(--sky-200));
  z-index: -1;
}
.sec-sub {
  margin: 0 0 24px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-mid);
}

/* ---------- ステッカー風の飾り（要所だけ） ---------- */
.deco {
  position: absolute;
  width: 34px;
  height: 34px;
  pointer-events: none;
  animation: deco-bob 4s ease-in-out infinite;
}
.deco-heart { fill: var(--peach-deep); }
.deco-cloud { fill: var(--white); filter: drop-shadow(0 3px 6px rgba(99,188,221,.25)); }
.deco-star  { fill: var(--lemon-deep); }
@keyframes deco-bob {
  0%, 100% { translate: 0 0; rotate: var(--tilt, 0deg); }
  50%      { translate: 0 -5px; rotate: calc(var(--tilt, 0deg) + 4deg); }
}

/* ---------- link list（ぷっくりしたボタン） ---------- */
.links {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px 16px 16px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 5px 0 var(--accent, var(--sky-300)), var(--shadow-sm);
  transition: transform .35s var(--bounce), box-shadow .35s var(--bounce);
}
.link:hover { transform: translateY(-4px); box-shadow: 0 9px 0 var(--accent, var(--sky-300)), var(--shadow-md); }
.link:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--accent, var(--sky-300)), var(--shadow-sm); }

.link-icon {
  flex: none;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 25px;
  background: var(--icon-bg, var(--sky-100));
  box-shadow: inset 0 -4px 0 rgba(0,0,0,.05);
  transition: transform .35s var(--bounce);
}
.link:hover .link-icon { transform: rotate(-8deg) scale(1.06); }
.link-icon svg { width: 25px; height: 25px; }
/* 画像のアイコン（マシュマロなど）。1枚絵なので絵文字より少し大きめにして顔を潰さない */
.link-icon-img { width: 30px; height: 30px; }
.link-txt { min-width: 0; }
.link-title {
  display: block;
  font-family: var(--font-pop);
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.5;
}
.link-desc {
  display: block;
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.link-arrow {
  margin-left: auto;
  flex: none;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 15px;
  color: var(--white);
  background: var(--accent, var(--sky-300));
  transition: transform .35s var(--bounce);
}
.link:hover .link-arrow { transform: translateX(4px); }

/* 準備中 */
.link.is-soon {
  background: rgba(255,255,255,.6);
  border: 2px dashed var(--accent, var(--sky-300));
  box-shadow: none;
  cursor: default;
}
.link.is-soon:hover { transform: none; box-shadow: none; }
.link.is-soon:hover .link-icon { transform: none; }
.link.is-soon .link-title { color: var(--ink-mid); }
.badge-soon {
  margin-left: auto;
  flex: none;
  padding: 4px 12px;
  border-radius: 999px;
  font-family: Quicksand, sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--sky-600);
  background: var(--sky-100);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border: none;
  border-radius: 999px;
  font-family: var(--font-pop);
  font-size: 15px;
  letter-spacing: .04em;
  color: var(--white);
  background: linear-gradient(135deg, var(--sky-400), var(--sky-500));
  box-shadow: 0 5px 0 var(--sky-600), var(--shadow-md);
  cursor: pointer;
  transition: transform .35s var(--bounce), box-shadow .35s var(--bounce), opacity .2s;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 8px 0 var(--sky-600), var(--shadow-lg); }
.btn:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--sky-600), var(--shadow-sm); }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.btn-ghost {
  color: var(--sky-600);
  background: var(--white);
  box-shadow: 0 5px 0 var(--sky-200), var(--shadow-sm);
}
.btn-ghost:hover { box-shadow: 0 8px 0 var(--sky-200), var(--shadow-md); }
.btn-ghost:active { box-shadow: 0 2px 0 var(--sky-200), var(--shadow-sm); }

/* ---------- profile ---------- */
.profile-lead {
  word-break: auto-phrase;
  text-wrap: pretty;
  margin: 0 0 22px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--sky-100), var(--lemon));
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: var(--ink);
}
.profile-body p { margin: 0 0 1.1em; }
.profile-body p:last-child { margin-bottom: 0; }

/* ミニキャラ。2枚を重ねて、表情だけを切り替える */
.chara {
  position: relative;
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 0 auto 30px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.chara-inner {
  position: relative;
  display: block;
  z-index: 1;
  transition: transform .4s var(--bounce);
  animation: chara-float 3.4s ease-in-out infinite;
}
.chara-face { display: block; }
.chara-face img { width: 100%; height: auto; }
.chara-alt { position: absolute; inset: 0; visibility: hidden; }
.chara.is-alt .chara-inner { transform: translateY(-4px); }
.chara.is-alt .chara-base { visibility: hidden; }
.chara.is-alt .chara-alt { visibility: visible; }
@media (hover: hover) {
  .chara:hover .chara-inner { transform: translateY(-4px); }
  .chara:hover .chara-base { visibility: hidden; }
  .chara:hover .chara-alt { visibility: visible; }
}
.chara:focus-visible { outline: 3px solid var(--sky-300); outline-offset: 6px; border-radius: var(--radius-md); }

@keyframes chara-float {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -7px; }
}
.chara::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 38%;
  height: 14px;
  translate: -50% 0;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(99, 188, 221, .32), rgba(99, 188, 221, 0));
  animation: chara-shadow 3.4s ease-in-out infinite;
}
@keyframes chara-shadow {
  0%, 100% { scale: 1;   opacity: 1; }
  50%      { scale: .82; opacity: .65; }
}
.chara.is-bounce .chara-face { animation: chara-bounce .42s var(--ease); }
@keyframes chara-bounce {
  0%   { scale: 1; }
  35%  { scale: 1.06 .95; }
  70%  { scale: .98 1.03; }
  100% { scale: 1; }
}
.chara-hint {
  position: absolute;
  z-index: 2;
  top: 4%;
  right: -4%;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--font-pop);
  font-size: 11.5px;
  white-space: nowrap;
  color: var(--sky-600);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  pointer-events: none;
  animation: chara-hint 2.4s ease-in-out infinite;
  transition: opacity .4s var(--ease);
}
.chara-hint::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -5px;
  border: 6px solid transparent;
  border-bottom: 0;
  border-top-color: var(--white);
}
@keyframes chara-hint {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -4px; }
}
.chara.is-touched .chara-hint { opacity: 0; }

.done-chara { width: 150px; margin: 0 auto 8px; }
.done-chara img { width: 100%; height: auto; }

/* プロフィール項目：表ではなく、やわらかい行の並びに */
.spec {
  margin: 24px 0 0;
  display: grid;
  gap: 8px;
}
.spec > div {
  display: grid;
  grid-template-columns: 7.5em 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--sky-50);
  font-size: 13.5px;
}
.spec dt {
  margin: 0;
  padding: 3px 10px;
  border-radius: 999px;
  text-align: center;
  font-family: var(--font-pop);
  font-size: 12px;
  color: var(--sky-600);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.spec dd { margin: 0; }

/* ---------- notice / form ---------- */
.notice {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--sky-100), var(--lemon));
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
}
.notice strong { color: var(--sky-600); }

.field { margin-bottom: 22px; }
.field label {
  display: block;
  margin-bottom: 7px;
  font-family: var(--font-pop);
  font-size: 14px;
  color: var(--ink);
}
.field input, .field textarea {
  width: 100%;
  padding: 13px 18px;
  border: 2.5px solid var(--sky-200);
  border-radius: 20px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  resize: vertical;
  transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field textarea:focus {
  border-color: var(--sky-400);
  box-shadow: 0 0 0 4px rgba(142, 210, 234, .28);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-soft); font-weight: 500; }
.field .hint { display: block; margin-top: 6px; font-size: 11.5px; font-weight: 500; color: var(--ink-soft); }
.field .hint-error { color: #d4739a; font-weight: 700; }

.mark-req, .mark-opt {
  margin-left: 6px;
  padding: 2px 9px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  vertical-align: 2px;
}
.mark-req { color: #d4739a; background: var(--peach); }
.mark-opt { color: var(--ink-soft); background: var(--sky-100); }

.count-note { font-size: 12px; color: var(--ink-soft); }

/* ---------- toast ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 80;
  transform: translate(-50%, 20px);
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-pop);
  font-size: 13.5px;
  color: var(--sky-600);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .35s var(--bounce);
}
.toast.is-open { opacity: 1; transform: translate(-50%, 0); }

/* ---------- footer：雲の上からミニキャラがのぞく ---------- */
.site-foot {
  position: relative;
  margin-top: 90px;
  padding: 0;
  text-align: center;
  font-size: 11.5px;
  color: var(--ink-mid);
}
.foot-cloud {
  position: relative;
  padding: 48px 0 40px;
  border-radius: 48px 48px 0 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--sky-200) 100%);
  box-shadow: 0 -8px 24px rgba(99, 188, 221, .12);
}
.foot-chara {
  position: absolute;
  left: 50%;
  top: -78px;
  width: 120px;
  translate: -50% 0;
  animation: chara-float 3.8s ease-in-out infinite;
}
.foot-chara img { width: 100%; height: auto; }
.site-foot .foot-mark { display: block; margin-bottom: 6px; font-size: 20px; }

/* お仕事のご依頼（フッターの一番上）：白いカードに見出し・区切り線・小見出し・本文 */
.work-cta {
  width: min(100% - 36px, var(--wrap));
  margin: 26px auto 30px;
  padding: 28px 24px 26px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.work-cta-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-family: var(--font-pop);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: .03em;
  color: var(--ink-mid);
}
.work-spark { width: 13px; height: 13px; fill: var(--lemon-deep); flex: none; }
.work-spark:last-child { width: 16px; height: 16px; fill: var(--sky-400); translate: 0 -5px; }
.work-divider {
  display: block;
  width: min(100%, 300px);
  height: auto;
  margin: 8px auto 20px;
  fill: var(--peach-deep);
  stroke: var(--sky-300);
  stroke-width: 1.6;
  stroke-linecap: round;
}
.work-divider circle { stroke: none; }
.work-divider .arc { fill: none; }
.work-cta-sub {
  margin: 0 0 12px !important;
  font-family: var(--font-pop);
  font-size: 14px;
  color: var(--ink-mid);
}
.work-cta-sub::before { content: "❮ "; color: var(--sky-400); }
.work-cta-sub::after  { content: " ❯"; color: var(--sky-400); }
.work-cta-desc {
  margin: 0 0 18px !important;
  font-size: 13px;
  line-height: 2;
  color: var(--ink-mid);
  /* 「ください。」の「さい。」だけが次の行に残らないよう、文節で折り返す（未対応ブラウザは従来どおり） */
  word-break: auto-phrase;
  text-wrap: pretty;
}
.work-cta-btn { padding: 9px 22px; font-size: 13px; }
.work-cta-btn svg { width: 15px; height: 15px; fill: currentColor; }
.pc-only { display: none; }
@media (min-width: 600px) {
  .work-cta { padding: 32px 36px 30px; }
  .work-cta-title { font-size: 20px; }
  .work-cta-desc { font-size: 14px; }
  .pc-only { display: inline; }
}
.site-foot p { margin: 0; }
.site-foot a { color: var(--ink-soft); }

/* ---------- to top ---------- */
.to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  color: var(--sky-500);
  background: var(--white);
  box-shadow: 0 4px 0 var(--sky-200), var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .35s var(--bounce);
}
.to-top.is-open { opacity: 1; pointer-events: auto; }
.to-top:hover { transform: translateY(-4px); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px) scale(.98); }
.reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity .5s var(--ease), transform .7s var(--bounce);
}

/* ---------- responsive ---------- */
@media (min-width: 600px) {
  body { font-size: 15.5px; }
  .card { padding: 38px 36px; }
  .sec-title { font-size: 24px; }
}
@media (max-width: 420px) {
  .spec > div { grid-template-columns: 1fr; gap: 6px; }
  .spec dt { justify-self: start; }
  .deco { width: 26px; height: 26px; }
}

/* ---------- motion 配慮 ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- print ---------- */
@media print {
  .sky, .nav, .to-top, .deco { display: none; }
  html { background: #ffffff; }
}
