:root {
  --bg: #efefec;
  --paper: #f8f8f5;
  --ink: #000000;
  --muted: #4a4845;
  --line: rgba(0, 0, 0, 0.12);
  --accent: #dfe5de;
  --accent-deep: #bfcdbd;
  --bg-warm: #ebeae6;
  --bg-cool: #e8eae6;
  --bg-cream: #f4f3ef;
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.08);
  --serif: "Noto Serif JP", "Yu Mincho", "Cormorant Garamond", serif;
  --sans: "Noto Serif JP", "Yu Mincho", "Hiragino Sans", "Yu Gothic", sans-serif;
}

* { box-sizing: border-box; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 8px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--ink);
  color: #fff;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 4px;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 8px;
  outline: 2px solid var(--accent-deep);
  outline-offset: 2px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  min-width: 320px;
  max-width: 100vw;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at center, rgba(17,17,17,.028) 0%, transparent 1.5px),
    linear-gradient(180deg, var(--bg-cream) 0%, var(--bg) 35%, var(--bg-warm) 70%, var(--bg) 100%);
  background-size: 28px 28px, 100% 100%;
  background-position: 0 0, 0 0;
  background-attachment: scroll, fixed;
  line-height: 1.8;
  overflow-x: hidden;
  overflow-wrap: break-word;
  word-break: break-word;
}

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

.page-shell {
  position: relative;
  overflow-x: hidden;
  max-width: 100vw;
}
main { max-width: 100%; min-width: 0; padding-top: 72px; }

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: 0 auto 0 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(17,17,17,.08), transparent);
  pointer-events: none;
  z-index: 0;
}
.page-shell::before { left: 6vw; }
.page-shell::after { left: auto; right: 6vw; }

/* 背景画像（パララックス・装飾テキストの奥） */
.bg-decorative-img {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.14;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .bg-decorative-img { will-change: auto; }
}

/* 背景装飾テキスト（パララックスで立体感・目立たない飾り） */
.bg-decorative {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.bg-decorative__text {
  position: absolute;
  font-family: var(--serif);
  font-size: clamp(4rem, 12vw, 11rem);
  font-weight: 300;
  color: rgba(74, 72, 69, 0.05);
  letter-spacing: 0.2em;
  white-space: nowrap;
  user-select: none;
  text-transform: uppercase;
}
.bg-decorative__text:last-child {
  text-transform: none;
  letter-spacing: 0.12em;
}
@media (prefers-reduced-motion: reduce) {
  .bg-decorative__text { opacity: 0.04; }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 4.8vw;
  background: rgba(239,239,236,.95); /* フォールバック: backdrop-filter 非対応時 */
  background: rgba(239,239,236,.76);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  transition: transform 0.35s ease;
}
@supports not (backdrop-filter: blur(1px)) {
  .site-header { background: rgba(239,239,236,.95); }
}
.site-header--hidden {
  transform: translateY(-100%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text strong,
.brand-text small {
  display: block;
  line-height: 1.2;
}
.brand-text strong {
  font-size: .95rem;
  letter-spacing: .08em;
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
}
.brand-text small { font-size: .68rem; color: var(--muted); letter-spacing: .28em; margin-top: 4px; font-family: var(--serif); }

.site-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.site-nav a {
  font-size: .76rem;
  letter-spacing: .24em;
  position: relative;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.site-nav a:hover::after,
.site-nav a.is-active::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  margin: 6px auto;
  transition: .3s ease;
}

.section {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 72px));
  max-width: 100%;
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 90px 1.05fr 1fr;
  gap: 4vw;
  min-height: calc(100vh - 96px);
  align-items: start;
  padding: 56px 0 40px;
}

.vertical {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3.9rem);
  letter-spacing: .15em;
  line-height: 1.1;
  align-self: start;
}

.hero-copy {
  position: relative;
  padding-top: 0px;
}
.eyebrow,
.section-title-en {
  font-family: var(--serif);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .9rem;
  color: var(--muted);
}
.hero h1,
.section-title h2,
.services-header h2,
.concept-copy h2,
.contact-card h2,
.access-card h2 {
  margin: 12px 0 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: .02em;
  color: var(--ink);
}
.hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  max-width: 100%;
  overflow-wrap: break-word;
}
.lead {
  margin-top: 24px;
  max-width: min(38rem, 100%);
  font-size: 1rem;
  color: var(--ink);
  font-weight: 400;
}
.hero-actions,
.contact-actions,
.map-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-actions { margin-top: 34px; }

.line-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 24px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  letter-spacing: .14em;
  font-size: .75rem;
  text-transform: uppercase;
  transition: transform .35s ease, background .35s ease, color .35s ease;
}
.line-button:hover { transform: translateY(-3px); }
.line-button.is-light {
  background: transparent;
  color: var(--ink);
  margin-top: 10px;
}
.line-button--line {
  background: #06c755;
  border-color: #06c755;
  color: #fff;
  gap: 8px;
}
.line-button--line:hover {
  background: #05b04c;
  border-color: #05b04c;
  color: #fff;
}
.line-button-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.hero-visual {
  position: relative;
  min-height: 720px;
}
.floating-text {
  position: absolute;
  font-family: var(--serif);
  color: rgba(255,255,255,.45);
  letter-spacing: .32em;
  pointer-events: none;
}
.floating-text-lg {
  top: 120px;
  left: -120px;
  font-size: clamp(5rem, 14vw, 11rem);
}

.editorial-card {
  position: absolute;
  background: transparent;
}
.editorial-card--hero {
  top: 110px;
  right: 0;
  width: min(100%, 610px);
}
.hero-slideshow {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(17,17,17,.08);
  aspect-ratio: 4 / 3;
  min-height: 280px;
}
.hero-slideshow-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  min-width: 100%;
  min-height: 100%;
  box-shadow: var(--shadow);
}
.hero-slideshow-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.hero-slideshow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.9);
  background: rgba(255,255,255,.5);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.hero-slideshow-dot:hover {
  background: rgba(255,255,255,.85);
}
.hero-slideshow-dot.is-active {
  background: #fff;
  transform: scale(1.2);
  box-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.editorial-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.editorial-meta {
  position: absolute;
  left: -42px;
  top: -14px;
  writing-mode: vertical-rl;
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: var(--serif);
}
.editorial-meta span {
  font-size: 2rem;
  line-height: 1;
}
.editorial-meta small {
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-title {
  margin-bottom: 48px;
}
.section-title h2,
.services-header h2,
.contact-card h2,
.access-card h2,
.concept-copy h2 { font-size: clamp(2.3rem, 2vw, 3.6rem); }

/* ----- セクション別 背景バリエーション（全幅バンド） ----- */
.hero,
.lookbook,
.services,
.results,
.pricing,
.contact-access {
  position: relative;
}
.hero::before,
.lookbook::before,
.services::before,
.results::before,
.pricing::before,
.contact-access::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  top: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
}
.hero::before {
  background: linear-gradient(160deg, #f8f7f3 0%, #f0efea 40%, #ebebe7 100%);
}
.lookbook::before {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(232,234,230,.9) 50%, var(--paper) 100%);
}
.services::before {
  background: linear-gradient(180deg, rgba(223,229,222,.2) 0%, rgba(248,248,245,.7) 30%, rgba(235,238,232,.5) 100%);
}
.results::before {
  background: linear-gradient(180deg, var(--paper) 0%, #f2f1ed 50%, var(--bg-cream) 100%);
}
.pricing::before {
  background: linear-gradient(180deg, var(--bg-warm) 0%, rgba(245,244,240,.9) 50%, #eeede9 100%);
}
.contact-access::before {
  background: linear-gradient(180deg, #eae9e5 0%, #f0efeb 40%, var(--paper) 100%);
}

.lookbook {
  padding: 90px 0 40px;
}
.lookbook-list {
  display: grid;
  gap: 64px;
}
.lookbook-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 32px;
  align-items: start;
}
.lookbook-index {
  padding-top: 18px;
  writing-mode: vertical-rl;
  font-family: var(--serif);
  letter-spacing: .08em;
}
.lookbook-index span { font-size: 2rem; }
.lookbook-index small { font-size: .72rem; color: var(--muted); }
.lookbook-card {
  display: grid;
  grid-template-columns: minmax(280px, 520px) 1fr;
  gap: 42px;
  align-items: center;
}
.lookbook-card.reverse { grid-template-columns: 1fr minmax(280px, 520px); }
.lookbook-card.reverse img { order: 2; }
.lookbook-card img {
  width: 100%;
  min-height: 340px;
  object-fit: cover;
  background: #e8e8e2;
  box-shadow: var(--shadow);
}
.contain-image {
  object-fit: contain !important;
  /* padding: 36px; */
}
.lookbook-copy h3,
.results-text h3 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.2vw, 2.5rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--ink);
}
.lookbook-copy ul,
.lookbook-copy ol {
  margin: 0;
  padding-left: 1.2rem;
}
.handwritten {
  margin-top: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.15rem;
  color: rgb(199, 199, 199);
}
.mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}
.mini-points span,
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 14px;
  border: 1px solid var(--line);
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(255,255,255,.45);
}

.services {
  padding: 80px 0 60px;
}
.services-header {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 40px;
}
.curved {
  font-family: var(--serif);
  font-size: 2.3rem;
  line-height: .95;
  writing-mode: vertical-rl;
}
.services-category {
  margin: 48px 0 20px;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 500;
}
.services-category:first-of-type { margin-top: 32px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.service-card {
  background: rgba(255,255,255,.55);
  padding: 14px;
  box-shadow: 0 14px 38px rgba(17,17,17,.05);
  border: 1px solid rgba(255,255,255,.8);
}
.service-card:nth-child(odd) {
  background: rgba(252,252,250,.7);
}
.service-card img {
  width: 100%;
  aspect-ratio: 1 / .72;
  object-fit: cover;
}
.service-card h3 {
  margin: 14px 0 8px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--ink);
}
.service-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink);
}
.service-note,
.service-meta {
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--muted);
}
.service-meta { font-weight: 500; }

.concept-band {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  background: linear-gradient(105deg, #e8ebe9 0%, #e2e6e4 35%, #eaece8 70%, #f0f1ed 100%);
  margin-top: 80px;
}
.concept-photo img {
  width: 80%;
  height: 100%;
  object-fit: cover;
  min-height: 480px;
  margin: 0 auto;
}
.concept-copy {
  padding: clamp(36px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.concept-copy p { max-width: 40rem; }

.results {
  padding: 110px 0 60px;
}
.results-wrap {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  gap: 42px;
  align-items: center;
}
.results-wrap--reverse {
  grid-template-columns: minmax(260px, 420px) 1fr;
}
.results-wrap--reverse .results-text { order: 2; }
.results-wrap--reverse .results-image { order: 1; }
.result-number {
  font-family: var(--serif);
  font-size: clamp(4rem, 11vw, 6rem);
  color: rgba(17,17,17,.42);
  letter-spacing: .12em;
  font-weight: 500;
}
.results-image {
  background: rgba(255,255,255,.44);
  padding: 26px;
  box-shadow: var(--shadow);
}
.results-image img {
  width: 100%;
  object-fit: contain;
}

.pricing {
  padding: 70px 0 60px;
}
.pricing .section-title {
  text-align: center;
}
.pricing .section-title-en,
.pricing .section-title h2 {
  text-align: center;
}

.menu-list {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 44px 44px;
  box-shadow: 0 4px 24px rgba(17,17,17,.06);
  border: 1px solid rgba(17,17,17,.06);
}
.menu-items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-item {
  position: relative;
  padding-left: 1.4em;
  padding-bottom: 1.5em;
  border-bottom: 1px solid rgba(17,17,17,.08);
  color: var(--ink);
}
.menu-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.menu-item::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 0.5em;
  color: var(--muted);
  line-height: 1.8;
}
.menu-item-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 0.2em;
}
.menu-item-name {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
}
.menu-item-price {
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  color: var(--ink);
}
.menu-item-detail {
  margin: 0 0 0.35em;
  font-size: 0.9rem;
  color: var(--muted);
}
.menu-item-note {
  margin: 0 0 0.25em;
  padding-left: 0.5em;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}
.menu-item-note:last-child {
  margin-bottom: 0;
}

.cta-after-menu {
  max-width: 640px;
  margin: 32px auto 0;
  padding: 28px 44px 36px;
  text-align: center;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(17,17,17,.08);
  box-shadow: 0 4px 24px rgba(17,17,17,.06);
}
.cta-after-menu-heading {
  margin: 0 0 20px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
}
.cta-after-menu-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
@media (max-width: 820px) {
  .cta-after-menu { margin: 24px 18px 0; padding: 22px 20px 28px; }
  .cta-after-menu-buttons { flex-direction: column; }
  .cta-after-menu-buttons .line-button { width: 100%; }
}

.note {
  color: var(--muted);
  font-size: .88rem;
}

.contact-access {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  padding: 90px 0 80px;
}
.contact-card,
.access-card {
  background: rgba(255,255,255,.46);
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(17,17,17,.07);
  box-shadow: 0 20px 50px rgba(17,17,17,.05);
}
.form-grid {
  display: grid;
  gap: 16px;
}
.form-grid label span {
  display: block;
  margin-bottom: 8px;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.form-grid input,
.form-grid textarea {
  width: 100%;
  border: 1px solid rgba(17,17,17,.18);
  background: rgba(255,255,255,.76);
  padding: 16px 18px;
  outline: none;
}
.form-grid input:focus,
.form-grid textarea:focus {
  border-color: var(--ink);
}
.contact-form-lead {
  margin-top: 18px;
  font-size: 0.92rem;
  color: var(--muted);
}
.line-cta-box {
  margin-top: 20px;
  padding: 20px 24px;
  background: linear-gradient(135deg, #e8f8ee 0%, #f0fbf4 100%);
  border: 1px solid rgba(6, 199, 85, 0.25);
  border-radius: 12px;
}
.line-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: opacity 0.25s ease;
}
@media (max-width: 820px) {
  .line-cta-link {
    display: block;
    text-align: center;
  }
  .line-cta-icon {
    margin: 0 auto 10px;
  }
}
.line-cta-link:hover { opacity: 0.85; }
.line-cta-icon {
  width: 200px;
  min-width: 200px;
  object-fit: contain;
  flex-shrink: 0;
}
.line-cta-text { flex: 1; min-width: 0; }
.contact-actions { margin-top: 22px; }
.access-image {
  width: 110px;
  margin: 24px auto 16px;
}
.access-list {
  margin: 0;
}
.access-list div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(17,17,17,.08);
}
.access-list dt,
.access-list dd { margin: 0; }
.access-map-wrap {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(17,17,17,.08);
}
.access-map-heading {
  margin: 0 0 12px;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.access-map-inner {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: var(--paper);
  border: 1px solid rgba(17,17,17,.08);
  overflow: hidden;
}
.access-map-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.access-map-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: underline;
  transition: color 0.2s ease;
}
.access-map-link:hover { color: var(--ink); }
.map-actions { margin-top: 22px; }

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 4.8vw 36px;
  background: #111;
  color: #f4f4f0;
}
.site-footer p,
.site-footer a { color: rgba(244,244,240,.76); }
.site-footer .footer-address {
  margin: 8px 0 4px;
  font-size: 0.85rem;
  line-height: 1.5;
}
.site-footer .footer-map {
  font-size: 0.88rem;
  text-decoration: underline;
}
.site-footer .footer-logo {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 10px;
  opacity: 0.9;
}

.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(17,17,17,.18);
  background: rgba(255,255,255,.85);
  cursor: pointer;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: .35s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 30px;
    padding-top: 26px;
  }
  .vertical,
  .curved,
  .lookbook-index,
  .editorial-meta {
    writing-mode: horizontal-tb;
  }
  .vertical { font-size: 2rem; }
  .hero-visual { min-height: auto; }
  .editorial-card,
  .editorial-card--hero,
  .floating-text {
    position: relative;
    inset: auto;
    color: rgba(17,17,17,.22);
  }
  .floating-text-lg {
    top: auto;
    left: auto;
    margin-bottom: -40px;
  }
  .editorial-meta {
    margin-bottom: 14px;
    position: static;
  }
  .lookbook-item,
  .lookbook-card,
  .lookbook-card.reverse,
  .services-header,
  .results-wrap,
  .contact-access,
  .concept-band,
  .menu-list { padding: 28px 24px 32px; }
  .lookbook-card,
  .lookbook-card.reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .lookbook-card.reverse img { order: 0; }
  .contact-access { grid-template-columns: 1fr; }
  .concept-band { grid-template-columns: 1fr; }
  .concept-photo { order: 1; }
  .concept-copy { order: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .results-wrap,
  .results-wrap--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .results-wrap--reverse .results-text { order: 1; }
  .results-wrap--reverse .results-image { order: 2; }
}

@media (max-width: 820px) {
  .section { width: min(100% - 36px, 1280px); }
  .site-header { padding-inline: 18px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(17,17,17,.08);
    padding: 10px 18px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: .3s ease;
  }
  .site-nav.is-open {
    max-height: 420px;
    opacity: 1;
    padding-block: 12px;
  }
  .site-nav a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(17,17,17,.07);
  }
  .services-grid { grid-template-columns: 1fr; }
  .results-wrap,
  .results-wrap--reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .results-wrap--reverse .results-text { order: 1; }
  .results-wrap--reverse .results-image { order: 2; }
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}

html, body { overflow-x: hidden; }
body.nav-open { overflow: hidden; }

.hero-subinfo {
  margin-top: 20px;
  color: var(--muted);
  font-size: .84rem;
  letter-spacing: .08em;
}

.contact-form {
  margin-top: 22px;
}

.contact-form .required {
  color: #b33;
  font-size: 0.75em;
  font-weight: 500;
}

.contact-form-msg {
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
}

.contact-form-msg.is-success {
  background: #e8f5e9;
  color: #2e7d32;
}

.contact-form-msg.is-error {
  background: #ffebee;
  color: #c62828;
}

.mobile-cta-bar {
  display: none;
}

@media (max-width: 1100px) {
  .page-shell::before,
  .page-shell::after { display: none; }
  .hero-copy { padding-top: 0; }
  .hero h1 { line-height: 1.2; }
  .hero-visual { order: -1; }
  .editorial-card--hero { width: 100%; }
  .lookbook { padding-top: 48px; }
  .concept-photo img { min-height: 320px; }
}

@media (max-width: 820px) {
  body { padding-bottom: 60px; }
  .site-header { gap: 12px; padding-block: 14px; }
  .brand { gap: 10px; }
  .brand-logo { width: 40px; height: 40px; }
  .brand-text strong { font-size: .82rem; letter-spacing: .06em; }
  .brand-text small { font-size: .58rem; letter-spacing: .22em; }
  .site-nav {
    position: fixed;
    top: 69px;
    right: 12px;
    left: 12px;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(17,17,17,.12);
  }
  .section {
    width: 100%;
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
    box-sizing: border-box;
  }
  .hero { padding: 8px 0 20px; gap: 18px; min-width: 0; }
  .hero-copy { min-width: 0; }
  .lookbook-item { grid-template-columns: 1fr; gap: 16px; }
  .lookbook-card,
  .lookbook-card.reverse { grid-template-columns: 1fr; min-width: 0; }
  .lookbook-copy { min-width: 0; }
  .lookbook-copy h3,
  .lookbook-copy p { overflow-wrap: break-word; }
  .vertical { font-size: 1.25rem; letter-spacing: .12em; text-align: center; }
  .hero .section-label.vertical { display: block; text-align: center; }
  .hero-copy .eyebrow { text-align: center; }
  .eyebrow, .section-title-en { font-size: .74rem; }
  .hero h1 { font-size: clamp(2.35rem, 12vw, 4.1rem); max-width: 100%; }
  .lead { margin-top: 14px; font-size: .94rem; line-height: 1.75; max-width: 100%; }
  .section-title h2, .services-header h2, .contact-card h2, .access-card h2, .concept-copy h2 { overflow-wrap: break-word; }
  .hero-actions, .contact-actions, .map-actions { gap: 10px; }
  .line-button { min-height: 50px; padding: 12px 16px; font-size: .68rem; letter-spacing: .1em; width: 100%; }
  .hero-actions .line-button { flex: 1 1 100%; }
  .floating-text-lg { margin-bottom: -22px; font-size: clamp(3rem, 18vw, 5rem); letter-spacing: .18em; }
  .editorial-card img { border-radius: 2px; }
  .section-title { margin-bottom: 28px; text-align: center; }
  .section-title-en { text-align: center; display: block; }
  .section-title h2, .services-header h2, .contact-card h2, .access-card h2, .concept-copy h2 { font-size: clamp(1.9rem, 7vw, 3rem); text-align: center; }
  .services-header { text-align: center; }
  .services-header > div { text-align: center; }
  .services-category { text-align: center; }
  .result-number { text-align: center; }
  .results-text h3 { text-align: center; }
  .contact-card .section-title-en,
  .access-card .section-title-en { text-align: center; }
  .lookbook-list { gap: 42px; }
  .lookbook-item { gap: 12px; }
  .lookbook-index { padding-top: 0; display: flex; gap: 10px; align-items: center; justify-content: center; text-align: center; }
  .lookbook-index span { font-size: 1.35rem; }
  .lookbook-card { gap: 20px; }
  .lookbook-card img { min-height: 220px; }
  .lookbook-copy h3, .results-text h3 { font-size: 1.45rem; margin-bottom: 12px; }
  .lookbook-copy ul, .lookbook-copy ol { padding-left: 1rem; }
  .mini-points span, .badge { font-size: .66rem; min-height: 32px; padding: 5px 10px; }
  .services { padding: 54px 0 34px; }
  .services-header { gap: 10px; margin-bottom: 24px; }
  .curved { font-size: 1.2rem; }
  .services-category { margin-top: 36px; margin-bottom: 16px; font-size: 1.3rem; }
  .services-category:first-of-type { margin-top: 28px; }
  .service-card { padding: 30px; }
  .service-card h3 { font-size: 1.28rem; margin-top: 10px; }
  .service-note, .service-meta { font-size: 0.76rem; margin-top: 8px; }
  .concept-band { margin-top: 44px; }
  .concept-copy { padding: 26px 18px; }
  .results { padding: 60px 0 30px; }
  .result-number { font-size: clamp(2.6rem, 14vw, 5rem); }
  .results-image { padding: 14px; }
  .pricing { padding: 48px 0 32px; }
  .menu-list { max-width: 100%; padding: 22px 18px 28px; }
  .menu-item { padding-bottom: 1.25em; }
  .menu-item-name, .menu-item-price { font-size: 0.94rem; }
  .menu-item-note { font-size: 0.78rem; }
  .note { font-size: .79rem; line-height: 1.7; }
  .contact-access { padding: 52px 0 30px; gap: 16px; grid-template-columns: 1fr; min-width: 0; }
  .contact-card, .access-card { padding: 22px 16px; min-width: 0; }
  .concept-band { grid-template-columns: 1fr; }
  .concept-copy { min-width: 0; }
  .services-header { grid-template-columns: 1fr; min-width: 0; }
  .service-card { min-width: 0; }
  .menu-list { min-width: 0; }
  .results-text { min-width: 0; }
  .results-image { min-width: 0; }
  .pricing-group { min-width: 0; }
  .form-grid { gap: 12px; }
  .form-grid input, .form-grid textarea { padding: 14px 14px; border-radius: 0; }
  .access-image { width: 86px; margin: 18px auto 12px; }
  .access-list div { grid-template-columns: 64px 1fr; gap: 10px; padding: 10px 0; }
  .site-footer { padding: 24px 16px 96px; }
  .back-to-top { right: 16px; bottom: 92px; width: 46px; height: 46px; }
  .mobile-cta-bar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(17,17,17,.1);
  }
  .mobile-cta-bar a {
    display: grid;
    place-items: center;
    min-height: 62px;
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
  }
  .mobile-cta-bar a + a { border-left: 1px solid rgba(17,17,17,.08); }
}

@media (max-width: 540px) {
  .hero-subinfo { font-size: .76rem; margin-top: 14px; }
  .lead br, .hero h1 br, .concept-copy h2 br { display: none; }
  .handwritten { font-size: 1.6rem; }
  .services-grid { gap: 16px; }
  .service-card img { aspect-ratio: 1 / .8; }
  .contact-actions .line-button,
  .map-actions .line-button { width: 100%; }
  .section { padding-left: 14px; padding-right: 14px; }
  .menu-item-row { flex-wrap: wrap; gap: 8px; }
  .menu-item-name { min-width: 0; }
  .menu-item-price { flex-shrink: 0; }
}

/* ========== ブログ ========== */
/* TOPページ：最新3件コンパクト表示（タイトルのみ） */
.blog-preview {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.blog-preview-inner {
  max-width: 640px;
  margin-inline: auto;
}
.blog-preview-title {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 1rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.blog-preview-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.blog-preview-list li {
  border-bottom: 1px solid var(--line);
}
.blog-preview-list a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  transition: color 0.15s ease;
}
.blog-preview-list a:hover {
  color: var(--muted);
}
.blog-preview-item-title {
  flex: 1;
  min-width: 0;
  font-size: 0.95rem;
  line-height: 1.45;
}
.blog-preview-item-date {
  flex-shrink: 0;
  font-size: 0.8rem;
  color: var(--muted);
}
.blog-preview-more {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  text-align: right;
}
.blog-preview-more a {
  color: var(--muted);
  text-decoration: underline;
}
.blog-preview-more a:hover {
  color: var(--ink);
}

.blog-main { padding-top: 72px; padding-bottom: 72px;}
.site-header--blog .site-nav { display: flex; }
.site-nav--blog { gap: 1.2rem; }
.blog-hero {
  text-align: center;
  padding-top: 2.5rem;
  padding-bottom: 2rem;
}
.blog-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 500;
  margin: 0.5rem 0 0.75rem;
}
.blog-hero-lead {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}
.blog-list-inner {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2rem;
  max-width: 720px;
  margin-inline: auto;
}
.blog-card { margin: 0; }
.blog-card-link {
  display: block;
  background: var(--paper);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-card-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 80px rgba(17, 17, 17, 0.1);
}
.blog-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-warm);
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card-body { padding: 1.5rem 1.5rem 1.75rem; }
.blog-card-date {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.blog-card-title {
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0 0 0.6rem;
  line-height: 1.45;
}
.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

/* ブログ記事詳細 */
.blog-article {
  max-width: 720px;
  margin-inline: auto;
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.blog-article-header { margin-bottom: 1.5rem; }
.blog-article-date {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.blog-article-title {
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}
.blog-article-eyecatch {
  margin-bottom: 1.75rem;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-warm);
}
.blog-article-eyecatch img {
  width: 100%;
  height: auto;
  display: block;
}
.blog-article-body.prose {
  font-size: 1rem;
  line-height: 1.9;
}
.blog-article-body.prose h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 1.75rem 0 0.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--line);
}
.blog-article-body.prose ul,
.blog-article-body.prose ol {
  margin: 0.75rem 0 1rem;
  padding-left: 1.4rem;
}
.blog-article-body.prose li { margin-bottom: 0.35rem; }
.blog-article-body.prose p { margin: 0.75rem 0; }
.blog-article-footer { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.blog-article__404 { margin-bottom: 1rem; }
@media (max-width: 820px) {
  .site-header--blog .menu-toggle { display: block; }
  .site-header--blog .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    background: var(--paper);
    box-shadow: -4px 0 24px rgba(0,0,0,.08);
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }
  .site-header--blog .site-nav.is-open { transform: translateX(0); }
}
