/* =============================================================
   at home terrace — Main Stylesheet
   Ported from design/top-preview.html + internal page styles
   ============================================================= */

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

:root {
  --green:       #4a7c6f;
  --green-mid:   #3a6c5f;
  --green-light: #e8f3ef;
  --pink:        #c06080;
  --pink-light:  #f9e8f0;
  --blue:        #4a7ab8;
  --blue-light:  #e6f0fb;
  --gold:        #c4a030;
  --gold-light:  #fdf7e0;
  --base:        #faf8f5;
  --base-dark:   #f0ece6;
  --text:        #2d2d2d;
  --text-mid:    #6b6056;
  --text-light:  #9c8c7c;
  --font:        'Zen Maru Gothic', sans-serif;
  --radius-img:  12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--base);
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }

/* ── HEADER ──────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 68px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.site-header.scrolled {
  background: rgba(250,248,245,0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(74,124,111,0.1);
}

.site-logo {
  font-size: 17px;
  letter-spacing: 0.1em;
  color: #fff;
  line-height: 1.25;
  transition: color 0.4s;
}
.site-logo small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  opacity: 0.7;
}
.site-header.scrolled .site-logo { color: var(--text); }

/* ── GLOBAL NAV ───────────────────────────────── */
.global-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
/* wp_nav_menu() が出力する ul/li を flex に統合 */
.global-nav > ul { display: contents; list-style: none; }
.global-nav > ul > li { display: contents; }

.global-nav a {
  font-size: 12px;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.88);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s;
  white-space: nowrap;
}
.global-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 100%;
  height: 1px;
  background: var(--green);
  transition: right 0.3s ease;
}
.global-nav a:hover { color: #fff; }
.global-nav a:hover::after { right: 0; }
.site-header.scrolled .global-nav a { color: var(--text-mid); }
.site-header.scrolled .global-nav a:hover { color: var(--green); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 101;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s, background 0.4s;
}
.site-header.scrolled .hamburger span { background: var(--text); }
.hamburger[aria-expanded="true"] span { background: var(--green); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE NAV ───────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(250,248,245,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mobile-nav.open { display: flex; }
.mobile-nav ol { list-style: none; width: 100%; max-width: 360px; padding: 0 24px; }
.mobile-nav li { border-bottom: 1px solid var(--base-dark); }
.mobile-nav li:first-child { border-top: 1px solid var(--base-dark); }
.mobile-nav li a {
  display: block;
  padding: 18px 8px;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--text);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav li a:hover { color: var(--green); padding-left: 16px; }

/* ── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  will-change: transform;
  /* background-image は template-parts/top-hero.php のインラインスタイルで設定 */
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15,25,20,0.2) 0%,
    rgba(15,25,20,0.15) 40%,
    rgba(15,25,20,0.6) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 64px 88px;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(44px, 7.5vw, 88px);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.07em;
  line-height: 1.25;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.08em;
  line-height: 2;
  margin-bottom: 48px;
  max-width: 440px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.15em;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 100px;
  padding: 15px 36px;
  transition: background 0.35s, border-color 0.35s;
}
.hero-cta:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.75);
}
.hero-cta svg { transition: transform 0.3s; }
.hero-cta:hover svg { transform: translateX(5px); }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 9px;
  letter-spacing: 0.25em;
}
.hero-scroll-line {
  width: 1px;
  height: 64px;
  background: rgba(255,255,255,0.35);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  49%  { transform: scaleY(1); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── WAVE ─────────────────────────────────────── */
.wave { display: block; width: 100%; line-height: 0; overflow: hidden; }
.wave svg { display: block; width: 100%; }

/* ── SECTION COMMON ───────────────────────────── */
.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.section-label span {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.15;
  max-width: 72px;
}
.section-heading {
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.45;
  color: var(--text);
}
.section-lead {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 2;
  margin-top: 18px;
}

/* ── PATHS ────────────────────────────────────── */
.paths-section {
  background: var(--base);
  padding: 100px 0 88px;
}
.paths-header {
  text-align: center;
  margin-bottom: 72px;
}
.paths-header .section-label { justify-content: center; }
.paths-header .section-label::after { display: none; }
.paths-header .section-lead { margin: 18px auto 0; max-width: 480px; }

.paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.path-item {
  padding: 60px 44px 52px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.path-item::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.path-item:nth-child(1) { background: var(--pink-light); }
.path-item:nth-child(2) { background: var(--blue-light); }
.path-item:nth-child(3) { background: var(--green-light); }
.path-item:nth-child(1)::after { background: var(--pink); }
.path-item:nth-child(2)::after { background: var(--blue); }
.path-item:nth-child(3)::after { background: var(--green); }
.path-item:hover::after { transform: scaleX(1); }

.path-icon {
  width: 128px;
  height: 128px;
  margin-bottom: 28px;
  object-fit: contain;
}
.path-title {
  font-size: 20px;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 16px;
}
.path-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 2;
}
.path-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  color: var(--text-mid);
  transition: gap 0.3s, color 0.3s;
}
.path-link:hover { gap: 14px; color: var(--text); }

/* ── CONCEPT ──────────────────────────────────── */
.concept-section {
  background: #fff;
  padding: 108px 0 100px;
  overflow: hidden;
}
.concept-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.concept-heading { margin-bottom: 32px; }
.concept-body {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 2.15;
}
.concept-body p + p { margin-top: 22px; }

.concept-gallery {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: 260px 200px;
  gap: 8px;
}
.concept-gallery-item:nth-child(1) { grid-row: span 2; }
.concept-gallery-item { overflow: hidden; border-radius: var(--radius-img); }
.concept-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.concept-gallery-item:hover img { transform: scale(1.04); }

/* ── SERVICES ─────────────────────────────────── */
.services-section {
  background: var(--base);
  padding: 108px 0 100px;
}
.services-header { margin-bottom: 72px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.service-card {
  display: block;
  transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-6px); }
.service-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-img);
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 22px 2px 0; }
.service-card-cat {
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.service-card-title {
  font-size: 18px;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 10px;
}
.service-card-desc {
  font-size: 12.5px;
  color: var(--text-mid);
  line-height: 1.85;
}
.service-card-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--green);
  transition: gap 0.3s;
}
.service-card:hover .service-card-more { gap: 10px; }

/* ── STAFF ────────────────────────────────────── */
.staff-section {
  background: var(--base-dark);
  padding: 108px 0 100px;
}
.staff-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 88px;
  align-items: start;
}
.staff-text { padding-top: 8px; }
.staff-photo {
  overflow: hidden;
  border-radius: var(--radius-img);
}
.staff-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── NEWS ─────────────────────────────────────── */
.news-section {
  background: #fff;
  padding: 108px 0 100px;
}
.news-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 88px;
  align-items: start;
}
.news-list { list-style: none; }
.news-item {
  display: grid;
  grid-template-columns: 110px 56px 1fr;
  align-items: baseline;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--base-dark);
}
.news-item:first-child { border-top: 1px solid var(--base-dark); }
.news-date {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--text-light);
}
.news-cat {
  display: inline-block;
  font-size: 9.5px;
  letter-spacing: 0.06em;
  color: var(--green);
  background: var(--green-light);
  padding: 3px 8px;
  border-radius: 2px;
}
.news-title {
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.75;
  color: var(--text);
  transition: color 0.25s;
}
.news-item:hover .news-title { color: var(--green); }
.news-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 44px;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(107,96,86,0.3);
  padding-bottom: 4px;
  transition: color 0.3s, border-color 0.3s;
}
.news-more:hover { color: var(--green); border-color: var(--green); }

/* ── INSTAGRAM ────────────────────────────────── */
.insta-section {
  background: var(--base);
  padding: 100px 0 88px;
}
.insta-header {
  text-align: center;
  margin-bottom: 52px;
}
.insta-header .section-label {
  justify-content: center;
}
.insta-header .section-label::after {
  display: none;
}
.insta-header .section-heading {
  margin-top: 12px;
}
.insta-header .section-lead {
  margin-top: 16px;
}
.insta-feed-wrap {
  /* Smash Balloon のフィードが収まるコンテナ */
}
/* プラグイン未インストール時のプレースホルダー */
.insta-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 64px 24px;
  border: 1.5px dashed rgba(74,124,111,0.3);
  border-radius: 8px;
  text-align: center;
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.9;
}
.insta-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border: 1.5px solid var(--green);
  border-radius: 40px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--green);
  transition: background 0.25s, color 0.25s;
}
.insta-link-btn:hover {
  background: var(--green);
  color: #fff;
}
/* 静的グリッド */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.insta-grid-item {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-img);
  background: var(--base-dark);
}
.insta-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.3s;
}
.insta-grid-item:hover img {
  transform: scale(1.06);
  opacity: 0.85;
}
.insta-grid-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74,124,111,0.35);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
}
.insta-grid-item:hover .insta-grid-overlay {
  opacity: 1;
}
.insta-follow {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

/* ── ACCESS ───────────────────────────────────── */
.access-section {
  background: var(--base);
  padding: 108px 0 100px;
}
.access-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}
.access-info dl { margin-top: 40px; }
.access-info dt {
  font-size: 9.5px;
  letter-spacing: 0.28em;
  color: var(--text-light);
  margin-top: 24px;
  margin-bottom: 4px;
}
.access-info dt:first-child { margin-top: 0; }
.access-info dd {
  font-size: 14px;
  color: var(--text);
  line-height: 1.85;
}
.access-info dd a { color: var(--green); }
.access-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.12em;
  padding: 15px 32px;
  border-radius: 100px;
  transition: background 0.3s;
}
.access-cta:hover { background: var(--green-mid); }
.access-media {
  display: flex;
  flex-direction: column;
}
.access-media img {
  border-radius: var(--radius-img);
}
.access-map {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-img);
  background: var(--base-dark);
}
.access-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── FOOTER ───────────────────────────────────── */
.site-footer {
  background: #28332d;
  color: rgba(255,255,255,0.82);
  padding: 88px 0 44px;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
}
.footer-top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 88px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-size: 19px;
  letter-spacing: 0.1em;
  line-height: 1.3;
}
.footer-logo small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  opacity: 0.55;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 18px;
  line-height: 2;
}
.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-nav-group h4 {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-nav-group ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-nav-group ul li a {
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-nav-group ul li a:hover { color: #fff; }
.footer-bottom {
  padding-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copyright {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
}

/* ── SERVICE FAB ──────────────────────────────── */
.service-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
}
.service-fab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  line-height: 1.2;
  box-shadow: 0 4px 24px rgba(74,124,111,0.45);
  transition: background 0.3s, transform 0.35s;
}
.service-fab-btn:hover { background: var(--green-mid); }
.service-fab-btn[aria-expanded="true"] { transform: rotate(45deg); }

.service-fab-menu {
  position: absolute;
  bottom: 100px;
  right: 0;
  width: 226px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.14);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.service-fab-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.service-fab-label {
  font-size: 9.5px;
  letter-spacing: 0.2em;
  color: var(--text-light);
  padding: 12px 20px 8px;
  border-bottom: 1px solid var(--base-dark);
}
.service-fab-menu ul { list-style: none; padding: 6px 0; }
.service-fab-menu ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text);
  transition: background 0.2s, color 0.2s;
}
.service-fab-menu ul li a:hover {
  background: var(--green-light);
  color: var(--green);
}

/* ── FADE-UP ──────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  .hero-scroll-line { animation: none; }
  .hero-bg { transition: none; }
}

/* ── IMG PLACEHOLDER ──────────────────────────── */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--base-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.img-placeholder span {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.08em;
}
.service-card-img .img-placeholder { min-height: 0; aspect-ratio: 4/3; }
.concept-gallery-item .img-placeholder { min-height: 0; }

/* ── PAGE HEADER（内部ページ共通） ─────────────── */
.page-header-section {
  background: var(--green);
  color: #fff;
  padding: 128px 0 64px;
}
.page-header-eyebrow {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.page-header-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
.page-header-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 2;
  margin-top: 18px;
}

/* ── BREADCRUMB (Yoast) ───────────────────────── */
.breadcrumb-nav {
  margin-top: 20px;
}
.breadcrumb-nav .breadcrumb_last,
.breadcrumb-nav span span a,
.breadcrumb-nav > span > a {
  font-size: 11.5px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.breadcrumb-nav span span a:hover { color: rgba(255,255,255,0.9); }
.breadcrumb-nav .breadcrumb_last { color: rgba(255,255,255,0.45); }
.breadcrumb-nav > span > span { color: rgba(255,255,255,0.35); margin: 0 6px; }

/* ── PAGE CONTENT ─────────────────────────────── */
.page-content-section {
  background: var(--base);
  padding: 80px 0 100px;
}
.page-body {
  font-size: 15px;
  line-height: 2.1;
  color: var(--text-mid);
  margin-top: 32px;
}
.page-body h2 {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin: 56px 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--base-dark);
}
.page-body h3 {
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.05em;
  margin: 40px 0 14px;
  padding-left: 16px;
  border-left: 3px solid var(--green);
}
.page-body p { margin: 0 0 22px; }
.page-body ul, .page-body ol { margin: 0 0 22px 24px; }
.page-body li { margin: 8px 0; line-height: 1.9; }
.page-body a { color: var(--green); text-decoration: underline; }
.page-body img { border-radius: var(--radius-img); margin: 24px 0; }
.page-body .highlight-box {
  background: var(--green-light);
  border-radius: 8px;
  padding: 28px 32px;
  margin: 36px 0;
}
.page-body .highlight-box p { margin-bottom: 0; }
.page-body .pink-box { background: var(--pink-light); }
.page-body .gold-box { background: var(--gold-light); }

/* ── INFO TABLE ───────────────────────────────── */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}
.info-table th, .info-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--base-dark);
  vertical-align: top;
  line-height: 1.8;
}
.info-table th {
  width: 180px;
  color: var(--text-mid);
  font-weight: 400;
  letter-spacing: 0.04em;
  background: var(--base);
  white-space: nowrap;
}

/* ── SINGLE POST ──────────────────────────────── */
.single-article {
  max-width: 760px;
  margin: 0 auto;
}
.single-header {
  margin-bottom: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--base-dark);
}
.single-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.single-date {
  font-size: 11.5px;
  color: var(--text-light);
  letter-spacing: 0.08em;
}
.single-cat {
  display: inline-block;
  font-size: 9.5px;
  letter-spacing: 0.06em;
  color: var(--green);
  background: var(--green-light);
  padding: 3px 8px;
  border-radius: 2px;
}
.single-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.55;
}
.single-body {
  font-size: 15px;
  line-height: 2;
  color: var(--text);
}
.single-body h2 { font-size: 22px; margin: 48px 0 20px; letter-spacing: 0.05em; }
.single-body h3 { font-size: 18px; margin: 36px 0 14px; letter-spacing: 0.05em; }
.single-body p { margin: 0 0 22px; }
.single-body ul, .single-body ol { margin: 0 0 22px 24px; }
.single-body li { margin: 8px 0; }
.single-body img { border-radius: var(--radius-img); margin: 24px 0; }
.single-body a { color: var(--green); text-decoration: underline; }
.single-nav {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 72px;
  padding-top: 36px;
  border-top: 1px solid var(--base-dark);
}
.single-nav a {
  font-size: 12.5px;
  color: var(--text-mid);
  letter-spacing: 0.06em;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.single-nav a:hover { color: var(--green); }

/* ── ARCHIVE (お知らせ一覧) ───────────────────── */
.archive-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--base-dark);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.archive-tab {
  flex-shrink: 0;
  padding: 14px 24px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--text-mid);
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-family: var(--font);
  transition: color 0.2s, border-color 0.2s;
}
.archive-tab:hover { color: var(--green); }
.archive-tab.active {
  color: var(--green);
  border-bottom-color: var(--green);
}

/* ── FAQ ──────────────────────────────────────── */
.faq-section-group { margin-bottom: 60px; }
.faq-section-group:last-child { margin-bottom: 0; }
.faq-section-title {
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--green-light);
}
.faq-list { list-style: none; }
.faq-item { border-bottom: 1px solid var(--base-dark); }
.faq-item:first-child { border-top: 1px solid var(--base-dark); }
details.faq-item > summary { list-style: none; }
details.faq-item > summary::-webkit-details-marker { display: none; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--text);
  cursor: pointer;
  font-family: var(--font);
  line-height: 1.6;
}
.faq-question-label { flex: 1; }
.faq-q-mark {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--text-mid);
  border-radius: 1px;
}
.faq-icon::before { width: 12px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-icon::after  { width: 1.5px; height: 12px; top: 50%; left: 50%; transform: translate(-50%,-50%); transition: transform 0.3s; }
details.faq-item[open] .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); }

.faq-answer {
  padding: 4px 0 28px 48px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 2;
}

/* ── AIRRRSV EMBED ────────────────────────────── */
.airrrsv-embed {
  margin-top: 48px;
  border: 1px solid var(--base-dark);
  border-radius: 8px;
  overflow: hidden;
}
.airrrsv-embed iframe {
  width: 100%;
  border: 0;
  min-height: 600px;
  display: block;
}

/* ── GOOGLE CALENDAR EMBED ────────────────────── */
.gcal-embed {
  margin-top: 48px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--base-dark);
}
.gcal-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── SITEMAP ──────────────────────────────────── */
.sitemap-group { margin-bottom: 48px; }
.sitemap-group h3 {
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--text);
  border-bottom: 1px solid var(--base-dark);
  padding-bottom: 12px;
  margin-bottom: 20px;
}
.sitemap-group ul { list-style: none; display: grid; gap: 14px; padding-left: 8px; }
.sitemap-group ul li { }
.sitemap-group ul li a {
  font-size: 14px;
  color: var(--green);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, gap 0.2s;
}
.sitemap-group ul li a::before {
  content: '';
  width: 6px;
  height: 1px;
  background: var(--green);
  flex-shrink: 0;
}
.sitemap-group ul li a:hover { gap: 12px; }
.sitemap-group ul ul { margin-top: 12px; padding-left: 20px; }

/* ── FIRST-TIME 3パス ─────────────────────────── */
.paths-cta-section { background: var(--base); padding: 80px 0 100px; }
.paths-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.path-cta-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 48px 40px 44px;
  text-decoration: none;
  transition: transform 0.4s;
  position: relative;
  overflow: hidden;
}
.path-cta-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}
.path-cta-card:nth-child(1) { background: var(--pink-light); }
.path-cta-card:nth-child(2) { background: var(--blue-light); }
.path-cta-card:nth-child(3) { background: var(--green-light); }
.path-cta-card:nth-child(1)::after { background: var(--pink); }
.path-cta-card:nth-child(2)::after { background: var(--blue); }
.path-cta-card:nth-child(3)::after { background: var(--green); }
.path-cta-card:hover { transform: translateY(-6px); }
.path-cta-card:hover::after { transform: scaleX(1); }
.path-cta-icon { width: 96px; height: 96px; object-fit: contain; margin-bottom: 24px; }
.path-cta-title { font-size: 19px; letter-spacing: 0.06em; line-height: 1.5; margin-bottom: 14px; color: var(--text); }
.path-cta-desc { font-size: 13px; color: var(--text-mid); line-height: 2; }
.path-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-mid);
  transition: gap 0.3s;
}
.path-cta-card:hover .path-cta-link { gap: 14px; }

/* ── STAFF GRID（産後ケア） ───────────────────── */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.staff-card { text-align: center; }
.staff-card-photo {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  margin-bottom: 20px;
}
.staff-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.staff-card-name { font-size: 16px; letter-spacing: 0.06em; margin-bottom: 6px; }
.staff-card-role { font-size: 11.5px; color: var(--text-light); letter-spacing: 0.08em; }
.staff-card-bio { font-size: 12.5px; color: var(--text-mid); line-height: 1.85; margin-top: 12px; }

/* ── APPLY FLOW ───────────────────────────────── */
.apply-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
}
.apply-step {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--base-dark);
}
.apply-step:first-child { border-top: 1px solid var(--base-dark); }
.apply-step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  letter-spacing: 0;
}
.apply-step-body h4 { font-size: 16px; letter-spacing: 0.05em; margin-bottom: 8px; color: var(--text); }
.apply-step-body p  { font-size: 13.5px; color: var(--text-mid); line-height: 1.9; margin: 0; }

/* ── BUTTON COMMON ────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.12em;
  padding: 16px 36px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.3s;
  text-decoration: none;
}
.btn-primary:hover { background: var(--green-mid); color: #fff; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--green);
  font-size: 13px;
  letter-spacing: 0.12em;
  padding: 14px 34px;
  border-radius: 100px;
  border: 1.5px solid var(--green);
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.3s, color 0.3s;
  text-decoration: none;
}
.btn-outline:hover { background: var(--green); color: #fff; }

/* ── 404 ──────────────────────────────────────── */
.not-found-section {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 48px;
}
.not-found-num {
  font-size: clamp(80px, 15vw, 160px);
  font-weight: 400;
  color: var(--green-light);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 32px;
}

/* ── SEARCH RESULTS ───────────────────────────── */
.search-result-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--base-dark);
}
.search-result-item:first-child { border-top: 1px solid var(--base-dark); }
.search-result-title {
  font-size: 17px;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.search-result-title a { color: var(--text); transition: color 0.2s; }
.search-result-title a:hover { color: var(--green); }
.search-result-excerpt { font-size: 13.5px; color: var(--text-mid); line-height: 1.85; }

/* ── RESPONSIVE ───────────────────────────────── */
/* ── 産後ケアページ固有 ───────────────────────── */
.postnatal-day-layout {
  display: grid;
  grid-template-columns: 1fr 188px 1fr;
  gap: 32px;
  margin-top: 48px;
  align-items: start;
}
.postnatal-col-title {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--green);
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-light);
}
.postnatal-item {
  margin-bottom: 28px;
}
.postnatal-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-img);
  margin-bottom: 10px;
  background: var(--base-dark);
}
.postnatal-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.postnatal-img-wrap .img-placeholder { min-height: 0; }
.postnatal-item-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.85;
  margin: 0;
}
.postnatal-timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-top: 4px;
}
.postnatal-timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 50%;
  width: 1px;
  background: var(--green-light);
  transform: translateX(-50%);
}
.postnatal-timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.postnatal-timeline-item:last-child { margin-bottom: 0; }
.postnatal-timeline-time {
  background: var(--green);
  color: #fff;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 10px;
  white-space: nowrap;
}
.postnatal-timeline-content {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.85;
  background: #fff;
  border-radius: 6px;
  padding: 10px 12px;
  width: 100%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.postnatal-timeline-content strong {
  display: block;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 4px;
}
.postnatal-timeline-content p { margin: 0; }
.postnatal-amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 32px;
  margin-top: 16px;
}
.postnatal-amenities span {
  font-size: 13.5px;
  color: var(--text-mid);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.postnatal-amenities span::before {
  content: '●';
  color: var(--green);
  font-size: 8px;
  flex-shrink: 0;
}
/* 産後ケア詳細テーブル */
.postnatal-info-grid {
  border: 1px solid var(--base-dark);
  border-radius: 8px;
  overflow: hidden;
  margin: 32px 0;
}
.postnatal-info-row {
  display: grid;
  grid-template-columns: 148px 1fr;
  border-bottom: 1px solid var(--base-dark);
}
.postnatal-info-row:last-child { border-bottom: none; }
.postnatal-info-label {
  background: var(--green-light);
  color: var(--green);
  font-size: 13.5px;
  letter-spacing: 0.06em;
  padding: 20px 18px;
  display: flex;
  align-items: center;
  line-height: 1.6;
}
.postnatal-info-body {
  padding: 20px 24px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
}
.postnatal-info-body p { margin: 0; }
.postnatal-info-body ul {
  margin: 0;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
}
.postnatal-info-body ul li {
  display: flex;
  align-items: baseline;
  gap: 7px;
  font-size: 13.5px;
}
.postnatal-info-body ul li::before {
  content: '●';
  color: var(--green);
  font-size: 7px;
  flex-shrink: 0;
}
/* ちょこっと + オプション 2列 */
.postnatal-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.postnatal-two-card {
  background: var(--base);
  border-radius: 12px;
  padding: 32px 28px;
}
.postnatal-two-title {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--green-light);
}
.postnatal-course {
  background: #fff;
  border-radius: 6px;
  padding: 14px 16px;
  margin: 14px 0;
}
.postnatal-course h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}
.postnatal-course p { font-size: 13px; color: var(--text-mid); line-height: 1.85; margin: 0; }
.postnatal-option-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.postnatal-option-list li {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.85;
  padding-left: 14px;
  border-left: 3px solid var(--green);
}
/* PDF */
.postnatal-pdf {
  margin-top: 56px;
  text-align: center;
}
.postnatal-pdf > p {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 18px;
}
.postnatal-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pink);
  color: #fff;
  font-size: 13.5px;
  letter-spacing: 0.08em;
  padding: 16px 36px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.3s;
}
.postnatal-pdf-btn:hover { background: #a84e68; color: #fff; }
.postnatal-pdf-embed {
  margin-top: 32px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--base-dark);
}
/* スマホ用タイムライン（デスクトップでは非表示） */
.postnatal-mobile-timeline { display: none; }

@media (max-width: 1024px) {
  .concept-layout { grid-template-columns: 1fr; gap: 56px; }
  .concept-gallery { grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 220px; }
  .concept-gallery-item:nth-child(1) { grid-row: span 1; }
  .staff-layout { grid-template-columns: 1fr; gap: 52px; }
  .news-layout { grid-template-columns: 1fr; gap: 44px; }
  .access-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 52px; }
  .footer-nav-grid { grid-template-columns: repeat(2, 1fr); }
  .paths-cta-grid { grid-template-columns: 1fr 1fr; }
  .postnatal-day-layout { grid-template-columns: 1fr; gap: 40px; }
  .postnatal-timeline::before { display: none; }
  .postnatal-timeline {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .postnatal-timeline-item { flex: 0 0 auto; margin-bottom: 0; width: auto; }
  .postnatal-two-col { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-header { padding: 0 20px; }
  .global-nav { display: none; }
  .hamburger { display: flex; }
  .hero-inner { padding: 0 24px 72px; }
  .section-inner { padding: 0 24px; }
  .footer-inner { padding: 0 24px; }
  .paths-grid { grid-template-columns: 1fr; }
  .path-item { padding: 44px 28px 36px; }
  .paths-section { padding: 72px 0 60px; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .news-item { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 10px 16px; }
  .news-date { grid-column: 1; }
  .news-cat { grid-column: 2; justify-self: end; }
  .news-title { grid-column: 1 / -1; }
  .hero-scroll { display: none; }
  .page-header-section { padding: 108px 0 48px; }
  .staff-layout { grid-template-columns: 1fr; }
  .paths-cta-grid { grid-template-columns: 1fr; gap: 20px; }
  .not-found-section { padding: 80px 24px; }
  /* スマホ：タイムラインを全幅・縦並びで表示 */
  .postnatal-timeline { flex-direction: column; }
  .postnatal-timeline-item { width: 100%; }
  .postnatal-col-body { display: block; }
  .postnatal-mobile-timeline { display: none; }
  .postnatal-amenities { grid-template-columns: 1fr; }
  .postnatal-info-row { grid-template-columns: 1fr; }
  .postnatal-info-label { padding: 14px 18px; }
  .postnatal-info-body { padding: 16px 18px; }
  .postnatal-info-body ul { grid-template-columns: 1fr; }
  .postnatal-two-card { padding: 24px 20px; }
}

@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-nav-grid { grid-template-columns: 1fr; }
  .concept-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px; }
  .info-table th { width: 120px; }
  .postnatal-info-row { grid-template-columns: 1fr; }
}

/* ── MARCHE GALLERY ────────────────────────────── */
.marche-gallery-section { background: var(--base-dark); }

.marche-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 40px;
}

.marche-gallery__item {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1 / 1;
  cursor: zoom-in;
}

.marche-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.3s;
}

.marche-gallery__item:hover img {
  transform: scale(1.06);
  opacity: 0.9;
}

@media (max-width: 768px) {
  .marche-gallery { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
}

@media (max-width: 540px) {
  .marche-gallery { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
}

/* ── MARCHE LIGHTBOX ───────────────────────────── */
.marche-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marche-lightbox[hidden] { display: none; }

.marche-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}

.marche-lightbox__img {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.6);
  user-select: none;
}

.marche-lightbox__close,
.marche-lightbox__prev,
.marche-lightbox__next {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
  line-height: 1;
  font-family: inherit;
}

.marche-lightbox__close:hover,
.marche-lightbox__prev:hover,
.marche-lightbox__next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.marche-lightbox__close {
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marche-lightbox__prev,
.marche-lightbox__next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 64px;
  border-radius: 4px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marche-lightbox__prev { left: 16px; }
.marche-lightbox__next { right: 16px; }

@media (max-width: 540px) {
  .marche-lightbox__prev { left: 4px; }
  .marche-lightbox__next { right: 4px; }
}
