/* ==========================================================================
   base.css — 構造。色と書体はテーマ側が担当します。
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

/* 画面遷移のたびに先頭へアニメーションされると落ち着かないので、
   スムーススクロールはページ内リンクを踏んだときだけにします。 */
html { -webkit-text-size-adjust: 100%; }
html:focus-within { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: var(--body-leading);
  font-feature-settings: "palt" 1;
}

img { max-width: 100%; display: block; }
[hidden] { display: none !important; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  line-height: var(--heading-leading);
  letter-spacing: var(--display-tracking);
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1em; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

button, input, select, textarea { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 99;
  background: var(--ink); color: var(--paper);
  padding: var(--sp-3) var(--sp-4); text-decoration: none;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}

/* --- アプリバー ---------------------------------------------------------- */

.appbar {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; gap: var(--sp-5);
  padding: var(--sp-3) var(--page-pad);
  background: var(--paper);
  border-bottom: var(--border-w) solid var(--line-strong);
}

.appbar__logo {
  display: flex; align-items: center; gap: var(--sp-2);
  text-decoration: none; font-family: var(--font-display);
  font-weight: var(--display-weight); font-size: 20px;
  white-space: nowrap;
}

.appbar__mark {
  width: 26px; height: 26px; flex: none;
  background: var(--accent);
  border-radius: var(--radius-sm);
  position: relative;
}
.appbar__mark::after {
  content: ""; position: absolute; inset: 7px 6px auto 6px; height: 3px;
  background: var(--accent-ink);
  box-shadow: 0 6px 0 var(--accent-ink);
}

.appbar__nav { display: flex; gap: var(--sp-4); margin-inline-end: auto; }

.appbar__nav a {
  text-decoration: none; padding: var(--sp-1) 0;
  border-bottom: 3px solid transparent;
  color: var(--ink-soft); font-weight: 700; font-size: 15px;
}
.appbar__nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--accent); }
.appbar__nav a:hover { color: var(--ink); }

.appbar__side { display: flex; align-items: center; gap: var(--sp-3); }

.modeswitch {
  display: inline-flex; align-items: baseline; gap: var(--sp-2);
  background: transparent; cursor: pointer;
  border: var(--border-w) solid var(--line-strong);
  border-radius: var(--radius-pill);
  padding: 6px var(--sp-4);
}
.modeswitch__label { font-size: 11px; color: var(--ink-faint); }
.modeswitch__value { font-family: var(--font-display); font-weight: 700; font-size: 14px; }
.modeswitch:hover { background: var(--accent-wash); }

.appbar__account {
  font-size: 14px; font-weight: 700; text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}

@media (max-width: 720px) {
  .appbar { flex-wrap: wrap; gap: var(--sp-3); }
  .appbar__nav { order: 3; width: 100%; margin: 0; justify-content: space-between; }
  .appbar__side { margin-inline-start: auto; }
  .appbar__nav a { font-size: 14px; }
}

/* --- ページ骨格 ---------------------------------------------------------- */

.main { flex: 1 0 auto; }

.page {
  max-width: var(--page-max);
  margin-inline: auto;
  padding: var(--sp-7) var(--page-pad) var(--sp-8);
}
.page--narrow { max-width: 720px; }
.page--wide { max-width: 1180px; }

.pagehead { margin-bottom: var(--sp-6); }
.pagehead h1 { font-size: clamp(28px, 5vw, 40px); }
.pagehead p { margin-top: var(--sp-3); color: var(--ink-soft); }

.section { margin-top: var(--sp-7); }
.section > h2 { font-size: clamp(20px, 3vw, 26px); margin-bottom: var(--sp-4); }
.section__lead { color: var(--ink-soft); margin-bottom: var(--sp-5); }

.appfoot {
  padding: var(--sp-6) var(--page-pad);
  border-top: var(--border-w) solid var(--line-strong);
  font-size: 13px; color: var(--ink-soft);
}
.appfoot p { max-width: none; margin: 0; }
.appfoot__meta { margin-top: var(--sp-2); color: var(--ink-faint); }

/* --- ボタン -------------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-5);
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  border: var(--border-w) solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: var(--card); color: var(--ink);
  text-decoration: none; cursor: pointer;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.btn:hover { background: var(--accent-wash); }
.btn:active { transform: translateY(1px); }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .45; pointer-events: none; }

.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--primary:hover { background: var(--accent); filter: brightness(1.08); }
.btn--lg { padding: var(--sp-4) var(--sp-6); font-size: 17px; }
.btn--sm { padding: 6px var(--sp-4); font-size: 13px; }
.btn--quiet { border-color: transparent; background: transparent; }
.btn--quiet:hover { background: var(--accent-wash); }
.btn--danger { color: var(--alert); }

.btnrow { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; }

/* --- カード -------------------------------------------------------------- */

.card {
  background: var(--card);
  border: var(--border-w) solid var(--line-strong);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
}

.grid { display: grid; gap: var(--sp-4); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

/* --- フォーム ------------------------------------------------------------ */

.field { margin-bottom: var(--sp-5); }
/* .switchrow も .field の直下に来るので、見出し用の label 指定から外します。
   ここを外し忘れると display:block が勝ってチェックボックスが縦積みになります。 */
.field > label:not(.switchrow), .field__legend {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: 15px; margin-bottom: var(--sp-2);
}
.field__hint { font-size: 13px; color: var(--ink-soft); margin: 0 0 var(--sp-3); }

.input, .select, .textarea {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  background: var(--card);
  border: var(--border-w) solid var(--line);
  border-radius: var(--radius-sm);
}
.input:focus, .select:focus, .textarea:focus { border-color: var(--accent); }
.textarea { min-height: 96px; resize: vertical; }

fieldset { border: 0; padding: 0; margin: 0 0 var(--sp-5); }

.chips { display: flex; flex-wrap: wrap; gap: var(--sp-2); }

.chip {
  position: relative;
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  border: var(--border-w) solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--card);
  cursor: pointer; font-size: 14px; font-weight: 500;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chip:hover { border-color: var(--accent); }
.chip:has(input:checked) {
  background: var(--accent); color: var(--accent-ink); border-color: var(--accent);
}
.chip:has(input:focus-visible) { outline: 3px solid var(--accent); outline-offset: 3px; }

.optioncards { display: grid; gap: var(--sp-3); grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }

.optioncard {
  position: relative;
  display: flex; flex-direction: column; gap: 2px;
  padding: var(--sp-4);
  border: var(--border-w) solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card); cursor: pointer;
}
.optioncard input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.optioncard b { font-family: var(--font-display); font-size: 15px; }
.optioncard span { font-size: 12.5px; color: var(--ink-soft); line-height: 1.6; }
.optioncard:hover { border-color: var(--accent); }
.optioncard:has(input:checked) { border-color: var(--accent); background: var(--accent-wash); }
.optioncard:has(input:focus-visible) { outline: 3px solid var(--accent); outline-offset: 3px; }

.switchrow {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  padding: var(--sp-3) 0;
  border-top: 1px solid var(--line);
}
.switchrow:last-of-type { border-bottom: 1px solid var(--line); }
.switchrow input { margin-top: 6px; width: 18px; height: 18px; accent-color: var(--accent); flex: none; }
.switchrow div { font-size: 14px; }
.switchrow small { display: block; color: var(--ink-soft); font-size: 12.5px; }

/* --- ステップ表示 -------------------------------------------------------- */

.steps { display: flex; gap: var(--sp-2); margin: 0 0 var(--sp-6); padding: 0; }
.steps li {
  flex: 1; list-style: none; font-size: 12px; color: var(--ink-faint);
  padding-top: var(--sp-2); border-top: 4px solid var(--line);
}
.steps li[data-state="done"] { border-top-color: var(--accent); color: var(--ink-soft); }
.steps li[data-state="current"] { border-top-color: var(--accent); color: var(--ink); font-weight: 700; }

/* --- 提案カード ---------------------------------------------------------- */

.suggestion {
  display: flex; flex-direction: column; gap: var(--sp-3);
  background: var(--card);
  border: var(--border-w) solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
}
.suggestion__top { display: flex; justify-content: space-between; align-items: flex-start; gap: var(--sp-3); }
.suggestion__place { font-size: 24px; }
.suggestion__where { font-size: 13px; color: var(--ink-soft); margin: 0; }
.suggestion__score {
  flex: none; font-family: var(--font-display); font-size: 13px; font-weight: 700;
  padding: 4px var(--sp-3); border-radius: var(--radius-pill);
  background: var(--highlight); color: var(--ink);
}
.suggestion__why { font-size: 14.5px; }
.suggestion__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 12px; padding: 3px var(--sp-3);
  border: 1px solid var(--line); border-radius: var(--radius-pill);
  color: var(--ink-soft);
}
/* 日帰りできるかどうかは、雰囲気タグと同列ではないので前に出します。 */
.tag--strong {
  border-color: var(--positive); color: var(--positive); font-weight: 700;
}
.suggestion__cost {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: var(--sp-3); border-top: 1px solid var(--line); font-size: 13px;
}
.suggestion__cost b { font-family: var(--font-display); font-size: 19px; }
.suggestion footer { margin-top: auto; padding-top: var(--sp-3); }

/* --- 旅程 ---------------------------------------------------------------- */

.dayblock { border-top: var(--border-w) solid var(--line-strong); padding: var(--sp-5) 0; }
.dayblock:last-child { border-bottom: var(--border-w) solid var(--line-strong); }
.dayblock__head { display: flex; align-items: baseline; gap: var(--sp-3); margin-bottom: var(--sp-2); flex-wrap: wrap; }
.dayblock__n {
  font-family: var(--font-display); font-size: 13px; padding: 2px var(--sp-3);
  border-radius: var(--radius-pill); background: var(--accent); color: var(--accent-ink);
}
.dayblock__title { font-size: 19px; }
.dayblock__note { font-size: 13px; color: var(--ink-soft); margin: 0 0 var(--sp-4); }

.slot { display: grid; grid-template-columns: 84px 1fr; gap: var(--sp-4); padding: var(--sp-3) 0; }
.slot + .slot { border-top: 1px dashed var(--line); }
.slot__time { font-size: 13px; color: var(--ink-soft); font-variant-numeric: tabular-nums; padding-top: 3px; }
.slot__body b { display: block; font-family: var(--font-display); font-size: 15.5px; }
.slot__body p { font-size: 13.5px; color: var(--ink-soft); margin: 2px 0 0; }
.slot__meta { font-size: 12px; color: var(--ink-faint); margin-top: 4px; }

@media (max-width: 560px) {
  .slot { grid-template-columns: 1fr; gap: 2px; }
}

/* --- 旅程の地図 ---------------------------------------------------------- */

.mapbox { margin-bottom: var(--sp-6); }

.mapbox__head {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}
.mapbox__title { font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.mapbox__status { font-size: 12.5px; color: var(--ink-faint); margin-inline-start: auto; }

.mapbox__days { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-3); }
.mapbox__day {
  border: var(--border-w) solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--card); color: var(--ink);
  padding: 4px var(--sp-4); font-size: 13px; cursor: pointer;
}
.mapbox__day[aria-pressed="true"] {
  background: var(--accent); color: var(--accent-ink); border-color: var(--accent);
}
.mapbox__day:hover { border-color: var(--accent); }

.mapbox__canvas {
  height: 420px;
  border: var(--border-w) solid var(--line-strong);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--accent-wash);
}
@media (max-width: 560px) {
  .mapbox__canvas { height: 320px; }
}

.mapbox__foot {
  display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center;
  margin-top: var(--sp-3); font-size: 12.5px; color: var(--ink-soft);
}
.mapbox__missing { color: var(--ink-faint); }

/* 地点のしるし。Leaflet の divIcon の中身です。 */
.mapmark {
  display: flex; align-items: center; justify-content: center;
  min-width: 30px; height: 30px; padding-inline: 6px;
  border-radius: var(--radius-pill);
  white-space: nowrap; line-height: 1;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  background: var(--accent); color: var(--accent-ink);
  border: 2px solid var(--card);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .35);
}

.maproute { stroke: var(--accent); }

/* Leaflet の吹き出しを、アプリの書体と色に寄せます。 */
.leaflet-container { font-family: var(--font-body); }
.leaflet-popup-content { font-size: 13px; line-height: 1.7; margin: 12px 14px; }
.leaflet-popup-content b { font-family: var(--font-display); font-size: 14.5px; }
.leaflet-popup-content small { color: var(--ink-soft); }
.leaflet-popup-content a { color: var(--accent); font-weight: 700; }
.leaflet-control-attribution { font-size: 10px; }

/* --- チェックリスト ------------------------------------------------------ */

.checklist { list-style: none; margin: 0; padding: 0; }
.checkitem {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  padding: var(--sp-3) 0; border-bottom: 1px solid var(--line);
}
.checkitem input { margin-top: 5px; width: 18px; height: 18px; accent-color: var(--accent); flex: none; }
.checkitem label { flex: 1; font-size: 14.5px; cursor: pointer; }
.checkitem[data-done="true"] label { color: var(--ink-faint); text-decoration: line-through; }
.checkitem__cat { font-size: 11.5px; color: var(--ink-faint); }
.checkitem__del { border: 0; background: none; cursor: pointer; color: var(--ink-faint); font-size: 18px; line-height: 1; padding: 2px 6px; }
.checkitem__del:hover { color: var(--alert); }

.progressbar { height: 8px; background: var(--line); border-radius: var(--radius-pill); overflow: hidden; }
.progressbar > i { display: block; height: 100%; background: var(--positive); transition: width var(--dur) var(--ease); }

/* --- フレーズ ------------------------------------------------------------ */

.phraselist {
  display: grid; gap: 0 var(--sp-6);
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.phrase {
  display: grid; gap: 2px;
  padding: var(--sp-4) 0; border-bottom: 1px solid var(--line);
  align-content: start;
}
.phrase p { margin: 0; max-width: none; line-height: 1.5; }
.phrase__situation { font-size: 11.5px; color: var(--ink-faint); }
.phrase__ja { font-size: 13px; color: var(--ink-soft); }
.phrase__local { font-family: var(--font-display); font-size: 24px; line-height: 1.4; margin-top: 2px; }
.phrase__reading { font-size: 12.5px; color: var(--ink-soft); }
.phrase__actions { display: flex; gap: var(--sp-2); align-items: center; margin-top: var(--sp-3); }
.speakbtn {
  border: var(--border-w) solid var(--line); background: var(--card);
  border-radius: var(--radius-pill); padding: 4px var(--sp-3);
  font-size: 12.5px; cursor: pointer;
}
.speakbtn:hover { border-color: var(--accent); }
.speakbtn[data-playing="true"] { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }

/* --- 予約リンク ---------------------------------------------------------- */

.linklist { display: grid; gap: var(--sp-2); }
.linkrow {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  border: var(--border-w) solid var(--line);
  border-radius: var(--radius-sm);
  text-decoration: none;
}
.linkrow:hover { border-color: var(--accent); background: var(--accent-wash); }
.linkrow b { font-family: var(--font-display); font-size: 14.5px; }
.linkrow small { display: block; color: var(--ink-soft); font-size: 12px; }

/* --- タブ ---------------------------------------------------------------- */

.tabs {
  display: flex; gap: var(--sp-1);
  border-bottom: var(--border-w) solid var(--line-strong);
  margin-bottom: var(--sp-5);
  /* タブの margin-bottom: -2px が縦のはみ出しを作るので、y は切っておきます。 */
  overflow-x: auto; overflow-y: hidden;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  border: 0; background: none; cursor: pointer; white-space: nowrap;
  padding: var(--sp-3) var(--sp-4);
  font-family: var(--font-display); font-weight: 700; font-size: 14.5px;
  color: var(--ink-faint); border-bottom: 4px solid transparent; margin-bottom: -2px;
}
.tab[aria-selected="true"] { color: var(--ink); border-bottom-color: var(--accent); }
.tab:hover { color: var(--ink); }

/* 狭い画面ではタブ6つが横に収まるところまで詰めます（横スクロールは最後の手段）。 */
@media (max-width: 560px) {
  .tab { padding-inline: var(--sp-2); font-size: 13.5px; }
  .tabs { gap: 0; }
}

/* --- 状態表示 ------------------------------------------------------------ */

.empty {
  text-align: center; padding: var(--sp-8) var(--sp-4);
  border: var(--border-w) dashed var(--line); border-radius: var(--radius-md);
}
.empty h3 { font-size: 18px; margin-bottom: var(--sp-2); }
.empty p { color: var(--ink-soft); margin-inline: auto; font-size: 14px; max-width: 30em; }

.notice {
  padding: var(--sp-3) var(--sp-4); border-radius: var(--radius-sm);
  border: var(--border-w) solid var(--line); font-size: 13.5px;
  background: var(--card);
}
.notice--warn { border-color: var(--alert); }
.notice p { max-width: none; }
.notice a { font-weight: 700; }

.toast {
  position: fixed; left: 50%; bottom: var(--sp-5); transform: translateX(-50%);
  z-index: 90; max-width: min(90vw, 480px);
  padding: var(--sp-3) var(--sp-5);
  background: var(--ink); color: var(--paper);
  border-radius: var(--radius-pill); font-size: 14px;
  box-shadow: 0 6px 24px rgba(0,0,0,.22);
}

.loader { display: flex; flex-direction: column; align-items: center; gap: var(--sp-4); padding: var(--sp-8) 0; text-align: center; }
.loader__dots { display: flex; gap: var(--sp-2); }
.loader__dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); animation: bob 900ms var(--ease) infinite; }
.loader__dots i:nth-child(2) { animation-delay: 140ms; }
.loader__dots i:nth-child(3) { animation-delay: 280ms; }
@keyframes bob { 0%, 100% { transform: translateY(0); opacity: .45; } 50% { transform: translateY(-8px); opacity: 1; } }
.loader p { color: var(--ink-soft); font-size: 14px; }

/* --- 表・数値 ------------------------------------------------------------ */

.budget { width: 100%; border-collapse: collapse; font-size: 14px; }
.budget th, .budget td { text-align: left; padding: var(--sp-3) 0; border-bottom: 1px solid var(--line); }
.budget td:last-child, .budget th:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.budget tfoot td { border-bottom: 0; border-top: var(--border-w) solid var(--line-strong); font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.budget small { display: block; color: var(--ink-faint); font-size: 12px; font-weight: 400; font-family: var(--font-body); }

.statrow { display: flex; flex-wrap: wrap; gap: var(--sp-5); }
.stat { min-width: 110px; }
.stat b { display: block; font-family: var(--font-display); font-size: 22px; }
.stat span { font-size: 12px; color: var(--ink-soft); }

/* --- 旅カード一覧 -------------------------------------------------------- */

.tripcard {
  display: flex; flex-direction: column; gap: var(--sp-2);
  padding: var(--sp-5);
  border: var(--border-w) solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--card);
  text-decoration: none;
}
.tripcard:hover { background: var(--accent-wash); }
.tripcard h3 { font-size: 19px; }
.tripcard__meta { font-size: 13px; color: var(--ink-soft); }
.tripcard__bar { margin-top: var(--sp-2); }

/* --- ようこそ画面 -------------------------------------------------------- */

.welcome__inner { max-width: 940px; margin-inline: auto; padding: var(--sp-8) var(--page-pad) var(--sp-7); width: 100%; }
.welcome__logo { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 17px; margin-bottom: var(--sp-7); }
.welcome__title { font-size: clamp(38px, 8vw, 68px); line-height: 1.15; }
.welcome__sub { margin-top: var(--sp-5); font-size: clamp(15px, 2.2vw, 18px); color: var(--ink-soft); max-width: 26em; }
.welcome__ask { margin-top: var(--sp-8); font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.picker { display: grid; gap: var(--sp-4); grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); margin-top: var(--sp-4); }

/* この2枚は、選ぶ前にどちらの見た目かが分かるよう、
   カード自身に data-mode を持たせて、それぞれのモードの色と書体で描きます。
   そのため theme-*.css の一括ルールからは外してあり、ここで完結させています。 */
.pick {
  text-align: left; cursor: pointer;
  padding: var(--sp-6) var(--sp-5);
  display: flex; flex-direction: column; gap: var(--sp-3);
  transition: transform var(--dur) var(--ease);
  background: var(--card);
  color: var(--ink);
  border: 2px solid var(--line-strong);
}
.pick[data-mode="student"] {
  border-radius: 22px;
  box-shadow: 5px 5px 0 var(--line-strong);
}
.pick[data-mode="adult"] {
  border-radius: 3px;
  border-width: 1px;
  border-color: var(--accent);
  padding: var(--sp-7) var(--sp-6);
  box-shadow: none;
}
.pick .pick__go { color: var(--accent); }
.pick:hover { transform: translateY(-3px); }
.pick h2 { font-size: 26px; }
.pick p { font-size: 14px; margin: 0; }
.pick ul { margin: 0; padding-left: 1.1em; font-size: 13px; line-height: 1.9; }
.pick__go { margin-top: auto; font-family: var(--font-display); font-weight: 700; font-size: 14px; }

.welcome__foot { margin-top: var(--sp-6); font-size: 13px; color: var(--ink-faint); }

/* --- 学生/大人で出し分けるブロック --------------------------------------- */

[data-mode="student"] .only-adult { display: none !important; }
[data-mode="adult"] .only-student { display: none !important; }
