@charset "UTF-8";
/* =============================================================
   KURUMI ESTATE ─ common stylesheet
   Design direction: naikenboys.co.jp 系のレイアウト × ブランドカラー（クリーム×チャコール×アンバー）
   Accent      : #F0A31E ─ ロゴ「くるみ不動産」の文字色に統一
   Structure      : kurumi-estate.com 準拠（MV／特徴／メニュー／お知らせ／アクセス）
   ============================================================= */

/* -------------------------------------------------- 1. Tokens */
:root {
  /* color */
  --cream:      #FAF9EA;
  --cream-2:    #F3F1DE;
  --beige:      #E7E5CB;
  --line:       #CDCAA9;
  --accent:      #F0A31E;   /* ブランドのアンバー（ロゴの文字色） */
  --accent-deep: #D98A0C;
  /* 明るい面の「文字」に使う金色。--accent-deep は白の上で 2.77 しかなく、
     読めないため。塗りや線には --accent-deep を、文字にはこちらを使います。 */
  --accent-text: #8D5A08;
  --ink:        #141412;   /* 文字・線用（読みやすさ優先でそのまま） */
  --ink-surface:#302F27;   /* 面（反転セクションの背景）用。真っ黒より柔らかい暖色チャコール */
  --ink-2:      #55544B;
  --ink-3:      #66655D;
  --white:      #FFFFFF;

  /* ブランドカラー（ロゴ「くるみ不動産」より抽出） */
  --amber:      var(--accent);       /* ロゴの文字色＝サイトのアクセント */
  --amber-deep: var(--accent-deep);
  --walnut:     #A0713F;             /* くるみの殻 */
  --walnut-ink: #3B2E27;             /* ロゴの輪郭 */

  /* type */
  --f-jp: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
          "Yu Gothic", YuGothic, Meiryo, sans-serif;
  --f-en: "Archivo", "Helvetica Neue", Arial, var(--f-jp);

  /* layout */
  --header-h: 84px;
  --gutter: clamp(20px, 5vw, 40px);
  --wrap: 1200px;
  --sec-y: clamp(72px, 9vw, 140px);
  --r-pill: 999px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* -------------------------------------------------- 2. Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--f-jp);
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: .04em;
  overflow-wrap: anywhere;
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .3s var(--ease), color .3s var(--ease); }
a:hover { opacity: .65; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, dl, dd, figure, blockquote { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
table { border-collapse: collapse; width: 100%; }
:focus-visible { outline: 3px solid var(--accent-deep); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--accent); color: var(--ink); }

/* -------------------------------------------------- 3. Layout helpers */
[id] { scroll-margin-top: calc(var(--header-h) + 24px); }
.wrap { width: min(100% - var(--gutter) * 2, var(--wrap)); margin-inline: auto; }
.wrap--narrow { width: min(100% - var(--gutter) * 2, 880px); margin-inline: auto; }
.sec { padding-block: var(--sec-y); position: relative; }
.sec--ink { background: var(--ink-surface); color: var(--cream); }
/* グリッド段組ユーティリティ。インラインstyleで指定するとメディアクエリを上書きして
   スマホで1カラムに落ちなくなるため、PC幅限定のクラスとして定義する */
@media (min-width: 901px) {
  .cols-3 { grid-template-columns: repeat(3, 1fr); }
  .cols-4 { grid-template-columns: repeat(4, 1fr); }
  .about__grid--l { grid-template-columns: 1fr minmax(0, 460px); }
  .about__grid--r { grid-template-columns: minmax(0, 460px) 1fr; }
}
.sec--beige { background: var(--beige); }
.sec--white { background: var(--white); }
.only-sp { display: none; }
@media (max-width: 767px) { .only-sp { display: block; } .only-pc { display: none; } }

/* -------------------------------------------------- 4. Typography parts */
.eyebrow {
  font-family: var(--f-en);
  font-size: clamp(40px, 8vw, 84px);
  font-weight: 800;
  line-height: .95;
  letter-spacing: .01em;
  display: block;
}
.eyebrow--sm { font-size: clamp(30px, 5.6vw, 54px); }
.eyebrow__note {
  display: block;
  font-family: var(--f-en);
  font-size: clamp(11px, 1.4vw, 13px);
  font-weight: 700;
  letter-spacing: .22em;
  line-height: 1.8;
  margin-top: 14px;
  color: var(--ink-2);
}
.sec--ink .eyebrow__note,
.cta .eyebrow__note { color: rgba(250, 249, 234, .72); }
.headline {
  font-size: clamp(23px, 3.6vw, 38px);
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: .02em;
  margin-top: 22px;
}
.headline .mk {
  background: linear-gradient(transparent 62%, var(--accent) 62%, var(--accent) 94%, transparent 94%);
  padding-inline: 2px;
}
.lead { margin-top: 22px; font-size: clamp(14px, 1.6vw, 16px); line-height: 2.1; color: var(--ink-2); }
.sec--ink .lead,
.cta .lead { color: rgba(250, 249, 234, .86); }
.sec-head { margin-bottom: clamp(36px, 5vw, 64px); }
.sec-head--center { text-align: center; }

/* -------------------------------------------------- 5. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 62px;
  padding: 10px 22px 10px 30px;
  background: var(--beige);
  color: var(--ink); /* 親（ヒーロー等）の文字色を継承させない */
  border-radius: var(--r-pill);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.5;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.btn::after {
  content: "";
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--ink) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F0A31E' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h13M12 5l7 7-7 7'/%3E%3C/svg%3E") center / 17px no-repeat;
  transition: transform .3s var(--ease);
}
.btn:hover { opacity: 1; background: var(--accent); transform: translateY(-3px); }
.btn:hover::after { transform: translateX(4px); }
.btn--accent { background: var(--accent); }
.btn--accent:hover { background: var(--ink); color: var(--cream); }
.btn--accent:hover::after { background-color: var(--accent); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23141412' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h13M12 5l7 7-7 7'/%3E%3C/svg%3E"); }
.btn--ink { background: var(--ink); color: var(--cream); }
.btn--ink::after { background-color: var(--accent); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23141412' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h13M12 5l7 7-7 7'/%3E%3C/svg%3E"); }
.btn--ink:hover { background: var(--accent); color: var(--ink); }
/* 写真ヒーローの上で使う、コントラストを抑えた2種 */
.btn--cream { background: var(--cream); }
.btn--cream:hover { background: var(--accent); }
.btn--ghost {
  background: transparent;
  color: var(--cream);
  box-shadow: inset 0 0 0 1.5px rgba(250, 249, 234, .72);
  backdrop-filter: blur(2px);
}
.btn--ghost::after {
  background-color: rgba(250, 249, 234, .18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FAF9EA' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h13M12 5l7 7-7 7'/%3E%3C/svg%3E");
}
.btn--ghost:hover { background: var(--cream); color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--cream); }
.btn--ghost:hover::after { background-color: var(--ink); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F0A31E' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h13M12 5l7 7-7 7'/%3E%3C/svg%3E"); }

.btn--lg { min-height: 74px; font-size: clamp(16px, 2vw, 19px); padding-inline: 40px 26px; }
.btn--block { display: flex; width: 100%; justify-content: space-between; }

.more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  padding-block: 6px;
}
.more::after {
  content: "";
  width: 40px; height: 40px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23141412' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h13M12 5l7 7-7 7'/%3E%3C/svg%3E") center / 16px no-repeat;
  transition: background-color .3s var(--ease), transform .3s var(--ease);
}
.more:hover { opacity: 1; }
.more:hover::after { background-color: var(--accent); transform: translateX(5px); }
.sec--ink .more::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FAF9EA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h13M12 5l7 7-7 7'/%3E%3C/svg%3E"); }
.sec--ink .more:hover::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23141412' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h13M12 5l7 7-7 7'/%3E%3C/svg%3E"); }

.chip {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding-inline: 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-family: var(--f-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  white-space: nowrap;
  background: transparent;
}
.chip--fill { background: var(--accent); border-color: var(--accent); }
.chip--ink { background: var(--ink); border-color: var(--ink); color: var(--accent); }
.chip--jp { font-family: var(--f-jp); font-size: 12px; letter-spacing: .06em; }

/* -------------------------------------------------- 6. Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), height .4s var(--ease);
}
.header::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--cream);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.header.is-solid::before { opacity: 1; }
.header.is-solid { box-shadow: 0 1px 0 rgba(20, 20, 18, .08); }
/* スクロールするとヘッダーはクリーム地になります。そこに --accent の金色を
   置くとコントラストが 1.99 しかなく、社名が読めません。色みは残したまま、
   濃い金（--accent-text、5.50）に切り替えます。 */
.header.is-solid .header__logo b { color: var(--accent-text); }
/* ヒーロー（暗い写真）に重なっている間は、ナビを白抜きにする
   （ロゴはフルカラーのイラストなので反転させず、そのまま使う） */
.header:not(.is-solid) .header__logo small { color: rgba(250, 249, 234, .75); }
.header:not(.is-solid) .header__logo b { text-shadow: 0 1px 14px rgba(0, 0, 0, .45); }
.header:not(.is-solid) .gnav__list > li > a,
.header:not(.is-solid) .header__tel { color: var(--cream); text-shadow: 0 1px 12px rgba(0, 0, 0, .35); }
.header:not(.is-solid) .header__tel small { color: rgba(250, 249, 234, .78); }
.header:not(.is-solid) .burger { background: var(--accent); }
.header:not(.is-solid) .burger span { background: var(--ink); }
.header:not(.is-solid) .burger.is-open { background: var(--ink); }
.header:not(.is-solid) .burger.is-open span { background: var(--accent); }
.header__inner {
  position: relative;
  width: min(100% - var(--gutter) * 2, 1560px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.header__logo { flex: none; display: flex; align-items: center; gap: 11px; }
.header__logo img { width: clamp(40px, 3.6vw, 48px); height: auto; }
.header__logo b {
  display: block;
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .06em;
  color: var(--amber);
}
.header__logo small {
  display: block;
  font-family: var(--f-en);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--ink-3);
  margin-top: 2px;
}
.header__logo:hover { opacity: 1; }
.header__logo:hover b { color: var(--amber-deep); }
.gnav { margin-left: auto; }
.gnav__list { display: flex; align-items: center; gap: clamp(14px, 1.5vw, 26px); }
.gnav__list > li > a {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
  padding-block: 6px;
}
.gnav__list > li > a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 6px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
  z-index: -1;
}
.gnav__list > li > a:hover { opacity: 1; }
.gnav__list > li > a:hover::after,
.gnav__list > li > a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
/* 特に見てほしい導線。常時うっすら下線を引き、ホバーで満ちる */
.gnav__list > li > a.gnav__hot::after { transform: scaleX(1); transform-origin: left; height: 3px; opacity: .55; }
.gnav__list > li > a.gnav__hot:hover::after { height: 6px; opacity: 1; }
.gnav__list > li > a.gnav__hot::before { background: var(--accent-deep); }

/* いま見ているページ。ホバーと同じ下線を最初から引いておきます。
   .gnav__hot（見てほしい導線）より濃く出して、区別できるようにしています。 */
.gnav__list > li > a.is-current::after { transform: scaleX(1); transform-origin: left; height: 6px; opacity: 1; }
.gnav__list > li > a.is-current { color: var(--ink); }

.drawer__list a.drawer__hot { background: rgba(240, 163, 30, .14); border-radius: 12px; padding-inline: 12px; }
.drawer__list a.drawer__hot span { color: var(--accent); }
/* ドロワー（スマホのメニュー）の現在地。左に印を立てます。 */
.drawer__list a.is-current { color: var(--accent); }
.drawer__list a.is-current::before {
  content: ""; position: absolute; left: -14px; top: 50%; transform: translateY(-50%);
  width: 5px; height: 60%; border-radius: 3px; background: var(--accent);
}
.drawer__list a.is-current::after { content: "いま見ているページ"; margin-left: 10px; font-size: 10.5px; font-weight: 700; color: var(--accent); letter-spacing: .04em; }


/* -------------------------------------------------- 来店をうながす帯
   読み終えたところに置きます。読み手がいちばん温まっている場所で、
   「次に何をすればよいか」を1つだけ示すためです。 */
.visit { align-items: center; gap: clamp(16px, 2.4vw, 30px); }
.visit__h { font-size: clamp(17px, 2vw, 21px); font-weight: 900; line-height: 1.6; }
.visit__p { margin-top: 10px; font-size: 14px; line-height: 2; color: var(--ink-2); }

/* -------------------------------------------------- セクションナビ
   パンくずの下に置く「同じグループのページ一覧」。
   横に並べてスクロールさせます。縦に積むと場所を取りすぎるためです。 */
.sibnav { margin-bottom: clamp(18px, 3vw, 28px); padding: 14px 16px; background: var(--beige); border-radius: 16px; }
.sibnav__head { display: flex; align-items: baseline; gap: 10px; font-size: 12px; color: var(--ink-3); }
.sibnav__head b { font-size: 13px; font-weight: 900; color: var(--ink); }
.sibnav__head span { font-family: var(--f-en); font-weight: 800; letter-spacing: .06em; color: var(--accent-text); }
.sibnav__list {
  margin-top: 10px; display: flex; gap: 8px; overflow-x: auto;
  padding-bottom: 4px; scrollbar-width: thin;
  /* 端で切れていることが分かるように、右端をうっすら透かします */
  mask-image: linear-gradient(90deg, #000 calc(100% - 24px), transparent);
}
.sibnav__list::-webkit-scrollbar { height: 5px; }
.sibnav__list::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.sibnav__list li { flex: 0 0 auto; }
.sibnav__list a, .sibnav__list span {
  display: block; padding: 7px 13px; border-radius: 999px;
  font-size: 12.5px; font-weight: 700; white-space: nowrap;
  background: var(--white); color: var(--ink-2); border: 1px solid transparent;
}
.sibnav__list a:hover { opacity: 1; border-color: var(--line); color: var(--ink); }
/* いま見ているページ。リンクにせず、色を反転させます。 */
.sibnav__list span[aria-current] { background: var(--ink-surface); color: var(--cream); }
/* -------------------------------------------------- 前のページ／次のページ
   同じグループの中を、順に読み進められるようにします。
   端のページでも配置が崩れないよう、片側が無いときは空の枠で埋めています。 */
.pager { margin-block: clamp(28px, 4vw, 44px); display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pager__link {
  display: block; padding: 16px 18px; border: 1px solid var(--line); border-radius: 16px;
  background: var(--white); line-height: 1.7;
}
.pager__link:hover { opacity: 1; border-color: var(--accent); box-shadow: 0 10px 24px rgba(20, 20, 18, .08); }
.pager__link--next { text-align: right; }
.pager__dir { display: block; font-size: 11.5px; font-weight: 800; letter-spacing: .06em; color: var(--accent-text); }
.pager__link b { display: block; margin-top: 5px; font-size: 14px; font-weight: 900; color: var(--ink); }
.pager__none { display: block; }
@media (max-width: 640px) {
  .pager { gap: 8px; }
  .pager__link { padding: 13px 14px; border-radius: 13px; }
  .pager__link b { font-size: 12.5px; }
  .pager__dir { font-size: 10.5px; }
}

.sibnav__foot { margin-top: 10px; font-size: 12px; }
.sibnav__foot a { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; color: var(--accent-text); }
@media (max-width: 640px) {
  .sibnav { padding: 12px 12px 12px 14px; border-radius: 14px; }
  .sibnav__list a, .sibnav__list span { font-size: 12px; padding: 6px 11px; }
}

.header__cta { display: flex; align-items: center; gap: 12px; flex: none; }
.header__tel { font-family: var(--f-en); font-size: 22px; font-weight: 800; letter-spacing: .02em; line-height: 1.15; }
.header__tel small { display: block; font-family: var(--f-jp); font-size: 10px; font-weight: 700; letter-spacing: .12em; color: var(--ink-2); }
.header .btn { min-height: 48px; font-size: 14px; padding: 8px 12px 8px 22px; }
.header .btn::after { width: 30px; height: 30px; background-size: 15px; }

/* hamburger */
.burger {
  display: none;
  position: relative;
  z-index: 120;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--ink-surface);
  flex: none;
}
.burger span {
  position: absolute; left: 15px;
  width: 22px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .2s var(--ease);
}
.burger span:nth-child(1) { top: 19px; }
.burger span:nth-child(2) { top: 25px; }
.burger span:nth-child(3) { top: 31px; }
.burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(38deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-38deg); }

/* drawer */
.drawer {
  position: fixed; inset: 0;
  z-index: 110;
  background: var(--ink-surface);
  color: var(--cream);
  padding: calc(var(--header-h) + 24px) var(--gutter) 48px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s;
}
.drawer.is-open { opacity: 1; visibility: visible; transform: none; }
.drawer__list { border-top: 1px solid rgba(250, 249, 234, .18); }
.drawer__list li { border-bottom: 1px solid rgba(250, 249, 234, .18); }
.drawer__list a {
  position: relative;   /* 現在地の印（.is-current::before）の基準 */
  display: flex; align-items: baseline; gap: 14px;
  padding-block: 18px;
  font-size: 18px; font-weight: 700;
}
.drawer__list a span { font-family: var(--f-en); font-size: 11px; letter-spacing: .18em; color: var(--accent); }
.drawer__foot { margin-top: 34px; display: grid; gap: 14px; }
.drawer__tel { font-family: var(--f-en); font-size: 30px; font-weight: 800; color: var(--accent); line-height: 1.2; }

/* -------------------------------------------------- 7. Hero */
.hero { position: relative; height: 100svh; min-height: 560px; overflow: hidden; background: var(--ink); }
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.hero__slide.is-active { opacity: 1; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; }
.hero__slide.is-active img { animation: kenburns 8s var(--ease) forwards; }
@keyframes kenburns { from { transform: scale(1.06); } to { transform: scale(1.14); } }
/* 写真の上に見出しを載せるための幕。2枚重ねています。
   1枚目は縦方向。上のヘッダーと下のボタンまわりを確実に沈めます。
   2枚目は左から。見出しは左寄せなので、左側をさらに濃くします。
   写真が明るくても暗くても、文字が読めるようにするための保険です。 */
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(20,20,18,.72) 0%, rgba(20,20,18,.42) 46%, rgba(20,20,18,.20) 100%),
    linear-gradient(180deg, rgba(20,20,18,.70) 0%, rgba(20,20,18,.44) 34%, rgba(20,20,18,.56) 62%, rgba(20,20,18,.80) 100%);
  pointer-events: none;
}
/* スマホは横幅がないぶん、文字が写真の明るい部分に重なりやすいので、
   横方向の幕をやめて全体を均一に沈めます。 */
@media (max-width: 640px) {
  .hero::after {
    background: linear-gradient(180deg, rgba(20,20,18,.78) 0%, rgba(20,20,18,.62) 38%, rgba(20,20,18,.68) 66%, rgba(20,20,18,.86) 100%);
  }
}
.hero__body {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100% - var(--gutter) * 2, 1560px);
  margin-inline: auto;
  color: var(--white);
  padding-top: var(--header-h);
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 9px;
  min-height: 38px;
  padding: 6px 20px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .08em;
  text-shadow: none;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.hero__tag svg { width: 17px; height: 17px; flex: none; stroke: currentColor; fill: none; stroke-width: 1.8; }
a.hero__tag:hover { opacity: 1; background: var(--cream); transform: translateY(-2px); }
.hero__copy {
  margin-top: 26px;
  font-size: clamp(30px, 6.4vw, 78px);
  font-weight: 900;
  line-height: 1.42;
  letter-spacing: .01em;
  text-shadow: 0 2px 26px rgba(0, 0, 0, .34);
}
.hero__copy em { font-style: normal; color: var(--accent); }
/* H1の中に、検索されやすい地域名を小さく添える。
   キャッチを主役に保ちつつ、H1に「大阪市淀川区」「三国」を含めるため。 */
.hero__copy .hero__h1sub {
  display: block;
  margin-top: 14px;
  font-size: clamp(12.5px, 1.5vw, 15px);
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.7;
  /* 写真の上に載るので、薄くしすぎないこと。影も付けて輪郭を保ちます。 */
  color: rgba(250, 249, 234, .95);
  text-shadow: 0 2px 14px rgba(0, 0, 0, .55);
}
.hero__sub {
  margin-top: 22px;
  font-size: clamp(13px, 1.7vw, 17px);
  font-weight: 700;
  line-height: 2;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .4);
}
.hero__actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__dots { position: absolute; right: var(--gutter); bottom: 40px; z-index: 3; display: flex; gap: 10px; }
.hero__dots button { width: 40px; height: 4px; border-radius: 2px; background: rgba(255,255,255,.42); }
.hero__dots button.is-active { background: var(--accent); }
.hero__scroll {
  position: absolute; left: 50%; bottom: 0; z-index: 3;
  transform: translateX(-50%);
  font-family: var(--f-en); font-size: 10px; font-weight: 700; letter-spacing: .3em;
  color: var(--white);
  padding-bottom: 78px;
}
.hero__scroll::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  width: 1px; height: 64px; background: rgba(255,255,255,.5);
  overflow: hidden;
}
.hero__scroll::before {
  content: ""; position: absolute; left: 50%; bottom: 0; z-index: 1;
  width: 1px; height: 64px; background: var(--accent);
  transform-origin: top;
  animation: scrollline 2.4s var(--ease) infinite;
}
@keyframes scrollline { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* marquee */
.marquee { background: var(--accent); overflow: hidden; padding-block: 12px; border-block: 2px solid var(--ink-surface); }
.marquee__track { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.marquee__track span {
  font-family: var(--f-en);
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: .04em;
  padding-inline: 26px;
  white-space: nowrap;
}
.marquee__track span::after { content: "★"; margin-left: 26px; font-size: .6em; vertical-align: .28em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* -------------------------------------------------- 8. News ticker */
.ticker { background: var(--ink-surface); color: var(--cream); }
.ticker__inner { display: flex; align-items: center; gap: 22px; min-height: 62px; }
.ticker__label {
  flex: none; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-en); font-size: 12px; font-weight: 700; letter-spacing: .18em; color: var(--accent);
}
.ticker__label::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: blink 1.6s infinite; }
@keyframes blink { 50% { opacity: .2; } }
.ticker__body { display: flex; gap: 16px; align-items: baseline; font-size: 13.5px; min-width: 0; }
.ticker__body time { flex: none; font-family: var(--f-en); font-weight: 700; color: rgba(250,249,234,.6); }
.ticker__body p { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* -------------------------------------------------- 9. About（黒背景） */
.about { position: relative; overflow: hidden; }
.about__grid { display: grid; grid-template-columns: 1fr minmax(0, 420px); gap: clamp(32px, 5vw, 72px); align-items: center; }
.about__fig { border-radius: 24px; overflow: hidden; }
.about__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 46px; }
.about__stat { border-top: 1px solid rgba(250,249,234,.24); padding-top: 18px; }
.about__stat b { display: block; font-family: var(--f-en); font-size: clamp(34px, 5vw, 56px); font-weight: 800; line-height: 1.05; color: var(--accent); }
.about__stat span { font-size: 12.5px; font-weight: 700; color: rgba(250,249,234,.7); }

/* -------------------------------------------------- 10. Message / Philosophy */
.duo { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 3vw, 46px); }
.duo__item {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.duo__item:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(20,20,18,.10); opacity: 1; }
.duo__item img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.duo__body { padding: clamp(24px, 3vw, 40px); display: flex; flex-direction: column; flex: 1; }
.duo__body .more { margin-top: auto; padding-top: 24px; }

/* -------------------------------------------------- 11. Service（メニュー） */
.service__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 2.6vw, 34px); }
.service__card {
  position: relative;
  display: block;
  background: var(--white);
  border-radius: 26px;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.service__card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(20,20,18,.12); opacity: 1; }
.service__thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.service__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service__card:hover .service__thumb img { transform: scale(1.06); }
.service__no {
  position: absolute; left: 20px; top: 18px;
  font-family: var(--f-en); font-size: 13px; font-weight: 800; letter-spacing: .12em;
  background: var(--accent); color: var(--ink);
  padding: 4px 14px; border-radius: var(--r-pill);
}
.service__body { padding: clamp(22px, 2.6vw, 34px); }
.service__en { font-family: var(--f-en); font-size: clamp(30px, 4vw, 46px); font-weight: 800; line-height: 1; }
.service__jp { display: inline-block; margin-top: 10px; font-size: 18px; font-weight: 900; }
.service__jp::before { content: "／ "; color: var(--ink-3); font-weight: 700; }
.service__txt { margin-top: 14px; font-size: 14px; line-height: 2; color: var(--ink-2); }
.service__tags { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }

/* ---------------------------------- 11-b. 帯パターン（下層ページ共通）
   「見出し＋リード」→「横長バナー」→「アイコン付きポイントカード」→「補足＋CTA」
   service / concept / access で共通利用し、左右に寄った余白の多い組みを解消する */
.band__no { font-family: var(--f-en); font-size: 13px; font-weight: 800; letter-spacing: .14em; color: var(--ink-3); }
.band__head { max-width: 820px; }
.band__head .lead { margin-top: 20px; }
.band__hero {
  position: relative;
  margin-top: clamp(28px, 3.6vw, 46px);
  border-radius: 28px;
  overflow: hidden;
  background: var(--beige);
}
.band__hero img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; }
.band__hero iframe { display: block; width: 100%; height: clamp(300px, 46vh, 520px); border: 0; filter: saturate(.88); }
.band__hero__tag {
  position: absolute; left: 22px; bottom: 18px;
  font-family: var(--f-en); font-size: clamp(24px, 3.4vw, 42px); font-weight: 800; line-height: 1;
  color: var(--ink);
  background: var(--accent);
  padding: 8px 20px 10px;
  border-radius: var(--r-pill);
}
.band__points {
  margin-top: clamp(20px, 2.6vw, 30px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.8vw, 24px);
}
.band__points > li {
  background: var(--white);
  border-radius: 22px;
  padding: clamp(24px, 2.6vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sec--white .band__points > li { background: var(--cream); }
.sec--beige .band__points > li { background: var(--cream); }
.band__points i { width: 54px; height: 54px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; flex: none; }
.band__points i svg { width: 26px; height: 26px; stroke: var(--ink); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.band__points p { font-size: 14px; line-height: 1.95; color: var(--ink-2); }
.band__points b { display: block; font-size: 15.5px; font-weight: 900; color: var(--ink); margin-bottom: 6px; }
.band__foot {
  margin-top: clamp(24px, 3vw, 36px);
  display: flex; flex-wrap: wrap; gap: 18px 28px;
  align-items: center; justify-content: space-between;
}
@media (max-width: 900px) {
  .band__points { grid-template-columns: repeat(2, 1fr); }
  .band__hero img { aspect-ratio: 16 / 9; }
}
@media (max-width: 640px) {
  .band__points { grid-template-columns: 1fr; }
  .band__hero { border-radius: 20px; }
  .band__hero img { aspect-ratio: 4 / 3; }
  .band__hero__tag { left: 14px; bottom: 12px; }
  .band__foot .btn { width: 100%; justify-content: space-between; }
}

/* ---- 誤解を打ち消すチップ（「✕ ○○○」を打ち消し線で見せる） ---- */
.myth {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--beige);
  border-radius: var(--r-pill);
  padding: 9px 24px 9px 12px;
  font-size: clamp(13px, 1.7vw, 15.5px);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 20px;
}
.myth::before {
  content: "✕";
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ink-surface);
  color: var(--cream);
  display: grid; place-items: center;
  font-size: 13px;
}
.myth s { text-decoration-thickness: 2px; text-decoration-color: var(--ink-3); opacity: .8; }
.sec--ink .myth { background: rgba(250, 249, 234, .1); }
.sec--ink .myth::before { background: var(--accent); color: var(--ink); }

/* -------------------------------------------------- 物件一覧の絞り込み */
.pfilter { background: var(--white); border-radius: 22px; padding: clamp(18px, 2.2vw, 26px); }
.pfilter__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.pfilter__f { display: grid; gap: 6px; }
.pfilter__f > span { font-size: 12px; font-weight: 800; letter-spacing: .06em; color: var(--ink-3); }
.pfilter__f select {
  appearance: none;
  width: 100%;
  padding: 12px 34px 12px 14px;
  font: inherit; font-size: 14px; font-weight: 700;
  color: var(--ink);
  background-color: var(--cream);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23141412' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 11px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}
.pfilter__f select:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.pfilter__foot { margin-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.pfilter__count { font-size: 13.5px; font-weight: 800; }
.pfilter__reset {
  font: inherit; font-size: 13px; font-weight: 700;
  padding: 9px 18px; border-radius: var(--r-pill);
  background: var(--beige); border: 1px solid var(--line); color: var(--ink);
  cursor: pointer;
}
.pfilter__reset:hover { background: var(--accent); border-color: var(--accent); }
.pfilter__empty {
  margin-top: 16px; padding: 18px 20px;
  background: var(--cream); border-radius: 14px;
  font-size: 13.5px; line-height: 1.95;
}
.pfilter__empty a { text-decoration: underline; font-weight: 700; }
@media (max-width: 900px) { .pfilter__row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .pfilter__row { grid-template-columns: 1fr; gap: 10px; } }

/* ---- たためる枠（トップページの会社概要など） ---- */
.foldout { border: 1px solid var(--line); border-radius: 18px; background: var(--white); overflow: hidden; }
.foldout > summary {
  cursor: pointer; list-style: none;
  padding: 18px 22px;
  font-size: 14.5px; font-weight: 800;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.foldout > summary::-webkit-details-marker { display: none; }
.foldout > summary::after {
  content: ""; flex: none;
  width: 10px; height: 10px;
  border-right: 2.5px solid var(--ink); border-bottom: 2.5px solid var(--ink);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .25s var(--ease);
}
.foldout[open] > summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.foldout > summary:hover { background: var(--cream); }
.foldout .info { margin: 0 22px 22px; }

/* -------------------------------------------------- 12. Feature（特徴） */
.feature__list { display: grid; gap: clamp(18px, 2.4vw, 30px); grid-template-columns: repeat(3, 1fr); }
.feature__item {
  background: var(--white);
  border-radius: 24px;
  padding: clamp(26px, 3vw, 38px) clamp(20px, 2.4vw, 30px);
  border: 2px solid var(--ink-surface);
  box-shadow: 6px 6px 0 rgba(48, 47, 39, .82);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.feature__item:hover { transform: translate(-3px, -3px); box-shadow: 10px 10px 0 var(--accent-deep); }
.feature__no { font-family: var(--f-en); font-size: 14px; font-weight: 800; letter-spacing: .12em; color: var(--ink-3); }
.feature__icon {
  width: 66px; height: 66px; margin: 12px 0 18px;
  display: grid; place-items: center;
  background: var(--accent); border-radius: 50%;
}
.feature__icon svg { width: 32px; height: 32px; stroke: var(--ink); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feature__ttl { font-size: 19px; font-weight: 900; line-height: 1.6; }

/* スマートフォンでは、6つ並ぶと縦に長くなりすぎるため詰める。
   アイコンを小さくし、見出しの改行も解除して1枚あたりの高さを下げます。 */
@media (max-width: 640px) {
  .feature__list { gap: 12px; }
  .feature__item { padding: 20px 18px; border-radius: 18px; box-shadow: 4px 4px 0 rgba(48, 47, 39, .82); }
  .feature__icon { width: 46px; height: 46px; margin: 8px 0 12px; }
  .feature__icon svg { width: 23px; height: 23px; }
  .feature__ttl { font-size: 17px; }
  .feature__ttl br { display: none; }
  .feature__txt { font-size: 13.5px; line-height: 1.9; }
}
.feature__ttl span { display: block; font-family: var(--f-en); font-size: 11px; letter-spacing: .16em; color: var(--ink-3); margin-bottom: 4px; }
.feature__txt { margin-top: 12px; font-size: 13.5px; line-height: 1.95; color: var(--ink-2); }

/* -------------------------------------------------- 13. Instagram / 新着物件 */
.insta__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.insta__account {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-en); font-weight: 700; font-size: 15px; letter-spacing: .06em;
}
.insta__account i {
  width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(45deg, #F0A31E, #D98A0C 45%, #3B2E27);
}
.insta__account i svg { width: 22px; height: 22px; stroke: var(--cream); fill: none; stroke-width: 1.8; }
.insta__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(10px, 1.4vw, 18px); }
.post { position: relative; display: block; border-radius: 18px; overflow: hidden; background: var(--white); }
.post img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; transition: transform .55s var(--ease); }
.post:hover { opacity: 1; }
.post:hover img { transform: scale(1.05); }
.post__badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--ink); color: var(--accent);
  font-family: var(--f-en); font-size: 10.5px; font-weight: 800; letter-spacing: .1em;
  padding: 4px 12px; border-radius: var(--r-pill);
}
.post__badge--new { background: var(--accent); color: var(--ink); }
.post__meta {
  position: absolute; inset: auto 0 0; padding: 34px 14px 13px;
  background: linear-gradient(transparent, rgba(20,20,18,.86));
  color: var(--white);
  opacity: 0; transform: translateY(8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.post:hover .post__meta, .post:focus-visible .post__meta { opacity: 1; transform: none; }
.post__meta b { display: block; font-size: 14px; font-weight: 900; }
.post__meta span { font-size: 11.5px; color: rgba(255,255,255,.78); }
/* ---- Instagram 最新投稿スライダー（reel） ---- */
.reel { position: relative; --reel-gap: clamp(12px, 1.6vw, 20px); }
.reel__track {
  display: flex;
  gap: var(--reel-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 4px;
  /* 端で切れて見えないよう、コンテナ外まで伸ばす */
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  /* padding分だけスナップ位置がずれるのを補正（先頭で scrollLeft が 0 になる） */
  scroll-padding-inline: var(--gutter);
}
.reel__track::-webkit-scrollbar { display: none; }
.reel__item {
  flex: 0 0 calc((100% - var(--reel-gap) * 3) / 4);
  scroll-snap-align: start;
}
.reel__item .post__cap {
  display: block;
  padding: 14px 16px 18px;
  background: var(--white);
}
.reel__item .post__cap b { display: block; font-size: 15px; font-weight: 900; line-height: 1.5; }
.reel__item .post__cap span { display: block; margin-top: 2px; font-size: 12px; color: var(--ink-3); line-height: 1.6; }
.reel__item .post__cap time { display: block; margin-top: 8px; font-family: var(--f-en); font-size: 11px; font-weight: 700; letter-spacing: .08em; color: var(--ink-3); }

.reel__ctrl { position: absolute; top: calc(50% - 60px); z-index: 3; transform: translateY(-50%); }
.reel__ctrl button {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--ink-surface);
  display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(20, 20, 18, .22);
  transition: background .25s var(--ease), opacity .25s var(--ease), transform .25s var(--ease);
}
.reel__ctrl button svg { width: 21px; height: 21px; stroke: var(--accent); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.reel__ctrl button:hover { background: var(--accent); transform: scale(1.06); }
.reel__ctrl button:hover svg { stroke: var(--ink); }
.reel__ctrl button[disabled] { opacity: .22; pointer-events: none; }
.reel__ctrl--prev { left: calc(var(--gutter) * -0.5); }
.reel__ctrl--next { right: calc(var(--gutter) * -0.5); }

.reel__bar { margin-top: 22px; height: 4px; border-radius: 2px; background: var(--line); overflow: hidden; }
.reel__bar span { display: block; height: 100%; width: 25%; background: var(--ink-surface); border-radius: 2px; transition: transform .2s linear; transform-origin: left; }

@media (max-width: 1024px) {
  .reel__item { flex-basis: calc((100% - var(--reel-gap) * 1.4) / 2.4); }
  .reel__ctrl { display: none; }
}
@media (max-width: 640px) {
  .reel__item { flex-basis: calc((100% - var(--reel-gap) * 0.3) / 1.3); }
}

.insta__foot { margin-top: 40px; text-align: center; }
.insta__foot p { font-size: 14px; color: var(--ink-2); margin-bottom: 20px; }

/* -------------------------------------------------- 14. Season banner */
.season {
  background: var(--accent);
  border-radius: 30px;
  padding: clamp(30px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  border: 2px solid var(--ink-surface);
}
.season__label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--accent);
  font-family: var(--f-en); font-size: 11.5px; font-weight: 800; letter-spacing: .16em;
  padding: 5px 16px; border-radius: var(--r-pill);
}
.season h2 { margin-top: 18px; font-size: clamp(21px, 3.2vw, 34px); font-weight: 900; line-height: 1.55; }
.season p { margin-top: 14px; font-size: 14px; line-height: 2; }
.season__pts { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.season__pts .chip { border-color: var(--ink); background: var(--cream); }

/* -------------------------------------------------- 15. Voice */
.voice__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 30px); }
.voice__item { background: var(--white); border-radius: 24px; padding: clamp(24px, 2.8vw, 34px); }
.voice__stars { color: var(--accent-text); font-size: 15px; letter-spacing: .18em; }
.voice__txt { margin-top: 12px; font-size: 14.5px; line-height: 2.05; }
.voice__who { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 12px; }
.voice__who img { width: 46px; height: 46px; border-radius: 50%; }
.voice__who b { font-size: 13.5px; font-weight: 800; display: block; }
.voice__who span { font-size: 11.5px; color: var(--ink-3); }

/* -------------------------------------------------- 16. News list */
.newslist { border-top: 1px solid var(--line); }
.newslist li { border-bottom: 1px solid var(--line); }
.newslist a {
  display: grid;
  grid-template-columns: 120px 128px 1fr auto;
  align-items: center;
  gap: 20px;
  padding-block: 22px;
}
.newslist a:hover { opacity: 1; background: rgba(242, 234, 78, .22); }
.newslist time { font-family: var(--f-en); font-size: 14px; font-weight: 700; letter-spacing: .06em; padding-left: 6px; }
.newslist p { font-size: 15px; font-weight: 700; line-height: 1.8; }
.newslist .more { pointer-events: none; }
.newslist .more::after { width: 34px; height: 34px; background-size: 14px; }

.newscards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.6vw, 32px); }
.newscard { background: var(--white); border-radius: 22px; overflow: hidden; display: flex; flex-direction: column; }
.newscard:hover { opacity: 1; }
.newscard img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; transition: transform .5s var(--ease); }
.newscard--prop img { aspect-ratio: 1 / 1; }
.newscard:hover img { transform: scale(1.05); }
.newscard__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.newscard__meta { display: flex; align-items: center; gap: 12px; font-family: var(--f-en); font-size: 12px; font-weight: 700; color: var(--ink-3); }
.newscard h3 { font-size: 16px; font-weight: 900; line-height: 1.7; }
.newscard p { font-size: 13px; color: var(--ink-2); line-height: 1.9; }

/* filter */
.filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.filter .chip { cursor: pointer; transition: background .25s var(--ease), color .25s var(--ease); }
.filter .chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--accent); }

/* -------------------------------------------------- 17. FAQ */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px 0;
  text-align: left;
  font-size: clamp(15px, 1.9vw, 17px); font-weight: 800; line-height: 1.7;
}
.faq__q::before {
  content: "Q"; flex: none;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--ink); color: var(--accent);
  font-family: var(--f-en); font-size: 15px; font-weight: 800;
  display: grid; place-items: center;
}
.faq__q i {
  flex: none; margin-left: auto; position: relative;
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line);
}
.faq__q i::before, .faq__q i::after {
  content: ""; position: absolute; left: 50%; top: 50%; background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease);
}
.faq__q i::before { width: 13px; height: 2px; }
.faq__q i::after { width: 2px; height: 13px; }
.faq__q[aria-expanded="true"] i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__a { overflow: hidden; height: 0; transition: height .35s var(--ease); }
.faq__a > div { display: flex; gap: 16px; padding: 4px 0 26px; font-size: 14.5px; line-height: 2.05; color: var(--ink-2); }
.faq__a > div::before {
  content: "A"; flex: none;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent); color: var(--ink);
  font-family: var(--f-en); font-size: 15px; font-weight: 800;
  display: grid; place-items: center;
}

/* -------------------------------------------------- 18. Access */
.access__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: start; }
.access__map { display: block; border-radius: 24px; overflow: hidden; border: 2px solid var(--ink-surface); }
.access__map iframe { width: 100%; height: clamp(320px, 44vh, 470px); border: 0; display: block; filter: saturate(.88); }

/* NAP（店名・住所・電話）ブロック ─ MEO用に表記を1か所へ集約 */
.nap { background: var(--white); border: 2px solid var(--ink-surface); border-radius: 24px; padding: clamp(24px, 3vw, 38px); }
.nap__name { font-size: clamp(19px, 2.3vw, 25px); font-weight: 900; line-height: 1.5; }
.nap__name small { display: block; font-size: 12px; font-weight: 700; letter-spacing: .1em; color: var(--ink-3); margin-bottom: 6px; }
.nap__list { margin-top: 20px; display: grid; gap: 12px; }
.nap__list > div { display: flex; gap: 14px; align-items: baseline; }
.nap__list dt { flex: none; width: 76px; font-family: var(--f-en); font-size: 11px; font-weight: 800; letter-spacing: .12em; color: var(--ink-3); }
.nap__list dd { margin: 0; font-size: 14.5px; line-height: 1.9; }
.nap__tel { font-family: var(--f-en); font-size: clamp(25px, 3.2vw, 33px); font-weight: 800; line-height: 1.15; letter-spacing: .01em; }
.nap__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.nap__actions .btn { min-height: 54px; font-size: 14px; }
@media (max-width: 640px) {
  .nap__list > div { display: block; }
  .nap__list dt { width: auto; margin-bottom: 2px; }
  .nap__actions .btn { width: 100%; justify-content: space-between; }
}
.info { border-top: 1px solid var(--line); }
.info th, .info td { border-bottom: 1px solid var(--line); padding: 16px 4px; text-align: left; font-size: 14.5px; vertical-align: top; }
.info th { width: 34%; font-weight: 800; white-space: nowrap; }
.info td { color: var(--ink-2); }
.access__routes { margin-top: 26px; display: grid; gap: 10px; }
.access__routes li { display: flex; gap: 12px; font-size: 14px; align-items: baseline; }
.access__routes b { font-family: var(--f-en); font-size: 12px; letter-spacing: .1em; background: var(--accent); padding: 2px 12px; border-radius: var(--r-pill); flex: none; }

/* -------------------------------------------------- 19. CTA */
.cta { background: var(--ink-surface); color: var(--cream); text-align: center; }
.cta__cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 44px; text-align: left; }
.cta__card {
  background: rgba(250, 249, 234, .06);
  border: 1px solid rgba(250, 249, 234, .2);
  border-radius: 22px;
  padding: 30px 28px;
  display: flex; flex-direction: column; gap: 8px;
  transition: background .3s var(--ease);
}
.cta__card:hover { opacity: 1; background: rgba(242, 234, 78, .12); }
.cta__card b { font-family: var(--f-en); font-size: 12px; letter-spacing: .18em; color: var(--accent); }
.cta__card strong { font-family: var(--f-en); font-size: clamp(20px, 2.1vw, 27px); font-weight: 800; line-height: 1.2; }
.cta__card--line { background: rgba(242, 234, 78, .14); border-color: rgba(242, 234, 78, .5); }
/* この1枚だけ地色が黄みがかっているため、ラベルが 4.35 しかない。
   明るい金に振って 5.20 にする。 */
.cta__card--line b { color: #F5B942; }
.cta__card span { font-size: 12.5px; color: rgba(250,249,234,.68); line-height: 1.9; }

/* -------------------------------------------------- 20. Page hero（下層） */
.phero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(40px, 6vw, 78px));
  padding-bottom: clamp(40px, 6vw, 78px);
  background: var(--ink-surface);
  color: var(--cream);
  overflow: hidden;
}
.phero__bg { position: absolute; inset: 0; opacity: .38; }
.phero__bg img { width: 100%; height: 100%; object-fit: cover; }

/* 写真を敷くとき。イラストより濃く出したいので不透明度を上げ、
   そのぶん文字が読みにくくならないよう、上から暗い幕をかけています。
   幕は左が濃く右が薄い斜めのグラデーションで、見出しのある左側を確実に守ります。 */
.phero__bg--photo { opacity: .55; }
.phero__bg--photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20, 20, 18, .78) 0%, rgba(20, 20, 18, .52) 52%, rgba(20, 20, 18, .30) 100%);
}
/* トップの帯（.hero）でも同じ注記を使います。SCROLL の表示と重ならないよう、
   位置だけ差し替えています。 */
.hero__imgnote { position: absolute; right: clamp(14px, 4vw, 34px); bottom: 10px; z-index: 3; }

/* 「※写真はイメージです」。小さく、でも隠さずに出します。 */
.phero__note {
  position: absolute; right: clamp(14px, 4vw, 34px); bottom: 10px; z-index: 1;
  margin: 0; font-size: 11px; letter-spacing: .02em; color: rgba(250, 249, 234, .55);
}
.phero .wrap { position: relative; z-index: 1; }
.phero .eyebrow { color: var(--accent); }
.phero .eyebrow__note { color: rgba(250, 249, 234, .72); }
.phero h1 { margin-top: 12px; font-size: clamp(22px, 3.4vw, 34px); font-weight: 900; line-height: 1.6; }
.crumbs { display: flex; flex-wrap: wrap; gap: 10px; font-size: 12px; color: var(--ink-3); padding-block: 16px; }
.crumbs li::after { content: "／"; margin-left: 10px; color: var(--line); }
.crumbs li:last-child::after { content: none; }
.crumbs [aria-current] { color: var(--ink); font-weight: 700; }

/* -------------------------------------------------- 21. Form */
.form { display: grid; gap: 26px; }
.form__row { display: grid; gap: 10px; }
.form__row > label { font-size: 14px; font-weight: 800; display: flex; align-items: center; gap: 10px; }
.form__req { font-family: var(--f-en); font-size: 10px; font-weight: 800; letter-spacing: .1em; background: var(--ink); color: var(--accent); padding: 3px 9px; border-radius: var(--r-pill); }
.form__req--any { background: var(--beige); color: var(--ink-2); }
.form input[type="text"], .form input[type="email"], .form input[type="tel"], .form select, .form textarea {
  width: 100%;
  font: inherit;
  font-size: 15px;
  padding: 15px 18px;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 14px;
  transition: border-color .25s var(--ease);
}
.form textarea { min-height: 180px; line-height: 1.9; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--ink); outline: none; }
.form__note { font-size: 12.5px; color: var(--ink-3); line-height: 1.9; }
.form__check { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; }
.form__check input { width: 20px; height: 20px; margin-top: 4px; accent-color: var(--ink); flex: none; }
.form__submit { display: flex; justify-content: center; margin-top: 6px; }
.form__grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* -------------------------------------------------- 22. Misc blocks */
.prose h2 { font-size: clamp(19px, 2.4vw, 24px); font-weight: 900; margin-top: 48px; padding-left: 16px; border-left: 6px solid var(--accent); line-height: 1.6; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 17px; font-weight: 800; margin-top: 32px; }
.prose p, .prose li { font-size: 14.5px; line-height: 2.1; color: var(--ink-2); }
.prose p { margin-top: 14px; }
.prose ul { margin-top: 14px; display: grid; gap: 8px; }
.prose ul li { padding-left: 20px; position: relative; }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: 13px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent-deep); }
.prose ol { margin-top: 14px; display: grid; gap: 8px; counter-reset: n; }
.prose ol li { padding-left: 30px; position: relative; }
.prose ol li::before { counter-increment: n; content: counter(n); position: absolute; left: 0; top: 6px; width: 20px; height: 20px; border-radius: 50%; background: var(--ink); color: var(--accent); font-family: var(--f-en); font-size: 11px; font-weight: 800; display: grid; place-items: center; }

.flow { display: grid; gap: 18px; counter-reset: step; }
.flow__item {
  position: relative;
  background: var(--white);
  border-radius: 22px;
  padding: 26px 30px 26px 92px;
}
.flow__item::before {
  counter-increment: step;
  content: "STEP " counter(step);
  position: absolute; left: 26px; top: 26px;
  width: 46px;
  font-family: var(--f-en); font-size: 10px; font-weight: 800; letter-spacing: .08em;
  color: var(--ink-3); line-height: 1.3;
}
.flow__item h3 { font-size: 17px; font-weight: 900; }
.flow__item p a, .gridcard p a, .dtable td a, .dtable th a, .feature__txt a, .band__points p a { text-decoration: underline; font-weight: 700; text-underline-offset: 3px; }
.flow__when {
  display: inline-block; margin-left: 10px; vertical-align: 2px;
  font-family: var(--f-en); font-size: 11px; font-weight: 800; letter-spacing: .06em;
  color: var(--ink); background: var(--accent); border-radius: 999px; padding: 3px 11px;
}
.flow__item p { margin-top: 8px; font-size: 13.5px; color: var(--ink-2); line-height: 1.95; }

.gridcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); }
.gridcard { display: block; background: var(--white); border-radius: 20px; padding: 26px 24px; overflow: hidden; }
a.gridcard:hover { opacity: 1; box-shadow: 0 14px 32px rgba(20, 20, 18, .10); transform: translateY(-4px); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
/* トップの「他にもこんな特徴があります」。カードを3枚増やす代わりに、
   1行ずつのリンクにして、下層ページへ送ります。 */
.featmore { margin-top: clamp(22px, 3vw, 34px); display: grid; gap: 10px; }
.featmore a {
  display: block; padding: 15px 18px; background: var(--white); border-radius: 14px;
  font-size: 13px; color: var(--ink-2); line-height: 1.8;
}
.featmore b { display: block; margin-bottom: 3px; font-size: 14.5px; font-weight: 900; color: var(--ink); }
.featmore a::after { content: " →"; color: var(--accent-text); font-weight: 800; }
.featmore a:hover { opacity: 1; box-shadow: 0 10px 24px rgba(20, 20, 18, .08); }

.gridcard b { display: block; font-size: 16px; font-weight: 900; }
/* 施設カードの挿絵。カードの余白を打ち消して、上辺いっぱいに敷きます。 */
.gridcard .gridcard__img { margin: -26px -24px 18px; }
.gridcard__img img { display: block; width: 100%; height: auto; border-bottom: 1px solid var(--line); }
.gridcard p { margin-top: 10px; font-size: 13.5px; color: var(--ink-2); line-height: 1.95; }
.gridcard__more { margin-top: 14px; font-family: var(--f-en); font-size: 12px; font-weight: 800; letter-spacing: .08em; color: var(--accent-text); }
.gridcard__meta { display: block; margin-top: 7px; font-size: 12.5px; font-weight: 700; color: var(--ink-3); line-height: 1.8; }
.gridcard__meta em { font-style: normal; color: var(--accent-text); }

/* 暮らしガイドの見出し（アイコン付き） */
.guide__h { display: flex; align-items: center; gap: 14px; }
.guide__h i { width: 46px; height: 46px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; flex: none; }
.guide__h i svg { width: 23px; height: 23px; stroke: var(--ink); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.sitemap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.sitemap h2 { font-family: var(--f-en); font-size: 15px; letter-spacing: .14em; font-weight: 800; padding-bottom: 10px; border-bottom: 2px solid var(--ink); }
.sitemap ul { margin-top: 14px; display: grid; gap: 10px; }
.sitemap a { font-size: 14px; font-weight: 700; }
.sitemap a::before { content: "→ "; color: var(--accent-text); }


/* -------------------------------------------------- 動画（YouTube）
   最初はサムネイルだけを置き、再生ボタンを押したときに YouTube を
   読み込みます。最初から埋め込むと、見ない人にも1MB近い読み込みと
   Cookie が発生してしまうためです。                                   */
.movie {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  padding: 0;
  border-radius: clamp(18px, 2vw, 28px);
  overflow: hidden;
  background: var(--ink-surface);
  cursor: pointer;
}
.movie img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease), opacity .3s var(--ease); }
.movie iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.movie__play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: clamp(66px, 8vw, 92px); height: clamp(66px, 8vw, 92px);
  border-radius: 50%; background: var(--accent);
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(20, 20, 18, .35);
  transition: transform .3s var(--ease);
}
.movie__play svg { width: 34%; height: 34%; fill: var(--ink); margin-left: 8%; }
.movie:hover img { transform: scale(1.03); opacity: .88; }
.movie:hover .movie__play { transform: translate(-50%, -50%) scale(1.08); }
.movie:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.movie__label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 42px 24px 18px;
  background: linear-gradient(to top, rgba(20, 20, 18, .78), transparent);
  color: var(--cream); font-size: 13.5px; font-weight: 700; text-align: left;
}

/* 迷惑メール対策の見えない入力欄（人には見せない・読み上げもさせない） */
.form__trap { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }


/* スマートフォンでの縦の長さを抑える（トップページ対策） */
@media (max-width: 640px) {
  .voice__item { padding: 20px 18px; border-radius: 18px; }
  .voice__txt { font-size: 13.5px; line-height: 1.9; }
  .voice__who { margin-top: 14px; padding-top: 14px; }
  .voice__list { gap: 12px; }
  .service__list { gap: 12px; }
  .sec { padding-block: clamp(44px, 9vw, 64px); }
  .sec-head .headline { font-size: clamp(21px, 6.2vw, 28px); }
  .access__routes li { font-size: 13px; }
}


/* トップページの縦の長さをさらに抑える（スマートフォン）
   いずれも専用ページに同じ内容があるため、トップでは要点だけ見せます。 */
@media (max-width: 640px) {
  /* サービス：トップでは画像を省く（service.html に同じ内容があります） */
  #service .service__thumb { display: none; }
  .service__thumb { aspect-ratio: 21 / 9; }
  .service__body { padding: 18px 18px 20px; }
  .service__en { font-size: 26px; }
  .service__jp { font-size: 16px; margin-top: 6px; }
  .service__card p { font-size: 13.5px; line-height: 1.9; }
  /* タグは service.html に同じものがあるので、トップでは省きます */
  #service .service__tags { display: none; }

  /* 連絡先の4枚と、はじめての方への案内は2列に。
     1枚ずつ縦に積むと、それだけで1画面以上使ってしまうためです。 */
  /* id を付けているのは、下の Responsive にある .cta__cards { 1fr } より
     あとに書かれても負けないようにするためです。 */
  #contact .cta__cards { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  #contact .cta__card { padding: 16px 12px; }
  #contact .cta__card span { font-size: 11.5px; line-height: 1.7; }
  #firstguide .gridcards { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  #firstguide .gridcard { padding: 16px 14px; }
  #firstguide .gridcard p { font-size: 12.5px; line-height: 1.8; }

  /* 特徴：2列にして高さを半分に */
  .feature__list { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .feature__item { padding: 16px 14px; }
  .feature__no { font-size: 12px; }
  .feature__icon { width: 38px; height: 38px; margin: 6px 0 10px; }
  .feature__icon svg { width: 19px; height: 19px; }
  .feature__ttl { font-size: 14.5px; line-height: 1.5; }
  .feature__ttl span { font-size: 10.5px; }
  .feature__txt { font-size: 12.5px; line-height: 1.85; }

  /* お客様の声：3件目はトップでは省略（voice.html に全件あります） */
  #voice .voice__item:nth-child(3) { display: none; }
}

/* -------------------------------------------------- 23. Footer */
.footer { background: var(--ink-surface); color: var(--cream); padding-block: clamp(56px, 7vw, 90px) 30px; }
.footer__top { display: grid; grid-template-columns: minmax(0, 340px) 1fr; gap: clamp(32px, 5vw, 70px); }
.footer__logo { display: flex; align-items: center; gap: 14px; }
.footer__logo img { width: 62px; height: auto; }
.footer__logo b { display: block; font-size: 23px; font-weight: 900; letter-spacing: .06em; line-height: 1.2; color: var(--amber); }
.footer__logo small { display: block; font-family: var(--f-en); font-size: 10px; font-weight: 700; letter-spacing: .2em; color: rgba(250, 249, 234, .6); margin-top: 3px; }
.footer__addr { margin-top: 24px; font-size: 13px; line-height: 2; color: rgba(250,249,234,.72); }
.footer__tel { margin-top: 18px; font-family: var(--f-en); font-size: 30px; font-weight: 800; color: var(--accent); line-height: 1.2; }
.footer__tel small { display: block; font-family: var(--f-jp); font-size: 11px; font-weight: 700; letter-spacing: .1em; color: rgba(250,249,234,.6); }
.footer__sns { margin-top: 22px; display: flex; gap: 10px; }
.footer__sns a { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(250,249,234,.3); display: grid; place-items: center; }
.footer__sns a:hover { opacity: 1; background: var(--accent); border-color: var(--accent); }
.footer__sns svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.footer__sns a:hover svg { stroke: var(--ink); }
.footer__nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 26px; align-content: start; }
.footer__nav h3 { font-family: var(--f-en); font-size: 12px; letter-spacing: .16em; color: var(--accent); padding-bottom: 12px; border-bottom: 1px solid rgba(250,249,234,.22); }
.footer__nav ul { margin-top: 14px; display: grid; gap: 11px; }
.footer__nav a { font-size: 13.5px; }
.footer__bottom {
  margin-top: 46px; padding-top: 22px;
  border-top: 1px solid rgba(250,249,234,.2);
  display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: space-between; align-items: center;
}
.footer__license { font-size: 11.5px; color: rgba(250,249,234,.6); line-height: 1.9; }

/* フッターは全ページに入るため、スマートフォンでは2列に詰める。
   リンクは減らさない（内部リンクは検索エンジンへの案内として重要） */
@media (max-width: 640px) {
  .footer { padding-block: 40px 24px; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); gap: 22px 14px; }
  .footer__nav h3 { font-size: 11px; padding-bottom: 8px; }
  .footer__nav ul { margin-top: 10px; gap: 7px; }
  .footer__nav a { font-size: 12.5px; line-height: 1.5; }
  .footer__addr { margin-top: 16px; font-size: 12.5px; line-height: 1.85; }
  .footer__tel { margin-top: 12px; font-size: 26px; }
  .footer__sns { margin-top: 16px; }
  .footer__sns a { width: 40px; height: 40px; }
}
.footer small { font-family: var(--f-en); font-size: 11px; letter-spacing: .08em; color: rgba(250,249,234,.55); }

/* sp fixed cta */
.spbar { display: none; }

/* -------------------------------------------------- 24. Reveal */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
/* JavaScript が無効でもコンテンツが消えないように */
@media (scripting: none) {
  [data-reveal] { opacity: 1; transform: none; }
}

/* -------------------------------------------------- 25. Responsive */
/* メニューが7項目あるため、この帯だけ詰めて1行に収める */
@media (min-width: 1321px) and (max-width: 1439px) {
  .gnav__list { gap: 13px; }
  .gnav__list > li > a { font-size: 13px; letter-spacing: 0; }
  .gnav__list > li > a.has-sub { margin-right: 12px; }
  .header__cta { gap: 10px; }
  .header__tel a { font-size: 17px; }
}
@media (max-width: 1320px) {
  .gnav, .header__tel { display: none; }
  .burger { display: block; margin-left: auto; }
  .header__cta .btn { display: none; }
  .feature__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .cta__cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  :root { --header-h: 68px; }
  .about__grid, .access__grid, .footer__top, .season { grid-template-columns: 1fr; }
  .duo, .service__list { grid-template-columns: 1fr; }
  .newscards, .voice__list, .cta__cards, .gridcards, .sitemap { grid-template-columns: repeat(2, 1fr); }
  .newslist a { grid-template-columns: 96px 1fr; grid-template-areas: "date cat" "ttl ttl"; gap: 8px 14px; padding-block: 18px; }
  .newslist time { grid-area: date; }
  .newslist .chip { grid-area: cat; justify-self: start; }
  .newslist p { grid-area: ttl; font-size: 14.5px; }
  .newslist .more { display: none; }
  .season { border-radius: 22px; }
  .season > div:last-child .btn { width: 100%; justify-content: space-between; }
}
@media (max-width: 640px) {
  body { font-size: 15px; }
  .hero { height: 92svh; }
  .hero__copy { line-height: 1.5; }
  .hero__dots { left: var(--gutter); right: auto; bottom: 96px; }
  .hero__scroll { display: none; }
  .hero__actions .btn { flex: 1 1 100%; justify-content: space-between; }
  .feature__list, .newscards, .voice__list, .cta__cards, .gridcards, .sitemap, .form__grid2 { grid-template-columns: 1fr; }
  .insta__grid { gap: 8px; }
  .about__stats { gap: 12px; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
  .info th, .info td { display: block; width: auto; border-bottom: 0; padding: 0; }
  .info th { padding-top: 16px; }
  .info td { padding-bottom: 16px; border-bottom: 1px solid var(--line); }
  .flow__item { padding: 66px 24px 24px; }
  .flow__item::before { top: 24px; }
  /* SP 固定CTAバー */
  .spbar {
    display: grid; grid-template-columns: repeat(4, 1fr);
    position: fixed; inset: auto 0 0; z-index: 90;
    background: var(--ink);
    border-top: 2px solid var(--accent);
  }
  .spbar a {
    padding: 10px 2px calc(10px + env(safe-area-inset-bottom));
    display: grid; place-items: center; gap: 3px;
    color: var(--cream); font-size: 10.5px; font-weight: 700; letter-spacing: 0;
    border-right: 1px solid rgba(250,249,234,.18);
  }
  .spbar a:last-child { border-right: 0; }
  .spbar svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 1.8; }
  /* いちばん取りたい行動（来店予約）だけ、地を反転させて目立たせます。
     4つとも同じ見た目だと、どれを押せばよいか分からないためです。 */
  .spbar__hot { background: var(--accent); color: var(--ink) !important; }
  .spbar__hot svg { stroke: var(--ink); }
  .visit { flex-direction: column; align-items: stretch; }
  .visit .btn { width: 100%; }
  .footer { padding-bottom: 96px; }
}

/* =============================================================
   26. 追加コンテンツ用（エリア／用語集／シミュレーター）
   ============================================================= */

/* ---- グローバルナビのドロップダウン ---- */
.gnav__list > li { position: relative; }
.gnav__list > li > a.has-sub { margin-right: 15px; }
.gnav__list > li > a.has-sub::before {
  content: ""; position: absolute; right: -15px; top: 50%;
  width: 6px; height: 6px; margin-top: -5px;
  border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg);
}
.gnav__sub {
  position: absolute; top: calc(100% + 14px); left: 50%;
  z-index: 5;
  min-width: 240px;
  padding: 12px;
  background: var(--cream);
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(20, 20, 18, .16);
  max-height: calc(100vh - var(--header-h) - 40px);
  overflow-y: auto;
  opacity: 0; visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
}
.gnav__sub::before { content: ""; position: absolute; inset: -16px 0 auto; height: 16px; }
.gnav__list > li:hover .gnav__sub,
.gnav__list > li:focus-within .gnav__sub { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.gnav__sub a {
  display: block; padding: 10px 14px; border-radius: 12px;
  font-size: 13.5px; font-weight: 700; white-space: nowrap; color: var(--ink);
}
.gnav__sub a small { display: block; font-family: var(--f-en); font-size: 10px; letter-spacing: .14em; color: var(--ink-3); font-weight: 700; }
.gnav__sub a:hover { opacity: 1; background: var(--accent); }
.gnav__sub a:hover small { color: var(--ink); }

/* ---- データテーブル（家賃相場・所要時間など） ---- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.dtable { width: 100%; min-width: 460px; border-collapse: collapse; font-size: 14.5px; }
.dtable thead th {
  background: var(--ink-surface); color: var(--cream);
  font-size: 12.5px; font-weight: 800; letter-spacing: .06em;
  padding: 13px 16px; text-align: left; white-space: nowrap;
}
.dtable thead th:first-child { border-radius: 14px 0 0 0; }
.dtable thead th:last-child { border-radius: 0 14px 0 0; }
.dtable tbody th, .dtable td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.dtable tbody th { font-weight: 800; white-space: nowrap; width: 1%; }
.dtable td { color: var(--ink-2); }
.dtable td b { color: var(--ink); font-family: var(--f-en); font-size: 16px; font-weight: 800; }
.dtable tbody tr:hover { background: rgba(240, 163, 30, .09); }
.table-note { margin-top: 12px; font-size: 12.5px; color: var(--ink-3); line-height: 1.9; }

/* ---- エリアページの回遊リンク ---- */
.arealinks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.arealinks a {
  display: block; background: var(--white); border-radius: 18px; padding: 22px 24px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.arealinks a:hover { opacity: 1; transform: translateY(-4px); box-shadow: 0 16px 34px rgba(20, 20, 18, .1); }
.arealinks b { display: block; font-size: 17px; font-weight: 900; }
.arealinks span { display: block; margin-top: 4px; font-size: 12.5px; color: var(--ink-3); line-height: 1.7; }
.arealinks em { display: block; margin-top: 10px; font-family: var(--f-en); font-size: 12px; font-weight: 800; font-style: normal; color: var(--accent-text); }
@media (max-width: 900px) { .arealinks { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .arealinks { grid-template-columns: 1fr; } }

/* トップページのエリア・条件は、説明を省いて一覧性を優先する。
   下層ページでは説明つきの大きいカードのままです。               */
.arealinks--compact { grid-template-columns: repeat(4, 1fr); gap: 10px; }
.arealinks--compact a { padding: 15px 18px; }
.arealinks--compact b { font-size: 15px; }
.arealinks--compact span,
.arealinks--compact em { display: none; }
@media (max-width: 900px) { .arealinks--compact { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .arealinks--compact { grid-template-columns: repeat(2, 1fr); gap: 8px; } }
@media (max-width: 380px) { .arealinks--compact b { font-size: 13.5px; } }

/* ---- 用語集 ---- */
.gl-tools { display: grid; gap: 18px; margin-bottom: clamp(28px, 3.4vw, 40px); }
.gl-search { position: relative; }
.gl-search input {
  width: 100%; font: inherit; font-size: 15px;
  padding: 15px 18px 15px 48px;
  background: var(--white); border: 2px solid var(--line); border-radius: 14px;
}
.gl-search input:focus { border-color: var(--ink); outline: none; }
.gl-search::before {
  content: ""; position: absolute; left: 17px; top: 50%; width: 20px; height: 20px; margin-top: -10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A897E' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M16.2 16.2L21 21'/%3E%3C/svg%3E") center / contain no-repeat;
  pointer-events: none;
}
.gl-index { display: flex; flex-wrap: wrap; gap: 8px; }
.gl-index a { display: inline-flex; align-items: center; height: 34px; padding-inline: 16px; border: 1px solid var(--line); border-radius: var(--r-pill); font-size: 13px; font-weight: 800; background: var(--white); }
.gl-index a:hover { opacity: 1; background: var(--accent); border-color: var(--accent); }
.gl-group { margin-top: clamp(34px, 4vw, 52px); }
.gl-group > h2 {
  font-size: clamp(20px, 2.4vw, 26px); font-weight: 900;
  padding-bottom: 10px; border-bottom: 3px solid var(--accent);
}
.gl-list { margin-top: 20px; display: grid; gap: 14px; }
.gl-item { background: var(--white); border-radius: 18px; padding: 22px clamp(20px, 2.4vw, 28px); }
.gl-item dt { font-size: 16.5px; font-weight: 900; line-height: 1.6; }
.gl-item dt span { margin-left: 10px; font-family: var(--f-en); font-size: 11.5px; font-weight: 700; letter-spacing: .1em; color: var(--ink-3); }
.gl-item dd { margin: 8px 0 0; font-size: 14px; line-height: 1.95; color: var(--ink-2); }
.gl-empty { padding: 40px 0; text-align: center; color: var(--ink-3); font-size: 14px; }

/* ---- シミュレーター ---- */
.sim { background: var(--white); border-radius: 26px; padding: clamp(24px, 3vw, 40px); }
.sim + .sim { margin-top: clamp(28px, 3.4vw, 44px); }
.sim__head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.sim__head h2 { font-size: clamp(19px, 2.3vw, 24px); font-weight: 900; }
.sim__head span { font-family: var(--f-en); font-size: 12px; font-weight: 800; letter-spacing: .14em; color: var(--accent-text); }
.sim__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sim__row { display: grid; gap: 7px; }
.sim__row label { font-size: 13px; font-weight: 800; }
.sim__row small { display: block; font-size: 11.5px; font-weight: 500; color: var(--ink-3); }
.sim__field { display: flex; align-items: center; gap: 8px; }
.sim input, .sim select {
  width: 100%; font: inherit; font-size: 15px; padding: 12px 14px;
  background: var(--cream); border: 2px solid var(--line); border-radius: 12px;
}
.sim input:focus, .sim select:focus { border-color: var(--ink); outline: none; }
.sim__field .u { flex: none; font-size: 13px; font-weight: 800; color: var(--ink-2); }
.sim__out { margin-top: 28px; background: var(--ink-surface); color: var(--cream); border-radius: 20px; padding: clamp(22px, 2.6vw, 32px); }
.sim__total { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-bottom: 16px; border-bottom: 1px solid rgba(250, 249, 234, .22); }
.sim__total p { font-size: 14px; font-weight: 800; }
.sim__total b { font-family: var(--f-en); font-size: clamp(32px, 5.4vw, 52px); font-weight: 800; line-height: 1; color: var(--accent); }
.sim__total b i { font-family: var(--f-jp); font-size: .38em; font-style: normal; margin-left: 4px; }
.sim__break { margin-top: 18px; display: grid; gap: 9px; }
.sim__break div { display: flex; justify-content: space-between; gap: 14px; font-size: 13.5px; color: rgba(250, 249, 234, .82); }
.sim__break div b { font-family: var(--f-en); font-weight: 700; color: var(--cream); }
.sim__note { margin-top: 16px; font-size: 12px; line-height: 1.9; color: rgba(250, 249, 234, .55); }
@media (max-width: 900px) { .sim__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .sim__grid { grid-template-columns: 1fr; } }

/* ---- 掲載情報についての注記ブロック ---- */
.notice {
  background: var(--beige);
  border-radius: 18px;
  padding: clamp(20px, 2.4vw, 28px);
  font-size: 13px;
  line-height: 1.95;
  color: var(--ink-2);
}
.notice b { display: block; font-size: 14px; font-weight: 900; color: var(--ink); margin-bottom: 8px; }
.notice ul { margin-top: 8px; display: grid; gap: 6px; }
.notice li { position: relative; padding-left: 18px; }
.notice li::before { content: "※"; position: absolute; left: 0; color: var(--ink-3); font-family: var(--f-jp); }
.notice a { text-decoration: underline; font-weight: 700; color: var(--ink); }
.sec--white .notice, .sec--beige .notice { background: var(--cream); }

/* =============================================================
   27. 物件詳細／コラム記事／お客様の声
   ============================================================= */

/* ---- 物件詳細 ---- */
.pd { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: clamp(28px, 3.4vw, 52px); align-items: start; }
.pd__gallery { border-radius: 24px; overflow: hidden; background: var(--white); }
.pd__gallery > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.pd__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 8px; }
.pd__thumbs button { border-radius: 12px; overflow: hidden; aspect-ratio: 1 / 1; border: 2px solid transparent; padding: 0; }
.pd__thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.pd__thumbs button[aria-current="true"] { border-color: var(--accent); }
.pd__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.pd__price { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.pd__price b { font-family: var(--f-en); font-size: clamp(34px, 5vw, 50px); font-weight: 800; line-height: 1; color: var(--ink); }
.pd__price b i { font-family: var(--f-jp); font-size: .4em; font-style: normal; margin-left: 3px; }
.pd__price span { font-size: 13.5px; color: var(--ink-2); }
.pd__meta { margin-top: 14px; font-size: 14.5px; color: var(--ink-2); line-height: 1.9; }

/* 右カラムの問い合わせパネル */
.pd__side { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 14px; }
.pd__panel { background: var(--ink-surface); color: var(--cream); border-radius: 24px; padding: clamp(24px, 2.6vw, 30px); }
.pd__panel h2 { font-size: 17px; font-weight: 900; line-height: 1.6; }
.pd__panel p { margin-top: 10px; font-size: 13px; line-height: 1.9; color: rgba(250, 249, 234, .78); }
.pd__panel .btn { margin-top: 18px; }
.pd__panel .btn + .btn { margin-top: 10px; }
.pd__panel dl { margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(250, 249, 234, .22); display: grid; gap: 8px; font-size: 13px; }
.pd__panel dl > div { display: flex; justify-content: space-between; gap: 12px; }
.pd__panel dt { color: rgba(250, 249, 234, .68); }
.pd__panel dd { margin: 0; font-weight: 700; }

.pd__equip { display: flex; flex-wrap: wrap; gap: 8px; }
.pd__equip span { display: inline-flex; align-items: center; gap: 7px; height: 34px; padding-inline: 16px; border-radius: var(--r-pill); background: var(--white); border: 1px solid var(--line); font-size: 13px; font-weight: 700; }
.pd__equip span::before { content: ""; width: 15px; height: 15px; flex: none; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D98A0C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12l6 6L20 6'/%3E%3C/svg%3E") center / contain no-repeat; }
.sec--white .pd__equip span { background: var(--cream); }

@media (max-width: 1024px) {
  /* 物件詳細も同じ理由で minmax(0, 1fr) にしています（物件概要の表があるため）。 */
  .pd { grid-template-columns: minmax(0, 1fr); }
  .pd__side { position: static; }
}

/* ---- コラム記事 ---- */
.art { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: clamp(28px, 3.4vw, 56px); align-items: start; }
.art__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; font-family: var(--f-en); font-size: 13px; font-weight: 700; color: var(--ink-3); margin-bottom: 16px; }
.art__hero { border-radius: 24px; overflow: hidden; margin-bottom: clamp(28px, 3.4vw, 44px); }
.art__hero img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.art__lead { font-size: clamp(15px, 1.8vw, 17px); font-weight: 700; line-height: 2; padding: 22px 26px; background: var(--white); border-radius: 18px; border-left: 6px solid var(--accent); }
.sec--white .art__lead { background: var(--cream); }

.toc { position: sticky; top: calc(var(--header-h) + 20px); background: var(--white); border-radius: 20px; padding: 24px 26px; }
.sec--white .toc { background: var(--cream); }
.toc h2 { font-family: var(--f-en); font-size: 12px; font-weight: 800; letter-spacing: .16em; color: var(--ink-3); padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.toc ol { margin-top: 14px; display: grid; gap: 10px; counter-reset: toc; }
.toc li { counter-increment: toc; }
.toc a { display: flex; gap: 10px; font-size: 13.5px; font-weight: 700; line-height: 1.7; }
.toc a::before { content: counter(toc, decimal-leading-zero); flex: none; font-family: var(--f-en); font-size: 11px; font-weight: 800; color: var(--accent-text); padding-top: 3px; }

/* 記事の幅いっぱいに置く目次（サイドバーを持たないページ用） */
.toc--inline { position: static; margin-top: 30px; }
.toc--inline ol { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 26px; }
@media (max-width: 700px) { .toc--inline ol { grid-template-columns: 1fr; } }
@media (max-width: 1024px) {
  /* minmax(0, 1fr) にしないと、中の表が縮まずに横スクロールが出ます。
     1fr の最小値は min-content なので、表の最小幅が段の幅を押し広げてしまいます。
     0 にしておけば段は縮み、表は .table-scroll の中だけで横に動きます。 */
  .art { grid-template-columns: minmax(0, 1fr); }
  .toc { position: static; order: -1; }
}

.art__body h2 {
  font-size: clamp(19px, 2.4vw, 25px); font-weight: 900; line-height: 1.6;
  margin-top: clamp(44px, 5vw, 64px); padding-left: 18px; border-left: 7px solid var(--accent);
  scroll-margin-top: calc(var(--header-h) + 24px);
}
.art__body h3 { font-size: 17.5px; font-weight: 900; margin-top: 32px; line-height: 1.7; }
.art__body p { margin-top: 16px; font-size: 15px; line-height: 2.15; color: var(--ink-2); }
.art__body ul, .art__body ol { margin-top: 16px; display: grid; gap: 10px; }
.art__body ul li { position: relative; padding-left: 22px; font-size: 15px; line-height: 2.05; color: var(--ink-2); }
.art__body ul li::before { content: ""; position: absolute; left: 4px; top: 13px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.art__body ol { counter-reset: an; }
.art__body ol li { position: relative; padding-left: 34px; font-size: 15px; line-height: 2.05; color: var(--ink-2); }
.art__body ol li::before { counter-increment: an; content: counter(an); position: absolute; left: 0; top: 6px; width: 23px; height: 23px; border-radius: 50%; background: var(--ink-surface); color: var(--accent); font-family: var(--f-en); font-size: 12px; font-weight: 800; display: grid; place-items: center; }
.art__body strong { color: var(--ink); font-weight: 900; }
.art__box { margin-top: 26px; background: var(--beige); border-radius: 20px; padding: clamp(22px, 2.4vw, 30px); }
.art__box b { display: block; font-size: 15.5px; font-weight: 900; margin-bottom: 8px; }
.art__box p { margin-top: 8px; font-size: 14px; line-height: 2; color: var(--ink-2); }
.sec--white .art__box { background: var(--cream); }

/* ---- お客様の声（一覧ページ） ---- */
.voicelist { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2.4vw, 28px); }
.voicelist .voice__item { background: var(--white); }
.sec--white .voicelist .voice__item { background: var(--cream); }
.voice__tag { display: inline-flex; align-items: center; height: 28px; padding-inline: 14px; border-radius: var(--r-pill); background: var(--accent); font-size: 11.5px; font-weight: 800; margin-bottom: 12px; }
@media (max-width: 800px) { .voicelist { grid-template-columns: 1fr; } }

/* -------------------------------------------------- 31. 上に戻る／進捗バー */
/* どちらも main.js が作ります。HTMLには書いていません
   （全80ページに同じものを足す手間を避けるためです）。 */

.totop {
  position: fixed; right: clamp(14px, 3vw, 26px); bottom: clamp(14px, 3vw, 26px);
  z-index: 80;
  width: 48px; height: 48px; border: 0; border-radius: 50%;
  background: var(--ink-surface); color: var(--cream);
  display: grid; place-items: center; cursor: pointer;
  box-shadow: 0 8px 22px rgba(20, 20, 18, .22);
  /* 出るまでは触れないようにします。見えないボタンを押せてしまうと厄介なので。 */
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.totop.is-on { opacity: 1; visibility: visible; transform: none; }
.totop:hover { background: var(--accent); color: var(--ink); }
.totop svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 900px) {
  /* スマホは下に固定メニューがあるので、その上に置きます。 */
  .totop { bottom: calc(72px + env(safe-area-inset-bottom)); width: 44px; height: 44px; }
}
@media (prefers-reduced-motion: reduce) {
  .totop { transition: none; }
}

.navbar-progress {
  position: fixed; left: 0; top: 0; z-index: 200;
  height: 3px; width: 0;
  background: var(--accent);
  opacity: 0; transition: opacity .2s var(--ease);
  pointer-events: none;
}
.navbar-progress.is-on { opacity: 1; }

/* -------------------------------------------------- 32. 読み上げ専用の見出し */
/* 目で見る分には要らないが、構造としては必要な見出しに使います。
   一覧ページで h1 のつぎに h3 が来ると、見出しをたどって読む人が
   階層を見失うためです。表示は変わりません。 */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}

/* -------------------------------------------------- 33. 本文へスキップ */
/* キーボードだけで操作する方が、ページを開くたびにヘッダーとメニューを
   ぜんぶたどらずに本文へ飛べるようにするものです。
   ふだんは画面の外にあり、Tab キーを押した瞬間だけ出てきます。 */
.skip {
  position: fixed; left: 16px; top: -72px; z-index: 300;
  padding: 12px 20px; border-radius: 0 0 14px 14px;
  background: var(--ink); color: var(--cream);
  font-size: 14px; font-weight: 700; line-height: 1;
  text-decoration: none;
  transition: top .18s var(--ease);
}
.skip:focus, .skip:focus-visible { top: 0; outline: 3px solid var(--accent); outline-offset: 2px; }
/* 飛んだ先に枠が出ないように。移動そのものは効いています。 */
main:focus { outline: none; }
@media (prefers-reduced-motion: reduce) { .skip { transition: none; } }
