@charset "UTF-8";

/* =========================================================
   みんなのサブスク / main.css
   ---------------------------------------------------------
   デザイントークン → ベース → 部品 → セクション → 応答
   ========================================================= */

:root {
  --ink:        #101010;
  --ink-soft:   #5a5a5a;
  --paper:      #ffffff;
  --rule:       #dcdcd8;
  --wash:       #f4f4f1;
  --mark:       #ffd400;

  --gutter: 24px;
  --measure: 34rem;

  --step--1: clamp(0.8125rem, 0.79rem + 0.11vw, 0.875rem);
  --step-0:  clamp(0.9375rem, 0.91rem + 0.14vw, 1rem);
  --step-1:  clamp(1.0625rem, 1rem + 0.3vw, 1.25rem);
  --step-2:  clamp(1.25rem, 1.12rem + 0.65vw, 1.75rem);
  --step-3:  clamp(1.625rem, 1.35rem + 1.35vw, 2.75rem);
  --step-4:  clamp(2.125rem, 1.5rem + 3.1vw, 4.5rem);
  --step-5:  clamp(2.5rem, 1.4rem + 5.5vw, 6.5rem);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- reset ---------- */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: var(--step-0);
  line-height: 1.9;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }

ul, ol { margin: 0; padding: 0; list-style: none; }

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
}
.band--dark :focus-visible,
.hero :focus-visible,
.drawer :focus-visible,
.colophon :focus-visible,
.dock :focus-visible { outline-color: var(--mark); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- 骨格 ---------- */

.wrap {
  width: min(100% - (var(--gutter) * 2), 1180px);
  margin-inline: auto;
}
.wrap--narrow { width: min(100% - (var(--gutter) * 2), 760px); }

.band { padding-block: clamp(64px, 11vw, 132px); }
.band--dark { background: var(--ink); color: #fff; }
.band--wash { background: var(--wash); }
.band--tight { padding-block: clamp(48px, 7vw, 88px); }

/* セクション見出し。英語ラベルは意味の分類として使い、装飾では使わない */
.lede {
  display: flex;
  align-items: baseline;
  gap: 14px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 14px;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.band--dark .lede { border-color: rgba(255,255,255,.22); }

.lede__en {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: var(--step--1);
  letter-spacing: .1em;
  color: var(--ink-soft);
  flex: none;
}
.band--dark .lede__en { color: rgba(255,255,255,.6); }

.lede__ja {
  font-size: var(--step-2);
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.4;
}

/* ---------- ボタン ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 30px;
  font-weight: 700;
  font-size: var(--step-0);
  text-decoration: none;
  border: 2px solid transparent;
  transition: background-color .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.btn--fill { background: var(--mark); color: var(--ink); border-color: var(--mark); }
.btn--fill:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--line { border-color: currentColor; }
.btn--line:hover { background: currentColor; }
.btn--line:hover span { color: var(--ink); }
.band--dark .btn--line:hover span { color: var(--ink); }

/* ---------- ヘッダー ---------- */

.masthead {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px var(--gutter);
  color: #fff;
  transition: background-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.masthead.is-stuck,
body:not(.home) .masthead {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--rule);
}

/* トップ以外は下部バーを最初から出す（画面が短くて出ないのを防ぐ） */
body:not(.home) .dock { transform: none; }

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand__mark { height: 34px; width: auto; }
.brand__text { font-weight: 900; font-size: var(--step-0); letter-spacing: .02em; }

.nav { display: none; }
.nav ul { display: flex; gap: 26px; align-items: center; }
.nav a { text-decoration: none; font-weight: 500; font-size: var(--step--1); }
.nav a:hover { text-decoration: underline; text-underline-offset: 5px; }

.masthead__cta { display: none; }

.burger {
  width: 46px; height: 46px;
  display: grid; place-content: center; gap: 6px;
  border: 1px solid currentColor;
}
.burger span { display: block; width: 20px; height: 2px; background: currentColor; }

/* モバイルメニュー */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 90px var(--gutter) 40px;
  display: none;
  overflow-y: auto;
}
.drawer.is-open { display: block; }
.drawer ul { display: grid; gap: 4px; }
.drawer a {
  display: block;
  text-decoration: none;
  font-size: var(--step-2);
  font-weight: 700;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.drawer__close {
  position: absolute;
  top: 18px; right: var(--gutter);
  width: 46px; height: 46px;
  border: 1px solid rgba(255,255,255,.5);
  font-size: 22px;
}
.drawer__foot { margin-top: 32px; display: grid; gap: 12px; }

/* ---------- HERO ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 38%, rgba(0,0,0,.82) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: 120px 108px;
}
.phrase { display: inline-block; }

.hero__title {
  font-size: var(--step-5);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.hero__sub {
  margin-top: 22px;
  font-size: var(--step-2);
  font-weight: 700;
  line-height: 1.6;
}
.hero__lead {
  margin-top: 18px;
  max-width: 30rem;
  color: rgba(255,255,255,.82);
  font-size: var(--step-0);
  line-height: 1.85;
}
.hero__actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
/* ボタンの下に置く一文。押す前に読ませたい条件を書く場所 */
.cta-note {
  margin-top: 14px;
  font-size: var(--step--1);
  font-weight: 500;
  color: var(--ink-soft);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.cta-note::before {
  content: "";
  flex: none;
  width: 14px;
  height: 2px;
  background: var(--mark);
  transform: translateY(-4px);
}
.hero .cta-note,
.band--dark .cta-note,
.drawer .cta-note { color: rgba(255,255,255,.78); }

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 0;
  z-index: 1;
  width: 1px;
  height: 76px;
  background: rgba(255,255,255,.35);
  overflow: hidden;
}
.hero__scroll::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 40%;
  background: var(--mark);
  animation: rail 2.4s var(--ease) infinite;
}
@keyframes rail {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(250%); }
}

/* 読み込み時の一度きりの演出 */
.hero__title, .hero__sub, .hero__lead, .hero__actions { animation: rise .9s var(--ease) both; }
.hero__sub { animation-delay: .1s; }
.hero__lead { animation-delay: .18s; }
.hero__actions { animation-delay: .26s; }
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

/* ---------- 時間割（このサイトの中心的な図） ---------- */

.timetable {
  border: 2px solid var(--ink);
  background: var(--paper);
}
.tt__row {
  display: grid;
  grid-template-columns: 7rem 1fr;
  border-bottom: 1px solid var(--rule);
}
.tt__row:last-child { border-bottom: 0; }
.tt__key {
  padding: 18px 10px;
  border-right: 1px solid var(--rule);
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 0.6875rem;
  letter-spacing: .06em;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
}
.tt__val {
  padding: 16px 16px;
  font-size: var(--step-1);
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}
/* 消し込み。装飾ではなく「やめた」という事実の表示 */
.tt__struck {
  position: relative;
  color: var(--ink-soft);
}
.tt__struck::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px;
  top: 52%;
  height: 3px;
  background: var(--ink);
}
.tt__answer {
  font-family: "Archivo", "Zen Kaku Gothic New", sans-serif;
  font-weight: 800;
  font-size: var(--step--1);
  letter-spacing: .04em;
  padding: 3px 10px;
  background: var(--wash);
  color: var(--ink-soft);
  white-space: nowrap;
}
.tt__row--rule { background: var(--ink); color: #fff; }
.tt__row--rule .tt__key { border-right-color: rgba(255,255,255,.25); color: rgba(255,255,255,.6); }
.tt__row--rule .tt__val {
  font-size: var(--step-2);
  font-weight: 900;
}
.tt__row--rule .tt__val em {
  font-style: normal;
  background: var(--mark);
  color: var(--ink);
  padding: 2px 10px;
}

.after-table {
  margin-top: 28px;
  max-width: var(--measure);
  color: var(--ink-soft);
}
.after-table strong { color: var(--ink); }

/* ---------- ある日のサブスク ---------- */

.day { position: relative; }
.day__list { position: relative; margin-left: 6px; }
.day__list::before {
  content: "";
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 1px;
  background: var(--rule);
}
.day__item {
  position: relative;
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 8px;
  padding: 14px 0 14px 22px;
}
.day__item::before {
  content: "";
  position: absolute;
  left: -3px;
  top: 25px;
  width: 7px; height: 7px;
  background: var(--ink);
  border-radius: 50%;
}
.day__time {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: var(--step-0);
  letter-spacing: .02em;
}
.day__what { font-size: var(--step-1); font-weight: 500; }
.day__note {
  margin-top: 30px;
  padding-left: 22px;
  font-size: var(--step-1);
  font-weight: 700;
}

/* 唯一の連続演出。時間が流れる内容なので順に現れる */
.js .day__item { opacity: 0; transform: translateY(14px); }
.js .day__item.is-in {
  opacity: 1;
  transform: none;
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}

/* ---------- できること ---------- */

.does { display: grid; gap: 2px; background: var(--rule); }
.doe {
  background: var(--paper);
  padding: 28px 24px 32px;
  display: grid;
  gap: 10px;
  align-content: start;
}
.doe__en {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: var(--step--1);
  letter-spacing: .1em;
  color: var(--ink-soft);
}
.doe__ja { font-size: var(--step-2); font-weight: 800; line-height: 1.35; }
.doe__body { color: var(--ink-soft); font-size: var(--step-0); }

/* ---------- 日常の写真 ---------- */

.moments { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.moment figure { margin: 0; }
.moment img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.moment--wide { grid-column: span 2; }
.moment--wide img { aspect-ratio: 16 / 9; }
.moment figcaption {
  margin-top: 8px;
  font-size: var(--step--1);
  font-weight: 700;
}

/* ---------- プロジェクト ---------- */

.projects { display: grid; gap: 28px; }
.project {
  display: grid;
  gap: 18px;
  text-decoration: none;
  color: inherit;
}
.project__media { overflow: hidden; background: #222; }
.project__media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.project:hover .project__media img { transform: scale(1.03); }
.project__title { font-size: var(--step-2); font-weight: 800; line-height: 1.4; }
.project__body { color: rgba(255,255,255,.72); }
.project__more {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: var(--step--1);
  letter-spacing: .06em;
  border-bottom: 2px solid var(--mark);
  padding-bottom: 3px;
  justify-self: start;
}

/* ---------- 施設 ---------- */

.space { display: grid; gap: 40px; }
.space__shot img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.space__cap {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 16px;
  border-top: 1px solid var(--rule);
  padding-top: 12px;
}
.space__name { font-size: var(--step-1); font-weight: 800; }
.space__seats {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  color: var(--ink-soft);
  font-size: var(--step--1);
}
.facts {
  margin-top: 8px;
  display: grid;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.fact {
  background: var(--paper);
  padding: 16px 18px;
  display: grid;
  gap: 2px;
}
.fact__k { font-size: var(--step--1); color: var(--ink-soft); }
.fact__v { font-size: var(--step-1); font-weight: 700; }

/* ---------- 代表 ---------- */

.philo { display: grid; gap: 32px; }
.philo__portrait img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.philo__head {
  font-size: var(--step-3);
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 24px;
  text-wrap: balance;
}
.philo__body { display: grid; gap: 18px; color: var(--ink-soft); max-width: var(--measure); }
.philo__body strong { color: var(--ink); font-weight: 700; }
.philo__sign {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.philo__role { font-size: var(--step--1); color: var(--ink-soft); }
.philo__name { font-size: var(--step-1); font-weight: 800; }

/* ---------- 料金 ---------- */

/* 幅の狭い画面では表を積み上げ、広い画面では表として読ませる */
.rate { width: 100%; border-collapse: collapse; }
.rate thead { display: none; }
.rate tr {
  display: block;
  border: 2px solid var(--ink);
  margin-bottom: 14px;
  padding: 18px 20px 20px;
}
.rate th[scope="row"] {
  display: block;
  text-align: left;
  font-size: var(--step-2);
  font-weight: 800;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}
.rate td {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 6px 0;
}
.rate td::before {
  content: attr(data-label);
  font-size: var(--step--1);
  color: var(--ink-soft);
  font-weight: 500;
}
.rate__num {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: var(--step-2);
  line-height: 1;
}
.rate__yen { font-size: var(--step--1); font-weight: 700; margin-left: 3px; }
.rate__off {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: var(--step-1);
  background: var(--mark);
  padding: 2px 10px;
}
.rate__none { color: var(--ink-soft); }

.rate__cols {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: var(--step--1);
  max-width: var(--measure);
}

/* 冷暖房費 */
.extras { margin-top: 40px; }
.extras__head {
  font-size: var(--step-1);
  font-weight: 800;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 0;
}
.extras__grid { display: grid; gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-top: 0; }
.extra {
  background: var(--paper);
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.extra__k { font-size: var(--step--1); color: var(--ink-soft); }
.extra__v { font-family: "Archivo", sans-serif; font-weight: 800; font-size: var(--step-1); }

/* 決まりごと */
.terms {
  margin-top: 40px;
  display: grid;
  gap: 12px;
  max-width: var(--measure);
}
.terms li {
  position: relative;
  padding-left: 20px;
  font-size: var(--step--1);
  line-height: 1.85;
  color: var(--ink-soft);
}
.terms li::before {
  content: "";
  position: absolute;
  left: 0; top: .8em;
  width: 10px; height: 2px;
  background: var(--rule);
}

.plan-note {
  margin-top: 32px;
  padding: 18px 20px;
  background: var(--wash);
  border-left: 4px solid var(--mark);
  font-weight: 500;
}

/* ---------- FAQ ---------- */

.faqs { border-top: 1px solid var(--rule); }
.faq { border-bottom: 1px solid var(--rule); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  position: relative;
  font-size: var(--step-1);
  font-weight: 700;
  line-height: 1.6;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 8px; top: 50%;
  margin-top: -1px;
  width: 14px; height: 2px;
  background: var(--ink);
  transition: transform .22s var(--ease);
}
.faq summary::before {
  content: "";
  position: absolute;
  right: 14px; top: 50%;
  margin-top: -6px;
  width: 2px; height: 14px;
  background: var(--ink);
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.faq[open] summary::before { opacity: 0; transform: rotate(90deg); }
.faq__a {
  padding: 0 0 26px;
  color: var(--ink-soft);
  max-width: var(--measure);
}

/* ---------- 連絡 ---------- */

.contact__head {
  font-size: var(--step-4);
  font-weight: 900;
  line-height: 1.2;
  text-wrap: balance;
}
.contact__sub { margin-top: 16px; color: rgba(255,255,255,.72); max-width: var(--measure); }
.contact__grid { display: grid; gap: 40px; margin-top: 44px; }
.contact__row { display: grid; gap: 22px; }
.contact__block {
  border-top: 1px solid rgba(255,255,255,.22);
  padding-top: 16px;
  display: grid;
  gap: 6px;
}
.contact__k {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: var(--step--1);
  letter-spacing: .08em;
  color: rgba(255,255,255,.6);
}
.contact__v { font-size: var(--step-1); font-weight: 700; line-height: 1.7; }
.contact__tel {
  font-family: "Archivo", sans-serif;
  font-size: var(--step-3);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: .01em;
}
.map { border: 0; width: 100%; aspect-ratio: 4 / 3; filter: grayscale(1) contrast(1.05); }

/* 公式LINE。見学申込の唯一の入口なので、連絡先の中で最も強く出す */
.line {
  border: 1px solid rgba(255,255,255,.28);
  padding: 26px 24px 28px;
}
.line__note {
  color: rgba(255,255,255,.82);
  max-width: var(--measure);
  margin-bottom: 22px;
}
.line__btn { width: 100%; }
.line__todo {
  background: var(--mark);
  color: var(--ink);
  padding: 14px 16px;
  font-weight: 700;
  font-size: var(--step--1);
  line-height: 1.7;
}

/* ---------- フッター ---------- */

.colophon {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 48px var(--gutter) calc(48px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255,255,255,.16);
}
.colophon a { text-decoration: none; }
.colophon a:hover { text-decoration: underline; text-underline-offset: 4px; }
.colophon__grid { display: grid; gap: 30px; width: min(100%, 1180px); margin-inline: auto; }
.colophon__nav { display: grid; gap: 10px; }
.colophon__legal {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.16);
  font-size: var(--step--1);
  width: min(100%, 1180px);
  margin-inline: auto;
}

/* ---------- モバイル固定バー ---------- */

.dock {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr auto;
  background: var(--ink);
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(110%);
  transition: transform .3s var(--ease);
}
.dock.is-up { transform: none; }
.dock a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  text-decoration: none;
  font-weight: 800;
  font-size: var(--step-0);
}
.dock__main { background: var(--mark); color: var(--ink); }
.dock__tel { color: #fff; padding-inline: 22px; border-left: 1px solid rgba(255,255,255,.2); }
body.has-dock { padding-bottom: 58px; }

/* ---------- 下層ページ ---------- */

.page-head { padding: 132px 0 clamp(36px, 6vw, 64px); border-bottom: 1px solid var(--rule); }
.page-head h1 { font-size: var(--step-4); font-weight: 900; line-height: 1.2; }
.page-head__en {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: var(--step--1);
  letter-spacing: .1em;
  color: var(--ink-soft);
  margin-bottom: 10px;
}

.prose { max-width: var(--measure); }
.prose > * + * { margin-top: 1.5em; }
.prose h2 { font-size: var(--step-2); font-weight: 800; line-height: 1.5; margin-top: 2.4em; }
.prose h3 { font-size: var(--step-1); font-weight: 800; margin-top: 2em; }
.prose img { margin-block: 1.8em; }
.prose a { text-underline-offset: 4px; }
.prose ul { list-style: disc; padding-left: 1.4em; }
.prose ol { list-style: decimal; padding-left: 1.4em; }
.prose li + li { margin-top: .5em; }
.prose blockquote {
  border-left: 4px solid var(--mark);
  padding-left: 20px;
  color: var(--ink-soft);
}

.backlink {
  margin-top: 56px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--mark);
  padding-bottom: 3px;
}

/* 一覧 */
.cards { display: grid; gap: 30px; }
.card { text-decoration: none; color: inherit; display: grid; gap: 14px; }
.card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.card__title { font-size: var(--step-1); font-weight: 800; line-height: 1.5; }
.card__meta { font-size: var(--step--1); color: var(--ink-soft); }

.pager { margin-top: 48px; display: flex; gap: 10px; flex-wrap: wrap; }
.pager .page-numbers {
  min-width: 46px; min-height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--rule);
  text-decoration: none;
  font-weight: 700;
}
.pager .current { background: var(--ink); color: #fff; border-color: var(--ink); }

/* 写真がまだ無い場所の代替表示 */
.ph {
  width: 100%;
  background:
    repeating-linear-gradient(135deg, #e9e9e5 0 12px, #f2f2ee 12px 24px);
  display: grid;
  place-content: center;
  color: #9a9a92;
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
  padding: 20px;
}
.band--dark .ph { background: repeating-linear-gradient(135deg, #262626 0 12px, #2e2e2e 12px 24px); color: #7e7e7e; }
.ph--hero { position: absolute; inset: 0; height: 100%; }
.ph--32 { aspect-ratio: 3 / 2; }
.ph--169 { aspect-ratio: 16 / 9; }
.ph--45 { aspect-ratio: 4 / 5; }

/* =========================================================
   応答（モバイル優先で書き、必要になった幅から広げる）
   ========================================================= */

@media (min-width: 600px) {
  :root { --gutter: 32px; }
  .moments { grid-template-columns: repeat(3, 1fr); }
  .moment--wide { grid-column: span 2; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .extras__grid { grid-template-columns: repeat(2, 1fr); }

  .rate { border: 2px solid var(--ink); }
  .rate thead { display: table-header-group; }
  .rate tr { display: table-row; border: 0; margin: 0; padding: 0; }
  .rate thead th {
    background: var(--ink);
    color: #fff;
    text-align: left;
    padding: 14px 18px;
    font-size: var(--step--1);
    font-weight: 700;
    letter-spacing: .02em;
  }
  .rate tbody tr { border-bottom: 1px solid var(--rule); }
  .rate tbody tr:last-child { border-bottom: 0; }
  .rate th[scope="row"] {
    display: table-cell;
    font-size: var(--step-0);
    font-weight: 700;
    padding: 16px 18px;
    margin: 0;
    border-bottom: 0;
    border-right: 1px solid var(--rule);
    white-space: nowrap;
  }
  .rate td { display: table-cell; padding: 16px 18px; text-align: right; }
  .rate td::before { display: none; }
  .rate__num { font-size: var(--step-1); }
  .contact__row { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 860px) {
  .does { grid-template-columns: repeat(3, 1fr); }
  .extras__grid { grid-template-columns: repeat(2, 1fr); max-width: 620px; }
  .facts { grid-template-columns: repeat(4, 1fr); }
  .projects { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .philo { grid-template-columns: 5fr 7fr; gap: 48px; align-items: start; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .contact__grid { grid-template-columns: 1fr 1fr; gap: 56px; }
  .line__btn { width: auto; }
  .colophon__grid { grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
  .tt__row { grid-template-columns: 8rem 1fr; }
  .tt__key { font-size: var(--step--1); padding-inline: 16px; }
  .tt__val { padding: 18px 22px; }
  .day__item { grid-template-columns: 8rem 1fr; }
}

@media (min-width: 1000px) {
  .nav { display: block; }
  .masthead__cta { display: inline-flex; }
  .burger { display: none; }
  .masthead { padding-inline: 40px; }
  .dock { display: none; }
  body.has-dock { padding-bottom: 0; }
  .hero__title { max-width: 16em; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .day__item { opacity: 1; transform: none; }
  .hero__scroll::after { display: none; }
}

@media print {
  .masthead, .dock, .hero__scroll, .drawer { display: none !important; }
  body { color: #000; }
}
