.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;

}

.hero-image-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;

  animation: hero-kenburns 22s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes hero-kenburns {
  0%   { transform: scale(1.03); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.18) 40%,
    rgba(0, 0, 0, 0.64) 100%
  );
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 160px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.32) 0%,
    rgba(0, 0, 0, 0.16) 45%,
    rgba(0, 0, 0, 0) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  color: #fff;
  padding: 0 clamp(20px, 5vw, 48px) clamp(48px, 8vw, 96px);

  padding-top: calc(var(--s-header-h, 56px) + 20px);
}

.hero-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.88;
  margin-bottom: clamp(10px, 2vw, 16px);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: clamp(2px, 0.5vw, 8px);
  font-weight: 400;
  font-size: clamp(30px, 7vw, 56px);
  line-height: 1.25;
  margin: 0 0 clamp(16px, 3vw, 24px);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.32);
}

.hero-line { white-space: nowrap; }

.hero-lead {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.85;
  letter-spacing: 0.02em;
  max-width: 52ch;
  text-wrap: balance;
  margin: 0 0 clamp(20px, 4vw, 28px);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.26);
  opacity: 0.95;
}

.hero-actions {
  display: grid;
  gap: 10px;
  align-items: start;
}

.hero-sub {
  font-size: 13px;
  letter-spacing: 0.04em;
  opacity: 0.88;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
}

@keyframes hero-btn-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

.hero-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: fit-content;
  min-width: min(80vw, 360px);
  min-height: 52px;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: clamp(14px, 1.6vw, 16px);
  letter-spacing: 0.08em;
  font-weight: 500;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.2s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

.hero-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 65%
  );
  background-size: 200% 100%;
  background-position: -200% center;
  opacity: 0;
  transition: opacity 0.15s ease;
  pointer-events: none;
}

.hero-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.hero-btn:hover::after {
  opacity: 1;
  animation: hero-btn-shimmer 0.6s ease-out forwards;
}

@media (prefers-reduced-motion: reduce) {
  .hero-btn::after { display: none; }
}

@media (min-width: 768px) {
  .hero-content {
    width: min(90vw, 800px);
    padding-bottom: clamp(64px, 9vw, 112px);
  }
  .hero-lead { max-width: 60ch; }
  .hero-actions { grid-template-columns: auto auto; }
}

.area-points { background: #fff; }

.ap-inner {
  width: min(92%, 1280px);
  margin: 0 auto;
}

.ap-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #6e6e6e;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.ap-title {
  font-size: clamp(20px, 5vw, 26px);
  line-height: 1.65;
  letter-spacing: 0.02em;
  margin: 0 0 18px;
  max-width: 22em;
  text-wrap: balance;
  line-break: strict;
}

.ap-lead {
  font-size: clamp(14px, 1.8vw, 15px);
  line-height: 2.0;
  letter-spacing: 0.01em;
  color: #444;
  max-width: 64ch;
  margin-bottom: clamp(32px, 6vw, 72px);
  line-break: strict;
}
.ap-lead p { margin: 0; }
.ap-lead p + p { margin-top: 14px; }

.ap-grid {
  display: grid;
  gap: 0;
}

.ap-item {
  padding: 24px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.ap-item:last-child { border-bottom: 1px solid rgba(0, 0, 0, 0.08); }

.ap-num {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #6e6e6e;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.ap-item-title {
  font-size: clamp(16px, 4.2vw, 18px);
  line-height: 1.7;
  margin: 0 0 10px;
  max-width: 22em;
  text-wrap: balance;
  line-break: strict;
}

.ap-item-text {
  font-size: clamp(14px, 1.7vw, 14px);
  line-height: 2.0;
  color: #555;
  letter-spacing: 0.01em;
  margin: 0;
}
.ap-item-text + .ap-item-text { margin-top: 10px; }

@media (min-width: 768px) {
  .ap-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .ap-item {
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 12px;
    padding: 28px 24px;
    background: #fff;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.04);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  }
  .ap-item:last-child { border-bottom: 1px solid rgba(0, 0, 0, 0.07); }
  .ap-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.07);
    border-color: rgba(211, 198, 166, 0.55);
  }
  .ap-item-title { font-size: 18px; }
  .ap-item-text { font-size: 14px; }
}

.area-points.section-gap { padding-bottom: 0 !important; }
.area-points + .ak-section.section-gap {
  padding-top: clamp(28px, 5vw, 48px) !important;
}

.ap-fold-body p { margin: 0; }
.ap-fold-body p + p { margin-top: 10px; }

.ap-fold {
  --fold-lines: 5;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.04);
  padding: 14px 14px 40px;
}

.ap-item .ap-fold {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.60);
  box-shadow: none;
  padding: 12px 12px 40px;
}

@media (max-width: 767px) {
  .ap-fold[data-collapsed="true"] .ap-fold-body {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: var(--fold-lines, 5);
  }

  .ap-fold[data-collapsed="true"]::after {
    content: "";
    position: absolute;
    left: 10px; right: 10px;
    bottom: 34px;
    height: 48px;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.92));
    border-radius: 0 0 12px 12px;
  }
}

.ap-fold-more {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #6e6e6e;
  opacity: 0.88;
  cursor: pointer;
  user-select: none;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 0 0 22px;
  background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.92) 55%);
}
.ap-fold-more:hover { opacity: 1; }

.ap-fold[data-open="true"]::after { display: none; }
.ap-fold[data-open="true"] .ap-fold-more { display: none; }

.ap-item-textwrap { margin-top: 12px; }

.area-points .ap-grid .ap-fold-more { display: none !important; }
.area-points .ap-lead.ap-fold .ap-fold-more { display: block !important; }

#area-keyline .ap-fold-more { display: none !important; }

@media (min-width: 768px) {
  .ap-fold {
    border: none;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }
  .ap-fold::after { display: none; }
  .ap-fold-more { display: none !important; }
  .ap-fold-body {
    display: block !important;
    overflow: visible;
    -webkit-line-clamp: unset;
  }
}

.ak-section { background: #fff; }

.ak-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 32px);
}

.ak-divider {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.07);
  margin-bottom: clamp(32px, 5vw, 48px);
}

.ak-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #6e6e6e;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.ak-title {
  font-size: clamp(20px, 5vw, 26px);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 0 clamp(14px, 3vw, 22px);
}

.ak-lead {
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 2.0;
  max-width: 640px;
  color: #444;
  margin-bottom: clamp(36px, 7vw, 64px);
}

.ak-list {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 8vw, 64px);
}

.ak-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: flex-start;
}

.ak-img-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;

}

.ak-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}

@media (min-width: 768px) {
  .ak-img-wrap:hover .ak-img {
    transform: scale(1.02);
  }
}

.ak-num {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #6e6e6e;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.ak-block-title {
  font-size: clamp(17px, 4.2vw, 20px);
  line-height: 1.7;
  margin: 0 0 10px;
}

.ak-kicker {
  font-size: clamp(14px, 3.8vw, 16px);
  line-height: 1.75;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #222;
  margin: 0 0 14px;
  max-width: 56ch;
  padding-left: 12px;
  border-left: 2px solid rgba(211, 198, 166, 0.7);
}

.ak-text {
  font-size: clamp(13px, 1.7vw, 15px);
  line-height: 2.0;
  color: #444;
  letter-spacing: 0.01em;
  margin: 0;
}
.ak-text + .ak-text { margin-top: 10px; }

@media (min-width: 768px) {
  .ak-inner { padding-inline: 24px; }
  .ak-title { font-size: clamp(22px, 2.4vw, 28px); }
  .ak-lead { font-size: 15px; }
  .ak-list { gap: clamp(48px, 7vw, 80px); }

  .ak-block {
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 56px);
    align-items: center;
  }
  .ak-block.reverse { direction: rtl; }
  .ak-block.reverse .ak-textbox { direction: ltr; }

  .ak-img-wrap { max-height: 380px; border-radius: 12px; }
  .ak-kicker { font-size: 16px; }
  .ak-text { font-size: 14px; max-width: 520px; }
}

.case-section {
  background: #f8f6f2;
  padding-block: clamp(48px, 10vw, 120px);
}
.case-inner { width: min(92%, 1280px); margin: 0 auto; }

.case-title {
  font-size: clamp(20px, 5vw, 30px);
  line-height: 1.55;
  letter-spacing: 0.02em;
  max-width: 26em;
  margin: 0 auto 16px;
  text-wrap: balance;
  text-align: center;
}

.case-intro,
.case-lead {
  max-width: 70ch;
  margin: 0 auto;
  color: #444;
  font-size: clamp(14px, 1.7vw, 15px);
  line-height: 2.0;
  letter-spacing: 0.01em;
  text-align: center;
}
.case-intro { margin-bottom: 16px; }
.case-lead  { margin-bottom: 28px; }
.case-intro p,
.case-lead p { margin: 0; }
.case-intro p + p,
.case-lead p + p { margin-top: 14px; }

@media (max-width: 767px) {
  .case-intro,
  .case-lead { text-align: left; }
}

.ba-wrapper {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
  user-select: none;
  touch-action: pan-y;
  aspect-ratio: 16 / 10;
}
@media (min-width: 768px) { .ba-wrapper { aspect-ratio: 16 / 9; } }

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-after { clip-path: inset(0 0 0 50%); }

.ba-divider {
  position: absolute;
  inset-block: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.10);
  z-index: 15;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
  z-index: 20;
  cursor: ew-resize;
  transition: transform 0.15s ease-out;
}
.ba-handle::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 1px; height: 20px;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.28);
}
.ba-wrapper:hover .ba-handle { transform: translate(-50%, -50%) scale(1.06); }

.case-subtitle {
  text-align: center;
  font-size: clamp(17px, 4.4vw, 22px);
  line-height: 1.7;
  margin: clamp(32px, 6vw, 52px) auto 16px;
  letter-spacing: 0.02em;
  max-width: 28em;
  text-wrap: balance;
}

.case-points {
  display: grid;
  gap: 0;
  margin-top: clamp(28px, 5vw, 48px);
}
.case-point {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.case-point-icon {
  font-family: var(--font-serif, "Hiragino Mincho ProN", "Yu Mincho", serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  color: rgba(211, 198, 166, 0.45);
  line-height: 1;
  margin-bottom: 12px;
  user-select: none;
}
.case-point-title {
  font-size: clamp(15px, 4vw, 16px);
  font-weight: 500;
  line-height: 1.65;
  margin: 0;
  text-wrap: balance;
}
.case-point-text {
  font-size: 13px;
  line-height: 2.0;
  color: #666;
  font-weight: 300;
  margin: 0;
}

@media (min-width: 768px) {
  .case-intro,
  .case-lead { font-size: 15px; }
  .case-points {
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(0, 0, 0, 0.06);
    margin-top: clamp(28px, 5vw, 48px);
  }
  .case-point {
    padding: 40px 36px 48px;
    background: #f8f6f2;
    border-top: none;
  }
  .case-point-title { font-size: 16px; }
}

br.sp-br { display: inline; }
br.pc-br { display: none; }
@media (min-width: 768px) {
  br.sp-br { display: none; }
  br.pc-br { display: inline; }
}

.local-works-section { background: #fff; }
.local-works-inner { width: min(92%, 1280px); margin: 0 auto; }

.local-works-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #6e6e6e;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.local-works-title {
  font-size: clamp(20px, 5vw, 26px);
  line-height: 1.6;
  margin: 0 0 14px;
}

.local-works-lead {
  font-size: clamp(14px, 1.7vw, 15px);
  line-height: 2.0;
  color: #444;
  margin-bottom: 28px;
}

.local-works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.local-works-card {
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: default;
  transition: box-shadow 0.3s ease;
}
.local-works-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.10);
}

.local-works-imgwrap {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.local-works-imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.local-works-card:hover .local-works-imgwrap img {
  transform: scale(1.04);
}

.local-works-meta {
  padding: 22px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.local-works-tag {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #6e6e6e;
  font-weight: 500;
  text-transform: uppercase;
}

.local-works-name {
  font-family: var(--font-serif, "Hiragino Mincho ProN", serif);
  font-size: clamp(14px, 4vw, 16px);
  font-weight: 400;
  line-height: 1.55;
  margin: 0;
}

.local-works-detail {
  font-size: 12.5px;
  line-height: 1.95;
  color: #6e6e6e;
  font-weight: 300;
  display: block;
}
.local-works-detail p { margin: 0; }
.local-works-detail p + p { margin-top: 10px; }

@media (min-width: 768px) {
  .local-works-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    background: rgba(0, 0, 0, 0.05);
  }
  .local-works-card { cursor: default; }
}

.local-works-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 70;
}
.local-works-modal.is-open { display: block; }

.local-works-backdrop {
  position: absolute;
  inset: 0;
  border: 0; padding: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
}

.local-works-dialog {
  position: absolute;
  inset-inline: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  padding: 20px 18px 22px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  max-height: 82vh;
  overflow-y: auto;
}

.local-works-close {
  position: absolute;
  right: 12px; top: 12px;
  width: 32px; height: 32px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.07);
  border: none;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.local-works-modal-eyebrow { font-size: 11px; color: #6e6e6e; margin-bottom: 6px; }
.local-works-modal-title { font-size: clamp(18px, 5vw, 22px); line-height: 1.6; margin-bottom: 12px; }
.local-works-modal-body { font-size: 14px; line-height: 1.95; color: #444; }
.local-works-modal-body p { margin: 0; }
.local-works-modal-body p + p { margin-top: 12px; }

.local-works-modal-imgwrap {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
}
.local-works-modal-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.local-works-modal-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 10px 20px;
  min-height: 44px;
  border: 1px solid var(--color-accent, #d3c6a6);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  color: #333;
  text-decoration: none;
  transition: background 0.18s ease;
}
.local-works-modal-cta:hover { background: #f6f1e4; }

@media (min-width: 768px) {
  .local-works-dialog {
    max-width: 600px;
    margin: 0 auto;
    padding: 28px 32px;
    border-radius: 14px;
  }
}

.style-section { background: #faf8f3; }
.style-inner { width: 100%; max-width: 1280px; margin: 0 auto; }

.style-text {
  width: 92%;
  margin: 0 auto;
}
@media (min-width: 1280px) {
  .style-text { width: 100%; }
}

.style-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #6e6e6e;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.style-title {
  font-size: clamp(18px, 4.8vw, 24px);
  line-height: 1.65;
  letter-spacing: 0.02em;
  margin: 0 0 16px;
  text-wrap: balance;
  max-width: 22em;
}

.style-lead {
  font-size: clamp(14px, 1.7vw, 15px);
  line-height: 2.0;
  color: #444;
  max-width: 680px;
  margin-bottom: 28px;
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  background: rgba(0, 0, 0, 0.06);
}

.style-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  background: #1a1a1a;
}

.style-image-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.style-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.88);
  transition: transform 0.5s ease, filter 0.5s ease;
}
.style-card:hover .style-image-wrap img {
  transform: scale(1.05);
  filter: brightness(1.0);
}

.style-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 16px 16px;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.78), transparent);
  color: #fff;
  pointer-events: none;
}

.style-name {
  font-family: var(--font-serif, "Hiragino Mincho ProN", serif);
  font-size: clamp(13px, 3.5vw, 15px);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0 0 4px;
  line-height: 1.4;
}

.style-tagline {
  font-size: 10px;
  line-height: 1.6;
  opacity: 0.78;
  margin: 0;
  letter-spacing: 0.02em;
}

.style-more-btn { display: none; }

@media (min-width: 768px) {
  .style-inner { padding-inline: 0; }
  .style-title { font-size: 24px; }
  .style-lead { font-size: 15px; margin-bottom: 32px; }
  .style-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
  }
  .style-meta { padding: 56px 20px 20px; }
  .style-name { font-size: 15px; }
  .style-tagline { font-size: 11px; }
}

.style-modal { position: fixed; inset: 0; display: none; z-index: 60; }
.style-modal.is-open { display: block; }

.style-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
}

.style-modal-dialog {
  position: absolute;
  inset-inline: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 12px;
  padding: 20px 16px 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  max-height: 82vh;
  overflow-y: auto;
}

.style-modal-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.06);
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.style-modal-eyebrow { font-size: 11px; letter-spacing: 0.18em; color: #6e6e6e; margin-bottom: 8px; text-transform: uppercase; }
.style-modal-title { font-size: clamp(18px, 5vw, 22px); line-height: 1.6; margin-bottom: 12px; }
.style-modal-body { font-size: 13px; line-height: 1.95; color: #444; }
.style-modal-text { margin-bottom: 10px; }
.style-modal-note { margin-top: 8px; font-size: 12px; line-height: 1.8; color: #6e6e6e; }

.style-modal-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 10px 20px;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid var(--color-accent, #d3c6a6);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #fff;
  color: #333;
  text-decoration: none;
  transition: background 0.18s ease;
}
.style-modal-cta:hover { background: #f6f1e4; }

.style-detail { display: none; }

@media (min-width: 768px) {
  .style-modal-dialog {
    max-width: 640px; margin: 0 auto;
    padding: 24px 28px 26px;
    border-radius: 14px;
  }
  .style-modal-title { font-size: 22px; margin-bottom: 14px; }
  .style-modal-body { font-size: 14px; }
}

.style-scroller { overflow: visible; }
.style-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .style-track { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .style-card { flex: none; max-width: none; }
}

.service-inner { width: min(92%, 1280px); margin: 0 auto; }
.service-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #6e6e6e;
  margin-bottom: 18px;
}
.service-title {
  font-size: clamp(20px, 4vw, 26px);
  line-height: 1.7;
  margin-bottom: 18px;
}
.service-lead {
  font-size: clamp(14px, 1.8vw, 15px);
  line-height: 1.9;
  color: #444;
  max-width: 640px;
  margin-bottom: clamp(28px, 5vw, 40px);
}
.service-grid { display: grid; gap: 18px; }
.service-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 20px 20px 22px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.03);
}
.service-name { font-size: 15px; font-weight: 500; margin-bottom: 6px; }
.service-text { font-size: 13px; line-height: 1.9; color: #555; font-weight: 300; }

@media (min-width: 768px) {
  .service-grid { grid-template-columns: repeat(4, 1fr); gap: 22px; }
  .service-card { padding: 24px 24px 26px; }
  .service-name { font-size: 16px; }
}

.ex-section { background: #fff; }
.ex-inner { width: min(92%, 1280px); margin: 0 auto; }

.ex-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #6e6e6e;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.ex-title { font-size: clamp(20px, 5vw, 26px); line-height: 1.7; margin: 0 0 12px; }
.ex-lead { font-size: clamp(14px, 1.7vw, 15px); line-height: 2.0; color: #444; margin-bottom: 24px; }

.ex-acc-list { display: flex; flex-direction: column; gap: 8px; }

.ex-acc-item {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: #fff;
  transition: border-color 0.22s ease;
}
.ex-acc-item.is-open { border-color: rgba(211, 198, 166, 0.65); }

.ex-acc-btn {
  width: 100%;
  padding: 18px 16px;
  min-height: 56px;
  border: none;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-size: 15px;
  color: #222;
  text-align: left;
  line-height: 1.6;
  transition: background 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}
.ex-acc-btn:hover { background: #faf8f3; }
.ex-acc-item.is-open .ex-acc-btn { background: #faf8f3; }

.ex-acc-icon {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  font-size: 0;
}
.ex-acc-icon::before,
.ex-acc-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  background: var(--color-accent, #d3c6a6);
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}
.ex-acc-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.ex-acc-item.is-open .ex-acc-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.ex-acc-item.is-open .ex-acc-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.ex-acc-content {
  max-height: 0;
  overflow: hidden;
  border-top: 1px solid transparent;
  background: #fafafa;
  transition: max-height 0.38s ease, padding 0.38s ease, border-color 0.38s ease;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 16px;
  padding-right: 16px;
}
.ex-acc-item.is-open .ex-acc-content {
  max-height: 600px;
  padding-top: 14px;
  padding-bottom: 18px;
  border-top-color: rgba(0, 0, 0, 0.05);
}

.ex-acc-note { font-size: 13px; line-height: 1.8; color: #555; margin-bottom: 10px; }

.ex-acc-columns { display: grid; grid-template-columns: 1fr; gap: 14px; }

.ex-acc-col h4 { font-size: 14px; margin: 0 0 6px; font-weight: 600; }
.ex-acc-col ul { list-style: none; padding: 0; margin: 0; }
.ex-acc-col li {
  font-size: 13px;
  line-height: 1.75;
  color: #444;
  padding: 4px 0 4px 1em;
  position: relative;
}
.ex-acc-col li::before { content: "・"; position: absolute; left: 0; color: var(--color-accent, #d3c6a6); }

@media (min-width: 768px) {
  .ex-acc-btn { padding: 18px 20px; font-size: 16px; }
  .ex-acc-item.is-open .ex-acc-content { padding: 16px 22px 22px; }
  .ex-acc-columns { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.planner-section { background: #f6f5f2; }
.planner-inner { width: min(92%, 1280px); margin: 0 auto; }

.planner-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #6e6e6e;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.planner-title { font-size: clamp(20px, 5vw, 26px); line-height: 1.7; letter-spacing: 0.02em; margin: 0 0 12px; }
.planner-lead { font-size: clamp(14px, 1.7vw, 15px); line-height: 2.0; color: #444; margin-bottom: 24px; }

.planner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.planner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.planner-photo {
  width: 88px;
  height: 88px;
  border-radius: 999px;
  overflow: hidden;
  background: #eee;
  flex-shrink: 0;
}
.planner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.planner-role {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6e6e6e;
  margin: 0;
}

.planner-name {
  font-size: 11px;
  margin: 0;
  line-height: 1.4;
  word-break: break-word;
  max-width: 100%;
}

@media (min-width: 768px) {
  .planner-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
  }
  .planner-photo {
    width: 80px;
    height: 80px;
  }
  .planner-name {
    font-size: 11px;
  }
}

.review-section { background: #fff; }
.review-inner { width: min(92%, 1280px); margin: 0 auto; }

.review-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #6e6e6e;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.review-title { font-size: clamp(20px, 5vw, 26px); line-height: 1.7; letter-spacing: 0.02em; margin: 0 0 12px; }
.review-lead { font-size: clamp(14px, 1.7vw, 15px); line-height: 2.0; color: #444; margin-bottom: 28px; }

.review-video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

.review-video-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.review-video-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #111;
}
.review-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0.88;
}
.review-video-card:hover .review-video-thumb img {
  transform: scale(1.03);
  opacity: 1;
}

.review-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}
.review-video-play::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 16px;
  border-color: transparent transparent transparent #111;
  margin-left: 3px;
}
.review-video-card:hover .review-video-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: #fff;
}

.review-video-time {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #fff;
  background: rgba(0, 0, 0, 0.62);
  padding: 2px 8px;
  border-radius: 4px;
}

.review-video-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #6e6e6e;
  margin: 8px 0 0;
  text-align: center;
}

.review-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  margin-bottom: 24px;
  background: #faf8f3;
  border: 1px solid rgba(211, 198, 166, 0.3);
  border-radius: 8px;
}
.review-summary-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(14px, 3.5vw, 15px);
  line-height: 1.5;
  margin: 0;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.review-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 12px;
  padding: 20px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-g-badge {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #4285f4;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: sans-serif;
}

.review-meta { display: flex; flex-direction: column; gap: 2px; }
.review-author { font-size: 13px; font-weight: 500; margin: 0; }
.review-case { font-size: 11px; color: #6e6e6e; margin: 0; letter-spacing: 0.04em; }

.review-stars {
  font-size: 14px;
  color: #f5a623;
  letter-spacing: 2px;
  margin: 0;
  line-height: 1;
}

.review-body {
  font-size: 13px;
  line-height: 1.95;
  color: #444;
  margin: 0;
  font-weight: 300;
}

.review-source {
  font-size: 11px;
  color: #6e6e6e;
  margin: 0;
  letter-spacing: 0.04em;
}

@media (min-width: 768px) {
  .review-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 56px;
  }
  .review-video-play { width: 60px; height: 60px; }
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .review-card { padding: 24px 22px 26px; }
}

@media (min-width: 1024px) {
  .review-video-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }
}

.review-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  padding: 20px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.review-g-badge {
  width: 28px; height: 28px;
  border-radius: 999px;
  background: #4285f4;
  color: #fff;
  font-size: 14px;
  text-align: center;
  font-weight: 600;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.review-meta { display: flex; flex-direction: column; gap: 2px; }
.review-author { font-size: 14px; margin: 0; line-height: 1.4; }
.review-case { font-size: 12px; color: #6e6e6e; margin: 0; }

.review-stars { font-size: 14px; color: #f5b300; letter-spacing: 1px; margin-bottom: 8px; }
.review-stars .star { opacity: 0.88; }

.review-body { font-size: 13px; line-height: 1.95; color: #444; margin: 0 0 10px; }
.review-source { font-size: 11px; color: #6e6e6e; margin: 0; }

@media (min-width: 768px) {
  .review-summary { padding: 20px 22px 18px; }
  .review-summary-title { font-size: 18px; margin-bottom: 12px; }
  .review-summary-list { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
  .review-slider { overflow: visible; }
  .review-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .review-card { flex: auto; max-width: 100%; border-radius: 14px; padding: 18px 20px 20px; }
  .review-card:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(15,23,42,0.08); border-color: rgba(211,198,166,0.65); }
  .review-footer { flex-direction: row; justify-content: space-between; align-items: center; }
}

.area-section { background: #fff; }
.area-inner { width: min(92%, 1280px); margin: 0 auto; }

.area-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #6e6e6e;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.area-title { font-size: clamp(20px, 5vw, 28px); line-height: 1.5; margin: 0 0 14px; }
.area-lead { font-size: clamp(14px, 1.7vw, 15px); line-height: 2.0; color: #444; margin-bottom: 18px; }

.area-region-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #6e6e6e;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.area-region + .area-region { margin-top: 24px; }

.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.area-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  min-height: 36px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-decoration: none;
  color: #333;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.14);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.area-tag:hover {
  border-color: var(--color-accent, #d3c6a6);
  color: var(--color-accent, #b8965a);
  background: #faf8f3;
}
a.area-tag:hover {
  background: var(--color-accent, #d3c6a6);
  color: #fff;
  border-color: var(--color-accent, #d3c6a6);
}
.area-tag:focus-visible { outline: 2px solid var(--color-accent, #d3c6a6); outline-offset: 2px; }

.area-note { margin-top: 18px; font-size: 12px; line-height: 1.8; color: #6e6e6e; }

.area-regions { display: flex; flex-direction: column; gap: 32px; }

.area-region-title {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6e6e6e;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.area-featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.area-featured {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.area-featured-name {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #333;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.22);
  text-decoration: none;
  width: fit-content;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.area-featured-name:hover {
  background: var(--color-accent, #d3c6a6);
  color: #fff;
  border-color: var(--color-accent, #d3c6a6);
}

.area-wards {
  font-size: 11px;
  line-height: 2.2;
  color: #6e6e6e;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.area-wards a {
  color: #6e6e6e;
  text-decoration: none;
  transition: color 0.15s ease;
}
.area-wards a:hover { color: var(--color-accent, #b8965a); }

@media (min-width: 768px) {
  .area-featured-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .area-wards { font-size: 12px; }
}

.map-section { background: #faf8f3; }
.map-inner { width: min(92%, 1280px); margin: 0 auto; }

.map-eyebrow { display: block; font-size: 11px; letter-spacing: 0.22em; color: #6e6e6e; margin-bottom: 14px; text-transform: uppercase; }
.map-title { font-size: clamp(20px, 5vw, 26px); line-height: 1.5; margin: 0 0 12px; }
.map-lead { font-size: clamp(14px, 1.7vw, 15px); line-height: 2.0; color: #444; margin-bottom: 32px; }

.store-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  background: rgba(0, 0, 0, 0.06);
  margin-bottom: 32px;
}

.store-card {
  background: #fff;
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.store-name {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0;
  color: #111;
}

.store-address {
  font-size: 12px;
  line-height: 1.8;
  color: #666;
  font-weight: 300;
  margin: 0;
}

.store-hours {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #555;
  margin: 0;
}

.store-closed {
  font-size: 11px;
  color: #6e6e6e;
  letter-spacing: 0.04em;
}

.store-map-link {
  font-size: 12px;
  color: #6e6e6e;
  text-decoration: none;
  letter-spacing: 0.04em;
  margin-top: 4px;
  transition: color 0.15s ease;
  width: fit-content;
}
.store-map-link:hover { color: var(--color-accent, #b8965a); }

.store-footer {
  text-align: center;
  padding-top: 8px;
}

.store-reserve-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  min-height: 52px;
  background: transparent;
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.store-reserve-btn:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

@media (min-width: 768px) {
  .store-grid { grid-template-columns: repeat(2, 1fr); }
  .store-card { padding: 36px 32px 40px; }
  .store-name { font-size: 15px; }
}

@media (min-width: 1024px) {
  .store-grid { grid-template-columns: repeat(4, 1fr); }
}

.faq-section { background: #faf8f5; }
.faq-inner { width: min(92%, 1280px); margin: 0 auto; }

.faq-eyebrow { display: block; font-size: 11px; letter-spacing: 0.22em; color: #6e6e6e; margin-bottom: 12px; text-transform: uppercase; }
.faq-title { font-size: clamp(20px, 5vw, 26px); line-height: 1.65; margin: 0 0 12px; }
.faq-lead { font-size: clamp(14px, 1.7vw, 15px); line-height: 2.0; color: #555; max-width: 640px; margin: 0 0 24px; }

.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: box-shadow 0.26s ease, transform 0.26s ease, border-color 0.26s ease;
}
.faq-item.open {
  border-color: rgba(211, 198, 166, 0.85);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.07);
  transform: translateY(-1px);
}

.faq-q {
  width: 100%;
  padding: 14px 14px 14px 16px;
  min-height: 56px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  column-gap: 10px;
  align-items: center;
  background: linear-gradient(to right, rgba(255,255,255,0.96), rgba(250,247,242,0.96));
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.18s ease;
}
.faq-q:hover { background: linear-gradient(to right, #faf8f3, #f5f1e8); }

.faq-q-label { font-size: 11px; letter-spacing: 0.18em; color: #6e6e6e; }
.faq-q-text { font-size: clamp(14px, 3.6vw, 15px); line-height: 1.65; text-align: left; }
.faq-q-icon {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: #fff;
  flex-shrink: 0;
  transition: background 0.24s ease, border-color 0.24s ease;
}
.faq-q-icon::before,
.faq-q-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  background: #555;
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, background 0.25s ease;
}
.faq-q-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item.open .faq-q-icon {
  background: var(--color-accent, #d3c6a6);
  border-color: transparent;
}
.faq-item.open .faq-q-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
  background: #fff;
}
.faq-item.open .faq-q-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
  background: #fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  transition: max-height 0.3s ease, padding-top 0.3s ease, padding-bottom 0.3s ease;
}
.faq-item.open .faq-a {
  padding-top: 12px;
  padding-bottom: 16px;
}
.faq-a p { font-size: clamp(13px, 1.6vw, 14px); line-height: 2.0; color: #444; margin: 0; }

@media (min-width: 768px) {
  .faq-q { padding: 16px 18px; }
  .faq-q-text { font-size: 15px; }
  .faq-a p { font-size: 14px; }
}

.area-wiki { background: #f5f5f3; }
.area-wiki-inner { width: min(92%, 1280px); margin: 0 auto; }

.area-wiki-eyebrow { display: block; font-size: 11px; letter-spacing: 0.22em; color: #6e6e6e; margin-bottom: 14px; text-transform: uppercase; }
.area-wiki-title { font-size: clamp(20px, 5vw, 26px); line-height: 1.7; letter-spacing: 0.02em; margin: 0 0 14px; }
.area-wiki-lead { font-size: clamp(14px, 1.7vw, 15px); line-height: 2.0; color: #555; max-width: 720px; margin-bottom: 28px; }

.area-wiki-grid { display: grid; gap: 14px; }

.area-wiki-block {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
  padding: 18px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.area-wiki-head { display: flex; flex-direction: column; gap: 4px; }
.area-wiki-num { font-size: 11px; letter-spacing: 0.22em; color: #6e6e6e; text-transform: uppercase; }
.area-wiki-block-title { font-size: clamp(14px, 3.8vw, 16px); line-height: 1.7; margin: 0; text-wrap: balance; }

.area-wiki-body p { font-size: clamp(13px, 1.6vw, 14px); line-height: 2.0; color: #444; margin: 0 0 0.8em; }
.area-wiki-body p:last-child { margin-bottom: 0; }

@media (min-width: 768px) {
  .area-wiki-title { font-size: 26px; max-width: 520px; text-wrap: balance; }
  .area-wiki-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .area-wiki-block {
    padding: 22px 22px 24px;
    border-radius: 14px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
  }
  .area-wiki-block:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(0,0,0,0.07); }
  .area-wiki-block-title { font-size: 16px; }
  .area-wiki-body p { font-size: 14px; }
}

.price-guide { background: #faf8f5; }
.price-inner { width: min(92%, 1280px); margin: 0 auto; }

.price-eyebrow { display: block; font-size: 11px; letter-spacing: 0.22em; color: #6e6e6e; margin-bottom: 14px; text-transform: uppercase; }
.price-title { font-size: clamp(20px, 5vw, 26px); line-height: 1.7; margin: 0 0 28px; }

.price-simple-note { display: flex; flex-direction: column; gap: 18px; }
.price-simple-note p { font-size: clamp(14px, 1.7vw, 15px); line-height: 2.1; color: #444; margin: 0; }

@media (min-width: 768px) {
  .price-title { font-size: 26px; }
}

.flow { background: #fff; }
.flow-inner { width: min(92%, 1280px); margin: 0 auto; }

.flow-eyebrow { display: block; font-size: 11px; letter-spacing: 0.22em; color: #6e6e6e; margin-bottom: 10px; text-transform: uppercase; }
.flow-title { font-size: clamp(20px, 5vw, 26px); line-height: 1.7; margin: 0 0 10px; }
.flow-lead { font-size: clamp(14px, 1.7vw, 15px); color: #555; line-height: 2.0; margin-bottom: 22px; max-width: 720px; }

.flow-list {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  padding-left: 4px;
}
.flow-list::before {
  content: "";
  position: absolute;
  left: 26px; top: 4px; bottom: 4px;
  width: 2px;
  background: rgba(211, 198, 166, 0.4);
}

.flow-step {
  position: relative;
  display: flex;
  gap: 12px;
  padding: 14px 14px 14px 18px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.flow-step-num {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 999px;
  background: var(--color-accent, #d3c6a6);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: grid;
  place-items: center;
}

.flow-step-body { flex: 1; min-width: 0; }
.flow-step-title { font-size: clamp(15px, 4vw, 17px); margin: 2px 0 6px; line-height: 1.5; }
.flow-step-body p { font-size: 13px; line-height: 1.85; color: #555; margin: 0; }

@media (min-width: 768px) {
  .flow-title { font-size: 26px; }
  .flow-lead { font-size: 15px; margin-bottom: 28px; }
  .flow-list { gap: 14px; padding-left: 8px; }
  .flow-list::before { left: 29px; }
  .flow-step {
    padding: 18px 24px 18px 24px;
    border-radius: 14px;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  }
  .flow-step:hover {
    background: #faf8f5;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    transform: translateY(-1px);
  }
  .flow-step-num { width: 36px; height: 36px; }
  .flow-step-title { font-size: 17px; }
  .flow-step-body p { font-size: 14px; }
}

.reason-section { background: #fff; }
.reason-inner { width: min(92%, 1280px); margin: 0 auto; }

.reason-eyebrow { display: block; font-size: 11px; letter-spacing: 0.22em; color: #6e6e6e; margin-bottom: 12px; text-transform: uppercase; }
.reason-title { font-size: clamp(20px, 5vw, 26px); line-height: 1.55; margin: 0 0 12px; text-wrap: balance; }
.reason-lead { font-size: clamp(14px, 1.7vw, 15px); line-height: 2.0; color: #555; margin: 0 0 22px; max-width: 820px; }

.reason-grid { display: grid; gap: 2px; background: rgba(0,0,0,0.05); }

.reason-item {
  background: #fff;
  padding: 28px 24px 24px;
  overflow: hidden;
  transition: box-shadow 0.22s ease;
}
.reason-item:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
  z-index: 1;
  position: relative;
}

.reason-num {
  display: block;
  font-family: var(--font-serif, "Hiragino Mincho ProN", "Yu Mincho", serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-style: italic;
  color: rgba(184, 144, 90, 0.40);
  line-height: 1;
  margin-bottom: 14px;
  user-select: none;
}

.reason-item-title { font-size: clamp(15px, 4vw, 17px); line-height: 1.55; margin: 0 0 8px; text-wrap: balance; }

.reason-item-text { font-size: 13px; line-height: 2.0; color: #444; margin: 0; word-break: break-word; }

.reason-item-text.is-collapsed {
  max-height: 7.8em;
  overflow: hidden;
  position: relative;
}
.reason-item-text.is-collapsed::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3.6em;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
  pointer-events: none;
}

.reason-item-text.is-expanded {
  max-height: none !important;
  overflow: visible !important;
}
.reason-item-text.is-expanded::after {
  display: none !important;
}

.reason-more {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #333;
  font-size: 13px;
  padding: 8px 10px;
  min-height: 44px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}
.reason-more[hidden] { display: none !important; }

.reason-item:has(.reason-item-text.is-collapsed) {
  cursor: pointer;
}
.reason-item:has(.reason-item-text.is-collapsed):hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
  z-index: 1;
  position: relative;
}
.reason-more:hover { background: rgba(211, 198, 166, 0.16); }

.reason-more .icon {
  width: 22px; height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.2s ease, background 0.2s ease;
}
.reason-item.is-open .reason-more .icon {
  transform: rotate(45deg);
  background: rgba(211, 198, 166, 0.32);
  border-color: rgba(211, 198, 166, 0.7);
}

@media (min-width: 768px) {
  .reason-title { font-size: 26px; }
  .reason-lead { font-size: 15px; margin-bottom: 26px; }
  .reason-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .reason-item { padding: 36px 32px 32px; }
  .reason-item-title { font-size: 17px; }
  .reason-item-text { font-size: 14px; }
}
@media (min-width: 1024px) {
  .reason-grid { grid-template-columns: repeat(3, 1fr); }
}

.cta-final {
  background: #fff;
  padding-block: clamp(72px, 14vw, 140px);
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.cta-final-inner {
  width: min(92%, 600px);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-final-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #6e6e6e;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.cta-final-title {
  font-size: clamp(22px, 5vw, 36px);
  line-height: 1.6;
  color: #111;
  margin: 0 0 36px;
  font-weight: 400;
}

.cta-final-lead {
  font-size: 13px;
  line-height: 2.0;
  color: #6e6e6e;
  margin: -20px 0 32px;
}

.cta-btn-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.cta-final .cta-btn.main {
  background: transparent;
  color: #111;
  border: 1px solid rgba(0, 0, 0, 0.3);
  box-shadow: none;
  min-width: 240px;
  letter-spacing: 0.1em;
  font-size: 13px;
}
.cta-final .cta-btn.main:hover {
  background: #111;
  color: #fff;
  border-color: #111;
  box-shadow: none;
  transform: none;
}
.cta-final .cta-btn.main::after { display: none; }

.cta-final-tel {
  display: block;
  margin-top: 24px;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #6e6e6e;
  text-decoration: none;
  transition: color 0.2s ease;
}
.cta-final-tel:hover { color: #111; }

.cta-final-note {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #6e6e6e;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .cta-final-title { font-size: 34px; }
  .cta-final .cta-btn.main { min-width: 280px; }
  .cta-btn { padding: 15px 22px; }
}

@keyframes cta-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

.cta-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 6px;
  padding: 14px 18px;
  min-height: 52px;
  font-size: clamp(14px, 1.7vw, 15px);
  letter-spacing: 0.06em;
  line-height: 1;
  border: 1px solid rgba(0, 0, 0, 0.10);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
.cta-btn.main {
  background: #111827;
  color: #fff;
  border-color: #111827;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.18);
}

.cta-btn.main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.14) 50%,
    transparent 65%
  );
  background-size: 200% 100%;
  background-position: -200% center;
  opacity: 0;
  transition: opacity 0.15s ease;
  pointer-events: none;
}
.cta-btn.main:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(17, 24, 39, 0.26);
}
.cta-btn.main:hover::after {
  opacity: 1;
  animation: cta-shimmer 0.6s ease-out forwards;
}
.cta-btn.sub {
  background: #fff;
  color: #111827;
  border-color: rgba(0, 0, 0, 0.14);
}
.cta-btn.sub:hover {
  background: rgba(211, 198, 166, 0.14);
  border-color: rgba(211, 198, 166, 0.8);
  transform: translateY(-1px);
}
.cta-btn:focus-visible {
  outline: 2px solid rgba(211, 198, 166, 0.85);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .cta-btn.main::after { display: none; }
}

.area-sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 10px 20px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.area-sticky-cta.is-visible { transform: translateY(0); }

.sticky-cta-form {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  padding: 11px 24px;
  min-height: 44px;
  border-radius: 6px;
  font-size: 13px;
  letter-spacing: 0.06em;
  background: #111;
  color: #fff;
  text-decoration: none;
  transition: background 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}
.sticky-cta-form:hover { background: #333; }

.sticky-cta-tel {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #6e6e6e;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.18s ease;
}
.sticky-cta-tel:hover { color: #111; }

@media (min-width: 768px) {
  .area-sticky-cta {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
    padding: 12px 40px;
  }
  .sticky-cta-tel {
    font-size: 14px;
    color: #555;
    letter-spacing: 0.06em;
  }
  .sticky-cta-form { width: auto; padding: 10px 36px; font-size: 14px; }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
