:root {
  --ink: #181817;
  --charcoal: #20211f;
  --night: #101211;
  --paper: #f6f1e8;
  --paper-soft: #fbf8f1;
  --stone: #b1a799;
  --mist: #c4cdd4;
  --blue: #536b7b;
  --gold: #bf9f68;
  --line: rgba(24, 24, 23, 0.18);
  --white-line: rgba(255, 255, 255, 0.22);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Baskerville, "Iowan Old Style", "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", Georgia, serif;
  background: var(--paper);
  color: var(--ink);
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 18px;
  align-items: center;
  height: 84px;
  padding: 0 clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open,
.site-header.is-solid {
  color: var(--ink);
  background: rgba(246, 241, 232, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  width: 158px;
  filter: invert(1);
  margin-right: auto;
}

.site-header.is-scrolled .brand,
.site-header.is-open .brand,
.site-header.is-solid .brand {
  filter: none;
}

.desktop-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
  font-size: 13px;
}

.desktop-nav a,
.header-cta {
  position: relative;
  opacity: 0.92;
}

.desktop-nav a::after,
.header-cta::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.header-cta:hover::after {
  transform: scaleX(1);
}

.header-cta {
  padding: 12px 20px;
  border: 1px solid currentColor;
  font-size: 13px;
}

.header-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: currentColor;
  opacity: 0.88;
  padding: 6px 4px;
  margin-right: 4px;
  transition: opacity 180ms ease, color 180ms ease;
}
.header-map-link svg {
  flex-shrink: 0;
  opacity: 0.9;
  transition: transform 240ms ease;
}
.header-map-link:hover {
  opacity: 1;
  color: var(--gold, #bf9f68);
}
.header-map-link:hover svg {
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .header-map-link span { display: none; }
  .header-map-link { padding: 6px; }
}

.language-toggle {
  display: inline-grid;
  grid-template-columns: repeat(4, 1fr);
  min-width: 148px;
  height: 42px;
  padding: 3px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
}

.language-toggle button {
  min-width: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.language-toggle button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--paper);
}

.site-header:not(.is-scrolled):not(.is-open) .language-toggle button[aria-pressed="true"] {
  background: #fff;
  color: var(--night);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  color: inherit;
  background: transparent;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: currentColor;
}

.mobile-nav {
  position: fixed;
  z-index: 18;
  inset: 84px 0 auto 0;
  display: none;
  padding: 22px;
  background: rgba(246, 241, 232, 0.98);
  border-bottom: 1px solid var(--line);
}

.mobile-nav a {
  display: block;
  padding: 15px 4px;
  border-bottom: 1px solid var(--line);
}

.mobile-nav.is-open {
  display: block;
}

.hero {
  position: relative;
  min-height: clamp(560px, 68vh, 760px);
  overflow: hidden;
  color: #fff;
  background: var(--night);
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slides > .hero-image,
.hero-slides > picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: saturate(0.88) brightness(0.96) hue-rotate(5deg);
  transform: scale(1.025);
  transition: opacity 1100ms ease, transform 6800ms ease;
}

.hero-slides > .hero-image,
.hero-slides > picture > .hero-image {
  object-fit: cover;
}

.hero-slides > picture > .hero-image {
  position: static;
  inset: auto;
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
  width: 100%;
  height: 100%;
}

.special-hero > picture,
.special-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.special-hero > picture > img,
.special-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(0.86) brightness(0.82);
}

.hero-slides > .hero-image.is-active,
.hero-slides > picture.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 15, 20, 0.8), rgba(17, 37, 47, 0.24) 54%, rgba(8, 18, 24, 0.45)),
    linear-gradient(0deg, rgba(7, 14, 18, 0.66), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(700px, calc(100% - 40px));
  padding: 11vh 0 0 clamp(22px, 7vw, 88px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: Baskerville, "Iowan Old Style", Georgia, serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  text-wrap: balance;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-family: Baskerville, "Iowan Old Style", Georgia, serif;
  font-size: clamp(34px, 4.45vw, 56px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 500px;
  margin: 28px 0 0;
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 2.05;
  color: rgba(255, 255, 255, 0.86);
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.hero-link span {
  transition: transform 180ms ease;
}

.hero-link:hover span {
  transform: translateX(4px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.button.dark {
  background: var(--ink);
  color: #fff;
}

.button.light {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
}

.button:hover {
  border-color: var(--gold);
}

.hero-meta {
  position: absolute;
  z-index: 1;
  left: clamp(22px, 7vw, 88px);
  right: clamp(22px, 7vw, 88px);
  bottom: 24px;
  display: flex;
  align-items: end;
}

.hero-rule {
  flex: 1;
  height: 1px;
  margin-right: 18px;
  background: rgba(255, 255, 255, 0.22);
}

.hero-scene {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  z-index: 2;
}

.hero-scene button {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.86);
  color: #fff;
  cursor: pointer;
  opacity: 0.48;
  box-shadow: 0 0 0 3px rgba(8, 14, 18, 0.2);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.hero-scene button.is-active,
.hero-scene button:hover,
.hero-scene button:focus-visible {
  opacity: 1;
  background: #fff;
  transform: scale(1.28);
}

.hero-scene small {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.78fr);
  gap: clamp(34px, 7vw, 88px);
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(32px, 4.2vw, 54px) 0;
}

.section-heading h2,
.feature-content h2,
.dark-content h2,
.business-copy h2,
.contact h2,
.international h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.18;
}

.section-row {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 26px;
  padding-top: 2px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.section-label {
  margin: 0;
  font-size: 24px;
  font-family: Baskerville, "Iowan Old Style", Georgia, serif;
  font-weight: 400;
}

.section-link,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #59544c;
  font-size: 14px;
}

.text-link.light {
  color: rgba(255, 255, 255, 0.82);
}

.text-link span,
.section-link span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.section-link:hover span {
  transform: translateX(4px);
}

.anchor-target {
  display: block;
  height: 0;
  scroll-margin-top: 110px;
}

.section-heading.wide {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 34px;
}

.intro-copy p {
  margin: 36px 0 0;
  line-height: 2.1;
  color: #514d46;
}

.editorial-intro {
  align-items: center;
}

.intro-copy-block p:not(.eyebrow) {
  max-width: 470px;
  margin: 22px 0 0;
  line-height: 2.05;
  color: #514d46;
}

.intro-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.72 / 1;
  background: #e2d7c6;
}

.intro-still-life .intro-bg,
.intro-still-life .intro-shadow,
.intro-still-life .intro-vase {
  position: absolute;
}

.intro-still-life .intro-bg {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.96);
}

.intro-still-life .intro-shadow {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  mix-blend-mode: multiply;
}

.intro-still-life .intro-vase {
  right: 6%;
  bottom: -10%;
  width: 52%;
  height: auto;
  object-fit: contain;
  filter: saturate(0.88) brightness(0.92);
}

.setouchi-sea-band {
  position: relative;
  width: 100vw;
  min-height: clamp(300px, 32vw, 430px);
  margin: clamp(12px, 3vw, 36px) calc(50% - 50vw) clamp(28px, 5vw, 60px);
  overflow: hidden;
  color: #fff;
  background:
    #b9cbd2
    url("assets/generated/setouchi-sea-islands-band-v2.png")
    center 44% / cover no-repeat;
}

.setouchi-sea-band::before,
.setouchi-sea-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.setouchi-sea-band::before {
  background:
    linear-gradient(90deg, rgba(8, 18, 23, 0.54), rgba(19, 48, 61, 0.08) 54%, rgba(8, 25, 33, 0.12)),
    linear-gradient(0deg, rgba(7, 17, 22, 0.28), transparent 52%);
}

.setouchi-sea-band::after {
  inset: auto 0 0;
  height: 28%;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 22px),
    linear-gradient(0deg, rgba(13, 35, 43, 0.3), transparent);
  opacity: 0.38;
}

.sea-band-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: end;
  width: min(520px, calc(100% - 44px));
  min-height: inherit;
  padding: clamp(42px, 6vw, 68px) 0 clamp(34px, 5vw, 54px) clamp(22px, 7vw, 88px);
}

.sea-band-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 400;
  line-height: 1.16;
}

.sea-band-copy p:not(.eyebrow) {
  max-width: 430px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(13px, 1.05vw, 15px);
  line-height: 1.9;
}

.sea-mist-section {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: max(48px, calc((100vw - 1260px) / 2));
  padding-right: max(48px, calc((100vw - 1260px) / 2));
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.sea-mist-section::before {
  content: none;
  position: absolute;
  left: max(48px, calc((100vw - 1260px) / 2));
  right: max(48px, calc((100vw - 1260px) / 2));
  top: 22px;
  height: 1px;
  background: linear-gradient(90deg, rgba(24, 24, 23, 0.22), transparent 68%);
}

.collection-section,
.story-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 clamp(34px, 4vw, 58px);
}

/* index トップ: 注目ページ・コレクション・ストーリーの幅を完全に揃える */
.collection-section,
.story-section {
  width: min(1320px, calc(100% - 96px));
}

/* 同3セクションの section-row を親幅に追従させ、左右の x を統一 */
#special-features > .section-row,
#collections > .section-row,
#stories > .section-row {
  width: 100%;
  max-width: none;
  margin: 0 0 26px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.collection-card {
  position: relative;
  display: grid;
  aspect-ratio: 3 / 4;
  min-height: 0;
  min-width: 0;
  grid-template-rows: 1fr;
  overflow: hidden;
  background: #151515;
  color: #fff;
  border: 1px solid var(--line);
}

.collection-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
  transform: scale(1.08);
}

.collection-card div {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 14px;
  padding: 0 20px 0 0;
}

.collection-card strong {
  display: block;
  margin-top: 6px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.story-copy h3 {
  display: block;
  margin-top: 8px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
}

.collection-card p,
.story-copy p {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

.collection-card span,
.story-copy span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13.5px;
  letter-spacing: 0.18em;
  text-transform: none;
  font-weight: 500;
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 9, 9, 0.12), rgba(8, 9, 9, 0.72));
}

.collection-card div::after {
  content: "→";
  position: absolute;
  right: 0;
  bottom: 2px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr 1fr;
  gap: 14px;
}

.story-card {
  position: relative;
  min-height: clamp(240px, 20vw, 315px);
  overflow: hidden;
  contain: layout paint;
  background: #161716;
  color: #fff;
  border: 1px solid var(--line);
}

.story-card.large {
  min-height: clamp(260px, 22vw, 340px);
}

.story-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
  transform: scale(1.08);
}

.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 9, 9, 0.12), rgba(8, 9, 9, 0.72));
}

.story-copy {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 58px;
}

.story-copy span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.story-card > a {
  position: absolute;
  z-index: 1;
  left: 18px;
  bottom: 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.membership-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #0f1010;
}

.membership-copy,
.concierge-copy {
  min-height: 160px;
  padding: clamp(20px, 2.8vw, 34px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.membership-copy {
  background: #0f1010;
  color: #fff;
}

.membership-copy p:not(.eyebrow),
.concierge-copy p:not(.eyebrow) {
  max-width: 430px;
  line-height: 2;
}

.concierge-copy {
  background: var(--paper-soft);
  color: var(--ink);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: stretch;
  gap: 24px;
}

.concierge-text {
  min-width: 0;
  padding: 2px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.concierge-copy .eyebrow {
  color: #d1b37a;
}

.concierge-copy p:not(.eyebrow) {
  color: #5d584f;
}

.concierge-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  align-self: stretch;
}

.invitation-strip {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 200px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #111212;
}

.invitation-panel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.invitation-panel .panel-bg,
.invitation-panel .panel-shadow,
.invitation-panel .panel-vase {
  position: absolute;
}

.invitation-panel .panel-bg {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(0.95);
}

.invitation-panel .panel-shadow {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  mix-blend-mode: multiply;
}

.invitation-panel.still-life {
  background: #ece2d0;
}

.invitation-panel .panel-vase {
  right: -2%;
  bottom: -6%;
  width: 38%;
  height: auto;
  object-fit: contain;
}

.invitation-panel .panel-line {
  position: absolute;
  left: 11%;
  right: 11%;
  bottom: 16%;
  height: 1px;
  background: rgba(111, 98, 83, 0.55);
}

.invitation-panel.shadow-wall {
  background: #ede5d7;
}

.invitation-panel.shadow-wall .panel-shadow {
  opacity: 0.72;
}

.invitation-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 28px;
  color: #fff;
  background: #171716;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.category-card {
  min-height: 520px;
  display: grid;
  grid-template-rows: 58% 42%;
  border-right: 1px solid var(--line);
  background: var(--paper-soft);
}

.category-card:last-child {
  border-right: 0;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86);
}

.category-card div {
  padding: 26px clamp(18px, 2.4vw, 34px);
}

.category-card span,
.large-story span,
.story-list span,
.journal span,
.business-panel span {
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
}

.category-card h3,
.large-story h3,
.story-list h3,
.journal h3,
.gift-grid h3 {
  margin: 12px 0 10px;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 400;
  line-height: 1.35;
}

.category-card p,
.feature-content p,
.dark-content p,
.gift-grid p,
.business-copy p,
.international p,
.area-copy {
  line-height: 1.9;
  color: #5d584f;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(78px, 11vw, 146px) 0;
}

.feature-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.feature-list span {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: #56524a;
}

.editorial-section,
.journal,
.courses {
  padding: clamp(74px, 10vw, 128px) 0;
  background: var(--paper-soft);
  border-top: 1px solid var(--line);
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.74fr);
  gap: 18px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.large-story,
.story-list article,
.journal article,
.gift-grid article {
  background: #fffaf1;
}

.large-story img {
  width: 100%;
  height: 610px;
  object-fit: cover;
}

.large-story div,
.story-list div,
.journal article,
.gift-grid article {
  padding: 22px;
}

.story-list {
  display: grid;
  gap: 18px;
}

.story-list article {
  display: grid;
  grid-template-columns: 160px 1fr;
}

.story-list img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.dark-feature {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--night);
}

.dark-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(0.7);
}

.dark-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 9, 8, 0.86), rgba(8, 9, 8, 0.35));
}

.dark-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 40px));
  margin-left: clamp(20px, 8vw, 100px);
}

.dark-content p {
  color: rgba(255, 255, 255, 0.78);
}

.inline-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.inline-topics li {
  padding: 10px 13px;
  border: 1px solid var(--white-line);
  color: rgba(255, 255, 255, 0.82);
}

.gift-section,
.area-guide,
.international,
.business,
.contact {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(78px, 11vw, 136px) 0;
}

.gift-grid,
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.gift-grid article {
  min-height: 430px;
}

.gift-grid img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  background: #f2ede4;
}

.notice-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #5c574d;
}

.notice-line a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--gold);
}

.course-table {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.course-table > div {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.course-table strong {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 400;
}

.course-table span {
  color: #5d584f;
}

.course-table a {
  color: var(--gold);
}

.area-guide {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.area-map {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.area-map span {
  display: grid;
  min-height: 92px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--paper-soft);
}

.area-copy {
  grid-column: 2;
  margin: -26px 0 0;
}

.journal-grid article {
  padding: 0;
}

.journal-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.journal-grid span,
.journal-grid h3 {
  display: block;
  padding-inline: 20px;
}

.journal-grid span {
  padding-top: 20px;
}

.journal-grid h3 {
  padding-bottom: 24px;
}

.international {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  border-top: 1px solid var(--line);
}

.international div {
  max-width: 760px;
}

.business {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: clamp(32px, 7vw, 82px);
  border-top: 1px solid var(--line);
}

.business-panel {
  padding: 28px;
  background: var(--charcoal);
  color: #fff;
}

.business-panel ul {
  margin: 18px 0 0;
  padding-left: 20px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.82);
}

.contact {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: clamp(32px, 7vw, 90px);
  border-top: 1px solid var(--line);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  font-size: 13px;
  color: #625d54;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 13px 14px;
  background: var(--paper-soft);
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.policy-hero {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 170px 0 clamp(60px, 8vw, 96px);
  border-bottom: 1px solid var(--line);
}

.policy-hero h1 {
  max-width: 860px;
  font-size: clamp(42px, 7vw, 86px);
}

.policy-hero p:not(.eyebrow) {
  max-width: 720px;
  color: #5d584f;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 2;
}

.policy-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0 clamp(78px, 10vw, 128px);
}

.policy-list {
  display: grid;
  gap: 1px;
  margin: 0;
  background: var(--line);
}

.policy-list div {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) 1fr;
  gap: 28px;
  padding: 26px;
  background: rgba(255, 250, 241, 0.78);
}

.policy-list dt {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.policy-list dd {
  margin: 0;
  color: #514d46;
  line-height: 1.9;
}

.policy-list a {
  border-bottom: 1px solid currentColor;
}

/* === Policy Cards (numbered ol layout) === */
.policy-cards {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 110px) 0 clamp(72px, 9vw, 120px);
}
.policy-section-head {
  text-align: center;
  margin: 0 auto clamp(40px, 5vw, 64px);
  max-width: 720px;
}
.policy-section-head .eyebrow {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.policy-section-head h2 {
  font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  margin: 0 0 16px;
  color: #1f1d1a;
}
.policy-section-head .policy-section-lede {
  color: #6b6760;
  line-height: 1.85;
  font-size: 0.95rem;
  margin: 0;
}
.policy-cards ol.policy-list {
  display: grid;
  gap: 1px;
  background: rgba(46, 38, 30, 0.12);
  border: 1px solid rgba(46, 38, 30, 0.12);
  list-style: none;
  padding: 0;
  margin: 0;
}
.policy-cards ol.policy-list > li {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: clamp(24px, 3vw, 44px);
  padding: clamp(28px, 3.4vw, 44px) clamp(28px, 4vw, 56px);
  background: rgba(255, 252, 246, 0.96);
  align-items: start;
}
.policy-cards .policy-num {
  font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.06em;
  line-height: 1;
  padding-top: 4px;
}
.policy-cards ol.policy-list h3 {
  font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
  color: #1f1d1a;
}
.policy-cards ol.policy-list p {
  margin: 0;
  color: #4f4b44;
  line-height: 1.95;
  font-size: 0.95rem;
}
.policy-cards ol.policy-list a {
  color: var(--gold);
  border-bottom: 1px solid currentColor;
}
@media (max-width: 720px) {
  .policy-cards ol.policy-list > li {
    grid-template-columns: 64px 1fr;
    gap: 18px;
    padding: 24px 22px;
  }
  .policy-cards .policy-num {
    font-size: 1.9rem;
  }
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
  gap: 44px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 34px clamp(22px, 7vw, 88px) 42px;
  background: linear-gradient(180deg, rgba(6, 7, 7, 0.95), rgba(6, 7, 7, 0.99));
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-legal-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}

.footer-legal-links a:hover {
  color: #fff;
}

.footer-brand img {
  width: 210px;
  filter: invert(1);
}

.footer-brand p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
}

.footer-brand small {
  display: block;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.42);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: end;
  gap: 32px;
  color: rgba(255, 255, 255, 0.74);
  text-align: right;
}

.footer-nav div {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.footer-nav h2,
.footer-nav h3 {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

.footer-brand,
.footer-nav h2,
.footer-nav h3,
.footer-nav a {
  font-family: Baskerville, "Iowan Old Style", Georgia, serif;
}

.footer-nav a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.72);
}

.footer-nav a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-contact-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.32);
  padding-bottom: 2px;
  transition: color 180ms ease, border-color 180ms ease;
}
.footer-contact-link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: border-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.footer-social a:hover {
  border-color: rgba(255, 255, 255, 0.46);
  opacity: 1;
  transform: translateY(-1px);
}

.footer-social img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: invert(1);
  opacity: 0.88;
}

.page-hero {
  position: relative;
  min-height: min(72vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--night);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) brightness(0.96) hue-rotate(5deg);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(191, 159, 104, 0.13), transparent 28%),
    linear-gradient(90deg, rgba(7, 14, 18, 0.78), rgba(17, 39, 50, 0.15) 58%, rgba(7, 18, 24, 0.44)),
    linear-gradient(0deg, rgba(7, 14, 18, 0.8), transparent 52%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 160px 0 74px;
}

.page-hero-content::before {
  content: "";
  display: block;
  width: 96px;
  height: 1px;
  margin-bottom: 28px;
  background: rgba(191, 159, 104, 0.82);
}

.page-hero h1 {
  max-width: 790px;
  font-size: clamp(44px, 6vw, 82px);
}

.page-hero p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 2;
}

.page-lead {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 7vw, 86px);
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(56px, 7.5vw, 92px) 0;
}

.page-lead p {
  margin: 0;
  color: #5d584f;
  line-height: 2.1;
}

.page-lead h2,
.listing-section h2,
.feature-page-band h2,
.route-section h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 66px);
  font-weight: 400;
  line-height: 1.15;
}

.listing-section,
.feature-page-band,
.route-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(56px, 7.5vw, 92px) 0;
  border-top: 1px solid var(--line);
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.listing-card {
  display: grid;
  grid-template-rows: clamp(240px, 20vw, 300px) auto;
  background: #fffaf1;
  border: 1px solid var(--line);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.listing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(191, 159, 104, 0.48);
  box-shadow: 0 18px 42px rgba(24, 24, 23, 0.08);
}

.listing-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-card .contain {
  object-fit: contain;
  padding: 28px;
  background: #f2ede4;
}

.listing-card div {
  padding: 22px;
}

.listing-card span,
.route-card span,
.metric span {
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
}

.listing-card h3,
.route-card h3 {
  margin: 10px 0 12px;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  line-height: 1.35;
}

.listing-card p,
.route-card p,
.feature-page-band p {
  margin: 0;
  color: #5d584f;
  line-height: 1.85;
}

.feature-page-band {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: center;
}

.feature-page-band img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.route-card {
  padding: 28px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.route-card:hover {
  transform: translateY(-3px);
  border-color: rgba(191, 159, 104, 0.52);
  background: #fffaf1;
}

.article-page {
  background: var(--paper);
}

.article-hero {
  position: relative;
  min-height: min(78vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--night);
}

.article-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) brightness(0.9) hue-rotate(5deg);
}

.article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 14, 18, 0.82), rgba(17, 39, 50, 0.14) 62%, rgba(7, 18, 24, 0.42)),
    linear-gradient(0deg, rgba(7, 14, 18, 0.84), transparent 54%);
}

.article-hero div {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 78px;
}

.article-hero h1 {
  max-width: 880px;
  font-size: clamp(40px, 5.6vw, 76px);
}

.article-hero p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 2;
}

.article-body {
  width: min(780px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(56px, 7vw, 90px) 0;
}

.article-body p {
  margin: 0 0 28px;
  color: #3f3b35;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 2.15;
}

.article-body figure {
  margin: clamp(38px, 5vw, 58px) 0;
}

.article-body figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-body figcaption {
  margin-top: 12px;
  color: #6d665c;
  font-size: 13px;
  line-height: 1.8;
}

.article-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 clamp(62px, 8vw, 100px);
}

.article-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  background: var(--paper-soft);
  color: var(--ink);
  font-size: 14px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 32px;
  background: var(--line);
}

.metrics .visually-hidden {
  grid-column: 1 / -1;
}

.metric {
  min-height: 120px;
  padding: 22px;
  background: var(--paper-soft);
}

.metric strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 400;
  font-family: Georgia, "Times New Roman", serif;
}

.page-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto clamp(70px, 10vw, 120px);
  padding: clamp(34px, 5vw, 56px);
  background: var(--charcoal);
  color: #fff;
  border: 1px solid rgba(191, 159, 104, 0.34);
  box-shadow: 0 26px 70px rgba(24, 24, 23, 0.12);
}

.page-cta h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
}

.page-cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.9;
}

.page-cta .button {
  border-color: rgba(255, 255, 255, 0.72);
}

.lang-note {
  display: inline-flex;
  margin-top: 22px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  color: #5d584f;
}

.feature-site {
  background: var(--paper);
}

.premium-assurance {
  width: min(1260px, calc(100% - 96px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 60px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(24, 24, 23, 0.08);
}

.premium-assurance-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.premium-assurance h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.22;
}

.premium-assurance p {
  color: #5d584f;
  line-height: 1.9;
}

.assurance-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  background: var(--line);
}

.assurance-item {
  min-height: 150px;
  padding: 22px;
  background: rgba(255, 250, 241, 0.74);
}

.assurance-item span {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.assurance-item strong {
  display: block;
  margin-top: 10px;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.45;
}

.assurance-item small {
  display: block;
  margin-top: 10px;
  color: #665f54;
  font-size: 13px;
  line-height: 1.75;
}

/* feature-header もメインに合わせ width:158px (.brand のデフォルト) を継承 */

.special-hero {
  position: relative;
  min-height: clamp(560px, 68vh, 760px);
  overflow: hidden;
  color: #fff;
  background: #151816;
}

/* moved & relaxed below — kept for backward-compat when picture wraps img */

.gift-hero {
  background:
    linear-gradient(90deg, #181614, #4b453d 58%, #80796e),
    url("assets/textures/shadow-wall.png");
}

.gift-hero > img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: saturate(0.72) brightness(0.8) contrast(0.94);
}

.gift-hero .special-hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 10, 9, 0.82), rgba(10, 10, 9, 0.42) 50%, rgba(10, 10, 9, 0.48)),
    linear-gradient(0deg, rgba(10, 10, 9, 0.4), transparent 46%);
}

.special-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 16%, rgba(191, 159, 104, 0.08), transparent 30%),
    linear-gradient(90deg, rgba(7, 13, 17, 0.55), rgba(16, 37, 47, 0.05) 55%, rgba(7, 17, 23, 0.05)),
    linear-gradient(0deg, rgba(7, 13, 17, 0.32), transparent 42%);
}

.special-hero-content {
  position: relative;
  z-index: 1;
  width: min(700px, calc(100% - 40px));
  margin: 0;
  padding: 11vh 0 0 clamp(22px, 7vw, 88px);
}

.special-hero-content::before {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  margin-bottom: 16px;
  background: rgba(191, 159, 104, 0.82);
}

.special-hero h1 {
  font-size: clamp(32px, 4.4vw, 50px);
  line-height: 1.08;
  letter-spacing: 0.04em;
}

.special-subtitle {
  margin: 14px 0 0;
  font-size: clamp(15px, 1.8vw, 20px);
  line-height: 1.55;
}

.special-copy {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13.5px;
  line-height: 1.85;
}

.special-intro,
.special-section,
.private-course {
  width: min(1260px, calc(100% - 96px));
  margin: 0 auto;
}

.special-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1.06fr);
  gap: clamp(36px, 8vw, 98px);
  align-items: center;
  padding: clamp(30px, 4vw, 46px) 0 18px;
}

.special-intro-copy h2 {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 400;
  line-height: 1.78;
  word-break: keep-all;
  overflow-wrap: anywhere;
  line-break: strict;
}

.special-intro-copy p {
  max-width: 560px;
  margin: 20px 0 0;
  color: #514d46;
  line-height: 2;
}

.special-still {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #d8cbbb;
}

.special-still-bg,
.special-still-shadow,
.special-still-vase {
  position: absolute;
}

.special-still-bg,
.special-still-shadow {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.special-still-shadow {
  opacity: 0.74;
  mix-blend-mode: multiply;
}

.special-still-vase {
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: min(280px, 64%);
  max-height: 86%;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 18px 48px -16px rgba(36, 26, 12, 0.34);
  filter: saturate(0.92) brightness(0.94);
}

.special-section {
  padding: 22px 0 20px;
}

.special-row {
  width: 100%;
  margin-bottom: 18px;
}

.special-category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.special-category-card,
.stay-feature-card,
.gastronomy-band,
.special-final-cta {
  position: relative;
  overflow: hidden;
}

.special-category-card {
  min-height: clamp(220px, 18vw, 280px);
  padding: 0 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background: #151515;
}

.special-category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78);
  transition: transform 360ms ease;
}

.special-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 12, 11, 0.06), rgba(12, 12, 11, 0.76));
}

.special-category-card:hover img {
  transform: scale(1.035);
}

.special-category-card span,
.special-category-card strong {
  position: relative;
  z-index: 1;
}

.special-category-card span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}

.special-category-card strong {
  margin-top: 6px;
  padding-right: 22px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
}

.special-category-card strong::after {
  content: "→";
  position: absolute;
  right: 0;
  bottom: 0;
}

.stay-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.stay-mid-cta {
  grid-column: 1 / -1;
  margin: 8px 0;
  width: 100%;
}

/* food-fine-dining のカード意匠を流用: オフホワイト紙質 + 画像上下分離 + ダークテキスト */
.stay-feature-column {
  display: flex;
  flex-direction: column;
  background: #fbf8f3;
  border: 0.5px solid rgba(24, 24, 23, 0.12);
  border-top: 1px solid rgba(191, 159, 104, 0.55);
  overflow: hidden;
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.stay-feature-column:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px -28px rgba(24, 24, 23, 0.4);
}

.stay-feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: transparent;
  color: var(--ink);
}

.stay-feature-card img {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.86);
  transition: transform 480ms ease;
}

.stay-feature-column:hover .stay-feature-card img {
  transform: scale(1.04);
}

.stay-feature-card::after {
  content: none;
}

.stay-feature-card > div {
  position: relative;
  z-index: auto;
  padding: 18px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stay-feature-card h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.stay-feature-card > div > p {
  margin: 0;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: #8a826f;
  text-transform: uppercase;
}

.stay-feature-card small {
  display: block;
  margin: 2px 0 4px;
  font-size: 13px;
  line-height: 1.75;
  color: #514d46;
}

.card-recommend-wrap {
  padding: 14px 20px 18px;
  background: #fff;
  border-top: 0.5px solid rgba(24, 24, 23, 0.12);
}

.recommend-title {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.06em;
}

.card-recommend {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  color: #514d46;
}

.card-recommend li {
  position: relative;
  padding-left: 16px;
  line-height: 1.7;
  margin-bottom: 6px;
}

.card-recommend li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 1px;
  background: var(--gold);
}

.card-official-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  padding: 0 0 2px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(24, 24, 23, 0.4);
  transition: border-color 200ms ease, color 200ms ease;
  position: relative;
  z-index: 2;
}

.card-official-link:hover {
  color: var(--ink);
  border-bottom-color: var(--gold, #bf9f68);
}

.card-official-link[data-status="closed"] {
  color: rgba(24, 24, 23, 0.55);
  border-bottom-color: rgba(24, 24, 23, 0.25);
}

.special-category-card .card-official-link {
  margin-top: 10px;
  font-size: 11px;
}

.gastronomy-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  width: 100vw;
  margin: 18px calc(50% - 50vw) 0;
  background: #eee6da;
}

.gastronomy-band > img {
  width: 100%;
  height: 315px;
  min-height: 0;
  object-fit: cover;
  filter: saturate(0.82);
}

.gastronomy-band > div {
  padding: clamp(22px, 3.2vw, 36px) clamp(36px, 6vw, 74px);
  align-self: center;
}

.gastronomy-band h2,
.course-heading h2,
.special-final-cta h2 {
  margin: 0;
  font-size: clamp(25px, 2.9vw, 38px);
  font-weight: 400;
  line-height: 1.28;
}

.gastronomy-band p {
  max-width: 680px;
  margin: 16px 0 0;
  color: #514d46;
  line-height: 1.72;
}

.gastronomy-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 18px 0 14px;
  padding: 0;
  list-style: none;
}

.gastronomy-points li {
  display: grid;
  gap: 6px;
  color: #292622;
  font-size: 13px;
}

.gastronomy-points img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  opacity: 0.72;
}

.gastronomy-points span {
  color: #6a6358;
  font-size: 12px;
}

.itineraries-section {
  padding-bottom: 80px;
}

.itinerary-block {
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.itinerary-block:last-child {
  border-bottom: 0;
}

.itinerary-block h3 {
  margin: 12px 0;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 400;
  line-height: 1.5;
}

.private-course {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  padding: 24px 0 18px;
}

.course-heading p:not(.eyebrow) {
  margin: 12px 0 16px;
  color: #514d46;
  line-height: 1.8;
}

.course-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 10px 0 4px;
}

.course-timeline div {
  position: relative;
  padding: 28px 22px 22px;
  text-align: left;
  background: rgba(255, 255, 255, 0.62);
  border: 0.5px solid rgba(24, 24, 23, 0.14);
  border-top: 1px solid rgba(191, 159, 104, 0.55);
  box-shadow: 0 1px 0 rgba(24, 24, 23, 0.03);
}

.course-timeline div::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 22px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold, #bf9f68);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.92);
}

.course-timeline span {
  display: block;
  margin: 0 0 8px;
  color: #8a826f;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.course-timeline strong {
  display: block;
  margin-top: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.course-timeline p {
  margin: 8px 0 0;
  color: #514d46;
  font-size: 13px;
  line-height: 1.75;
}

/* ===== Stays section heading (The Nine Stays) ===== */
.stays-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 60px);
  align-items: end;
  margin-bottom: 26px;
}

.stays-title {
  margin: 6px 0 0;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.stays-lede {
  margin: 0;
  color: #514d46;
  font-size: 14px;
  line-height: 1.95;
}

/* ===== Seasonal Calendar ===== */
.seasonal-section {
  padding: 48px 0 36px;
}

.seasonal-title,
.editors-title {
  margin: 6px 0 0;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.seasonal-lede {
  margin: 0;
  color: #514d46;
  font-size: 14px;
  line-height: 1.95;
}

.seasonal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

/* ベースは紙質のオフホワイトで統一。季節感はアクセント線・装飾の色相だけで示唆する */
.seasonal-card {
  position: relative;
  overflow: hidden;
  min-height: clamp(240px, 18vw, 280px);
  background: #f8f4ec;
  isolation: isolate;
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.seasonal-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 56px -32px rgba(24, 24, 23, 0.32);
}

/* 上端の極細ヘアライン（季節色の唯一の主張点） */
.seasonal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
  z-index: 3;
}

/* 季節アクセント色（伝統色から控えめに採る） */
.seasonal-card[data-season="spring"] { color: #b06a76; }   /* 退紅 (くすんだ桜) */
.seasonal-card[data-season="summer"] { color: #3d6a7c; }   /* 縹色 */
.seasonal-card[data-season="autumn"] { color: #8c4a2c; }   /* 朽葉色 */
.seasonal-card[data-season="winter"] { color: #6c7a82; }   /* 薄鈍 */

/* 現在の季節カードを目立たせる */
.seasonal-card.is-current {
  outline: 1px solid var(--gold, #bf9f68);
  box-shadow: 0 12px 32px -20px rgba(191, 159, 104, 0.55);
}

.seasonal-card .now-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  padding: 3px 10px;
  background: var(--gold, #bf9f68);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* 装飾は右下の隅に「一枝」が覗くように */
.seasonal-decor {
  position: absolute;
  right: -8%;
  bottom: -6%;
  width: 88%;
  height: 88%;
  z-index: 0;
  object-fit: contain;
  object-position: right bottom;
  pointer-events: none;
  color: currentColor;
  opacity: 0.18;
}

.seasonal-card[data-season="winter"] .seasonal-decor {
  opacity: 0.22;
}

.seasonal-card-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px 26px 22px;
}

.seasonal-icon {
  width: 26px;
  height: 26px;
  margin: 0 0 14px;
  color: currentColor;
  opacity: 0.92;
}

.seasonal-eyebrow {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: currentColor;
  opacity: 0.92;
}

.seasonal-period {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #8a826f;
  font-feature-settings: "tnum";
}

.seasonal-card h3 {
  margin: 0 0 14px;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #6a6358;
}

.seasonal-tags {
  margin: auto 0 0;
  padding: 14px 0 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 0.5px solid rgba(24, 24, 23, 0.12);
}

.seasonal-tags li {
  position: relative;
  padding: 0 0 0 14px;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
}

.seasonal-tags li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 1px;
  background: currentColor;
  opacity: 0.8;
}

.seasonal-note {
  margin: 18px 0 0;
  color: #8a826f;
  font-size: 11px;
  letter-spacing: 0.04em;
}

/* ===== V7: Scroll Reveal (slide only — initial opacity 1 to ensure render) ===== */
.reveal-on-scroll {
  opacity: 1;
  transform: translateY(12px);
  transition: transform 700ms cubic-bezier(.2,.8,.2,1);
}
.reveal-on-scroll.is-visible {
  transform: translateY(0);
}

/* ===== V8: Magnetic Hover transition smoothness ===== */
.food-store-card,
.feature-topic-card,
.stay-feature-column {
  transform-style: preserve-3d;
  transition: transform 280ms ease, box-shadow 280ms ease;
}

/* ===== V9: 季節アクセントカラー (body[data-season]) ===== */
body[data-season="spring"] { --season-accent: #b06a76; }
body[data-season="summer"] { --season-accent: #3d6a7c; }
body[data-season="autumn"] { --season-accent: #8c4a2c; }
body[data-season="winter"] { --season-accent: #6c7a82; }
body:not([data-season]) { --season-accent: var(--gold, #bf9f68); }

/* 季節アクセントを部分的に反映 (装飾要素のみ、過度に変えないよう抑制) */
body[data-season] .seasonal-card.is-current { outline-color: var(--season-accent, var(--gold)); }
body[data-season] .now-badge { background: var(--season-accent, var(--gold)); }

/* ===== Mobile Bottom Nav (P1) ===== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: none;
  justify-content: space-around;
  background: rgba(255, 255, 255, 0.96);
  border-top: 0.5px solid rgba(24, 24, 23, 0.16);
  backdrop-filter: blur(8px);
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
}
.bottom-nav a {
  flex: 1;
  text-align: center;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #514d46;
  padding: 4px 0;
}
.bottom-nav a:hover { color: var(--gold, #bf9f68); }

@media (max-width: 680px) {
  .bottom-nav { display: flex; }
  body { padding-bottom: 56px; }
}

/* ===== Web Share FAB (P5) ===== */
.share-fab {
  position: fixed;
  bottom: 80px;
  right: 16px;
  z-index: 99;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink, #181817);
  color: #fff;
  border: 0;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(24, 24, 23, 0.3);
}
.share-fab:hover { background: var(--gold, #bf9f68); }
@media (min-width: 681px) {
  .share-fab { bottom: 24px; }
}

/* ===== Store Filter Bar (V1/V2/V3) ===== */
.store-filter-bar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 0;
  background: rgba(248, 244, 236, 0.94);
  backdrop-filter: blur(6px);
  border-top: 0.5px solid rgba(24, 24, 23, 0.08);
  border-bottom: 0.5px solid rgba(24, 24, 23, 0.08);
  margin-top: 14px;
}

.store-filter-bar select,
.store-filter-bar button {
  padding: 6px 12px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #514d46;
  background: #fff;
  border: 0.5px solid rgba(24, 24, 23, 0.18);
  cursor: pointer;
}

.store-filter-bar button[aria-pressed="true"] {
  background: var(--gold, #bf9f68);
  color: #fff;
}


/* ===== Interactive Shimanami Map ===== */
.map-intro {
  width: min(1320px, calc(100% - 96px));
  margin: 32px auto 0;
  text-align: center;
}
.map-intro .eyebrow {
  margin-bottom: 6px;
}
.map-intro h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0 0 10px;
  color: var(--ink-deep, #2e261e);
}
.map-intro p {
  font-size: 13.5px;
  letter-spacing: 0.06em;
  line-height: 1.85;
  color: var(--ink-soft, #6b6157);
  max-width: 640px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .map-intro {
    width: calc(100% - 32px);
    margin-top: 24px;
  }
  .map-intro h2 { font-size: 1.2rem; }
  .map-intro p { font-size: 12.5px; line-height: 1.8; }
}
.shimanami-map {
  position: relative;
  width: min(1320px, calc(100% - 96px));
  margin: 16px auto 0;
  background: #fbf8f3;
  border: 0.5px solid rgba(24, 24, 23, 0.12);
  border-top: 1px solid rgba(191, 159, 104, 0.55);
  overflow: hidden;
}

.shimanami-map .map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 10 / 7;
  background: #eaf0f2;
}

.shimanami-map .map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.shimanami-map .map-pin {
  position: absolute;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  margin-top: -6px;
  border-radius: 50%;
  background: #bf9f68;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(24, 24, 23, 0.4);
  cursor: pointer;
  transform: translateY(0) scale(1);
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
  z-index: 2;
}

.shimanami-map .map-pin[data-cat="stay"] { background: #b06a76; }
.shimanami-map .map-pin[data-cat="food"] { background: #3d6a7c; }
.shimanami-map .map-pin[data-cat="maker"] { background: #8c4a2c; }
.shimanami-map .map-pin[data-cat="experience"] { background: #6c7a82; }

.shimanami-map .map-pin:hover,
.shimanami-map .map-pin.is-active {
  transform: translateY(-3px) scale(1.4);
  box-shadow: 0 4px 12px rgba(24, 24, 23, 0.5);
}

.shimanami-map .map-tooltip {
  position: absolute;
  z-index: 5;
  padding: 6px 10px;
  background: rgba(24, 24, 23, 0.92);
  color: #fff;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  pointer-events: none;
  transform: translate(-50%, -150%);
  opacity: 0;
  transition: opacity 200ms ease;
}

.shimanami-map .map-tooltip.is-visible { opacity: 1; }

.shimanami-map .map-controls {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(255, 255, 255, 0.94);
  padding: 10px 12px;
  border: 0.5px solid rgba(24, 24, 23, 0.16);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.shimanami-map .map-controls label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: #514d46;
}

.shimanami-map .map-controls label::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.shimanami-map .map-controls label[data-cat="stay"]::before { background: #b06a76; }
.shimanami-map .map-controls label[data-cat="food"]::before { background: #3d6a7c; }
.shimanami-map .map-controls label[data-cat="maker"]::before { background: #8c4a2c; }
.shimanami-map .map-controls label[data-cat="experience"]::before { background: #6c7a82; }

.shimanami-map .map-controls input[type="checkbox"] { accent-color: #bf9f68; }

.shimanami-map .map-route {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Mini map (card thumbnail) */
.mini-map {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 60px;
  height: 42px;
  background: rgba(255, 255, 255, 0.88);
  border: 0.5px solid rgba(24, 24, 23, 0.16);
  pointer-events: none;
  z-index: 3;
}

.mini-map svg { width: 100%; height: 100%; display: block; }

.mini-map .mini-pin {
  fill: var(--gold, #bf9f68);
  stroke: #fff;
  stroke-width: 1;
}

/* ===== 404 / 500 エラーページ ===== */
.error-hero {
  position: relative;
  min-height: clamp(560px, 80vh, 760px);
  overflow: hidden;
  color: #fff;
  background: #151816;
}
.error-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.6);
}
.error-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,13,17,.4), rgba(7,13,17,.7));
}
.error-content {
  position: relative;
  z-index: 1;
  width: min(700px, calc(100% - 40px));
  margin: 0;
  padding: 14vh 0 0 clamp(22px, 7vw, 88px);
}
.error-content .eyebrow {
  color: var(--gold, #bf9f68);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.error-content h1 {
  margin: 16px 0 14px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
.error-content p {
  color: rgba(255,255,255,0.78);
  line-height: 1.85;
}
.error-links {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.error-links a {
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: border-color 200ms ease;
}
.error-links a:hover { border-bottom-color: var(--gold, #bf9f68); }

/* ===== Stories 個別記事 ===== */
.story-article {
  width: min(720px, calc(100% - 40px));
  margin: 32px auto 80px;
}

.story-article-header { margin-bottom: 28px; padding: 0 4px; }
.story-article-header .eyebrow { margin: 0 0 8px; color: #8a826f; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; }
.story-article-header h1 { margin: 0 0 16px; font-size: clamp(26px, 3.2vw, 36px); font-weight: 400; line-height: 1.45; letter-spacing: 0.04em; color: var(--ink); }

.story-tags { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.story-tags li { padding: 3px 10px; font-size: 11px; letter-spacing: 0.04em; color: #6a6358; background: rgba(191,159,104,.12); border: .5px solid rgba(191,159,104,.4); border-radius: 999px; }

.story-article-hero { margin: 0 0 28px; }
.story-article-hero img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; }

.story-article-body { font-size: 16px; line-height: 1.95; color: #3f3b35; padding: 0 4px; }
.story-article-body h2, .story-article-body h3, .story-article-body h4 { margin: 32px 0 12px; font-weight: 500; letter-spacing: 0.02em; color: var(--ink); }
.story-article-body h2 { font-size: 22px; }
.story-article-body h3 { font-size: 19px; }
.story-article-body h4 { font-size: 16px; }
.story-article-body p { margin: 0 0 18px; }
.story-article-body ul, .story-article-body ol { margin: 0 0 18px; padding-left: 24px; }
.story-article-body li { margin: 6px 0; }
.story-article-body blockquote { margin: 18px 0; padding: 12px 18px; border-left: 2px solid var(--gold, #bf9f68); color: #6a6358; font-style: italic; }
.story-article-body strong { color: var(--ink); font-weight: 500; }
.story-article-body a { color: var(--ink); border-bottom: 1px solid rgba(191,159,104,.5); }
.story-article-footer { margin: 40px 0 0; padding: 24px 4px 0; border-top: .5px solid rgba(24,24,23,.12); }

/* ===== Breadcrumb（パンくずリスト） ===== */
.breadcrumb {
  width: min(1320px, calc(100% - 96px));
  margin: 14px auto 0;
  padding: 8px 0 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: #6a6358;
}

.breadcrumb a {
  color: #6a6358;
  border-bottom: 0.5px solid transparent;
  transition: border-color 200ms ease, color 200ms ease;
}

.breadcrumb a:hover {
  color: var(--ink);
  border-bottom-color: var(--gold, #bf9f68);
}

.breadcrumb [aria-current="page"] {
  color: var(--ink);
}

.breadcrumb span[aria-hidden="true"] {
  color: rgba(24, 24, 23, 0.32);
}

/* ===== Food Category 詳細ページ: 9店カード ===== */
.food-stores-section {
  padding: 32px 0 40px;
}

.food-stores-title {
  margin: 6px 0 0;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.food-store-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}
.food-store-grid.is-secondary {
  margin-top: 0;
}

.food-store-card {
  display: flex;
  flex-direction: column;
  background: #fbf8f3;
  border: 1px solid rgba(191, 159, 104, 0.55);
  overflow: hidden;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.food-store-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px -28px rgba(24, 24, 23, 0.4);
  border-color: rgba(191, 159, 104, 0.85);
}

.food-store-card-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.food-store-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 480ms ease;
  filter: saturate(0.86);
}

.food-store-card:hover .food-store-card-media img {
  transform: scale(1.04);
}

.food-store-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 4px 10px;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(24, 24, 23, 0.66);
  backdrop-filter: blur(3px);
}

.food-store-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.food-store-place {
  margin: 0;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: #8a826f;
  text-transform: uppercase;
}

.food-store-card h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.food-store-summary {
  margin: 4px 0 8px;
  font-size: 13px;
  line-height: 1.75;
  color: #514d46;
  flex: 1;
  min-height: calc(13px * 1.75 * 3);
}

.food-store-link {
  align-self: flex-start;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink);
  border-bottom: 1px solid rgba(24, 24, 23, 0.4);
  padding-bottom: 2px;
  text-transform: uppercase;
  transition: border-color 200ms ease;
}

.food-store-link:hover {
  border-bottom-color: var(--gold, #bf9f68);
}

.food-stores-note {
  margin: 22px 0 0;
  color: #8a826f;
  font-size: 11px;
  letter-spacing: 0.04em;
}

/* ===== Food Directory (45選 検索ページ) ===== */
.food-directory-section {
  padding-top: 36px;
}

.food-directory-controls {
  margin: 24px 0 18px;
  padding: 22px 24px;
  background: #fbf8f3;
  border-top: 1px solid rgba(191, 159, 104, 0.5);
  border-bottom: 0.5px solid rgba(24, 24, 23, 0.1);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.food-directory-search {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.food-search-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a826f;
}

#foodSearch {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  border: 0.5px solid rgba(24, 24, 23, 0.22);
  background: #fff;
  color: var(--ink);
  letter-spacing: 0.02em;
  transition: border-color 200ms ease;
}

#foodSearch:focus {
  outline: none;
  border-color: var(--gold, #bf9f68);
}

.food-directory-selects {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-end;
}

.food-directory-selects label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a826f;
  min-width: 200px;
  flex: 1;
}

.food-directory-selects select {
  padding: 10px 12px;
  font-size: 13px;
  border: 0.5px solid rgba(24, 24, 23, 0.22);
  background: #fff;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.food-reset {
  padding: 10px 18px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: #fff;
  border: 0.5px solid rgba(24, 24, 23, 0.3);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.food-reset:hover {
  background: var(--ink);
  color: #fff;
}

.food-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
  border-top: 0.5px dashed rgba(24, 24, 23, 0.12);
}

.food-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink);
  background: #fff;
  border: 0.5px solid rgba(24, 24, 23, 0.22);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.food-chip:hover {
  border-color: var(--gold, #bf9f68);
}

.food-chip.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.food-chip-count {
  font-size: 10.5px;
  opacity: 0.7;
  letter-spacing: 0;
}

.food-result-line {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #6e6859;
}

.food-result-line span {
  font-weight: 600;
  color: var(--ink);
}

.food-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.food-mini-card {
  display: flex;
  flex-direction: column;
  background: #fbf8f3;
  border: 0.5px solid rgba(24, 24, 23, 0.12);
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.food-mini-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -22px rgba(24, 24, 23, 0.32);
}

.food-mini-card[hidden] { display: none; }

.food-mini-media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.food-mini-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
  filter: saturate(0.86);
}

.food-mini-card:hover .food-mini-media img {
  transform: scale(1.05);
}

.food-mini-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 8px;
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(24, 24, 23, 0.66);
  backdrop-filter: blur(2px);
}

.food-mini-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.food-mini-meta {
  margin: 0;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: #8a826f;
  text-transform: uppercase;
  display: flex;
  gap: 4px;
  align-items: center;
}

.food-mini-cat { font-weight: 500; color: #6e6859; }
.food-mini-dot { color: #c2bba8; }

.food-mini-title {
  margin: 2px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.food-mini-summary {
  margin: 4px 0 6px;
  font-size: 11.5px;
  line-height: 1.6;
  color: #514d46;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.food-mini-link {
  align-self: flex-start;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--ink);
  border-bottom: 1px solid rgba(24, 24, 23, 0.4);
  padding-bottom: 1px;
  text-transform: uppercase;
}

.food-mini-link:hover {
  border-bottom-color: var(--gold, #bf9f68);
}

.food-empty {
  margin: 24px 0 0;
  padding: 28px;
  text-align: center;
  background: #fbf8f3;
  border: 0.5px dashed rgba(24, 24, 23, 0.2);
  font-size: 13px;
  color: #6e6859;
}

@media (max-width: 1100px) {
  .food-mini-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .food-mini-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .food-mini-body { padding: 10px 12px 12px; }
  .food-mini-title { font-size: 13px; }
  .food-mini-summary { font-size: 11px; -webkit-line-clamp: 2; }
  .food-directory-controls { padding: 18px 16px; }
  .food-directory-selects label { min-width: 100%; }
}

/* ===== Map Explore (マップで見る 特設) ===== */
.map-explore-section {
  padding: 32px 0 48px;
}

.map-explore-title {
  margin: 0;
  font-size: clamp(22px, 3.4vw, 32px);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--ink);
}

.map-explore-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  margin-top: 22px;
  align-items: start;
}

.map-explore-aside {
  background:
    linear-gradient(180deg, #fdfaf3 0%, #f6efe1 100%);
  border: 0.5px solid rgba(191, 159, 104, 0.4);
  border-top: 1.5px solid rgba(191, 159, 104, 0.7);
  border-radius: 1px;
  padding: 22px 20px 18px;
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow:
    inset 0 0 0 1px rgba(191, 159, 104, 0.14),
    0 4px 14px -10px rgba(140, 110, 70, 0.22);
}

.me-search-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.me-search-label {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a826f;
}

#meSearch {
  padding: 11px 14px 11px 36px;
  font-size: 13px;
  border: 0.5px solid rgba(24, 24, 23, 0.22);
  background:
    #fff
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238a826f' stroke-width='1.6'><circle cx='11' cy='11' r='6.5'/><path d='M16 16l4 4'/></svg>")
    no-repeat 12px center;
  color: var(--ink);
  border-radius: 1px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

#meSearch:focus {
  outline: none;
  border-color: var(--gold, #bf9f68);
  box-shadow: 0 0 0 3px rgba(191, 159, 104, 0.18);
}

.me-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.me-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--ink);
  background: #fff;
  border: 0.5px solid rgba(24, 24, 23, 0.22);
  border-radius: 999px;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}
.me-chip:hover {
  border-color: var(--gold, #bf9f68);
  box-shadow: 0 2px 8px -4px rgba(191, 159, 104, 0.5);
  transform: translateY(-1px);
}
.me-chip.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.me-chip-stay.is-active       { background: #3d6a7c; border-color: #3d6a7c; }
.me-chip-food.is-active       { background: #b06a76; border-color: #b06a76; }
.me-chip-maker.is-active      { background: #bf9f68; border-color: #bf9f68; }
.me-chip-experience.is-active { background: #5a7a5a; border-color: #5a7a5a; }
.me-chip span {
  font-size: 10px;
  opacity: 0.7;
  letter-spacing: 0;
  font-feature-settings: "tnum" on;
  font-variant-numeric: tabular-nums;
}
.me-chip.is-active span { opacity: 0.92; }

.me-result-line {
  margin: 2px 0 0;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #6e6859;
}
.me-result-line span { font-weight: 600; color: var(--ink); }

.me-list {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  overflow-y: auto;
  flex: 1;
  border-top: 0.5px dashed rgba(24, 24, 23, 0.12);
}
.me-list-item[hidden] { display: none; }

.me-list-button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 6px;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 0.5px dashed rgba(24, 24, 23, 0.08);
  cursor: pointer;
  transition: background 140ms ease;
}
.me-list-button:hover { background: rgba(191, 159, 104, 0.08); }
.me-list-item.is-active .me-list-button { background: rgba(191, 159, 104, 0.16); }

.me-list-cat {
  flex: 0 0 auto;
  width: 38px;
  text-align: center;
  padding: 2px 4px;
  font-size: 9.5px;
  letter-spacing: 0.06em;
  color: #fff;
  border-radius: 1px;
}
.me-list-cat-stay        { background: #3d6a7c; }
.me-list-cat-food        { background: #b06a76; }
.me-list-cat-maker       { background: #7a6a48; }
.me-list-cat-experience  { background: #5a7a5a; }

.me-list-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.me-list-name {
  font-size: 12.5px;
  color: var(--ink);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.me-list-meta {
  font-size: 10px;
  letter-spacing: 0.06em;
  color: #8a826f;
  text-transform: uppercase;
}

.map-explore-canvas {
  position: relative;
}

.map-explore-frame {
  position: relative;
  aspect-ratio: 1000 / 700;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 248, 230, 0.55), transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(140, 110, 70, 0.18), transparent 55%),
    linear-gradient(135deg, #eef3f5, #d9e0e3);
  border: 0.5px solid rgba(24, 24, 23, 0.12);
  border-radius: 2px;
  box-shadow:
    0 28px 64px -36px rgba(24, 24, 23, 0.55),
    0 6px 22px -16px rgba(140, 110, 70, 0.32),
    inset 0 0 0 1px rgba(191, 159, 104, 0.22),
    inset 0 0 120px rgba(191, 159, 104, 0.08);
  overflow: hidden;
  isolation: isolate;
}

/* 装飾的なコーナー金線 */
.map-explore-frame::before,
.map-explore-frame::after {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  border: 0.5px solid rgba(191, 159, 104, 0.55);
  pointer-events: none;
  z-index: 4;
}
.map-explore-frame::before {
  top: 12px;
  left: 12px;
  border-right: 0;
  border-bottom: 0;
}
.map-explore-frame::after {
  bottom: 12px;
  right: 12px;
  border-left: 0;
  border-top: 0;
}

.me-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.me-pins {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.me-pin {
  position: absolute;
  width: 22px;
  height: 22px;
  margin-left: -11px;
  margin-top: -11px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
  display: grid;
  place-items: center;
  transition: transform 240ms cubic-bezier(.2,.7,.3,1.4);
}

.me-pin::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191, 159, 104, 0.32), transparent 70%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.me-pin-dot {
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--ink);
  border: 1.6px solid #fff;
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.32),
    0 0 0 0 rgba(191, 159, 104, 0),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 9px;
  line-height: 1;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

/* カテゴリ別アイコン (字形) */
.me-pin-dot::after {
  content: "";
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
}
.me-pin-stay       .me-pin-dot { background: #3d6a7c; }
.me-pin-stay       .me-pin-dot::after { width: 8px; height: 5px; border-radius: 1px 1px 0 0; clip-path: polygon(0 100%, 0 30%, 50% 0, 100% 30%, 100% 100%); }
.me-pin-food       .me-pin-dot { background: #b06a76; }
.me-pin-food       .me-pin-dot::after { width: 1.4px; height: 8px; box-shadow: -2.6px 0 0 rgba(255,255,255,0.92), 2.6px 0 0 rgba(255,255,255,0.92); border-radius: 0; }
.me-pin-maker      .me-pin-dot { background: #bf9f68; }
.me-pin-maker      .me-pin-dot::after { width: 7px; height: 7px; background: transparent; border: 1.4px solid rgba(255,255,255,0.92); transform: rotate(45deg); border-radius: 0; }
.me-pin-experience .me-pin-dot { background: #5a7a5a; }
.me-pin-experience .me-pin-dot::after {
  width: 0; height: 0; background: transparent;
  border: 3.6px solid transparent;
  border-bottom-color: rgba(255, 255, 255, 0.92);
  margin-top: -2px;
  border-radius: 0;
  filter: drop-shadow(0 -3.6px 0 rgba(255, 255, 255, 0.92)) drop-shadow(2.4px 1.2px 0 rgba(255, 255, 255, 0.92)) drop-shadow(-2.4px 1.2px 0 rgba(255, 255, 255, 0.92));
}

/* ピン下のドロップシャドウ点 (地面影) */
.me-pin-dot::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 2px;
  background: rgba(0, 0, 0, 0.22);
  border-radius: 50%;
  filter: blur(1.5px);
}

.me-pin:hover { transform: scale(1.22); z-index: 2; }
.me-pin:hover::before { opacity: 1; }
.me-pin:hover .me-pin-dot {
  box-shadow:
    0 6px 14px rgba(0, 0, 0, 0.38),
    0 0 0 6px rgba(191, 159, 104, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.me-pin.is-active { transform: scale(1.45); z-index: 3; }
.me-pin.is-active::before { opacity: 1; }
.me-pin.is-active .me-pin-dot {
  background: linear-gradient(145deg, #d4b277, #8a6a3b);
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.45),
    0 0 0 8px rgba(191, 159, 104, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.me-pin.is-active .me-pin-dot::after { background: rgba(255,255,255,0.95); }

/* パルス (アクティブ時) */
@keyframes mePinPulse {
  0%   { box-shadow: 0 0 0 0 rgba(191, 159, 104, 0.55); }
  100% { box-shadow: 0 0 0 14px rgba(191, 159, 104, 0); }
}
.me-pin.is-active .me-pin-dot {
  animation: mePinPulse 1.6s cubic-bezier(.2,.6,.4,1) infinite;
}

.map-explore-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 16px;
  padding: 14px 22px;
  background:
    linear-gradient(180deg, rgba(251, 248, 243, 0.92), rgba(245, 239, 225, 0.7));
  border: 0.5px solid rgba(191, 159, 104, 0.42);
  border-radius: 1px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #4a4338;
  align-items: center;
  position: relative;
  box-shadow:
    inset 0 0 0 1px rgba(191, 159, 104, 0.12),
    0 4px 14px -10px rgba(140, 110, 70, 0.22);
}
.map-explore-legend::before {
  content: "LEGEND";
  position: absolute;
  top: -8px;
  left: 22px;
  background: #fff;
  padding: 0 10px;
  font-size: 9.5px;
  letter-spacing: 0.3em;
  color: var(--gold, #bf9f68);
}

.me-legend {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
  font-weight: 500;
}
.me-legend .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.6px solid #fff;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  position: relative;
}
.me-legend .dot::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), transparent 60%);
}
.me-legend-stay       .dot { background: #3d6a7c; }
.me-legend-food       .dot { background: #b06a76; }
.me-legend-maker      .dot { background: #bf9f68; }
.me-legend-experience .dot { background: #5a7a5a; }

.map-detail-card {
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 22px;
  padding: 0;
  background: #fbf8f3;
  border-top: 1px solid rgba(191, 159, 104, 0.55);
  border-bottom: 0.5px solid rgba(24, 24, 23, 0.08);
  position: relative;
  overflow: hidden;
}
.map-detail-card[hidden] { display: none; }

.me-detail-close {
  position: absolute;
  top: 8px;
  right: 12px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border: 0;
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
}
.me-detail-close:hover { background: var(--ink); color: #fff; }

.me-detail-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.me-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88);
}
.me-detail-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 10px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(24, 24, 23, 0.66);
  backdrop-filter: blur(2px);
}
.me-detail-body {
  padding: 22px 26px 22px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.me-detail-meta {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a826f;
  display: flex;
  gap: 6px;
  align-items: center;
}
.me-detail-meta .dot { color: #c2bba8; }
.me-detail-body h3 {
  margin: 4px 0 0;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--ink);
}
.me-detail-summary {
  margin: 4px 0 6px;
  font-size: 13.5px;
  line-height: 1.8;
  color: #514d46;
}
.me-detail-link {
  align-self: flex-start;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink);
  border-bottom: 1px solid rgba(24, 24, 23, 0.4);
  padding-bottom: 2px;
  text-transform: uppercase;
}
.me-detail-link:hover { border-bottom-color: var(--gold, #bf9f68); }

@media (max-width: 1024px) {
  .map-explore-layout {
    grid-template-columns: 1fr;
  }
  .map-explore-aside {
    position: static;
    max-height: 360px;
  }
  .map-detail-card {
    grid-template-columns: 1fr;
  }
  .me-detail-body { padding: 22px 22px 22px; }
}

@media (max-width: 600px) {
  .map-explore-aside { padding: 16px; }
  .me-list-name { font-size: 12px; }
}

/* ===== Business Page (事業者の方へ 統合) ===== */
.biz-page .special-hero { min-height: 640px; }
.biz-page .special-hero h1 {
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.15;
  letter-spacing: 0.06em;
}
.biz-page .special-hero .special-subtitle {
  font-size: clamp(16px, 2vw, 22px);
  color: #ead7a4;
  letter-spacing: 0.06em;
  line-height: 1.7;
  font-weight: 500;
}
.biz-page .special-hero .special-copy {
  font-size: 14px;
  line-height: 1.95;
  max-width: 680px;
}

.biz-hero-anchors {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.biz-hero-anchors .hero-link { font-size: 13.5px; }

.biz-section-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 18px 0 32px;
  border-top: 0.5px solid rgba(24, 24, 23, 0.1);
  border-bottom: 0.5px solid rgba(24, 24, 23, 0.1);
  background: rgba(251, 248, 243, 0.6);
}
.biz-section-tabs a {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--ink);
  border-right: 0.5px solid rgba(24, 24, 23, 0.08);
  transition: background 160ms ease, color 160ms ease;
}
.biz-section-tabs a:last-child { border-right: 0; }
.biz-section-tabs a:hover { background: rgba(191, 159, 104, 0.12); color: var(--gold, #bf9f68); }

/* --- 共通: セクション見出しに金色アクセント + 区切り罫 (中央揃え) --- */
.biz-section { padding: 48px 0 24px; text-align: center; }
.biz-section > * { text-align: left; }  /* グリッド内のカード等は左寄せに戻す */

.biz-section .section-row {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 0 0 14px;
  border-top: none !important;
  border-bottom: 0.5px solid rgba(24, 24, 23, 0.08);
  margin: 0 auto 4px !important;
  gap: 6px;
  position: relative;
  width: 100%;
}
.biz-section .section-row > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.biz-section .section-row > div { text-align: center; }
.biz-section .section-row .section-link {
  position: static;
  margin-top: 6px;
}
.biz-section .section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: #8a826f;
}
.biz-section .section-label::before,
.biz-section .section-label::after {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--gold, #bf9f68);
}
.biz-section-title {
  position: relative;
  margin: 10px 0 0;
  padding-bottom: 18px;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: center;
  color: var(--ink);
  line-height: 1.4;
  font-family: Baskerville, "Iowan Old Style", "Hiragino Mincho ProN", "Yu Mincho", serif;
}
.biz-section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 32px;
  height: 1.5px;
  background: var(--gold, #bf9f68);
}
.biz-section-lede {
  max-width: 740px;
  margin: 20px auto 32px;
  font-size: 14.5px;
  line-height: 2;
  color: #514d46;
  letter-spacing: 0.04em;
  text-align: center;
}

/* セクションA は薄いクリーム背景 (Aセクションごと包む) */
.biz-section[id="listing"] {
  background: #fbf8f3;
  margin: 0 auto;
  padding: 80px 5vw 80px;
  border-top: 0.5px solid rgba(191, 159, 104, 0.4);
  position: relative;
}
.biz-section[id="listing"] .section-row,
.biz-section[id="services"] .section-row,
.biz-section[id="flow"] .section-row,
.biz-targets-section .section-row {
  max-width: 1200px;
  margin: 0 auto 8px;
}
.biz-section[id="listing"] .biz-listing-grid,
.biz-section[id="services"] .biz-services-grid,
.biz-targets-section .biz-targets-grid {
  max-width: 1200px;
  margin: 24px auto 0;
}
.biz-section[id="flow"] .biz-flow {
  max-width: 820px;
  margin: 24px auto 0;
}

/* セクションB は深いベージュ背景で「別領域」を強調 (チャプター級の区切り) */
.biz-services-section {
  background: linear-gradient(180deg, #ebe2cf 0%, #ddd0b6 100%);
  padding: 100px 5vw 100px !important;
  margin-top: 0 !important;
  border-top: 2px solid rgba(191, 159, 104, 0.8);
  border-bottom: 2px solid rgba(191, 159, 104, 0.8);
  position: relative;
}
.biz-services-section::before {
  content: "";
  position: absolute;
  top: -2px; left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold, #bf9f68) 30%, var(--gold, #bf9f68) 70%, transparent);
}
.biz-services-section::after {
  content: "";
  position: absolute;
  top: 36px; left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold, #bf9f68);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(191, 159, 104, 0.18);
}
.biz-services-section .biz-section-lede { color: #4a4338; max-width: 820px; }

/* 提供フロー は明るめのアイボリー (休符) */
.biz-flow-section {
  background: #f5efe1;
  padding: 80px 5vw 64px !important;
  margin-top: 0 !important;
  border-top: 1px solid rgba(191, 159, 104, 0.45);
  position: relative;
}
.biz-flow-section::before {
  content: "";
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: var(--gold, #bf9f68);
  opacity: 0.6;
}

/* 主な対象 はクリーム + 上下に金線 */
.biz-targets-section {
  background: #fbf8f3;
  padding: 80px 5vw 80px !important;
  margin-top: 0 !important;
  border-top: 0.5px solid rgba(191, 159, 104, 0.45);
  border-bottom: 0.5px solid rgba(191, 159, 104, 0.45);
}

.biz-section { padding: 36px 0 8px; }
.biz-section + .biz-section { padding-top: 8px; }

.biz-section-title {
  margin: 0;
  font-size: clamp(22px, 3.4vw, 32px);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--ink);
}

.biz-section-lede {
  margin: 16px 0 24px;
  max-width: 820px;
  font-size: 14.5px;
  line-height: 2;
  color: #514d46;
  letter-spacing: 0.03em;
}

/* === セクションA: 掲載プラン グリッド === */
.biz-listing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.biz-listing-card {
  position: relative;
  padding: 36px 34px 30px;
  background: #fff;
  border: 1px solid rgba(191, 159, 104, 0.32);
  box-shadow: 0 2px 8px rgba(20, 16, 10, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}
.biz-listing-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold, #bf9f68), rgba(191, 159, 104, 0.2));
}
.biz-listing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(191, 159, 104, 0.55);
  box-shadow: 0 22px 48px -18px rgba(20, 16, 10, 0.18);
}
.biz-card-tag {
  display: inline-block;
  align-self: center;
  padding: 5px 14px;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: #8a6a3b;
  background: transparent;
  border: 1px solid var(--gold, #bf9f68);
}
.biz-listing-card h3 {
  margin: 2px 0 4px;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: var(--ink);
  font-family: Baskerville, "Iowan Old Style", "Hiragino Mincho ProN", "Yu Mincho", serif;
}
.biz-listing-card > p {
  margin: 0 0 6px;
  width: 100%;
  font-size: 13.5px;
  line-height: 1.95;
  color: #514d46;
  padding-bottom: 14px;
  border-bottom: 0.5px dashed rgba(24, 24, 23, 0.12);
  text-align: center;
}
.biz-scope {
  list-style: none;
  margin: 0 auto 4px;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-start;
  text-align: left;
}
.biz-scope li {
  position: relative;
  padding-left: 22px;
  font-size: 12.5px;
  line-height: 1.7;
  color: #514d46;
}
.biz-scope li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 12px;
  color: var(--gold, #bf9f68);
  font-weight: 600;
}
.biz-plan-link {
  align-self: center;
  margin-top: 14px;
  padding: 12px 22px;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--ink);
  transition: background 240ms ease, color 240ms ease, letter-spacing 240ms ease;
}
.biz-plan-link:hover {
  background: var(--ink);
  color: #fff;
  letter-spacing: 0.2em;
}

/* Premium プラン (Plan C) ハイライト */
.biz-listing-card.is-premium {
  border: 1.5px solid var(--gold, #bf9f68);
  background: linear-gradient(180deg, #fff 0%, #fbf4e6 100%);
  box-shadow: 0 12px 32px -16px rgba(191, 159, 104, 0.45);
}
.biz-listing-recommend {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 14px;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  color: #fff;
  background: linear-gradient(145deg, #d4b277, #8a6a3b);
  font-weight: 500;
  z-index: 2;
  box-shadow: 0 4px 10px -4px rgba(138, 106, 59, 0.45);
}
.biz-listing-card.is-premium { padding-top: 48px; }
.biz-plan-link.is-primary {
  background: var(--gold, #bf9f68);
  color: #fff;
  border-color: var(--gold, #bf9f68);
  box-shadow: 0 6px 16px -8px rgba(191, 159, 104, 0.55);
}
.biz-plan-link.is-primary:hover {
  background: #8a6a3b;
  border-color: #8a6a3b;
}

/* === セクションB: 法人サービス グリッド === */
.biz-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 18px;
}
.biz-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px 28px;
  background: #fff;
  border: 1px solid rgba(191, 159, 104, 0.32);
  box-shadow: 0 2px 8px rgba(20, 16, 10, 0.06);
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
  overflow: hidden;
}
/* カテゴリ別の左アクセントバー */
.biz-service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold, #bf9f68);
}
.biz-service-card[data-cat="subsidy"]::before { background: linear-gradient(90deg, #bf9f68, #d4b277); }
.biz-service-card[data-cat="dx"]::before      { background: linear-gradient(90deg, #3d6a7c, #5a89a0); }
.biz-service-card[data-cat="ai"]::before      { background: linear-gradient(90deg, #b06a76, #c98a96); }
.biz-service-card[data-cat="ec"]::before      { background: linear-gradient(90deg, #5a7a5a, #7a9a7a); }
.biz-service-card[data-cat="hr"]::before      { background: linear-gradient(90deg, #7a6a48, #9a8a68); }
.biz-service-card[data-cat="web"]::before     { background: linear-gradient(90deg, #6a5a8a, #8a7aaa); }
.biz-service-card[data-cat="seo"]::before     { background: linear-gradient(90deg, #8a6a3b, #b08a5b); }
.biz-service-card[data-cat="inbound"]::before { background: linear-gradient(90deg, #4a8a8a, #6aaaaa); }
.biz-service-card[data-cat="ads"]::before     { background: linear-gradient(90deg, #a06a4a, #c08a6a); }

.biz-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(191, 159, 104, 0.6);
  box-shadow: 0 22px 48px -18px rgba(20, 16, 10, 0.18);
}

/* 主力サービス (featured) — 金色強調 */
.biz-service-card.is-featured {
  background: linear-gradient(180deg, #fff 0%, #fbf4e6 100%);
  border: 1.5px solid var(--gold, #bf9f68);
  box-shadow: 0 18px 36px -22px rgba(191, 159, 104, 0.4);
}
.biz-service-featured-badge {
  position: absolute;
  top: 12px;
  right: 14px;
  padding: 4px 11px;
  font-size: 9.5px;
  letter-spacing: 0.24em;
  color: #fff;
  background: linear-gradient(145deg, #d4b277, #8a6a3b);
  font-weight: 500;
  z-index: 2;
  box-shadow: 0 4px 10px -4px rgba(138, 106, 59, 0.45);
}
.biz-service-card.is-featured .biz-service-tag { display: none; }
.biz-service-card.is-featured { padding-top: 40px; }

.biz-service-extra {
  margin: 12px 0 0;
  padding-top: 10px;
  border-top: 0.5px dashed rgba(191, 159, 104, 0.3);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #8a6a3b;
  font-style: italic;
  text-align: center;
}
.biz-service-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
}
.biz-service-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(191, 159, 104, 0.12);
  color: #8a6a3b;
  border: 0.5px solid rgba(191, 159, 104, 0.3);
}
.biz-service-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a826f;
  border: 0.5px solid rgba(138, 130, 111, 0.4);
  padding: 4px 10px;
  background: #fbf8f3;
}
.biz-service-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.45;
  color: var(--ink);
}
.biz-service-lede {
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 0.5px solid rgba(191, 159, 104, 0.3);
  font-size: 12.5px;
  line-height: 1.65;
  color: #8a6a3b;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.biz-service-summary {
  margin: 0 0 14px;
  font-size: 12.5px;
  line-height: 2.05;
  color: #514d46;
}
.biz-service-highlights {
  list-style: none;
  margin: auto 0 0;
  padding-top: 12px;
  border-top: 0.5px dashed rgba(24, 24, 23, 0.12);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.biz-service-highlights li {
  position: relative;
  padding-left: 18px;
  font-size: 12px;
  line-height: 1.7;
  color: #6e6859;
}
.biz-service-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--gold, #bf9f68);
  font-size: 11px;
  font-weight: 600;
}

.biz-services-note {
  position: relative;
  max-width: 820px;
  margin: 40px auto 0;
  padding: 32px 32px 24px;
  background: #fbf8f3;
  border: 0.5px solid rgba(191, 159, 104, 0.45);
  font-size: 13px;
  line-height: 2;
  color: #514d46;
  text-align: center;
}
.biz-services-note::before {
  content: "POINT";
  position: absolute;
  left: 50%;
  top: -8px;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: #8a6a3b;
  background: #ebe2cf;
  padding: 2px 16px;
  font-weight: 500;
}
.biz-services-note strong { color: #8a6a3b; font-weight: 600; }
.biz-services-note strong { color: #8a6a3b; font-weight: 600; }

/* === 提供フロー (縦タイムライン) === */
.biz-flow {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.biz-flow::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold, #bf9f68) 0%, rgba(191, 159, 104, 0.3) 100%);
}
.biz-flow li {
  position: relative;
  padding: 18px 0 18px 78px;
  border-bottom: 1px solid rgba(191, 159, 104, 0.3);
}
.biz-flow li:last-child { border-bottom: none; }
.biz-flow-step {
  position: absolute;
  left: 0;
  top: 18px;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  background: #fff;
  border: 1px solid var(--gold, #bf9f68);
  color: #8a6a3b;
  font-size: 15px;
  font-style: italic;
  letter-spacing: 0.04em;
  border-radius: 50%;
  box-shadow: 0 4px 10px -6px rgba(191, 159, 104, 0.45);
  z-index: 1;
}
.biz-flow li h3 {
  margin: 6px 0 8px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ink);
}
.biz-flow li p {
  margin: 0;
  font-size: 13px;
  line-height: 1.95;
  color: #514d46;
}

/* === 主な対象 グリッド === */
.biz-targets-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.biz-targets-grid > div {
  position: relative;
  padding: 26px 22px 24px;
  background: #fff;
  border: 0.5px solid rgba(24, 24, 23, 0.08);
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.biz-targets-grid > div::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--gold, #bf9f68);
  opacity: 0.85;
}
.biz-targets-grid > div:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -22px rgba(24, 24, 23, 0.28);
}
.biz-targets-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ink);
}
.biz-targets-grid p {
  margin: 0;
  font-size: 12px;
  line-height: 1.85;
  color: #6e6859;
}

/* business 最終CTA を中央揃え + 大胆な意匠に */
.special-final-cta.biz-final-cta {
  grid-template-columns: 1fr !important;
  text-align: center;
  padding: clamp(80px, 10vw, 130px) clamp(24px, 5vw, 80px) !important;
  background: var(--paper-soft) !important;
  position: relative;
}
.special-final-cta.biz-final-cta::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold, #bf9f68) 50%, transparent);
}
.special-final-cta.biz-final-cta div {
  grid-column: 1 !important;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.special-final-cta.biz-final-cta h2 {
  font-size: clamp(36px, 4.6vw, 54px) !important;
  letter-spacing: 0.1em !important;
  line-height: 1.4 !important;
  margin-bottom: 20px !important;
  font-family: Baskerville, "Iowan Old Style", "Hiragino Mincho ProN", "Yu Mincho", serif;
}
.special-final-cta.biz-final-cta p {
  font-size: 14.5px;
  line-height: 2;
  color: #5d584f;
}
.special-final-cta.biz-final-cta nav {
  display: flex !important;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 32px auto 0;
  max-width: 760px;
}
.special-final-cta.biz-final-cta nav a {
  min-width: 280px;
  min-height: 56px;
  padding: 0 28px;
  justify-content: center;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--ink);
  background: #fff;
  color: var(--ink);
  transition: background 240ms ease, color 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}
.special-final-cta.biz-final-cta nav a:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -16px rgba(20, 16, 10, 0.4);
}
.special-final-cta.biz-final-cta nav a:first-child {
  background: var(--gold, #bf9f68);
  color: #fff;
  border-color: var(--gold, #bf9f68);
  box-shadow: 0 12px 28px -16px rgba(191, 159, 104, 0.6);
}
.special-final-cta.biz-final-cta nav a:first-child:hover {
  background: #8a6a3b;
  border-color: #8a6a3b;
}
.special-final-cta.biz-final-cta nav a span {
  margin-left: 12px;
}

@media (max-width: 1100px) {
  .biz-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .biz-targets-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .biz-listing-grid { grid-template-columns: 1fr; }
  .biz-services-grid { grid-template-columns: 1fr; }
  .biz-targets-grid { grid-template-columns: 1fr; }
  .biz-section-tabs { flex-direction: column; }
  .biz-section-tabs a { border-right: 0; border-bottom: 0.5px solid rgba(24, 24, 23, 0.08); }
  .biz-flow li { padding-left: 70px; }
  .biz-flow-step { width: 48px; height: 48px; font-size: 13px; }
  .biz-flow::before { left: 24px; }
  .biz-services-note { padding-left: 32px; padding-right: 32px; }
  .biz-page .special-hero .special-subtitle {
    font-size: 13.5px;
    line-height: 1.65;
    letter-spacing: 0.04em;
  }
  .biz-listing-recommend { padding: 5px 14px; font-size: 10.5px; }
  .biz-section .section-label { letter-spacing: 0.22em; }
  .biz-section-title { padding-bottom: 22px; }
}

/* ===== Contact Page (リッチ意匠) ===== */
.contact-hero {
  position: relative;
  margin-top: 0;
  min-height: clamp(440px, 52vh, 560px);
  overflow: hidden;
  isolation: isolate;
}
.contact-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) brightness(0.86);
  transform: scale(1.04);
}
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(24, 24, 23, 0.15) 0%, rgba(24, 24, 23, 0.55) 100%),
    radial-gradient(ellipse at 25% 50%, rgba(24, 24, 23, 0.45), transparent 60%);
  z-index: 1;
}
.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 124px 5vw 56px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  color: #fff;
}
.contact-hero-content .eyebrow {
  margin: 0;
  font-size: 11.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #d6c89e;
}
.contact-hero-content h1 {
  margin: 4px 0 6px;
  font-size: clamp(24px, 3.6vw, 38px);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.45;
  color: #fff;
  max-width: 760px;
}
.contact-hero-lede {
  margin: 0;
  max-width: 640px;
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.88);
}
.contact-hero-meta {
  margin-top: 14px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
}
.contact-hero-meta span {
  padding: 6px 14px;
  border: 0.5px solid rgba(255, 255, 255, 0.32);
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(4px);
}
.contact-hero-meta strong {
  color: #d6c89e;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-right: 4px;
}

.contact-trust {
  max-width: 1200px;
  margin: 28px auto 0;
  padding: 0 5vw;
}
.contact-trust-grid {
  list-style: none;
  margin: 0;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  background: rgba(214, 200, 158, 0.08);
  border: 1px solid rgba(46, 38, 30, 0.12);
  border-radius: 4px;
}
.contact-trust-grid li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  padding: 6px 0;
}
.contact-trust-grid strong {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink-deep, #2e261e);
  letter-spacing: 0.04em;
}
.contact-trust-grid span {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--ink-soft, #6b6157);
  line-height: 1.55;
}
.contact-trust-note {
  text-align: center;
  margin: 12px 0 0;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-soft, #8a8074);
}
.food-stores-note-center {
  text-align: center;
  margin-top: 18px;
}
.food-stores-note-link {
  border-bottom: 1px solid currentColor;
  text-decoration: none;
}

/* ========== Explore (area-guide interactive map) ========== */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.explore {
  width: min(1320px, calc(100% - 96px));
  margin: 24px auto 0;
}
.explore-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 20px;
  align-items: stretch;
}
.explore-aside {
  display: flex;
  flex-direction: column;
  background: #fbf8f3;
  border: 0.5px solid rgba(46, 38, 30, 0.18);
  height: 640px;
  overflow: hidden;
}
.explore-search {
  padding: 14px 14px 10px;
  border-bottom: 0.5px solid rgba(46, 38, 30, 0.16);
  background: #fff;
}
.explore-search-field input {
  width: 100%;
  padding: 9px 12px;
  font-size: 13px;
  letter-spacing: 0.04em;
  background: #fbf8f3;
  border: 0.5px solid rgba(46, 38, 30, 0.32);
  outline: none;
  color: var(--ink-deep, #2e261e);
}
.explore-search-field input:focus {
  border-color: var(--ink-deep, #2e261e);
}
.explore-filters {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.explore-filters label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  cursor: pointer;
  color: var(--ink-soft, #6b6157);
  user-select: none;
}
.explore-filters input[type="checkbox"] {
  margin: 0;
  accent-color: #2e261e;
}
.explore-list {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}
.explore-cat-header {
  position: sticky;
  top: 0;
  padding: 10px 14px 6px;
  background: #fbf8f3;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--ink-soft, #8a8074);
  text-transform: uppercase;
  border-bottom: 0.5px solid rgba(46, 38, 30, 0.1);
  z-index: 1;
}
.explore-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 0.5px solid rgba(46, 38, 30, 0.08);
  cursor: pointer;
  font: inherit;
  color: var(--ink-deep, #2e261e);
  transition: background 0.15s ease;
}
.explore-list-item:hover { background: rgba(214, 200, 158, 0.18); }
.explore-list-item.is-active { background: rgba(46, 38, 30, 0.08); }
.explore-list-cat {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 22px;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: #fff;
}
.explore-list-cat-stay { background: #b06a76; }
.explore-list-cat-food { background: #3d6a7c; }
.explore-list-cat-maker { background: #8c4a2c; }
.explore-list-cat-experience { background: #6c7a82; }
.explore-list-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.explore-list-name {
  font-size: 13px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.explore-list-meta {
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--ink-soft, #8a8074);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.explore-canvas {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.explore-frame {
  position: relative;
  background: #d8ebe8;
  border: 0.5px solid rgba(46, 38, 30, 0.18);
  height: 640px;
  overflow: hidden;
}
.explore-basemap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.explore-basemap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.explore-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.explore-overlay {
  z-index: 2;
  pointer-events: none;
}
.explore-pins {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}
.explore-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  background: transparent;
  border: 0;
  /* 44×44 minimum tap target via padding */
  padding: 15px;
  cursor: pointer;
  pointer-events: auto;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.20s cubic-bezier(0.34,1.56,0.64,1);
  touch-action: manipulation;
}
.explore-pin:hover { transform: translate(-50%, -50%) scale(1.35); z-index: 5; }
.explore-pin.is-active { z-index: 6; transform: translate(-50%, -50%) scale(1.6); }
.explore-pin:focus-visible {
  outline: none;
}
.explore-pin:focus-visible .explore-pin-dot {
  outline: 2.5px solid #c8a860;
  outline-offset: 3px;
}
.explore-pin-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,0.92);
  box-shadow: 0 2px 6px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,0,0,0.12);
  transition: box-shadow 0.18s ease;
}
.explore-pin:hover .explore-pin-dot,
.explore-pin.is-active .explore-pin-dot {
  box-shadow: 0 3px 10px rgba(0,0,0,0.55), 0 0 0 2px rgba(255,255,255,0.5);
}
.explore-list-beyond {
  flex-shrink: 0;
  display: inline-block;
  padding: 2px 7px;
  font-size: 9.5px;
  letter-spacing: 0.08em;
  color: #7a5230;
  background: #f5e8d3;
  border: 0.5px solid #c8a878;
  border-radius: 2px;
}
.explore-list-item.is-beyond {
  opacity: 0.85;
}
.explore-pin-stay .explore-pin-dot { background: #b06a76; }
.explore-pin-food .explore-pin-dot { background: #3d6a7c; }
.explore-pin-maker .explore-pin-dot { background: #8c4a2c; }
.explore-pin-experience .explore-pin-dot { background: #6c7a82; }
.explore-pin.is-active .explore-pin-dot {
  outline: 2px solid #d6c89e;
  outline-offset: 2px;
}
.explore-pin.is-hidden { display: none; }
.explore-list-item.is-hidden { display: none; }
.explore-cat-header.is-hidden { display: none; }
.explore-legend {
  display: flex;
  gap: 18px;
  padding: 8px 4px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-soft, #6b6157);
}
.explore-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.explore-legend-item .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
}
.explore-legend-stay .dot { background: #b06a76; }
.explore-legend-food .dot { background: #3d6a7c; }
.explore-legend-maker .dot { background: #8c4a2c; }
.explore-legend-experience .dot { background: #6c7a82; }
.explore-detail {
  position: relative;
  margin-top: 18px;
  padding: 22px 28px;
  background: #fff;
  border: 0.5px solid rgba(46, 38, 30, 0.18);
  border-top: 1.5px solid #c8a860;
  animation: exploreDetailIn 0.28s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes exploreDetailIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .explore-detail { animation: none; }
}
.explore-detail-close {
  position: absolute;
  top: 8px; right: 10px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(46, 38, 30, 0.06);
  border: 0.5px solid rgba(46, 38, 30, 0.14);
  border-radius: 50%;
  font-size: 18px;
  color: var(--ink-soft, #6b6157);
  cursor: pointer;
  line-height: 1;
  transition: background 0.15s ease, color 0.15s ease;
  touch-action: manipulation;
}
.explore-detail-close:hover {
  background: rgba(46, 38, 30, 0.14);
  color: var(--ink, #181817);
}
.explore-detail-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
}
.explore-detail-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #f3ede3;
  aspect-ratio: 4 / 3;
}
.explore-detail-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.86);
}
.explore-detail-tag {
  position: absolute;
  top: 10px; left: 10px;
  padding: 3px 8px;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  background: rgba(46, 38, 30, 0.78);
  color: #fff;
}
.explore-detail-body { padding: 4px 0; }
.explore-detail-meta {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-soft, #8a8074);
}
.explore-detail-meta .dot { margin: 0 6px; opacity: 0.6; }
.explore-detail-body h3 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-deep, #2e261e);
}
.explore-detail-summary {
  margin: 0 0 16px;
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink-soft, #4f4940);
}
.explore-detail-link {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--ink-deep, #2e261e);
  text-decoration: none;
  border-bottom: 0.5px solid currentColor;
  padding-bottom: 2px;
}
.explore-detail-link:hover { opacity: 0.7; }

@media (max-width: 900px) {
  .explore { width: calc(100% - 32px); }
  .explore-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .explore-aside { height: 300px; min-width: 0; max-width: 100%; overflow-x: hidden; }
  .explore-frame {
    aspect-ratio: 4 / 3;
    min-height: 320px;
    height: auto;
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
  }
  .explore-frame .explore-basemap,
  .explore-frame .explore-svg.explore-overlay,
  .explore-frame .explore-pins {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
  }
  .explore-frame .explore-basemap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .explore-detail-grid {
    grid-template-columns: 1fr;
  }
  .explore-detail-media {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .explore { width: calc(100% - 20px); }
  .explore-aside { height: 260px; }
  .explore-frame {
    min-height: 320px;
  }
  .explore-pin-dot {
    width: 10px;
    height: 10px;
  }
  .explore-detail { padding: 18px 16px; }
  .explore-detail-body h3 { font-size: 1.15rem; }
  /* 44×44 タップターゲット維持のため padding は変更しない */
}

/* ===== Mid-scroll inline CTA strip ===== */
.mid-cta-strip {
  width: min(1200px, calc(100% - 96px));
  margin: 36px auto;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(214, 200, 158, 0.08);
  border-top: 0.5px solid rgba(46, 38, 30, 0.18);
  border-bottom: 0.5px solid rgba(46, 38, 30, 0.18);
}
.mid-cta-strip p {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 1.7;
  color: var(--ink-soft, #6b6157);
}
.mid-cta-strip strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ink-deep, #2e261e);
  margin-bottom: 4px;
}
.mid-cta-strip a {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border: 0.5px solid rgba(46, 38, 30, 0.55);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-decoration: none;
  color: var(--ink-deep, #2e261e);
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}
.mid-cta-strip a:hover {
  background: var(--ink-deep, #2e261e);
  color: #f5f0e6;
}
@media (max-width: 720px) {
  .mid-cta-strip {
    width: calc(100% - 32px);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 18px;
    gap: 14px;
    margin: 28px auto;
  }
  .mid-cta-strip a {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
  }
}
@media (max-width: 720px) {
  .contact-trust { margin-top: 20px; }
  .contact-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 18px 16px;
    gap: 14px;
  }
  .contact-trust-grid strong { font-size: 0.95rem; }
  .contact-trust-grid span { font-size: 10.5px; }
}

.contact-layout {
  max-width: 1200px;
  margin: 36px auto 56px;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 110px;
}

.contact-info-card {
  background: #fbf8f3;
  border-top: 1px solid rgba(191, 159, 104, 0.55);
  border-left: 0.5px solid rgba(24, 24, 23, 0.08);
  border-right: 0.5px solid rgba(24, 24, 23, 0.08);
  border-bottom: 0.5px solid rgba(24, 24, 23, 0.08);
  padding: 18px 20px 16px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.contact-info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -24px rgba(24, 24, 23, 0.32);
}
.contact-info-card .eyebrow {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8a826f;
}
.contact-info-card h2,
.contact-info-card h3 {
  margin: 6px 0 8px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.contact-info-card p {
  margin: 0 0 10px;
  font-size: 12.5px;
  line-height: 1.75;
  color: #514d46;
}
.contact-info-card a {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid rgba(24, 24, 23, 0.4);
  padding-bottom: 1px;
}
.contact-info-card a:hover { border-bottom-color: var(--gold, #bf9f68); }
.contact-info-corp {
  border-top-color: var(--gold, #bf9f68);
  border-top-width: 2px;
  background: linear-gradient(180deg, rgba(191, 159, 104, 0.08), #fbf8f3 50%);
}

.contact-info-meta {
  margin-top: 6px;
  padding: 14px 18px;
  background: #fff;
  border: 0.5px dashed rgba(24, 24, 23, 0.18);
  font-size: 11.5px;
  line-height: 1.85;
  color: #6e6859;
}
.contact-info-meta p { margin: 0; }
.contact-info-meta strong {
  display: inline-block;
  width: 60px;
  color: #8a826f;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.contact-form-wrapper {
  background: #fff;
  border-top: 1px solid rgba(191, 159, 104, 0.55);
  border-left: 0.5px solid rgba(24, 24, 23, 0.08);
  border-right: 0.5px solid rgba(24, 24, 23, 0.08);
  border-bottom: 0.5px solid rgba(24, 24, 23, 0.08);
  padding: 32px 36px 32px;
}
.contact-form-head {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 0.5px solid rgba(24, 24, 23, 0.1);
}
.contact-form-head .eyebrow {
  margin: 0;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #8a826f;
}
.contact-form-head h2 {
  margin: 6px 0 10px;
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--ink);
}
.contact-form-lede {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
  color: #6e6859;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}
.contact-form > label,
.contact-form > .contact-form-privacy,
.contact-form > .contact-form-submit {
  grid-column: 1 / -1;
}
.contact-form > label[data-half],
.contact-form > label.half {
  grid-column: auto;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a826f;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 11px 14px;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: #fbf8f3;
  border: 0.5px solid rgba(24, 24, 23, 0.18);
  font-family: inherit;
  transition: border-color 200ms ease, background 200ms ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold, #bf9f68);
  background: #fff;
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form-privacy {
  margin: 6px 0 0;
  font-size: 11.5px;
  line-height: 1.7;
  color: #6e6859;
  letter-spacing: 0.04em;
}
.contact-form-privacy a {
  color: var(--ink);
  border-bottom: 1px solid rgba(24, 24, 23, 0.3);
}
.contact-form-submit {
  margin-top: 8px;
  padding: 16px 28px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, letter-spacing 220ms ease;
  justify-self: stretch;
}
.contact-form-submit:hover {
  background: var(--gold, #bf9f68);
  border-color: var(--gold, #bf9f68);
  letter-spacing: 0.22em;
}

.honeypot-field { display: none !important; }

/* お名前 と メールアドレス を 2列に */
.contact-form > label:nth-of-type(2),
.contact-form > label:nth-of-type(3) {
  grid-column: span 1;
}

/* 会社名 と 希望時期 を 2列に */
.contact-form > label:nth-of-type(6),
.contact-form > label:nth-of-type(7) {
  grid-column: span 1;
}

@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .contact-info {
    position: static;
  }
  .contact-form-wrapper { padding: 26px 22px; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form > label:nth-of-type(n) { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .contact-hero { min-height: clamp(360px, 56vh, 480px); margin-top: 0; }
  .contact-hero-content { padding: 96px 5vw 40px; }
  .contact-hero-content h1 { font-size: 20px; }
  .contact-hero-meta { gap: 8px; }
  .contact-hero-meta span { padding: 5px 10px; font-size: 10.5px; }
}

/* ===== Contact Hub (entry page that splits personal / business) ===== */
.contact-hub {
  max-width: 1100px;
  margin: 32px auto 80px;
  padding: 0 5vw;
}
.contact-hub-head {
  text-align: center;
  margin: 0 auto 36px;
  max-width: 760px;
}
.contact-hub-head .eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gold, #bf9f68);
  text-transform: uppercase;
  margin: 0 0 10px;
}
.contact-hub-head h2 {
  font-family: Baskerville, "Iowan Old Style", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: 0.06em;
  margin: 0 0 14px;
  color: var(--ink);
}
.contact-hub-head .contact-hub-lede {
  font-size: 14.5px;
  line-height: 1.9;
  color: #514d46;
  margin: 0;
}
.contact-hub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.contact-hub-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 36px 32px 30px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
  position: relative;
}
.contact-hub-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 38px -24px rgba(20, 16, 10, 0.28);
  border-color: var(--gold, #bf9f68);
}
.contact-hub-card .eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gold, #bf9f68);
  text-transform: uppercase;
  margin: 0;
}
.contact-hub-card h3 {
  font-family: Baskerville, "Iowan Old Style", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.06em;
  margin: 4px 0 6px;
}
.contact-hub-card-lede {
  font-size: 13.5px;
  color: #514d46;
  margin: 0 0 10px;
  line-height: 1.7;
}
.contact-hub-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-hub-card li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  line-height: 1.7;
  color: #4a4338;
}
.contact-hub-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 1px;
  background: var(--gold, #bf9f68);
}
.contact-hub-card-link {
  margin-top: auto;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  border-top: 0.5px solid var(--line);
  padding-top: 16px;
}
.contact-hub-card-corp {
  background: linear-gradient(180deg, #fbf8f3 0%, #f5efe1 100%);
}
.contact-hub-note {
  margin: 28px auto 0;
  text-align: center;
  font-size: 13px;
  color: #6c6557;
  max-width: 720px;
  line-height: 1.9;
}
.contact-hub-note a {
  color: var(--ink);
  border-bottom: 0.5px solid var(--gold, #bf9f68);
  text-decoration: none;
}
@media (max-width: 760px) {
  .contact-hub-grid { grid-template-columns: 1fr; gap: 16px; }
  .contact-hub-card { padding: 28px 24px 24px; }
}

/* ===== Editors / Why Us ===== */
.editors-section {
  padding: 28px 0 32px;
}

.editors-hero {
  position: relative;
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 0;
  max-width: 620px;
  margin: 0 0 18px;
  background: #1a1a18;
  overflow: hidden;
}

.editors-hero-img {
  width: 100%;
  height: 100%;
  min-height: 96px;
  object-fit: cover;
  filter: saturate(0.78) brightness(0.86);
}

.editors-hero-copy {
  padding: 14px 22px;
  background: #fbf8f3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid rgba(191, 159, 104, 0.55);
}

.editors-hero-copy .section-label {
  margin: 0 0 4px;
}

.editors-title {
  margin: 0 0 6px;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.35;
}

.editors-lede {
  margin: 0;
  color: #514d46;
  font-size: 12px;
  line-height: 1.6;
}

.editors-criteria {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.editors-criteria li {
  position: relative;
  padding: 18px 18px 16px;
  background: #fff;
  border: 0.5px solid rgba(24, 24, 23, 0.1);
  border-top: 1px solid rgba(191, 159, 104, 0.55);
  text-align: left;
}

.criteria-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 8px;
  opacity: 0.82;
}

.criteria-num {
  position: absolute;
  top: 16px;
  right: 18px;
  color: var(--gold, #bf9f68);
  font-size: 12px;
  letter-spacing: 0.12em;
  font-feature-settings: "tnum";
  opacity: 0.78;
}

.editors-criteria strong {
  display: block;
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.editors-criteria p {
  margin: 0;
  color: #6a6358;
  font-size: 12.5px;
  line-height: 1.65;
}

.feature-story-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-story-grid .story-card {
  min-height: clamp(220px, 18vw, 280px);
}

.special-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.44fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: center;
  min-height: 238px;
  margin-top: 12px;
  padding: clamp(22px, 3.4vw, 38px) clamp(48px, 7vw, 96px);
  color: var(--ink);
  background: var(--paper-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.special-final-cta > img {
  position: absolute;
  inset: 0 auto 0 0;
  width: 48%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: saturate(0.7);
}

.special-final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(246, 241, 232, 0.12), rgba(246, 241, 232, 0.84) 58%, rgba(246, 241, 232, 0.94));
}

.special-final-cta div,
.special-final-cta nav {
  position: relative;
  z-index: 1;
}

.special-final-cta div {
  grid-column: 1;
  max-width: 720px;
}

.special-final-cta h2 {
  font-size: clamp(30px, 3vw, 40px);
}

.special-final-cta p {
  color: #5d584f;
  line-height: 1.9;
}

.special-final-cta nav {
  display: grid;
  gap: 12px;
}

.special-final-cta a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.42);
}

.feature-link-section,
.feature-topic-section {
  width: min(1320px, calc(100% - 96px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) 0;
}

.feature-link-grid,
.feature-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.feature-topic-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.sea-mist-section .feature-link-card:last-child {
  grid-column: auto;
}

.feature-topic-grid.is-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.feature-topic-grid.is-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-link-card,
.feature-topic-card {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 0;
  min-width: 0;
  width: 100%;
  overflow: hidden;
  background: #151515;
  color: #fff;
  border: 1px solid var(--line);
  box-sizing: border-box;
}

.feature-topic-card {
  aspect-ratio: auto;
  min-height: clamp(230px, 19vw, 300px);
}

.feature-link-card img,
.feature-topic-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
  transform: scale(1.08);
  transition: transform 360ms ease;
}

.feature-link-card::after,
.feature-topic-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 9, 9, 0.12), rgba(8, 9, 9, 0.72));
}

.feature-link-card:hover img,
.feature-topic-card:hover img {
  transform: scale(1.15);
}

.feature-link-card div,
.feature-topic-card div {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  overflow: hidden;
}

.feature-link-card span,
.feature-topic-card span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13.5px;
  letter-spacing: 0.18em;
  text-transform: none;
  font-weight: 500;
}
.feature-detail-list span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-link-card strong,
.feature-topic-card strong {
  display: block;
  margin-top: 8px;
  padding-right: 22px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.32;
}

.feature-link-card strong::after,
.feature-topic-card strong::after {
  content: "→";
  position: absolute;
  right: 0;
  bottom: 0;
}

.feature-copy-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1.28fr);
  gap: clamp(28px, 6vw, 72px);
  width: min(1260px, calc(100% - 96px));
  margin: 0 auto;
  padding: clamp(30px, 5vw, 62px) 0;
  border-top: 1px solid var(--line);
}

.feature-copy-grid h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.25;
}

.feature-detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-detail-list li {
  padding: 18px 18px 20px;
  background: rgba(255, 250, 241, 0.68);
  border: 1px solid var(--line);
}

.feature-detail-list span {
  color: var(--gold);
}

.feature-detail-list strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
  font-weight: 400;
}

.feature-detail-list p {
  margin: 8px 0 0;
  color: #5d584f;
  line-height: 1.8;
}

.feature-editorial-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  width: 100vw;
  margin: clamp(18px, 3vw, 34px) calc(50% - 50vw) 0;
  background: #eee6da;
}

.feature-editorial-band.reverse {
  grid-template-columns: minmax(320px, 1.1fr) minmax(0, 0.9fr);
}

.feature-editorial-band img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: saturate(0.78);
}

.feature-editorial-band div {
  align-self: center;
  padding: clamp(26px, 4vw, 48px) clamp(36px, 6vw, 76px);
}

.feature-editorial-band h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.35;
}

.feature-editorial-band p {
  max-width: 680px;
  color: #514d46;
  line-height: 1.85;
}

.feature-story-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-story-row .story-card {
  min-height: clamp(220px, 17vw, 280px);
}

.occasion-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  background: var(--line);
}

.occasion-item {
  min-height: 104px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 16px 18px;
  background: rgba(255, 250, 241, 0.72);
  color: #5d584f;
}

.occasion-item strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 400;
}

.compact-course .course-timeline {
  grid-template-columns: repeat(5, minmax(120px, 1fr));
}
@media (max-width: 760px) {
  .compact-course .course-timeline {
    grid-template-columns: 1fr;
  }
}

.language-note {
  display: inline-flex;
  margin-top: 20px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  color: #5d584f;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .section-band,
  .feature-split,
  .experience-layout,
  .area-guide,
  .business,
  .contact,
  .policy-list div,
  .page-lead,
  .feature-page-band,
  .page-cta,
  .special-intro,
  .gastronomy-band,
  .private-course,
  .special-final-cta,
  .premium-assurance-grid {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .gift-grid,
  .journal-grid,
  .collection-grid,
  .story-grid,
  .listing-grid,
  .metrics,
  .special-category-grid,
  .stay-feature-grid,
  .gastronomy-points,
  .feature-link-grid,
  .feature-topic-grid,
  .feature-topic-grid.is-five,
  .feature-detail-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-copy-grid,
  .feature-editorial-band,
  .feature-editorial-band.reverse {
    grid-template-columns: 1fr;
  }

  .sea-mist-section .feature-link-card:last-child {
    grid-column: span 2;
  }

  .feature-story-row,
  .occasion-row,
  .assurance-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .special-final-cta div {
    grid-column: auto;
  }

  .special-final-cta > img {
    width: 100%;
  }

  .feature-page-band img {
    aspect-ratio: 16 / 9;
  }

  .feature-page-band {
    gap: 36px;
    padding: 64px 0;
  }

  .membership-band,
  .invitation-strip,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .invitation-panel {
    height: 160px;
  }

  .area-copy {
    grid-column: auto;
    margin-top: 0;
  }

  .international {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .site-header {
    height: 70px;
  }

  .brand {
    width: 132px;
  }

  .language-toggle {
    min-width: 128px;
    height: 38px;
  }

  .mobile-nav {
    inset: 70px 0 auto;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-content {
    width: calc(100% - 34px);
    padding: 19vh 0 0 18px;
  }

  .hero-actions,
  .notice-line {
    flex-direction: column;
    align-items: stretch;
  }

  .section-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-meta {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .category-grid,
  .gift-grid,
  .journal-grid,
  .collection-grid,
  .story-grid,
  .area-map,
  .listing-grid,
  .route-grid,
  .metrics,
  .special-category-grid,
  .stay-feature-grid,
  .gastronomy-points,
  .feature-story-grid,
  .feature-link-grid,
  .feature-topic-grid,
  .feature-topic-grid.is-five,
  .feature-detail-list {
    grid-template-columns: 1fr;
  }

  .feature-story-row,
  .occasion-row {
    grid-template-columns: 1fr;
  }

  .sea-mist-section .feature-link-card:last-child {
    grid-column: auto;
  }

  .feature-link-section,
  .feature-topic-section,
  .feature-copy-grid,
  .premium-assurance {
    width: calc(100% - 34px);
  }

  .setouchi-sea-band {
    min-height: clamp(300px, 52svh, 440px);
    margin-top: 8px;
    background-position: center 42%;
  }

  .sea-band-copy {
    width: calc(100% - 34px);
    padding: 128px 0 34px 18px;
  }

  .concierge-copy {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .concierge-image {
    height: 160px;
  }

  .sea-mist-section {
    width: 100vw;
    padding-left: 18px;
    padding-right: 18px;
  }

  .sea-mist-section::before {
    left: 18px;
    right: 18px;
  }

  .assurance-list {
    grid-template-columns: 1fr;
  }

  .special-hero {
    min-height: 82svh;
  }

  .special-hero-content {
    width: calc(100% - 34px);
    padding-top: 19vh;
    padding-bottom: 38px;
  }

  .special-hero h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .special-copy {
    font-size: 14px;
    line-height: 1.85;
  }

  .page-hero {
    min-height: 70svh;
  }

  .page-hero-content {
    width: calc(100% - 34px);
    padding: 130px 0 48px;
  }

  .page-hero h1 {
    font-size: clamp(36px, 10.5vw, 56px);
  }

  .page-lead,
  .listing-section,
  .feature-page-band,
  .route-section {
    padding: 56px 0;
  }

  .listing-grid,
  .route-grid,
  .feature-link-grid,
  .feature-topic-grid,
  .story-grid,
  .collection-grid {
    gap: 12px;
  }

  .listing-card {
    grid-template-rows: clamp(190px, 56vw, 230px) auto;
  }

  .listing-card div,
  .route-card {
    padding: 18px;
  }

  .feature-page-band img {
    aspect-ratio: 16 / 10;
  }

  .special-category-card,
  .stay-feature-card {
    min-height: 330px;
  }

  .gastronomy-band > img {
    min-height: 280px;
  }

  .course-timeline {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stays-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .seasonal-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .editors-hero {
    grid-template-columns: 1fr;
  }

  .editors-hero-img {
    min-height: 200px;
  }

  .editors-criteria {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .editors-criteria li {
    padding: 22px 18px 20px;
  }

  .criteria-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
  }

  .seasonal-card {
    min-height: 240px;
  }

  .food-store-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .category-card {
    min-height: 440px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .collection-card {
    min-height: clamp(300px, 78vw, 340px);
  }

  .story-card,
  .story-card.large,
  .feature-story-grid .story-card,
  .feature-story-row .story-card,
  .feature-link-card,
  .feature-topic-card {
    min-height: clamp(285px, 74vw, 330px);
  }

  .story-list article {
    grid-template-columns: 1fr;
  }

  .large-story img,
  .journal-grid img {
    height: 340px;
  }

  .course-table > div {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-nav a {
    padding: 10px 0;
    display: block;
  }
}

/* ===== Hero CTA Row (index.html 二段 CTA) ===== */
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}
.hero-link.is-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--gold, #bf9f68);
  color: #fff;
  border: 1px solid var(--gold, #bf9f68);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}
.hero-link.is-primary:hover {
  background: #8a6a3b;
  border-color: #8a6a3b;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -16px rgba(191, 159, 104, 0.6);
}
.hero-link.is-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}
.hero-link.is-outline:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border-color: #fff;
}
@media (max-width: 600px) {
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-link.is-primary,
  .hero-link.is-outline { justify-content: center; padding: 12px 18px; }
}

/* ===== Journal Related Articles ===== */
.journal-related {
  max-width: 1100px;
  margin: 80px auto 100px;
  padding: 0 5vw;
}
.journal-related-head {
  text-align: center;
  margin-bottom: 36px;
}
.journal-related-head .eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gold, #bf9f68);
  text-transform: uppercase;
  margin: 0 0 10px;
}
.journal-related-head h2 {
  font-family: Baskerville, "Iowan Old Style", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: 0.06em;
  margin: 0;
  color: var(--ink);
}
.journal-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.journal-related-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--line);
  overflow: hidden;
  contain: layout paint;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}
.journal-related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 38px -24px rgba(20, 16, 10, 0.28);
  border-color: var(--gold, #bf9f68);
}
.journal-related-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.journal-related-card .journal-related-eyebrow {
  display: inline-block;
  margin: 14px 18px 0;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  color: var(--gold, #bf9f68);
  text-transform: uppercase;
}
.journal-related-card strong {
  display: block;
  margin: 6px 18px 4px;
  font-family: Baskerville, "Iowan Old Style", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.04em;
}
.journal-related-card small {
  display: block;
  margin: 0 18px 18px;
  font-size: 12.5px;
  color: #6c6557;
  line-height: 1.6;
}
.journal-related-cta {
  margin-top: 36px;
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(180deg, #fbf8f3 0%, #f5efe1 100%);
}
.journal-related-cta p {
  margin: 0 0 18px;
  font-size: 14.5px;
  color: #514d46;
}
.journal-related-cta .hero-link.is-primary {
  margin: 0 auto;
}
@media (max-width: 760px) {
  .journal-related-grid { grid-template-columns: 1fr; }
  .journal-related-card img { height: 200px; }
}

/* ===== Long-word break safety (英文字長語の overflow 防止) ===== */
.stay-feature-card h3,
.stay-feature-card strong,
.collection-card strong,
.feature-link-card strong,
.story-card h3,
.special-category-card h3,
.seasonal-card h3 {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ===== Contact info English supplement ===== */
.contact-info-en {
  margin: 6px 0 8px !important;
  font-size: 12px !important;
  color: #6c6557;
  line-height: 1.6 !important;
}
.contact-info-en em {
  font-style: italic;
  color: #514d46;
}

/* ===== Biz Media Value (媒体価値前置) ===== */
.biz-media-value {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1200px;
  margin: 24px auto 36px;
}
.biz-media-value-block {
  padding: 22px 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold, #bf9f68);
}
.biz-media-value-block .eyebrow {
  font-size: 10.5px;
  letter-spacing: 0.28em;
  color: var(--gold, #bf9f68);
  text-transform: uppercase;
  margin: 0 0 8px;
}
.biz-media-value-block h3 {
  font-family: Baskerville, "Iowan Old Style", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
  color: var(--ink);
  line-height: 1.5;
}
.biz-media-value-block p {
  font-size: 13px;
  color: #514d46;
  line-height: 1.85;
  margin: 0;
}

.biz-listing-subhead {
  text-align: center;
  font-family: Baskerville, "Iowan Old Style", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 24px);
  letter-spacing: 0.06em;
  margin: 24px 0 8px;
  color: var(--ink);
}
.biz-listing-sublede {
  text-align: center;
  font-size: 13.5px;
  color: #6c6557;
  margin: 0 auto 24px;
  max-width: 780px;
  line-height: 1.85;
}
.biz-listing-foot {
  text-align: center;
  margin: 30px auto 0;
  max-width: 820px;
  font-size: 13px;
  color: #6c6557;
  line-height: 1.85;
}
.biz-listing-foot a {
  color: var(--ink);
  border-bottom: 0.5px solid var(--gold, #bf9f68);
  text-decoration: none;
}
.biz-listing-foot a:hover { color: var(--gold, #bf9f68); }

/* listing card spec を <details> で折り畳み */
.biz-listing-spec {
  margin: 8px 0 12px;
  border-top: 0.5px solid var(--line);
  padding-top: 8px;
}
.biz-listing-spec > summary {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold, #bf9f68);
  cursor: pointer;
  padding: 6px 0;
  list-style: none;
}
.biz-listing-spec > summary::-webkit-details-marker { display: none; }
.biz-listing-spec > summary::after {
  content: "+";
  margin-left: 6px;
  display: inline-block;
  transition: transform 200ms ease;
}
.biz-listing-spec[open] > summary::after { content: "−"; }
.biz-listing-spec ul.biz-scope {
  margin: 4px 0 0;
  padding-left: 0;
  list-style: none;
}
.biz-listing-spec ul.biz-scope li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  line-height: 1.85;
  color: #4a4338;
}
.biz-listing-spec ul.biz-scope li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold, #bf9f68);
}

@media (max-width: 760px) {
  .biz-media-value { grid-template-columns: 1fr; gap: 12px; }
  .biz-media-value-block { padding: 18px 18px 20px; }
}

/* ===== Biz Services Axis (3軸再カテゴライズ) ===== */
.biz-services-axis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1200px;
  margin: 16px auto 36px;
}
.biz-services-axis > div {
  padding: 22px 22px 24px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(191, 159, 104, 0.32);
  position: relative;
}
.biz-services-axis .biz-axis-label {
  display: inline-block;
  font-family: Baskerville, "Iowan Old Style", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--gold, #bf9f68);
  margin-right: 10px;
}
.biz-services-axis strong {
  font-family: Baskerville, "Iowan Old Style", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.biz-services-axis p {
  margin: 8px 0 0;
  font-size: 13px;
  color: #4a4338;
  line-height: 1.85;
}
@media (max-width: 760px) {
  .biz-services-axis { grid-template-columns: 1fr; gap: 12px; }
}

/* ===== Listing audit note ===== */
.biz-listing-audit-note {
  max-width: 1100px;
  margin: 8px auto 28px;
  padding: 14px 22px;
  background: rgba(191, 159, 104, 0.08);
  border-left: 2px solid var(--gold, #bf9f68);
  font-size: 13.5px;
  color: #4a4338;
  line-height: 1.85;
}
.biz-listing-audit-note strong {
  color: var(--ink);
}

/* business hub final-cta-row two-button layout */
.biz-final-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ===== Explore count badge ===== */
.explore-count-badge {
  display: inline-block;
  padding: 1px 8px;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--ink-soft, #8a8074);
  background: rgba(46, 38, 30, 0.05);
  border: 0.5px solid rgba(46, 38, 30, 0.12);
  border-radius: 10px;
  margin-left: 8px;
  vertical-align: middle;
}
.explore-beyond-section {
  margin-top: 16px;
  padding: 12px 14px;
  background: rgba(200, 168, 96, 0.06);
  border-top: 0.5px solid rgba(200, 168, 96, 0.3);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--ink-soft, #8a8074);
}
.explore-beyond-section strong {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9c7840;
  margin-bottom: 4px;
}
.explore-map-note {
  margin-top: 6px;
  padding: 6px 10px;
  background: rgba(200, 168, 96, 0.08);
  border-left: 2px solid #c8a860;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--ink-soft, #7a6850);
  line-height: 1.6;
}

/* ===== Global gold border for all card classes (2026-05-05) ===== */
.biz-card,
.biz-listing-card,
.biz-service-card,
.contact-hub-card,
.contact-info-card,
.food-mini-card,
.food-store-card,
.journal-related-card,
.listing-card,
.map-detail-card,
.route-card,
.seasonal-card,
.stay-feature-card,
.story-card {
  border: 1px solid rgba(191, 159, 104, 0.55);
  transition: border-color 280ms ease, transform 280ms ease, box-shadow 280ms ease;
}
.biz-card:hover,
.biz-listing-card:hover,
.biz-service-card:hover,
.contact-hub-card:hover,
.contact-info-card:hover,
.food-mini-card:hover,
.food-store-card:hover,
.journal-related-card:hover,
.listing-card:hover,
.map-detail-card:hover,
.route-card:hover,
.seasonal-card:hover,
.stay-feature-card:hover,
.story-card:hover {
  border-color: rgba(191, 159, 104, 0.85);
}

/* ===== Extend gold border to wrapper/list cards (2026-05-05) ===== */
.stay-feature-column,
.course-timeline div,
.editors-criteria li {
  border: 1px solid rgba(191, 159, 104, 0.55) !important;
  border-top: 1px solid rgba(191, 159, 104, 0.55) !important;
}
.stay-feature-column:hover {
  border-color: rgba(191, 159, 104, 0.85) !important;
}

/* ===== Stay-feature-column inner cleanup (2026-05-05) ===== */
/* 内側 .stay-feature-card の枠線は不要（外側 .stay-feature-column の金枠のみで十分） */
.stay-feature-column .stay-feature-card {
  border: none !important;
}
/* 「こんな方におすすめ」ブロックの背景＆上端ライン削除 → カード内で連続した1色背景に */
.card-recommend-wrap {
  background: transparent !important;
  border-top: none !important;
}
/* 「公式サイト ↗」リンクの下線（仕切り線として目立つ）を削除 */
.card-official-link {
  border-bottom: none !important;
}
.card-official-link:hover {
  border-bottom: none !important;
}

/* ===== Remove inner gray separator lines (2026-05-05) ===== */
.food-store-link,
.food-mini-link {
  border-bottom: none !important;
}
.food-store-link:hover,
.food-mini-link:hover {
  border-bottom: none !important;
  text-decoration: underline;
  text-decoration-color: rgba(191, 159, 104, 0.55);
  text-underline-offset: 4px;
}
.biz-service-highlights {
  border-top: none !important;
}

/* ===== Remove subtle gray box-shadow on timeline cards (2026-05-05) ===== */
.course-timeline div {
  box-shadow: none !important;
}

/* ===== Stay-feature-card compact restructure (2026-05-05) ===== */
.stay-feature-card .card-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
}
.stay-feature-card .card-title-row h3 {
  margin: 0;
  flex: 1;
  min-width: 0;
}
.stay-feature-card .card-title-row .card-official-link {
  flex-shrink: 0;
  margin: 0;
  white-space: nowrap;
  font-size: 11px;
  letter-spacing: 0.06em;
}
/* recommend-title をカード本文の小マージンで上に詰める */
.stay-feature-card .recommend-title {
  margin: 12px 0 6px !important;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink, #181817);
  font-weight: 500;
}
.stay-feature-card .card-recommend {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  color: #514d46;
}
.stay-feature-card .card-recommend li {
  position: relative;
  padding-left: 16px;
  line-height: 1.7;
  margin-bottom: 6px;
}
.stay-feature-card .card-recommend li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 1px;
  background: var(--gold, #bf9f68);
}

/* ===== Footer image disclaimer (2026-05-05) ===== */
.image-disclaimer {
  display: block;
  margin: 8px 0 6px;
  font-size: 10.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}

/* ===== Legal-notice section title (2026-05-05) ===== */
.policy-section-title {
  margin: 8px 0 18px;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--ink, #181817);
  font-weight: 500;
}

/* ===== Contact takedown section (2026-05-05) ===== */
.contact-takedown {
  padding: 56px 24px 72px;
  background: #f6f1e7;
  border-top: 1px solid rgba(191, 159, 104, 0.55);
}
.contact-takedown-inner {
  max-width: 760px;
  margin: 0 auto;
}
.contact-takedown-inner .eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--gold, #bf9f68);
  text-transform: uppercase;
  margin: 0 0 6px;
}
.contact-takedown-inner h2 {
  margin: 0 0 16px;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--ink, #181817);
  font-weight: 500;
}
.contact-takedown-inner p {
  font-size: 14px;
  line-height: 1.85;
  color: #514d46;
  margin: 0 0 14px;
}
.contact-takedown-list {
  margin: 0 0 24px;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.85;
  color: #514d46;
}
.contact-takedown-list li {
  margin-bottom: 4px;
}
.contact-takedown-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: #181817;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.06em;
  border: 1px solid rgba(191, 159, 104, 0.55);
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.contact-takedown-link:hover {
  background: #fff;
  color: #181817;
  border-color: rgba(191, 159, 104, 0.85);
}

/* ===== Image disclaimer overlay on card thumbnails (2026-05-05) ===== */
.image-disclaimer-overlay {
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 3;
  padding: 2px 8px;
  background: rgba(0, 0, 0, 0.55);
  color: rgba(255, 255, 255, 0.92);
  font-size: 9.5px;
  letter-spacing: 0.04em;
  border-radius: 2px;
  pointer-events: none;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.stay-feature-media-wrap {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  padding: 0 !important;
  margin: 0 !important;
}
.stay-feature-media-wrap > img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: auto !important;
  object-fit: cover;
}

/* ============================================================
   success.html / 404.html — refined editorial layout
   ============================================================ */

/* Hero with full-bleed image and centered editorial content */
.success-hero,
.error-hero-v2 {
  position: relative;
  min-height: clamp(520px, 72vh, 760px);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  color: #fff;
  background: #0d1316;
  display: grid;
  align-items: center;
}

.success-hero > picture,
.success-hero > img,
.error-hero-v2 > picture,
.error-hero-v2 > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.62);
}

.success-hero > picture > img,
.error-hero-v2 > picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.success-hero-overlay,
.error-hero-v2-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 25%, rgba(8, 18, 23, 0.18), transparent 65%),
    linear-gradient(180deg, rgba(7, 13, 17, 0.32), rgba(7, 13, 17, 0.62) 70%, rgba(7, 13, 17, 0.78));
}

.success-hero-content,
.error-hero-v2-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(96px, 14vh, 160px) clamp(22px, 5vw, 60px) clamp(80px, 12vh, 130px);
  text-align: center;
}

.success-hero-content::before,
.error-hero-v2-content::before {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  margin: 0 auto 22px;
  background: rgba(191, 159, 104, 0.7);
}

.success-hero-content .eyebrow,
.error-hero-v2-content .eyebrow {
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.32em;
  font-size: 11px;
}

.success-hero-content h1,
.error-hero-v2-content h1 {
  margin: 14px 0 24px;
  color: #fff;
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0.02em;
}

.success-hero-lede,
.error-hero-v2-lede {
  max-width: 540px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 2.05;
}

/* Three-column meta row */
.success-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 36px);
  width: min(var(--max), calc(100% - 40px));
  margin: clamp(56px, 8vw, 96px) auto;
}

.success-meta-card {
  padding: clamp(28px, 3vw, 38px) clamp(22px, 2.4vw, 32px);
  background: #fbf8f3;
  border: 0.5px solid rgba(46, 38, 30, 0.14);
}

.success-meta-eyebrow {
  margin: 0 0 14px;
  color: #8a826f;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.success-meta-value {
  margin: 0 0 14px;
  font-family: Baskerville, "Iowan Old Style", Georgia, serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.success-meta-note {
  margin: 0;
  color: #5d584f;
  font-size: 13px;
  line-height: 1.95;
}

.success-meta-note a {
  color: #8c6e3e;
  text-decoration: underline;
  text-decoration-color: rgba(140, 110, 62, 0.4);
  text-underline-offset: 3px;
}

/* Suggestions section */
.success-suggestions {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto clamp(72px, 10vw, 130px);
}

.success-suggestions-lede {
  max-width: 640px;
  margin: 0 0 clamp(36px, 4vw, 56px);
  color: #5d584f;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 2;
}

/* Closing quiet note */
.success-final-note {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: clamp(20px, 4vw, 60px);
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto clamp(96px, 12vw, 150px);
  padding: clamp(56px, 7vw, 88px) 0 clamp(48px, 6vw, 72px);
  border-top: 1px solid var(--line);
}

.success-final-note h2 {
  margin: 8px 0 18px;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 400;
  line-height: 1.32;
}

.success-final-note p {
  max-width: 520px;
  color: #5d584f;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 2.05;
}

/* 404-specific: action cards row */
.error-actions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 32px);
  width: min(var(--max), calc(100% - 40px));
  margin: clamp(56px, 8vw, 96px) auto;
}

.error-action-card {
  display: block;
  padding: clamp(32px, 3.5vw, 44px) clamp(24px, 2.5vw, 32px);
  background: #fbf8f3;
  border: 0.5px solid rgba(46, 38, 30, 0.16);
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.18s, background 0.18s, transform 0.2s;
}

.error-action-card:hover {
  border-color: rgba(191, 159, 104, 0.6);
  background: #fff;
  transform: translateY(-2px);
}

.error-action-card .eyebrow {
  display: block;
  margin: 0 0 12px;
  color: #8a826f;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.error-action-card h3 {
  margin: 0 0 12px;
  font-family: Baskerville, "Iowan Old Style", Georgia, serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.error-action-card p {
  margin: 0 0 16px;
  color: #5d584f;
  font-size: 13px;
  line-height: 1.95;
}

.error-action-card span {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #8c6e3e;
}

/* Mobile */
@media (max-width: 760px) {
  .success-meta,
  .error-actions-grid {
    grid-template-columns: 1fr;
  }
  .success-final-note {
    grid-template-columns: 1fr;
    align-items: start;
  }
}
