/* =========================================================
   マイプレッカ : スタイル
   色は ミント／ピンク／クリーム の3系統だけ。主線（輪郭線）は使わない
   ========================================================= */
:root {
  --bg: #FFF9F8;
  --card: #FFFFFF;
  --ink: #5A6770;
  --ink-2: #8E9AA1;
  --ink-3: #B7C1C6;
  --mint: #9ADCDC;
  --mint-d: #6FC3C8;
  --mint-dd: #4FA3AA;
  --mint-l: #E6F6F5;
  --pink: #F7B8C6;
  --pink-d: #EE93A8;
  --pink-dd: #D9738C;
  --pink-l: #FDEEF1;
  --cream: #FFEFE3;
  --yellow: #FBDD9A;
  --shadow: 0 6px 22px rgba(111, 150, 160, .10);
  --r: 22px;
  --tabH: 86px;
  --vh: 100vh;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
[hidden] { display: none !important; }   /* display:flex などで hidden が効かなくならないように */
html, body { margin: 0; padding: 0; overflow-x: clip; }   /* 横からすべりこむ演出で、横スクロールが出ないように */
body {
  font-family: 'Zen Maru Gothic', 'Hiragino Maru Gothic ProN', 'Yu Gothic', sans-serif;
  font-weight: 500;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: none;
}
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; padding: 0; }
button:disabled { cursor: default; }
b, strong { font-weight: 700; }
.center { text-align: center; }

.app { max-width: 480px; margin: 0 auto; min-height: var(--vh); position: relative; background: var(--bg); }
.screen { padding: 18px 16px calc(var(--tabH) + 28px); }
.screen--home { padding: 0; }
.screen--record, .screen--stage, .screen--result, .screen--column, .screen--ob { padding-bottom: 36px; }

/* ---------- 読み込み ---------- */
.loading {
  position: fixed; inset: 0; z-index: 100; background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  transition: opacity .42s;
}
.loading.out { opacity: 0; }
.loading__mark { animation: floaty 2.4s ease-in-out infinite; margin-bottom: 8px; }
.loading__name { font-weight: 700; font-size: 22px; letter-spacing: .14em; color: var(--mint-dd); }
.loading__sub { font-size: 12px; color: var(--pink-d); letter-spacing: .2em; }

/* ---------- 共通パーツ ---------- */
.card { background: var(--card); border-radius: var(--r); padding: 18px 16px; margin-bottom: 14px; box-shadow: var(--shadow); }
.card--soft { background: var(--mint-l); box-shadow: none; }
.sec-t { font-weight: 700; font-size: 15px; margin-bottom: 12px; display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.sec-t__s { font-size: 11px; color: var(--ink-2); font-weight: 500; }
.note { font-size: 11.5px; color: var(--ink-2); line-height: 1.75; margin: 10px 2px; }
.tag { font-size: 10px; background: var(--pink-l); color: var(--pink-dd); padding: 3px 8px; border-radius: 99px; white-space: nowrap; }
.ico { display: inline-block; vertical-align: middle; flex: none; }

.btn {
  display: block; width: 100%; padding: 14px 16px; border-radius: 99px; margin-top: 10px;
  background: var(--mint-d); color: #fff; font-weight: 700; font-size: 15px; text-align: center;
  transition: transform .15s, opacity .2s;
}
.btn:active { transform: scale(.97); }
.btn--pink { background: var(--pink-d); box-shadow: 0 8px 18px rgba(238, 147, 168, .32); }
.btn--mint { background: var(--mint-d); }
.btn--ghost { background: var(--mint-l); color: var(--mint-dd); }
.btn--warn { background: var(--pink-l); color: var(--pink-dd); }
.btn--line { background: transparent; color: var(--ink-2); font-weight: 500; }
.btn--sm { display: inline-block; width: auto; padding: 9px 18px; font-size: 13px; margin-top: 8px; }
.btn--big { padding: 17px; font-size: 16px; margin-top: 16px; }

.input {
  width: 100%; border: 0; background: #F4F8F8; border-radius: 16px; padding: 13px 14px;
  font: inherit; color: var(--ink); outline: none; transition: box-shadow .2s;
}
.input:focus { box-shadow: 0 0 0 3px var(--mint-l); background: #fff; }
.input--big { font-size: 18px; text-align: center; padding: 16px; margin: 6px 0 4px; }
textarea.input { resize: none; line-height: 1.6; }
.lbl { display: block; font-size: 12px; color: var(--ink-2); margin: 16px 2px 7px; font-weight: 700; }
.nums { display: flex; gap: 10px; }
.num { flex: 1; display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--ink-2); }
.num--one { max-width: 170px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 9px 14px; border-radius: 99px; background: #F4F8F8; font-size: 13px;
  transition: background .2s, color .2s, transform .15s;
}
.chip.is-on { background: var(--pink-l); color: var(--pink-dd); font-weight: 700; }
.chip:active { transform: scale(.95); }

.kv { display: flex; justify-content: space-between; gap: 12px; padding: 9px 2px; font-size: 13.5px; border-bottom: 1px dashed rgba(111, 195, 200, .25); }
.kv:last-child { border-bottom: 0; }
.kv span { color: var(--ink-2); }
.kv i { font-style: normal; color: var(--ink-3); font-weight: 500; }

.pagehead { display: flex; align-items: flex-end; justify-content: space-between; margin: 6px 2px 16px; }
.pagehead__k { margin: 0; font-size: 12px; color: var(--pink-d); font-weight: 700; letter-spacing: .06em; }
.pagehead__t { margin: 0; font-size: 25px; font-weight: 700; letter-spacing: .04em; }

.ring { position: relative; display: inline-flex; align-items: center; justify-content: center; flex: none; }
.ring svg { position: absolute; inset: 0; transform: rotate(-90deg); }
.ring__bg { fill: none; stroke: rgba(255, 255, 255, .7); stroke-width: 9; }
.card .ring__bg { stroke: #F1F5F5; }
.ring__fg { fill: none; stroke-width: 9; stroke-linecap: round; transition: stroke-dashoffset .8s ease; }
.ring__in { position: relative; text-align: center; line-height: 1.1; font-size: 11px; }
.ring__in b { font-size: 1.6em; }
.ring__in small { font-size: .8em; color: var(--ink-2); display: block; }

.rise { animation: rise .45s cubic-bezier(.2, .8, .3, 1) both; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ---------- タブ（浮いた丸いバー） ---------- */
.tabbar {
  position: fixed; z-index: 30; left: 50%; transform: translateX(-50%);
  bottom: calc(10px + env(safe-area-inset-bottom));
  width: calc(min(480px, 100vw) - 24px);
  display: grid; grid-template-columns: repeat(5, 1fr);
  background: rgba(255, 255, 255, .94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-radius: 28px; padding: 7px 6px; box-shadow: 0 10px 30px rgba(111, 150, 160, .18);
}
.tabbar[hidden] { display: none; }
.tab { display: flex; flex-direction: column; align-items: center; gap: 1px; padding: 6px 0 5px; border-radius: 20px; color: var(--ink-3); transition: color .2s, background .2s; }
.tab svg { width: 24px; height: 24px; fill: currentColor; }
.tab span { font-size: 10px; font-weight: 700; }
.tab.is-on { color: var(--pink-d); background: var(--pink-l); }

/* ---------- シート ---------- */
.sheet-wrap { position: fixed; inset: 0; z-index: 60; }
.sheet-bg { position: absolute; inset: 0; background: rgba(90, 103, 112, .28); opacity: 0; transition: opacity .25s; }
.sheet {
  position: absolute; left: 50%; bottom: 0; width: 100%; max-width: 480px; max-height: 88vh; overflow-y: auto;
  background: #fff; border-radius: 28px 28px 0 0; padding: 10px 20px calc(24px + env(safe-area-inset-bottom));
  transform: translate(-50%, 100%); transition: transform .3s cubic-bezier(.2, .8, .3, 1);
}
.sheet-wrap.is-open .sheet-bg { opacity: 1; }
.sheet-wrap.is-open .sheet { transform: translate(-50%, 0); }
.sheet__grip { width: 40px; height: 5px; border-radius: 9px; background: #E6ECEE; margin: 0 auto 14px; }
.sheet__t { margin: 0 0 12px; font-size: 18px; }
.sec-t + .btn, .sheet .sec-t { margin-top: 20px; }

/* ---------- トースト ---------- */
.toast-wrap { position: fixed; top: 14px; left: 0; right: 0; z-index: 90; display: flex; flex-direction: column; align-items: center; gap: 8px; pointer-events: none; }
.toast {
  background: rgba(90, 103, 112, .92); color: #fff; padding: 10px 18px; border-radius: 99px; font-size: 13px;
  animation: toastIn .3s ease both; transition: opacity .35s, transform .35s; max-width: 90%;
}
.toast--mint { background: var(--mint-dd); }
.toast--pink { background: var(--pink-d); }
.toast.out { opacity: 0; transform: translateY(-8px); }
@keyframes toastIn { from { opacity: 0; transform: translateY(-10px); } }

/* ---------- ごほうび ---------- */
.reward { position: fixed; inset: 0; z-index: 80; background: rgba(90, 103, 112, .34); display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; transition: opacity .22s; }
.reward.is-in { opacity: 1; }
.reward__card {
  width: 100%; max-width: 330px; background: #fff; border-radius: 32px; padding: 24px 22px 18px; text-align: center;
  transform: scale(.9); transition: transform .35s cubic-bezier(.3, 1.5, .5, 1);
}
.reward.is-in .reward__card { transform: none; }
.reward__art { display: flex; justify-content: center; margin-bottom: 6px; }
.reward__ch { width: 124px; animation: floaty 2.2s ease-in-out infinite; }
.reward__ch .ch { width: 100%; height: auto; display: block; }
.reward__badge { width: 96px; height: 96px; border-radius: 50%; background: var(--pink-l); display: flex; align-items: center; justify-content: center; }
.reward__t { font-size: 19px; font-weight: 700; margin: 4px 0 6px; }
.reward__d { font-size: 13.5px; color: var(--ink-2); line-height: 1.8; }
.reward__d b { color: var(--pink-dd); }

.petals { position: fixed; inset: 0; pointer-events: none; z-index: 85; overflow: hidden; }
.petals i {
  position: absolute; top: -20px; width: 10px; height: 13px; border-radius: 60% 60% 60% 0;
  animation: fall linear both;
}
@keyframes fall {
  to { transform: translate(var(--dx), 105vh) rotate(var(--r)); opacity: .2; }
}

/* =========================================================
   ホーム
   ========================================================= */
.home { position: relative; height: var(--vh); overflow: hidden; --dockH: 112px; }
.sky { position: absolute; inset: 0; background-size: cover; background-position: center bottom; transition: background .6s; }
.home--morning .sky { background-color: #FFEDE8; background-image: linear-gradient(#FFE3E2, #FFF3EA 55%, #EAF7F3); }
.home--day .sky { background-color: #D8F1F1; background-image: linear-gradient(#CBEDEE, #E9F8F6 55%, #FFF5F3); }
.home--evening .sky { background-color: #F9D3DC; background-image: linear-gradient(#F4C6D3, #FCDCD6 55%, #F6E8EE); }
.home--night .sky { background-color: #9DA3D2; background-image: linear-gradient(#8F97CC, #B3AAD8 55%, #E2C6DA); }

.sky__sun { position: absolute; top: 14%; right: 12%; width: 58px; height: 58px; border-radius: 50%; background: #FFE6AE; box-shadow: 0 0 0 14px rgba(255, 230, 174, .35), 0 0 0 30px rgba(255, 230, 174, .15); }
.home--evening .sky__sun { background: #FFD1B8; box-shadow: 0 0 0 14px rgba(255, 209, 184, .4), 0 0 0 30px rgba(255, 209, 184, .16); top: 22%; }
.sky__moon { position: absolute; top: 14%; right: 16%; width: 50px; height: 50px; border-radius: 50%; box-shadow: -12px 6px 0 0 #FFF2C4; }
.sky__star { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: #FFF6DA; animation: twinkle 3s ease-in-out infinite; }
@keyframes twinkle { 50% { opacity: .25; transform: scale(.6); } }

.cloud {
  position: absolute; left: 0; aspect-ratio: 2.4; border-radius: 99px; background: rgba(255, 255, 255, .9);
  animation: drift linear infinite;
}
.cloud::before, .cloud::after { content: ''; position: absolute; background: inherit; border-radius: 50%; }
.cloud::before { width: 46%; aspect-ratio: 1; left: 16%; top: -30%; }
.cloud::after { width: 34%; aspect-ratio: 1; left: 48%; top: -18%; }
.home--night .cloud { background: rgba(255, 255, 255, .28); }
@keyframes drift { from { transform: translateX(-160px); } to { transform: translateX(min(520px, 110vw)); } }

.hill { position: absolute; border-radius: 50% 50% 0 0 / 100% 100% 0 0; }
.hill--far { left: -30%; width: 95%; height: 66%; bottom: 0; background: #DDF2EE; }
.hill--mid { right: -35%; width: 110%; height: 62%; bottom: 0; background: #CFEDE6; }
.hill--near { left: -25%; width: 150%; height: 57%; bottom: 0; background: #C1E6DC; }
.home--evening .hill--far { background: #F2DDE3; } .home--evening .hill--mid { background: #E8D8E0; } .home--evening .hill--near { background: #D9DDE0; }
.home--night .hill--far { background: #C3BCDF; } .home--night .hill--mid { background: #B4B7DD; } .home--night .hill--near { background: #A9B9DC; }

/* 上のバー */
.hbar { position: absolute; z-index: 20; top: calc(12px + env(safe-area-inset-top)); left: 12px; right: 12px; display: flex; align-items: center; gap: 8px; }
.hbar { align-items: flex-start; }
.hcard {
  flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 6px;
  background: rgba(255, 255, 255, .86); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: 22px; padding: 8px 12px 10px 8px; box-shadow: var(--shadow);
}
.hcard__row { display: flex; align-items: center; gap: 8px; }
.hcard__me { flex: 1; min-width: 0; display: flex; align-items: center; gap: 10px; text-align: left; }
.hbar__lv { width: 42px; height: 42px; border-radius: 50%; background: var(--mint-d); color: #fff; font-size: 9px; font-weight: 700; display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1; flex: none; }
.hbar__lv b { font-size: 17px; }
.hbar__who { flex: 1; min-width: 0; display: flex; flex-direction: column; line-height: 1.25; }
.hbar__who b { font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hbar__who small { font-size: 10.5px; color: var(--pink-d); font-weight: 700; }
.xp { display: block; height: 6px; background: #EEF3F3; border-radius: 9px; margin-top: 4px; overflow: hidden; }
.xp i { display: block; height: 100%; background: var(--pink); border-radius: 9px; transition: width .6s; }
.hbar__gear { width: 38px; height: 38px; border-radius: 50%; background: var(--mint-l); display: flex; align-items: center; justify-content: center; flex: none; }

.tip {
  position: absolute; z-index: 19; top: calc(152px + env(safe-area-inset-top)); left: 80px; right: 12px;
  display: flex; align-items: center; gap: 8px; padding: 7px 12px; border-radius: 16px;
  background: rgba(255, 255, 255, .6); font-size: 11.5px; min-height: 34px;
}
.tip__l { flex: none; font-size: 10px; font-weight: 700; color: #fff; background: var(--pink); padding: 2px 8px; border-radius: 99px; }
.tip__t { opacity: 0; transform: translateY(4px); transition: opacity .25s, transform .25s; line-height: 1.45; }
.tip__t.is-in { opacity: 1; transform: none; }

/* 歩ける範囲 */
.field { position: absolute; z-index: 10; left: 8px; right: 8px; top: 44%; bottom: calc(var(--tabH) + var(--dockH)); }
.garden { position: absolute; inset: 0; }
.bloom { position: absolute; transform: translateX(-50%); transform-origin: 50% 100%; animation: sway 4s ease-in-out infinite; }
.bloom .fl { display: block; }
.bloom.is-new { animation: bloomIn .9s cubic-bezier(.3, 1.6, .5, 1) both, sway 4s 1s ease-in-out infinite; }
@keyframes sway { 0%, 100% { transform: translateX(-50%) rotate(-3deg); } 50% { transform: translateX(-50%) rotate(3deg); } }
@keyframes bloomIn { from { transform: translateX(-50%) scale(0); } }

.walker { position: absolute; left: 0; bottom: 0; width: calc(140px * var(--sz, 1)); z-index: 50; cursor: pointer; will-change: transform; transform-origin: 50% 100%; }
.walker__bob { transform-origin: 50% 100%; }
.walker__flip { transition: transform .25s; }
.walker .ch { width: 100%; height: auto; display: block; overflow: visible; }
.walker__shadow { position: absolute; left: 18%; right: 18%; bottom: 1px; height: 10px; border-radius: 50%; background: rgba(79, 140, 140, .18); }
.walker.is-walk .walker__bob { animation: bob .46s ease-in-out infinite; }
.walker.is-walk .ch__foot--l { animation: footL .46s ease-in-out infinite; }
.walker.is-walk .ch__foot--r { animation: footR .46s ease-in-out infinite; }
.walker.is-walk .ch__arm--l { animation: armL .46s ease-in-out infinite; transform-origin: 68px 150px; }
.walker.is-walk .ch__arm--r { animation: armR .46s ease-in-out infinite; transform-origin: 132px 150px; }
.walker.is-walk .ch__ear--l { animation: earL .46s ease-in-out infinite; transform-origin: 60px 66px; }
.walker.is-walk .ch__ear--r { animation: earR .46s ease-in-out infinite; transform-origin: 140px 66px; }
.walker.is-walk .ch__tuft { animation: tuft .92s ease-in-out infinite; transform-origin: 122px 46px; }
.ch__ear, .ch__tuft { transform-box: view-box; }
@keyframes earL { 50% { transform: rotate(8deg); } }
@keyframes earR { 50% { transform: rotate(-8deg); } }
@keyframes tuft { 25% { transform: rotate(-7deg); } 75% { transform: rotate(7deg); } }
.walker.is-hop .walker__bob { animation: hop .8s cubic-bezier(.3, .7, .4, 1); }
.walker.is-spin .walker__bob { animation: spin .9s ease-in-out; }
.walker.is-look .ch__head { animation: look 1s ease-in-out; transform-origin: 100px 146px; }
.ch__head { transform-box: view-box; }
.ch__foot, .ch__arm { transform-box: view-box; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes footL { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes footR { 0%, 100% { transform: translateY(-7px); } 50% { transform: translateY(0); } }
@keyframes armL { 0%, 100% { transform: rotate(-8deg); } 50% { transform: rotate(10deg); } }
@keyframes armR { 0%, 100% { transform: rotate(8deg); } 50% { transform: rotate(-10deg); } }
@keyframes hop { 30% { transform: translateY(-26px) scale(.96, 1.04); } 60% { transform: translateY(0) scale(1.06, .94); } 80% { transform: none; } }
@keyframes spin { 50% { transform: scaleX(-1); } }
@keyframes look { 30% { transform: rotate(-8deg); } 70% { transform: rotate(8deg); } }

.bubble {
  position: absolute; bottom: calc(100% + 6px); left: var(--bx, 50%); transform: translateX(-50%);
  background: #fff; border-radius: 18px; padding: 9px 14px; font-size: 13px; line-height: 1.55; text-align: center;
  box-shadow: 0 6px 18px rgba(111, 150, 160, .18); white-space: nowrap; animation: pop .3s cubic-bezier(.3, 1.6, .5, 1);
  pointer-events: none;
}
.bubble span { display: block; }
.bubble::after { content: ''; position: absolute; left: calc(50% - (var(--bx, 50%) - 50%) * 1.2); bottom: -7px; width: 14px; height: 14px; background: #fff; border-radius: 3px; transform: translateX(-50%) rotate(45deg); }
.bubble.out { opacity: 0; transition: opacity .25s; }
@keyframes pop { from { transform: translateX(-50%) scale(.6); opacity: 0; } }

.zzz { position: absolute; right: 6%; top: 4%; font-style: normal; font-weight: 700; color: #fff; font-size: 14px; animation: zzz 2.4s ease-in-out infinite; }
.zzz i { font-style: normal; font-size: .8em; margin-left: 2px; }
@keyframes zzz { 50% { transform: translate(4px, -6px); opacity: .6; } }

.mailbox { position: absolute; z-index: 46; right: 4%; bottom: 30%; width: 70px; display: flex; flex-direction: column-reverse; align-items: center; }
.mailbox .mb { width: 100%; height: auto; display: block; overflow: visible; }
.mailbox__l { font-style: normal; font-size: 10px; font-weight: 700; color: var(--pink-dd); background: rgba(255, 255, 255, .92); padding: 2px 9px; border-radius: 99px; margin-bottom: 4px; white-space: nowrap; box-shadow: var(--shadow); }
.mailbox:not(.is-new) .mailbox__l { color: var(--ink-2); }
.mb__flag { transform-box: view-box; transform-origin: 76px 54px; transform: rotate(90deg); transition: transform .5s cubic-bezier(.3, 1.6, .5, 1); }
.mb__flag.is-up { transform: none; animation: flagWave 2.4s ease-in-out infinite; }
.mb__letter { transform-box: view-box; animation: peek 2.2s ease-in-out infinite; }
.mailbox.is-new::after { content: ''; position: absolute; top: 18px; right: 0; width: 10px; height: 10px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 10px 4px rgba(251, 221, 154, .7); animation: twinkle 1.8s ease-in-out infinite; }
@keyframes flagWave { 50% { transform: rotate(-8deg); } }
@keyframes peek { 50% { transform: translateY(-4px); } }

.rail { position: absolute; z-index: 21; left: 10px; top: calc(150px + env(safe-area-inset-top)); display: flex; flex-direction: column; gap: 8px; }
.rail__b { position: relative; width: 62px; display: flex; flex-direction: column; align-items: center; gap: 0; }
/* アイコンに白いふち（4方向＋ななめの影を重ねて、ふちどりに見せる） */
.rail__b .ico { filter: drop-shadow(2px 0 0 #fff) drop-shadow(-2px 0 0 #fff) drop-shadow(0 2px 0 #fff) drop-shadow(0 -2px 0 #fff) drop-shadow(0 3px 5px rgba(90, 103, 112, .18)); }
/* 袋文字 */
.rail__b span { font-size: 11px; font-weight: 700; white-space: nowrap; color: var(--ink); -webkit-text-stroke: 4px #fff; paint-order: stroke fill; margin-top: -2px; letter-spacing: .02em; }
.rail__dot { position: absolute; top: 0; right: 8px; width: 11px; height: 11px; border-radius: 50%; background: var(--pink-d); box-shadow: 0 0 0 2.5px #fff; }

.news__i { width: 100%; display: block; text-align: left; padding: 12px 14px; margin-bottom: 8px; border-radius: 16px; background: #F6F9F9; }
.news__i.is-new { background: var(--pink-l); }
.news__h { display: flex; align-items: center; gap: 8px; }
.news__h small { font-size: 11px; color: var(--ink-2); }
.news__h i { font-style: normal; font-size: 9.5px; font-weight: 700; color: #fff; background: var(--pink-d); padding: 1px 7px; border-radius: 99px; }
.news__i b { display: block; font-size: 14px; margin-top: 2px; }
.news__b { display: none; font-size: 13px; color: var(--ink-2); line-height: 1.8; margin-top: 6px; }
.news__i.is-open .news__b { display: block; }

.bfly { position: absolute; z-index: 30; left: 10%; top: -10%; width: 22px; height: 16px; animation: bflyPath 18s ease-in-out infinite; }
.bfly--2 { animation-duration: 23s; animation-delay: -9s; transform: scale(.8); }
.bfly i { position: absolute; top: 0; width: 11px; height: 14px; border-radius: 60% 60% 50% 50%; background: var(--pink); animation: flap .28s ease-in-out infinite alternate; }
.bfly i:first-child { left: 0; transform-origin: 100% 60%; }
.bfly i:last-child { right: 0; transform-origin: 0 60%; background: var(--pink-d); }
.bfly--2 i { background: var(--mint); } .bfly--2 i:last-child { background: var(--mint-d); }
@keyframes flap { to { transform: scaleX(.3); } }
@keyframes bflyPath {
  0% { transform: translate(0, 0); } 20% { transform: translate(38vw, -40px); } 40% { transform: translate(min(64vw, 300px), 30px); }
  60% { transform: translate(40vw, -60px); } 80% { transform: translate(10vw, 10px); } 100% { transform: translate(0, 0); }
}
.seed { position: absolute; z-index: 5; bottom: 40%; width: 6px; height: 6px; border-radius: 50%; background: rgba(255, 255, 255, .85); opacity: 0; animation: seedUp 22s linear infinite; }
@keyframes seedUp { from { transform: translate(0, 0); opacity: 0; } 10% { opacity: 1; } to { transform: translate(40px, -46vh); opacity: 0; } }
.firefly { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: #FFF3B8; box-shadow: 0 0 10px 4px rgba(255, 243, 184, .6); animation: floaty 4s ease-in-out infinite, twinkle 2.6s ease-in-out infinite; }

/* 下のドック */
.dock { position: absolute; z-index: 20; left: 12px; right: 12px; bottom: calc(var(--tabH) + 8px + env(safe-area-inset-bottom)); display: flex; flex-direction: column; gap: 8px; }
.crowd { align-self: flex-start; display: flex; align-items: center; gap: 6px; font-size: 11.5px; padding: 5px 12px; border-radius: 99px; background: rgba(255, 255, 255, .78); }
.crowd b { color: var(--pink-dd); }
.crowd__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--pink-d); animation: ping 1.8s ease-out infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(238, 147, 168, .55); } 100% { box-shadow: 0 0 0 9px rgba(238, 147, 168, 0); } }
.todo { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.todo__b { position: relative; display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 8px 2px 6px; border-radius: 18px; background: rgba(255, 255, 255, .9); font-size: 11px; font-weight: 700; box-shadow: var(--shadow); }
.todo__b.is-done { background: rgba(230, 246, 245, .92); color: var(--mint-dd); }
.todo__ok { position: absolute; top: -5px; right: -3px; width: 19px; height: 19px; border-radius: 50%; background: var(--mint-d); color: #fff; font-size: 11px; font-style: normal; display: flex; align-items: center; justify-content: center; }
.prog { display: flex; flex-direction: column; gap: 5px; padding: 7px 2px 0 6px; border-top: 1px dashed rgba(111, 195, 200, .35); text-align: left; width: 100%; }
.prog__top { display: flex; align-items: baseline; gap: 10px; font-size: 11px; color: var(--ink-2); }
.prog__ttl { font-weight: 700; color: var(--pink-dd); margin-right: auto; font-size: 12px; }
.prog__num b { font-size: 16px; color: var(--ink); margin: 0 1px; }
.prog__msg { font-size: 10.5px; color: var(--ink-2); }
.prog__msg b { color: var(--pink-dd); font-size: 12px; margin: 0 1px; }
.prog__bar { display: grid; grid-template-columns: repeat(28, 1fr); gap: 2px; }
.prog__bar i { height: 8px; border-radius: 5px; background: #DDE7E8; }
.prog__bar i.is-past { background: #F4E4E8; }
.prog__bar i.is-rec { background: var(--pink); }
.prog__bar i.is-rec:nth-child(3n) { background: var(--pink-d); }
.prog__bar i.is-rec:nth-child(3n+1) { background: #F3B792; }
.prog__bar i.is-now { box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px var(--pink-d); animation: nowPulse 1.6s ease-in-out infinite; }
.prog__bar i.is-wk { margin-right: 3px; }
@keyframes nowPulse { 50% { transform: scaleY(1.35); } }
.recbtn {
  width: 100%; padding: 11px 16px 10px; border-radius: 26px; background: var(--pink-d); color: #fff;
  display: flex; flex-direction: column; align-items: center; line-height: 1.35;
  box-shadow: 0 10px 22px rgba(238, 147, 168, .38); animation: breathe 2.6s ease-in-out infinite;
}
.recbtn span { font-size: 16.5px; font-weight: 700; letter-spacing: .04em; }
.recbtn small { font-size: 11px; opacity: .92; }
.recbtn--done { background: rgba(255, 255, 255, .92); color: var(--pink-dd); box-shadow: var(--shadow); animation: none; }
.recbtn--done small { color: var(--ink-2); }
@keyframes breathe { 50% { transform: scale(1.02); } }

/* 成長 */
.grow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; margin: 14px 0; align-items: end; }
.grow__c { text-align: center; font-size: 10px; display: flex; flex-direction: column; align-items: center; padding: 6px 2px; border-radius: 16px; }
.grow__c.is-now { background: var(--pink-l); }
.grow__ch { width: 100%; height: 76px; display: flex; align-items: flex-end; justify-content: center; }
.grow__c .ch { width: 100%; height: auto; }
.grow__c:nth-child(1) .ch { width: 62%; } .grow__c:nth-child(2) .ch { width: 72%; } .grow__c:nth-child(3) .ch { width: 82%; } .grow__c:nth-child(4) .ch { width: 92%; }
.grow__c b { margin-top: 4px; line-height: 1.3; }
.grow__c small { color: var(--ink-2); }
.grow__c.is-lock .grow__ch { align-items: center; opacity: .6; }

/* ことば */
.word { text-align: center; padding: 8px 6px 4px; }
.word__env { animation: floaty 2.4s ease-in-out infinite; }
.word__k { font-size: 12px; color: var(--pink-d); font-weight: 700; margin: 6px 0 2px; letter-spacing: .1em; }
.word__t { font-size: 19px; font-weight: 700; line-height: 1.75; margin: 10px 4px 12px; }
.word__from { font-size: 12px; color: var(--ink-2); margin: 0; }
.word__n { font-size: 11px; color: var(--mint-dd); background: var(--mint-l); display: inline-block; padding: 4px 12px; border-radius: 99px; margin: 14px 0 2px; }

.howto__r { display: flex; gap: 12px; align-items: center; padding: 10px 0; }
.howto__r p { margin: 0; font-size: 13px; line-height: 1.6; color: var(--ink-2); }
.howto__r b { color: var(--ink); font-size: 14px; }

/* =========================================================
   記録・チェック（1問ずつ）
   ========================================================= */
.rec { padding-top: 4px; }
.rhead { display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 10px; margin-bottom: 14px; min-height: 40px; }
.rhead__x { width: 38px; height: 38px; border-radius: 50%; background: #fff; box-shadow: var(--shadow); font-size: 20px; line-height: 1; color: var(--ink-2); }
.rhead__dots { display: flex; gap: 6px; justify-content: center; }
.rhead__dots i { width: 26px; height: 6px; border-radius: 9px; background: #E7EEEE; transition: background .3s; }
.rhead__dots i.is-done { background: var(--mint); }
.rhead__dots i.is-now { background: var(--pink-d); }
.rhead__d { font-size: 12px; color: var(--ink-2); font-weight: 700; }

.qcard { background: #fff; border-radius: 30px; padding: 26px 18px 18px; text-align: center; box-shadow: var(--shadow); animation: qIn .35s cubic-bezier(.2, .8, .3, 1); }
.qcard--back { animation-name: qBack; }
@keyframes qIn { from { opacity: 0; transform: translateX(30px); } }
@keyframes qBack { from { opacity: 0; transform: translateX(-30px); } }
.qcard__i { width: 108px; height: 108px; margin: 0 auto 6px; border-radius: 50%; background: var(--mint-l); display: flex; align-items: center; justify-content: center; }
.qcard__q { font-size: 19px; margin: 8px 0 18px; line-height: 1.55; }
.qcard__q--l { font-size: 17.5px; text-align: left; margin-top: 2px; }
.qcard__n { margin: 0; text-align: left; font-size: 13px; font-weight: 700; color: var(--pink-d); }
.opts { display: grid; gap: 10px; }
.opts--2 { grid-template-columns: 1fr 1fr; }
.opts--3 { grid-template-columns: 1fr 1fr 1fr; }
.opts--list { grid-template-columns: 1fr; }
.opt {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; min-height: 76px;
  padding: 12px 6px; border-radius: 20px; background: #F4F8F8; transition: background .2s, transform .15s, box-shadow .2s;
}
.opt b { font-size: 16px; }
.opt small { font-size: 11px; color: var(--ink-2); }
.opt.is-on { background: var(--pink-l); box-shadow: inset 0 0 0 2px var(--pink); }
.opt.is-on b { color: var(--pink-dd); }
.opt.is-pop { animation: optPop .28s ease; }
.opt--row { min-height: 0; align-items: flex-start; text-align: left; padding: 14px 18px; }
.opt--row b { font-size: 15px; }
.opt--skip { background: transparent; box-shadow: inset 0 0 0 1.5px #E7EEEE; }
.opt--skip b { color: var(--ink-2); font-weight: 500; font-size: 14px; }
@keyframes optPop { 50% { transform: scale(1.05); } }
.qnav { display: flex; justify-content: space-between; margin-top: 8px; }

/* まとめ */
.datenav { display: flex; align-items: center; justify-content: center; gap: 12px; }
.datenav button { width: 32px; height: 32px; border-radius: 50%; background: #fff; box-shadow: var(--shadow); font-size: 18px; color: var(--ink-2); }
.datenav button:disabled { opacity: .3; }
.datenav span { font-weight: 700; text-align: center; line-height: 1.2; }
.datenav small { display: block; font-size: 10px; color: var(--pink-d); }
.sum { padding: 10px 14px; }
.sum__lead { margin: 4px 4px 6px; font-size: 13px; color: var(--ink-2); }
.sum__r { width: 100%; display: flex; align-items: center; gap: 12px; padding: 10px 2px; text-align: left; border-bottom: 1px dashed rgba(111, 195, 200, .25); }
.sum__r:last-child { border-bottom: 0; }
.sum__t { font-size: 12px; color: var(--ink-2); width: 34px; flex: none; }
.sum__v { flex: 1; font-size: 14.5px; }
.sum__v small { font-size: 11px; color: var(--ink-2); font-weight: 500; margin-left: 6px; }
.cheer { display: flex; align-items: flex-end; justify-content: center; gap: 4px; margin-top: 22px; }
.cheer__ch { width: 76px; animation: floaty 2.4s ease-in-out infinite; }
.cheer__ch .ch { width: 100%; height: auto; display: block; }
.cheer__b { background: #fff; border-radius: 16px 16px 16px 4px; padding: 8px 14px; font-size: 13px; box-shadow: var(--shadow); margin-bottom: 42px; }
.sum__e { font-style: normal; font-size: 11px; color: var(--mint-dd); background: var(--mint-l); padding: 3px 10px; border-radius: 99px; }

.more { background: #fff; border-radius: var(--r); box-shadow: var(--shadow); overflow: hidden; }
.more__h { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; font-weight: 700; font-size: 14.5px; }
.more__h span { display: flex; align-items: center; gap: 8px; }
.more__h small { font-weight: 500; font-size: 11px; color: var(--ink-2); }
.more__h i { width: 10px; height: 10px; border-right: 2.5px solid var(--ink-3); border-bottom: 2.5px solid var(--ink-3); transform: rotate(45deg); transition: transform .25s; margin-right: 4px; }
.more.is-open .more__h i { transform: rotate(-135deg); }
.more__b { display: none; padding: 0 16px 18px; }
.more.is-open .more__b { display: block; animation: rise .3s both; }
.more__b .lbl:first-child { margin-top: 2px; }
.moods { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; }
.mood { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 6px 0; border-radius: 16px; transition: background .2s; }
.mood small { font-size: 10px; color: var(--ink-2); }
.mood.is-on { background: var(--pink-l); }
.mood.is-on small { color: var(--pink-dd); font-weight: 700; }

/* チェックの案内役 */
.guide { display: flex; align-items: flex-end; gap: 6px; margin: -2px 0 10px 4px; }
.guide__ch { width: 74px; flex: none; animation: floaty 2.6s ease-in-out infinite; }
.guide__ch .ch { width: 100%; height: auto; display: block; }
.guide__b { position: relative; background: #fff; border-radius: 16px 16px 16px 4px; padding: 8px 14px; font-size: 13px; box-shadow: var(--shadow); margin-bottom: 26px; }

/* センシティブな場面：落ちついたトーン */
.rec--calm .rhead__dots i.is-now { background: var(--mint-dd); }
.qcard--calm { box-shadow: 0 2px 10px rgba(111, 150, 160, .08); }
.qcard--calm .qcard__n { color: var(--mint-dd); }
.qcard--calm .opt.is-on { background: var(--mint-l); box-shadow: inset 0 0 0 2px var(--mint); }
.qcard--calm .opt.is-on b { color: var(--mint-dd); }
.calm__k { margin: 0; font-size: 12px; color: var(--mint-dd); font-weight: 700; }
.calm__list { text-align: left; font-size: 13px; color: var(--ink-2); line-height: 1.8; padding-left: 1.2em; margin: 0 0 8px; }

.clear { text-align: center; padding: 30px 8px 0; }
.clear__ch { width: 138px; margin: 0 auto; animation: floaty 2.2s ease-in-out infinite; }
.clear__ch .ch { width: 100%; height: auto; }
.clear__i { width: 110px; height: 110px; border-radius: 50%; background: var(--mint-l); margin: 0 auto; display: flex; align-items: center; justify-content: center; }
.clear__k { margin: 14px 0 0; font-size: 12px; font-weight: 700; color: var(--pink-d); letter-spacing: .12em; }
.clear--calm .clear__k { color: var(--mint-dd); }
.clear__t { margin: 2px 0 6px; font-size: 22px; }
.clear__d { margin: 0 0 18px; font-size: 13.5px; color: var(--ink-2); }

.res__h { display: flex; align-items: center; gap: 12px; }
.res__h small { display: block; font-size: 11px; color: var(--ink-2); }
.res__h b { font-size: 18px; }
.res__lv { margin: 16px 0 6px; padding: 12px 14px; border-radius: 16px; font-weight: 700; font-size: 15px; }
.res__lv--mint { background: var(--mint-l); color: var(--mint-dd); }
.res__lv--pink { background: var(--pink-l); color: var(--pink-dd); }
.res__lead { font-size: 13px; color: var(--ink-2); margin: 14px 2px 6px; }
.res__n { padding: 12px 0; border-top: 1px dashed rgba(111, 195, 200, .3); }
.res__q { margin: 0; font-weight: 700; font-size: 13.5px; }
.res__a { margin: 2px 0 6px; font-size: 12px; color: var(--ink-2); }
.res__adv { margin: 0; font-size: 13px; line-height: 1.75; background: #F7FAFA; padding: 10px 12px; border-radius: 12px; }
.exit { width: 100%; display: flex; align-items: center; justify-content: space-between; text-align: left; gap: 12px; padding: 12px 14px; margin-bottom: 8px; border-radius: 16px; background: #F4F8F8; }
.exit b { display: block; font-size: 14px; }
.exit small { font-size: 11.5px; color: var(--ink-2); }
.exit i { font-style: normal; font-size: 22px; color: var(--mint-d); }

/* マップ */
.chal { display: flex; align-items: center; gap: 16px; }
.chal .ring__in b { font-size: 26px; }
.chal__b { flex: 1; min-width: 0; }
.chal__b p { margin: 0; }
.chal__s { font-size: 12px; color: var(--ink-2); line-height: 1.7; margin-top: 4px !important; }
.area__h { display: flex; align-items: center; gap: 10px; }
.area__h div { flex: 1; min-width: 0; }
.area__h b { display: block; font-size: 15.5px; }
.area__h small { display: block; font-size: 11.5px; color: var(--ink-2); line-height: 1.5; }
.area--calm { background: #FBFDFD; }
.path { display: flex; align-items: center; margin: 16px 4px 4px; }
.path__line { flex: 1; height: 4px; margin: 0 -2px 18px; border-radius: 9px; background: repeating-linear-gradient(90deg, #E3ECEC 0 7px, transparent 7px 12px); }
.path__line.is-done { background: var(--mint); }
.node { display: flex; flex-direction: column; align-items: center; gap: 3px; flex: none; width: 64px; }
.node > b, .node > .fl, .node > .ico { width: 48px; height: 48px; border-radius: 50%; }
.node > b { display: flex; align-items: center; justify-content: center; background: var(--mint-l); color: var(--mint-dd); font-size: 17px; }
.node > .ico { padding: 15px; background: #F1F4F4; }
.node.is-done > .fl { background: var(--pink-l); padding: 9px; }
.node small { font-size: 10px; color: var(--ink-2); font-weight: 700; }
.node.is-next > b { background: var(--pink-d); color: #fff; animation: ping 1.8s ease-out infinite; }
.node.is-next small { color: var(--pink-dd); }
.area .btn--sm { margin-top: 12px; }

/* =========================================================
   カレンダー
   ========================================================= */
.dgrid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.dcell { position: relative; aspect-ratio: 1; border-radius: 14px; background: #F6F9F9; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.dcell small { position: absolute; top: 3px; left: 6px; font-size: 8.5px; color: var(--ink-3); font-weight: 700; }
.dcell__d { font-size: 13px; color: var(--ink-3); }
.dcell.is-rec { background: var(--pink-l); }
.dcell.is-today { box-shadow: inset 0 0 0 2px var(--pink); }
.dcell.is-fut { opacity: .45; }
.dcell__f { position: relative; margin-top: 4px; }
.dcell__f .fl { display: block; }
.dcell__sp, .lg-sp { position: absolute; right: -4px; top: -2px; width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); }
.dcell__per, .lg-per { position: absolute; bottom: 4px; width: 6px; height: 6px; border-radius: 50%; background: var(--pink-dd); }
.legend { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 12px; font-size: 11px; color: var(--ink-2); }
.legend span { display: flex; align-items: center; gap: 5px; }
.lg-sp, .lg-per { position: static; display: inline-block; }

.wstats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; text-align: center; }
.wstats div { background: #F6F9F9; border-radius: 14px; padding: 10px 2px 8px; }
.wstats b { font-size: 20px; color: var(--mint-dd); }
.wstats .wstats__s { font-size: 12px; display: block; min-height: 26px; line-height: 1.2; padding-top: 5px; }
.wstats small { font-size: 10px; color: var(--ink-2); }
.wstats span { display: block; font-size: 10.5px; color: var(--ink-2); margin-top: 2px; }
.wchart { display: flex; gap: 10px; margin-top: 16px; align-items: stretch; }
.wchart__lbl { font-size: 11px; color: var(--ink-2); padding-top: 2px; }
.wchart__cols { flex: 1; display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; height: 90px; }
.wcol { display: flex; flex-direction: column; justify-content: flex-end; align-items: center; gap: 4px; }
.wcol small { font-size: 10px; color: var(--ink-3); }
.wbar { display: block; width: 100%; max-width: 20px; min-height: 4px; border-radius: 8px; background: #EEF3F3; }
.wbar--mint { background: var(--mint); }

.badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.badge { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 10px 4px; border-radius: 18px; background: #F6F9F9; }
.badge__i { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #EEF2F2; }
.badge.is-on { background: var(--pink-l); }
.badge.is-on .badge__i { background: #fff; }
.badge b { font-size: 11.5px; margin-top: 6px; line-height: 1.35; }
.badge small { font-size: 9.5px; color: var(--ink-2); line-height: 1.4; }

/* =========================================================
   よみもの
   ========================================================= */
.seg { display: grid; grid-template-columns: 1fr 1fr; background: #fff; border-radius: 99px; padding: 5px; box-shadow: var(--shadow); margin-bottom: 14px; }
.seg__b { padding: 9px; border-radius: 99px; font-size: 13.5px; font-weight: 700; color: var(--ink-2); transition: background .2s, color .2s; }
.seg__b.is-on { background: var(--pink-l); color: var(--pink-dd); }
.col { position: relative; width: 100%; display: flex; gap: 12px; align-items: center; text-align: left; background: #fff; border-radius: var(--r); padding: 14px; margin-bottom: 10px; box-shadow: var(--shadow); }
.col__i { width: 58px; height: 58px; border-radius: 18px; background: var(--mint-l); display: flex; align-items: center; justify-content: center; flex: none; }
.col:nth-child(even) .col__i { background: var(--pink-l); }
.col__b { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.col__cat { font-size: 10.5px; color: var(--pink-d); font-weight: 700; }
.col__b b { font-size: 14.5px; line-height: 1.45; }
.col__d { font-size: 11.5px; color: var(--ink-2); line-height: 1.55; margin-top: 2px; }
.col__ok { position: absolute; top: 10px; right: 12px; font-style: normal; font-size: 10px; color: var(--mint-dd); background: var(--mint-l); padding: 1px 8px; border-radius: 99px; }
.col.is-lock { opacity: .6; box-shadow: none; }
.col.is-lock .col__i { background: #F1F4F4; }

.art { padding: 22px 20px 26px; }
.art__top { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.art__top small { font-size: 11px; color: var(--pink-d); font-weight: 700; }
.art__t { font-size: 21px; line-height: 1.55; text-align: center; margin: 8px 0 16px; }
.art__lead { font-size: 14.5px; line-height: 1.95; background: var(--mint-l); border-radius: 16px; padding: 14px 16px; margin: 0 0 8px; }
.art__h { font-size: 16px; margin: 22px 0 6px; display: flex; align-items: center; gap: 8px; }
.art__h::before { content: ''; width: 10px; height: 10px; border-radius: 50%; background: var(--pink); flex: none; }
.art__p { font-size: 14.5px; line-height: 2; margin: 6px 0; }
.art__ul { padding: 12px 14px 12px 2em; background: var(--pink-l); border-radius: 16px; font-size: 14px; line-height: 1.9; margin: 10px 0; }

.words { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.wcard { border-radius: 20px; padding: 14px 14px 10px; display: flex; flex-direction: column; justify-content: space-between; min-height: 120px; }
.wcard--0 { background: var(--pink-l); } .wcard--1 { background: var(--mint-l); } .wcard--2 { background: #FFF4EB; }
.wcard p { margin: 0 0 8px; font-size: 13.5px; line-height: 1.75; font-weight: 700; }
.wcard small { font-size: 10px; color: var(--ink-2); }
.empty { text-align: center; padding: 40px 10px; color: var(--ink-2); font-size: 13px; line-height: 1.8; }

/* =========================================================
   ひろば
   ========================================================= */
.together { text-align: center; background: linear-gradient(160deg, #FDEEF1, #E9F7F6); box-shadow: none; }
.together__art { display: flex; justify-content: center; }
.together__k { margin: 4px 0 0; font-size: 12px; color: var(--ink-2); font-weight: 700; }
.together__n { margin: 0; font-size: 14px; }
.together__n b { font-size: 40px; color: var(--pink-dd); letter-spacing: .02em; }
.together__row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }
.together__row div { background: rgba(255, 255, 255, .8); border-radius: 16px; padding: 10px 4px; }
.together__row b { font-size: 20px; color: var(--mint-dd); }
.together__row small { font-size: 11px; }
.together__row span { display: block; font-size: 10.5px; color: var(--ink-2); }
.pstat { display: grid; grid-template-columns: 7.5em 1fr 3em; gap: 10px; align-items: center; font-size: 12.5px; margin: 8px 0; }
.pstat__b { height: 10px; background: #F1F5F5; border-radius: 9px; overflow: hidden; }
.pstat__b i { display: block; height: 100%; background: var(--mint); border-radius: 9px; }
.pstat b { text-align: right; color: var(--mint-dd); }
.chips--yell .chip { background: var(--pink-l); color: var(--pink-dd); font-weight: 700; }
.yell-sent { display: flex; align-items: center; gap: 8px; margin: 0; font-size: 13px; color: var(--pink-dd); background: var(--pink-l); padding: 12px; border-radius: 16px; }
.yell { display: flex; gap: 10px; align-items: center; padding: 10px 0; border-bottom: 1px dashed rgba(111, 195, 200, .25); }
.yell:last-child { border-bottom: 0; }
.yell__av { width: 40px; height: 40px; border-radius: 50%; background: #F6F9F9; display: flex; align-items: center; justify-content: center; flex: none; }
.yell__b { flex: 1; min-width: 0; }
.yell__b small { font-size: 10.5px; color: var(--ink-2); }
.yell__b p { margin: 0; font-size: 14px; font-weight: 700; }
.yell--me .yell__av { background: var(--pink-l); }
.yell__h { display: flex; flex-direction: column; align-items: center; font-size: 17px; color: var(--ink-3); line-height: 1; padding: 4px; transition: color .2s, transform .2s; }
.yell__h small { font-size: 9.5px; margin-top: 2px; }
.yell__h.is-on { color: var(--pink-d); transform: scale(1.1); }

/* =========================================================
   はじめて
   ========================================================= */
.ob { padding: 10px 6px 20px; min-height: calc(var(--vh) - 60px); display: flex; flex-direction: column; }
.ob__dots { display: flex; gap: 6px; justify-content: center; margin: 6px 0 22px; }
.ob__dots i { width: 22px; height: 5px; border-radius: 9px; background: #E7EEEE; }
.ob__dots i.is-on { background: var(--pink); }
.ob__b { flex: 1; display: flex; flex-direction: column; }
.ob__hero { height: 210px; margin: 10px auto 4px; width: 100%; display: flex; align-items: flex-end; justify-content: center; border-radius: 40px; background: radial-gradient(circle at 50% 70%, #fff 0 34%, transparent 35%), linear-gradient(160deg, #FDEEF1, #E6F6F5); }
.ob__hero--sm { height: 170px; }
.ob__ch { width: 132px; animation: floaty 2.4s ease-in-out infinite; margin-bottom: 12px; }
.ob__ch .ch { width: 100%; height: auto; display: block; }
.ob__ch--jump { animation: hop 1.2s ease-in-out infinite; }
.ob__kicker { margin: 18px 0 0; text-align: center; font-size: 12.5px; letter-spacing: .24em; color: var(--mint-dd); font-weight: 700; }
.ob__t { margin: 4px 0 16px; text-align: center; font-size: 25px; line-height: 1.45; }
.ob__list { list-style: none; padding: 0; margin: 0 0 10px; }
.ob__list li { display: flex; align-items: center; gap: 12px; padding: 10px 14px; margin-bottom: 8px; background: #fff; border-radius: 18px; font-size: 13.5px; box-shadow: var(--shadow); }
.ob__list b { color: var(--pink-dd); }
.ob__q { margin: 12px 0 4px; font-size: 21px; }
.ob__h { margin: 0 0 18px; font-size: 13px; color: var(--ink-2); line-height: 1.8; }
.picks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.picks--col { grid-template-columns: 1fr; }
.pick { display: flex; align-items: center; gap: 12px; padding: 18px 16px; border-radius: 20px; background: #fff; box-shadow: var(--shadow); text-align: left; transition: background .2s, transform .15s; }
.pick:active { transform: scale(.97); }
.pick__i { width: 50px; height: 50px; border-radius: 50%; background: var(--mint-l); display: flex; align-items: center; justify-content: center; flex: none; }
.pick__l { font-size: 16px; font-weight: 700; display: flex; flex-direction: column; }
.pick__l small { font-size: 11.5px; color: var(--ink-2); font-weight: 500; }
.pick.is-on { background: var(--pink-l); box-shadow: inset 0 0 0 2px var(--pink); }

@media (max-height: 700px) {
  .home { --dockH: 108px; }
  .tip { display: none; }
  .field { top: 44%; }
}
.clear--calm .btn--pink { background: var(--mint-d); box-shadow: none; }
.tapfx { position: fixed; z-index: 95; pointer-events: none; transform-origin: 50% 50%; }
