/* ============================================================
   074 〇〇 Memory Care — 遺品整理・特殊清掃
   Design: Editorial split, Beige × Sumi × Sakura
   ============================================================ */

:root {
  --beige: #e8dfd2;
  --beige-soft: #f0e9dd;
  --cream: #f5f0e6;
  --paper: #faf6ee;
  --sumi: #2a2a2a;
  --sumi-soft: #4a4a48;
  --sakura: #f4dde0;
  --sakura-deep: #e8b8c0;
  --line: #c9bfa9;
  --line-soft: #ddd2bd;
  --gold: #b08a5b;
  --text: #2a2a2a;
  --text-soft: #5a574f;
  --text-mute: #8a8478;
  --bg: #faf6ee;
  --bg-alt: #f0e9dd;
  --border: #d8cdb6;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', 'Noto Serif JP', 'Hiragino Mincho ProN', serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.012em;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s ease, opacity .3s ease; }
a:hover { color: var(--gold); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
@media(max-width:760px){ .container { padding: 0 22px; } }

/* ─── DEMO BAR ───────────────────────────── */
#demo-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1300;
  background: rgba(20,18,14,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 7px 0;
}
.demo-bar-inner {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  font-size: 0.7rem; color: rgba(255,255,255,0.55);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.demo-badge {
  font-size: 0.55rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  background: rgba(244,221,224,0.18); color: var(--sakura);
  padding: 3px 11px; border-radius: 2px; flex-shrink: 0;
}
.demo-link { color: var(--sakura); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.demo-copy { color: rgba(255,255,255,0.32); font-size: 0.62rem; margin-left: 4px; }
@media(max-width:640px){ .demo-copy { display: none; } }

/* ─── HEADER ─────────────────────────────── */
.site-header {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 1200;
  background: rgba(250,246,238,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transition: background .3s ease;
}
.header-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 18px 40px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 36px;
}
.brand {
  display: flex; flex-direction: column; gap: 2px; line-height: 1;
}
.brand-en {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.55rem;
  color: var(--sumi);
  letter-spacing: 0.01em;
}
.brand-en em { font-style: normal; color: var(--gold); font-weight: 400; }
.brand-jp {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  color: var(--text-mute);
  margin-top: 4px;
}
.header-nav {
  display: flex;
  justify-content: flex-end;
  gap: 34px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.header-nav a {
  position: relative;
  padding: 6px 0;
  color: var(--sumi-soft);
}
.header-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.header-nav a:hover::after { transform: scaleX(1); }
.header-cta,
.header-nav a.header-cta {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 11px 22px;
  border: 1px solid var(--sumi);
  color: var(--sumi);
  font-weight: 600;
  white-space: nowrap;
  transition: background .3s ease, color .3s ease;
}
.header-cta:hover,
.header-nav a.header-cta:hover { background: var(--sumi); color: var(--cream); }
.mobile-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  font-size: 1.4rem; color: var(--sumi);
  padding: 8px;
}
@media(max-width:960px){
  .header-inner { grid-template-columns: 1fr auto; padding: 16px 22px; gap: 16px; }
  .header-nav, .header-cta { display: none; }
  .mobile-toggle { display: block; z-index: 1310; position: relative; }
}

/* ─── MOBILE MENU OVERLAY ───────────────── */
@media(max-width:960px){
  .header-nav {
    position: fixed; inset: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 22px;
    z-index: 1290;
    display: none;
    font-size: 1rem;
    letter-spacing: 0.24em;
  }
  .header-nav.is-open { display: flex; }
  .header-nav.is-open a {
    opacity: 0;
    transform: translateY(8px);
    animation: navFadeIn .55s ease forwards;
  }
  .header-nav.is-open a:nth-child(1){ animation-delay: .08s; }
  .header-nav.is-open a:nth-child(2){ animation-delay: .14s; }
  .header-nav.is-open a:nth-child(3){ animation-delay: .20s; }
  .header-nav.is-open a:nth-child(4){ animation-delay: .26s; }
  .header-nav.is-open a:nth-child(5){ animation-delay: .32s; }
  .header-nav.is-open a:nth-child(6){ animation-delay: .38s; }
  @keyframes navFadeIn { to { opacity: 1; transform: translateY(0); } }
  .site-header,
  .site-header.is-scrolled,
  .site-header.menu-active {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .site-header.menu-active {
    background: var(--cream) !important;
  }
}

/* ─── HERO（誌面・2カラム分離） ────────────── */
.hero {
  padding: 200px 0 110px;
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--bg-alt) 100%);
  position: relative;
}
.hero::before {
  content: "";
  position: absolute; top: 96px; right: 8%; width: 1px; height: 80px;
  background: var(--gold);
  opacity: .5;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 80px;
  align-items: center;
}
.hero-text { max-width: 620px; }
.hero-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
  display: flex; align-items: center; gap: 16px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ""; flex: 0 0 28px; height: 1px; background: var(--gold);
}
.hero-eyebrow::after { flex: 1; }
.hero-title {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(48px, 6.4vw, 92px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--sumi);
  margin-bottom: 32px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
  font-weight: 400;
  position: relative;
}
.hero-title em::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 6%;
  height: 8px; background: var(--sakura);
  z-index: -1; opacity: .65;
}
.hero-title-jp {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 400;
  line-height: 1.7;
  color: var(--sumi);
  margin-bottom: 36px;
  letter-spacing: 0.06em;
}
.hero-lead-jp {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.92rem;
  line-height: 2.05;
  color: var(--text-soft);
  margin-bottom: 44px;
  letter-spacing: 0.04em;
  max-width: 540px;
}
.hero-cta {
  display: flex; gap: 18px; flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 16px 30px;
  transition: all .35s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--sumi);
  color: var(--cream);
  border: 1px solid var(--sumi);
}
.btn-primary:hover { background: transparent; color: var(--sumi); }
.btn-outline {
  background: transparent;
  color: var(--sumi);
  border: 1px solid var(--sumi);
}
.btn-outline:hover { background: var(--sumi); color: var(--cream); }
.btn-sakura {
  background: var(--sakura);
  color: var(--sumi);
  border: 1px solid var(--sakura-deep);
}
.btn-sakura:hover { background: var(--sakura-deep); color: var(--sumi); }

.hero-visual {
  position: relative;
}
.hero-photo {
  aspect-ratio: 4/5;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.05), rgba(0,0,0,0)),
    url('../images/hero.jpg') center/cover no-repeat,
    linear-gradient(160deg, #d9cfb9 0%, #b8a78c 60%, #8d7c63 100%);
  background-blend-mode: normal;
  position: relative;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,0.32);
  pointer-events: none;
}
.hero-caption {
  margin-top: 18px;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.82rem;
  color: var(--text-mute);
  border-top: 1px solid var(--line-soft);
  padding-top: 14px;
  display: flex; flex-direction: column; gap: 4px;
}
.hero-caption span {
  font-family: 'Noto Serif JP', serif;
  font-style: normal;
  font-size: 0.74rem;
  color: var(--text-soft);
  letter-spacing: 0.12em;
}
@media(max-width:960px){
  .hero { padding: 160px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { order: -1; max-width: 360px; }
}

/* ─── HERO INDEX (categories) ───────────────── */
.hero-index {
  margin-top: 80px;
  padding-top: 36px;
  border-top: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hero-index-item {
  display: flex; flex-direction: column; gap: 6px;
  padding-left: 18px;
  border-left: 1px solid var(--line-soft);
}
.hero-index-num {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
}
.hero-index-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sumi);
  font-weight: 600;
}
.hero-index-jp {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.78rem;
  color: var(--text-mute);
  letter-spacing: 0.08em;
}
@media(max-width:760px){
  .hero-index { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

/* ─── REVEAL ANIMATION (静かな短距離) ────────── */
.reveal { opacity: 0; transform: translateY(6px); transition: opacity .7s ease, transform .7s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .22s; }
.reveal-delay-3 { transition-delay: .32s; }

/* ─── SECTION COMMON ─────────────────────── */
.section { padding: 110px 0; position: relative; }
.section-alt { background: var(--bg-alt); }
.section-cream { background: var(--cream); }
.section-paper { background: var(--paper); }
.section-sumi { background: var(--sumi); color: var(--cream); }

.section-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.section-eyebrow::before {
  content: ""; flex: 0 0 24px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.15;
  color: var(--sumi);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.section-title em { font-style: normal; color: var(--gold); font-weight: 400; }
.section-title-jp {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(16px, 1.6vw, 21px);
  color: var(--text-soft);
  margin-bottom: 60px;
  letter-spacing: 0.08em;
}

/* ─── ABOUT (誌面エッセイ) ─────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.about-image {
  aspect-ratio: 4/5;
  background:
    url('../images/about.jpg') center/cover no-repeat,
    linear-gradient(160deg, #c8b89e 0%, #9b8970 100%);
  position: relative;
}
.about-image::after {
  content: ""; position: absolute; inset: 14px;
  border: 1px solid rgba(255,255,255,0.32);
}
.about-meta {
  margin-top: 18px;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.78rem;
  color: var(--text-mute);
  letter-spacing: 0.04em;
}
.about-text p {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.95rem;
  line-height: 2.05;
  color: var(--text-soft);
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}
.about-text p strong { color: var(--sumi); font-weight: 600; }
.about-quote {
  margin: 36px 0;
  padding: 28px 32px;
  background: var(--sakura);
  border-left: 3px solid var(--sakura-deep);
  font-family: 'Noto Serif JP', serif;
  font-size: 1.02rem;
  line-height: 2;
  color: var(--sumi);
  font-style: italic;
}
.about-signature {
  margin-top: 36px;
  display: flex; align-items: center; gap: 18px;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--text-mute);
}
.about-signature span {
  font-family: 'Noto Serif JP', serif;
  font-style: normal;
  font-size: 0.82rem;
  color: var(--sumi);
}
@media(max-width:960px){
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-image { max-width: 380px; }
}

/* ─── SERVICE LIST (誌面・縦リスト) ────────── */
.service-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-soft);
}
.service-item {
  display: grid;
  grid-template-columns: 70px 1.4fr 2fr auto;
  gap: 36px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: start;
  transition: background .3s ease, padding-left .35s ease;
}
.service-item:hover {
  background: var(--paper);
  padding-left: 14px;
}
.service-num {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.7rem;
  color: var(--gold);
  line-height: 1;
}
.service-title {
  font-family: 'Lora', serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--sumi);
  line-height: 1.3;
  margin-bottom: 6px;
}
.service-title-jp {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.78rem;
  color: var(--text-mute);
  letter-spacing: 0.16em;
}
.service-desc {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.86rem;
  line-height: 1.95;
  color: var(--text-soft);
  letter-spacing: 0.04em;
}
.service-arrow {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  align-self: center;
}
@media(max-width:760px){
  .service-item {
    grid-template-columns: 50px 1fr;
    gap: 16px;
  }
  .service-desc { grid-column: 1 / -1; padding-left: 66px; }
  .service-arrow { display: none; }
}

/* ─── WORKS GRID ──────────────────────────── */
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.work-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  display: flex; flex-direction: column;
  transition: transform .45s ease, box-shadow .45s ease;
}
.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(42,42,42,0.08);
}
.work-image {
  aspect-ratio: 3/2;
  background: var(--beige);
  position: relative;
  overflow: hidden;
}
.work-image::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #d9cfb9 0%, #b8a78c 50%, #8d7c63 100%);
}
.work-image[data-img="01"]::before { background: linear-gradient(160deg, #c8b89e, #a18d70); }
.work-image[data-img="02"]::before { background: linear-gradient(160deg, #d3c0c4, #aa8b91); }
.work-image[data-img="03"]::before { background: linear-gradient(160deg, #b9c0b5, #7d867c); }
.work-image[data-img="04"]::before { background: linear-gradient(160deg, #c4b5a0, #97836b); }
.work-image[data-img="05"]::before { background: linear-gradient(160deg, #d8c8c0, #ad9588); }
.work-image[data-img="06"]::before { background: linear-gradient(160deg, #b0a995, #807967); }
.work-body {
  padding: 26px 28px 30px;
  display: flex; flex-direction: column; gap: 10px;
}
.work-tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.work-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--sumi);
  line-height: 1.55;
}
.work-meta {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.74rem;
  color: var(--text-mute);
  display: flex; gap: 14px;
  border-top: 1px solid var(--line-soft);
  padding-top: 12px;
  margin-top: 4px;
}
@media(max-width:960px){ .works-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media(max-width:640px){ .works-grid { grid-template-columns: 1fr; } }

/* ─── PROCESS STEPS ──────────────────────── */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.process-step {
  padding: 32px 24px;
  border-right: 1px solid var(--line-soft);
  position: relative;
}
.process-step:last-child { border-right: none; }
.process-num {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.process-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.98rem;
  color: var(--sumi);
  font-weight: 500;
  margin-bottom: 10px;
}
.process-desc {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.78rem;
  line-height: 1.8;
  color: var(--text-soft);
}
@media(max-width:760px){
  .process { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--line-soft); }
  .process-step:last-child { border-bottom: none; }
}

/* ─── NEWS SECTION (上部寄り) ─────────────── */
.news-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line-soft);
}
.news-item {
  display: grid;
  grid-template-columns: 130px 110px 1fr auto;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: center;
  font-family: 'Noto Serif JP', serif;
  transition: padding-left .3s ease;
}
.news-item:hover { padding-left: 12px; }
.news-date {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--text-mute);
}
.news-cat {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-style: normal;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--line);
  padding: 4px 10px;
  text-align: center;
  font-weight: 600;
}
.news-title {
  font-size: 0.92rem;
  color: var(--sumi);
  line-height: 1.65;
}
.news-arrow {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--gold);
}
@media(max-width:760px){
  .news-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }
  .news-cat { justify-self: start; }
  .news-arrow { display: none; }
}

/* ─── STRENGTHS ──────────────────────────── */
.strengths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.strength-item {
  padding: 32px 28px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  display: flex; flex-direction: column; gap: 14px;
}
.strength-num {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  display: flex; align-items: center; gap: 10px;
}
.strength-num::after {
  content: ""; flex: 1; height: 1px; background: var(--line-soft);
}
.strength-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--sumi);
}
.strength-desc {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.85rem;
  line-height: 1.95;
  color: var(--text-soft);
}
@media(max-width:880px){ .strengths { grid-template-columns: 1fr; gap: 22px; } }

/* ─── CTA BANNER ─────────────────────────── */
.cta-banner {
  background: var(--sumi);
  color: var(--cream);
  padding: 80px 0;
  text-align: center;
}
.cta-banner-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--sakura);
  margin-bottom: 18px;
}
.cta-banner-title {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(32px, 4vw, 50px);
  margin-bottom: 14px;
  color: var(--cream);
}
.cta-banner-jp {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.95rem;
  color: rgba(245,240,230,0.78);
  margin-bottom: 36px;
  letter-spacing: 0.06em;
}
.cta-banner .btn-primary {
  background: var(--sakura);
  color: var(--sumi);
  border-color: var(--sakura);
}
.cta-banner .btn-primary:hover {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}

/* ─── FOOTER ─────────────────────────────── */
.site-footer {
  background: var(--bg-alt);
  padding: 80px 0 40px;
  border-top: 1px solid var(--line-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 0.9fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .brand-en { font-size: 1.6rem; }
.footer-brand .brand-jp { margin-top: 6px; }
.footer-desc {
  margin-top: 18px;
  font-family: 'Noto Serif JP', serif;
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.85;
  letter-spacing: 0.04em;
}
.footer-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  font-family: 'Noto Serif JP', serif;
  font-size: 0.84rem;
}
.footer-list a { color: var(--text-soft); }
.footer-list a:hover { color: var(--sumi); }
.footer-info {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.95;
}
.footer-info dt {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 10px;
}
.footer-info dt:first-child { margin-top: 0; }
.footer-info dd { margin-left: 0; color: var(--sumi); }
.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  color: var(--text-mute);
  letter-spacing: 0.08em;
}
@media(max-width:880px){
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media(max-width:560px){
  .footer-grid { grid-template-columns: 1fr; }
}

/* ─── PAGE HEADER (sub pages) ─────────────── */
.page-header {
  padding: 200px 0 80px;
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
}
.page-header-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.page-header-title {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(40px, 5.2vw, 72px);
  color: var(--sumi);
  line-height: 1.1;
  margin-bottom: 14px;
}
.page-header-jp {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(15px, 1.6vw, 19px);
  color: var(--text-soft);
  letter-spacing: 0.08em;
}
.page-header-crumb {
  margin-top: 22px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--text-mute);
}
.page-header-crumb a:hover { color: var(--sumi); }

/* ─── ABOUT PAGE BLOCKS ──────────────────── */
.profile-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Noto Serif JP', serif;
}
.profile-table th, .profile-table td {
  text-align: left;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.88rem;
  vertical-align: top;
}
.profile-table th {
  width: 200px;
  color: var(--text-mute);
  font-weight: 500;
  letter-spacing: 0.08em;
  font-family: 'Plus Jakarta Sans', 'Noto Serif JP', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}
.profile-table td { color: var(--sumi); line-height: 1.85; }

.history-list {
  display: flex; flex-direction: column;
  border-left: 1px solid var(--line-soft);
}
.history-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 30px;
  padding: 22px 0 22px 30px;
  position: relative;
}
.history-item::before {
  content: "";
  position: absolute; left: -5px; top: 28px;
  width: 9px; height: 9px;
  background: var(--gold);
  border-radius: 50%;
}
.history-year {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
}
.history-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.9;
}
.history-text strong { color: var(--sumi); font-weight: 500; }
@media(max-width:560px){
  .history-item { grid-template-columns: 1fr; gap: 6px; }
}

/* ─── ACCESS / MAP ALT ───────────────────── */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}
.access-info {
  font-family: 'Noto Serif JP', serif;
  display: flex; flex-direction: column; gap: 18px;
}
.access-info h3 {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--sumi);
  margin-bottom: 6px;
  font-weight: 500;
}
.access-info p { font-size: 0.92rem; color: var(--text-soft); line-height: 1.95; }
.access-map {
  aspect-ratio: 5/4;
  background:
    repeating-linear-gradient(0deg, transparent 0, transparent 39px, rgba(176,138,91,.18) 40px),
    repeating-linear-gradient(90deg, transparent 0, transparent 39px, rgba(176,138,91,.18) 40px),
    var(--paper);
  border: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.access-map::before {
  content: "▾";
  font-size: 2.2rem;
  color: var(--sakura-deep);
}
.access-map::after {
  content: "Map preview";
  position: absolute; bottom: 14px; left: 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}
@media(max-width:760px){ .access-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ─── CONTACT FORM ───────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact-info dl {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.9rem;
}
.contact-info dt {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 22px;
  font-weight: 600;
}
.contact-info dt:first-child { margin-top: 0; }
.contact-info dd { color: var(--sumi); margin: 6px 0 0; line-height: 1.9; }
.contact-info-note {
  margin-top: 32px; padding: 22px;
  background: var(--sakura);
  font-family: 'Noto Serif JP', serif;
  font-size: 0.86rem;
  line-height: 1.95;
  color: var(--sumi);
  border-left: 3px solid var(--sakura-deep);
}

.form { display: flex; flex-direction: column; gap: 22px; }
.form-row {
  display: grid; gap: 8px;
}
.form-row label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sumi);
  font-weight: 600;
}
.form-row label .req {
  font-size: 0.62rem; color: var(--sakura-deep);
  margin-left: 6px; letter-spacing: 0.04em;
}
.form-row input,
.form-row select,
.form-row textarea {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.96rem;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  padding: 14px 16px;
  color: var(--sumi);
  outline: none;
  transition: border-color .3s ease, background .3s ease;
}
.form-row textarea { min-height: 160px; resize: vertical; line-height: 1.8; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold);
  background: var(--cream);
}
.form-actions { margin-top: 18px; }
.form-note {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.78rem;
  color: var(--text-mute);
  line-height: 1.8;
  margin-top: 12px;
}
@media(max-width:880px){ .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ─── SERVICE PAGE EXTRA ─────────────────── */
.service-detail {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  padding: 60px 0;
  border-bottom: 1px solid var(--line-soft);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-num {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
}
.service-detail-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 18px 0 8px;
}
.service-detail h3 {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.9rem;
  color: var(--sumi);
  margin-bottom: 6px;
}
.service-detail h3 + p.jp {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.92rem;
  color: var(--text-mute);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.service-detail-body {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.92rem;
  line-height: 2;
  color: var(--text-soft);
}
.service-detail-body p { margin-bottom: 16px; }
.service-detail-body ul {
  list-style: none;
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
}
.service-detail-body li {
  position: relative;
  padding-left: 20px;
  font-size: 0.86rem;
  color: var(--sumi);
}
.service-detail-body li::before {
  content: "—";
  position: absolute; left: 0;
  color: var(--gold);
}
.service-detail-price {
  margin-top: 22px;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--text-mute);
  border-top: 1px solid var(--line-soft);
  padding-top: 14px;
}
.service-detail-price strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-style: normal;
  color: var(--sumi);
}
@media(max-width:880px){
  .service-detail { grid-template-columns: 1fr; gap: 24px; }
  .service-detail-body ul { grid-template-columns: 1fr; }
}

/* ─── RECRUIT ────────────────────────────── */
.recruit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.recruit-card {
  padding: 36px 32px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  display: flex; flex-direction: column; gap: 14px;
}
.recruit-tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.recruit-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.3rem;
  color: var(--sumi);
  font-weight: 500;
}
.recruit-table {
  width: 100%;
  font-family: 'Noto Serif JP', serif;
  font-size: 0.84rem;
  border-top: 1px solid var(--line-soft);
}
.recruit-table th, .recruit-table td {
  text-align: left;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}
.recruit-table th {
  width: 110px;
  color: var(--text-mute);
  font-weight: 500;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.recruit-table td { color: var(--sumi); line-height: 1.85; }
@media(max-width:760px){
  .recruit-grid { grid-template-columns: 1fr; }
}

/* ─── PRIVACY / NEWS DETAIL ──────────────── */
.prose {
  max-width: 820px;
  font-family: 'Noto Serif JP', serif;
  font-size: 0.92rem;
  line-height: 2.05;
  color: var(--text-soft);
}
.prose h2 {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--sumi);
  margin: 50px 0 18px;
  font-weight: 500;
}
.prose h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  color: var(--sumi);
  margin: 30px 0 12px;
  font-weight: 600;
}
.prose p { margin-bottom: 18px; }
.prose ul { padding-left: 24px; margin-bottom: 18px; }
.prose ul li { margin-bottom: 8px; }
.prose strong { color: var(--sumi); font-weight: 600; }

.news-detail-meta {
  display: flex; gap: 14px; align-items: center;
  margin-bottom: 22px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.74rem;
  color: var(--text-mute);
}
.news-detail-meta .news-cat {
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.back-link {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 60px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.back-link:hover { color: var(--sumi); }

/* ─── UTIL ───────────────────────────────── */
.text-center { text-align: center; }
.mt-60 { margin-top: 60px; }
.mb-60 { margin-bottom: 60px; }


/* ====================================================
   Visual safety override (2026-05-04 一括強制表示化)
   feedback_pre_upload_visual_check ルール準拠
   JS未発火時/画像非表示を防ぐため、すべての
   reveal系クラスを初期表示OKに強制
==================================================== */
.reveal, .reveal-up, .reveal-fade, .reveal-clip, .reveal-noren,
.scrub-item, .reveal-left, .reveal-right { 
  opacity: 1 !important; 
  transform: none !important; 
  clip-path: inset(0 0 0% 0) !important;
  -webkit-clip-path: inset(0 0 0% 0) !important;
}



/* ====================================================
   スマホ時 contact フォーム強制1カラム化（2026-05-05）
   2カラム表示で入力欄が狭くなる問題
==================================================== */
@media (max-width: 767px) {
    .form-row,
    .form-grid,
    .form-2col,
    .form-pair,
    .input-row,
    .input-grid,
    [class*="form-row"],
    [class*="form-grid"],
    [class*="two-col"] {
        display: block !important;
        grid-template-columns: 1fr !important;
    }
    form input[type="text"],
    form input[type="email"],
    form input[type="tel"],
    form input[type="number"],
    form textarea,
    form select,
    .form-row > input,
    .form-row > textarea,
    .form-row > select,
    .form-row > div,
    .form-grid > * {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    .form-row, .form-grid {
        margin-bottom: 1rem;
    }
}



/* ====================================================
   contact 1カラム化 強化版（2026-05-05・全クラス網羅）
==================================================== */
@media (max-width: 767px) {
    .contact-grid,
    .contact-form,
    .ct-grid,
    .ct-form,
    .booking-form,
    .reserve-form,
    .form-card,
    .form-wrap,
    .form-box,
    [class*="contact-grid"],
    [class*="contact-form"],
    [class*="ct-grid"],
    [class*="ct-form"] {
        display: block !important;
        grid-template-columns: 1fr !important;
    }
    .contact-grid > *,
    .contact-form > *,
    .ct-grid > *,
    .ct-form > *,
    .booking-form > *,
    .reserve-form > *,
    .form-card > *,
    .form-wrap > *,
    .form-box > * {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    .ct-budget-grid,
    .ct-field {
        grid-template-columns: 1fr !important;
        display: block !important;
    }
}

/* ====================================================
   横スクロール防止（2026-05-14 一括追加）
   CLAUDE.md ルール「html/body 両方に overflow-x:hidden」準拠
==================================================== */
html { overflow-x: hidden; }
body { overflow-x: hidden; }

/* ====================================================
   インラインstyle 2カラム→1カラム化（2026-05-15）
   左画像・右文章のインライン指定をスマホで1カラムに
==================================================== */
@media (max-width: 768px) {
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:repeat(2"],
  [style*="grid-template-columns: repeat(2"],
  [style*="grid-template-columns:1.1fr"],
  [style*="grid-template-columns: 1.1fr"],
  [style*="grid-template-columns:1.05fr"],
  [style*="grid-template-columns: 1.05fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

/* ====================================================
   process-grid（4STEPS）スマホ1カラム化（2026-05-16 一括追加）
==================================================== */
@media(max-width:640px){
  .process-grid{grid-template-columns:1fr !important;margin-top:32px}
  .process-step{padding:26px 20px;border-right:none !important;border-bottom:1px solid var(--line-soft) !important}
  .process-step:nth-child(2){border-right:none !important;border-bottom:1px solid var(--line-soft) !important}
  .process-step:last-child{border-bottom:none !important}
  .process-step .step-num{margin-bottom:14px}
  .process-step h4{font-size:22px;margin-bottom:10px}
  .process-step p{font-size:13px;line-height:1.78}
}
