@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700&family=Noto+Sans+JP:wght@300;400;500;600&display=swap");

:root {
  --color-bg: #f7f5f0;
  --color-bg-alt: #efece3;
  --color-surface: #ffffff;
  --color-ink: #1c1a17;
  --color-ink-soft: #5a5650;
  --color-gold: #a8873f;
  --color-gold-light: #cbae6b;
  --color-gold-deep: #8a6d2e;
  --color-line: #e2ddd0;
  --shadow-card: 0 10px 30px rgba(28, 26, 23, 0.06);
  --shadow-card-hover: 0 16px 40px rgba(28, 26, 23, 0.1);
  --font-serif: "Shippori Mincho", serif;
  --font-sans: "Noto Sans JP", sans-serif;
}
.color-tag-01{
  background-color:#f4488b;
}
.color-tag-02{
  background-color:#ff9462;
}
.color-tag-03{
  background-color:#fb9ca8;
}
.color-tag-04{
  background-color:#aca8e0;
}
.color-tag-05{
  background-color:#8b0000;
}
.color-tag-none{
  background-color:#c0c0c0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-ink);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}
.sp-only{
  display: none;
}


/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--color-ink);
}


.brand-text {
  font-family: var(--font-serif);
  font-size: 19px;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  gap: 32px;
}

.site-nav a {
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--color-ink-soft);
  position: relative;
  padding-bottom: 4px;
}

.site-nav a:hover {
  color: var(--color-gold-deep);
}

@media (max-width: 767px) {
  .site-nav {
    display: none;
  }
}
span.brand-text-sub {
    display: block;
    font-size: 14px;
    text-align: center;
}
/* ---------- Hamburger ---------- */
.hamburger-morph {
  z-index: 1000;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: none;
}

@media (max-width: 767px) {
  .hamburger-morph {
    display: block;
  }
}

.hamburger-morph__icon {
  width: 100%;
  height: 100%;
}

.hamburger-morph__line {
  fill: none;
  stroke: var(--color-ink);
  stroke-width: 2;
}

.hamburger-morph__line:nth-child(1) { stroke-dasharray: 60 207; }
.hamburger-morph__line:nth-child(2) { stroke-dasharray: 60 60; }
.hamburger-morph__line:nth-child(3) { stroke-dasharray: 60 207; }

.nav-morph__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-morph__close:hover {
  color: var(--color-gold-light);
}

.nav-morph {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: rgba(28, 26, 23, 0.97);
  clip-path: circle(0% at var(--menu-origin-x, 100%) var(--menu-origin-y, 0%));
  transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 900;
  pointer-events: none;
}

.nav-morph.active {
  clip-path: circle(150% at var(--menu-origin-x, 100%) var(--menu-origin-y, 0%));
  pointer-events: auto;
}

.nav-morph__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.nav-morph__list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.nav-morph__item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.nav-morph.active .nav-morph__item { opacity: 1; transform: translateY(0); }
.nav-morph.active .nav-morph__item:nth-child(1) { transition-delay: 0.3s; }
.nav-morph.active .nav-morph__item:nth-child(2) { transition-delay: 0.4s; }
.nav-morph.active .nav-morph__item:nth-child(3) { transition-delay: 0.5s; }

.nav-morph__link {
  display: inline-block;
  padding: 18px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.nav-morph__link:hover {
  color: var(--color-gold-light);
}

/* ---------- Section headings ---------- */
.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  margin: 0 0 10px;
  text-align: center;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 32px);
  text-align: center;
  margin: 0 0 14px;
  letter-spacing: 0.04em;
}
.section-title span {
    font-family: none;
}

.section-lead {
  text-align: center;
  color: var(--color-ink-soft);
  font-size: 14px;
  margin: 0 0 40px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 160px 0;
  background: linear-gradient(180deg, rgba(10, 9, 8, 0.55) 0%, rgba(10, 9, 8, 0.72) 100%), url("../img/mv.webp");
  background-size: cover;
  background-position: top;
  text-align: center;
}

.hero-eyebrow {
  color: var(--color-gold-light);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4.5vw, 46px);
  line-height: 1.5;
  margin: 0 0 20px;
  letter-spacing: 0.03em;
  color: #fff;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin: 0 0 36px;
}

.btn-gold {
  display: inline-block;
  padding: 15px 44px;
  border: 1px solid var(--color-gold);
  color: var(--color-gold-deep);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.15em;
  background: transparent;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-gold:hover {
  background: var(--color-gold);
  color: #fff;
}

.hero .btn-gold {
  border-color: var(--color-gold-light);
  color: var(--color-gold-light);
}

.hero .btn-gold:hover {
  background: var(--color-gold-light);
  color: var(--color-ink);
}

/* ---------- Map section ---------- */
.map-section {
  padding: 90px 0;
}

.map-section.alt,
.about-section {
  background: var(--color-bg-alt);
}

.japan-map {
  position: relative;
  width: 100%;
  max-width: 760px;
  aspect-ratio: 1200 / 1125;
  margin: 0 auto;
}

.area-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: 6px;
  padding: 10px 8px;
  text-decoration: none;
  color: var(--color-ink);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.area-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 3px;
  border-radius: 2px;
  background: var(--area-color, var(--color-gold));
}

.area-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-gold-light);
  z-index: 5;
}

.area-name {
  font-family: var(--font-serif);
  font-size: clamp(10px, 1.6vw, 17px);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.area-pref {
  font-size: clamp(9px, 1vw, 11px);
  color: var(--color-ink-soft);
  line-height: 1.6;
}

/* Positions mirror the reference map (base 1200 x 1125) */
.area-hokkaido      { --area-color: #7fa8d9; left: 71.5%; top: 1%;   width: 27%;   height: 27%; background: aliceblue;}
.area-tohoku         { --area-color: #8fc7d9; left: 78.5%; top: 30%;  width: 20%; height: 27.5%; background: #f2fcff; }
.area-kanto          { --area-color: #8fcf9c; left: 80%;   top: 60%;  width: 20%;   height: 22%; background: #f9fffa;}
.area-koshinetsu     { --area-color: #d9d68f; left: 57.5%; top: 50%;  width: 20%;   height: 18.5%; background: #fffef1;}
.area-tokai          { --area-color: #d9b98f; left: 57.5%; top: 69%;  width: 20%;   height: 20.5%; background: #fbf5ec;}
.area-kansai         { --area-color: #d99b8f; left: 39%;   top: 55%;  width: 17%;   height: 34.5%; background: #fff8f6;}
.area-chugoku        { --area-color: #d98fc0; left: 17.5%;   top: 55%;  width: 20.5%; height: 17%; background: #fff5fc;}
.area-shikoku        { --area-color: #b98fd9; left: 17.5%; top: 74%;  width: 17%;   height: 14%; background: #fbf6ff;}
.area-kyushu         { --area-color: #7f8fd9; left: 0;   top: 71%;  width: 16.5%; height: 24%; background: #f3f5ff;}

@media (max-width: 640px) {
  .japan-map {
    max-width: 420px;
  }
  .area-pref {
    display: none;
  }
}

/* ---------- Filter panel (shop list) ---------- */
.filter-panel {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  padding: 24px;
}

.filter-search {
  width: 100%;
  border: 1px solid var(--color-line);
  padding: 12px 14px;
  font: inherit;
  background: var(--color-bg);
  color: var(--color-ink);
}

.filter-search:focus {
  outline: none;
  border-color: var(--color-gold);
}

.filter-group-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--color-ink-soft);
  margin-bottom: 6px;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  padding: 7px 14px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: var(--color-bg);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.filter-tag:has(input:checked) {
  border-color: var(--color-gold);
  color: var(--color-gold-deep);
  background: #fbf4e3;
}

.filter-checkbox {
  accent-color: var(--color-gold-deep);
}

/* ---------- Tabs ---------- */
.c-tab {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}

.tab-radio {
  display: none;
}

.tab-title {
  order: -1;
  display: inline-block;
  padding: 12px 18px;
  border: 1px solid var(--color-line);
  border-bottom: none;
  background: var(--color-surface);
  color: var(--color-ink-soft);
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 0.05em;
  margin-right: 6px;
}

.tab-radio:checked + .tab-title {
  color: var(--color-ink);
  background: var(--color-bg-alt);
  border-color: var(--color-gold-light);
}

.tab-content {
  display: none;
  width: 100%;
  order: 1;
  border: 1px solid var(--color-line);
  padding: 24px;
  background: var(--color-surface);
}

.tab-radio:checked + .tab-title + .tab-content {
  display: block;
}

/* ---------- Banner / shop list ---------- */
.banner-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.banner-item {
  min-height: 100px;
}

.banner-link {
  display: block;
  width: 100%;
  height: 147.78px;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  background-size: cover;
  background-position: center;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.banner-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-gold-light);
}

.banner-image {
  width: 100%;
  height: auto;
}

.banner-body {
  padding: 16px;
}

.banner-pref,
.banner-name,
.banner-arrow {
  display: none;
}

.card-labels {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: calc(100% - 16px);
}

.card-label {
  display: inline-block;
  padding: 4px 9px;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.04em;
  background: rgba(28, 26, 23, 0.75);
  color: #fff;
}

.filter-result-note {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--color-ink-soft);
}

.filter-empty-message {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--color-ink-soft);
}

@media (max-width: 767px) {
  .banner-list {
    grid-template-columns: 1fr;
  }
}

/* ---------- Listing (top page featured) ---------- */
.listing-section {
  padding: 90px 0;
  background: var(--color-bg-alt);
}

.listing-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pickup-card__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--color-ink);
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pickup-card__link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-gold-light);
}

.pickup-card__banner {
  display: block;
  width: 100%;
  height: 0;
  background-color: var(--color-bg-alt);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 40%;
}

.pickup-card__body {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
}

.pickup-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
    width: 50%;
  }

.pickup-card__pref {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--color-gold-deep);
  border: 1px solid var(--color-gold-light);
  padding: 2px 8px;
  flex-shrink: 0;
}

.pickup-card__name {
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: 0.02em;
}

.pickup-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  width: 50%;
  justify-content: flex-end;
  align-items: center;
}

.pickup-pr {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 50%;
  padding: 0 12px;
  margin: 0 auto;
}
@media (max-width: 767px) {
.pickup-card__body {
    flex-wrap: wrap;
}
.pickup-card__head,
.pickup-tags {
    width: 100%;
    justify-content: flex-start;
}
.pickup-tags .pickup-tag {
    width: calc(94% / 4);
    font-size: 9px;
    padding: 1px;
}


.pickup-pr {
    width: 100%;
}
.pickup-conditions {
    width: 100%;
}
.pickup-conditions-table,
.pickup-conditions-table th {
    text-align: center;
}
}

.pickup-pr__icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background: url("../img/pr_05.png") center / contain no-repeat;
}

.pickup-pr__viewport {
  flex: 1;
  overflow: hidden;
}

.pickup-pr__text {
  display: inline-block;
  margin: 0;
  padding-left: 100%;
  white-space: nowrap;
  color: var(--color-ink-soft);
  font-size: 18px;
  animation: pickup-pr-scroll 16s linear infinite;
}

@keyframes pickup-pr-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.pickup-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  color: #fff;
  width: 77.75px;
  text-align: center;
}

.pickup-conditions-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 13px;
}

.pickup-conditions-table tr {
  border: 1px solid var(--color-line);
}


.pickup-condition-label {
  width: 16%;
  padding: 0;
  background: var(--color-gold);
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
}

.pickup-condition-value {
  width: 28%;
  padding: 0.5rem 0 0.5rem 0.3rem;
  background: var(--color-surface);
  color: var(--color-ink);
  border-left: 1px solid var(--color-line);
}
.pickup-condition-value-text{
  overflow: hidden;
    margin: 0 0.3rem;
}

@media (max-width: 480px) {
  .pickup-conditions-table,
  .pickup-conditions-table tbody,
  .pickup-conditions-table tr,
  .pickup-conditions-table th,
  .pickup-conditions-table td {
    display: block;
    width: 100%;
  }

  .pickup-condition-label {
    text-align: left;
  }

  .pickup-condition-value {
    border-left: none;
    border-bottom: 1px solid var(--color-line);
  }
}

/* ---------- About ---------- */
.about-section {
  padding: 90px 0;
}

.about-inner {
  max-width: 720px;
}

/* ---------- To top button ---------- */
.to-top-button {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--color-ink);
  color: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(28, 26, 23, 0.25);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
  z-index: 1000;
}

.to-top-button.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top-button:hover {
  background: var(--color-gold-deep);
}

.to-top-icon {
  width: 20px;
  height: 20px;
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid var(--color-line);
}

.footer-copy {
  margin: 0;
  font-size: 12px;
  color: var(--color-ink-soft);
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .hero { padding: 70px 0 56px; }
  .map-section, .listing-section, .about-section { padding: 56px 0; }
  .filter-panel { padding: 18px; }
  .tab-content { padding: 16px; }
  .sp-only{
  display: block;
}
}

/* ---------- Age gate ---------- */
html.age-gate-locked,
html.age-gate-locked body {
  overflow: hidden;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(180deg, rgba(10, 9, 8, 0.82) 0%, rgba(10, 9, 8, 0.9) 100%), url("../img/mv.webp");
  background-size: cover;
  background-position: center;
}

.age-gate__panel {
  width: 100%;
  max-width: 480px;
  padding: 40px 32px;
  background: var(--color-surface);
  text-align: center;
  box-shadow: var(--shadow-card-hover);
}

.age-gate__brand {
  margin: 0 0 20px;
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--color-ink);
}

.age-gate__brand-sub {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--color-ink-soft);
}

.age-gate__text {
  margin: 0 0 28px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-ink-soft);
}

.age-gate__btn {
  display: block;
  width: 100%;
  padding: 14px;
  margin-bottom: 12px;
  border: 1px solid var(--color-line);
  background: var(--color-bg);
  color: var(--color-ink);
  font: inherit;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.age-gate__btn-sub {
  display: block;
  font-size: 11px;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.age-gate__btn--enter {
  border-color: var(--color-gold);
  background: var(--color-gold);
  color: #fff;
}

.age-gate__btn--enter:hover {
  background: var(--color-gold-deep);
  border-color: var(--color-gold-deep);
}

.age-gate__btn--leave:hover {
  border-color: var(--color-ink-soft);
}

/* テーブル箇所　一旦非表示 */
table.pickup-conditions-table {
    display: none;
}
