:root {
  --ink: #17201b;
  --muted: #68736c;
  --line: #d9ddd5;
  --paper: #f5f4ef;
  --soft: #ece9df;
  --forest: #1f3a2b;
  --moss: #66714a;
  --brass: #a68752;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(23, 32, 27, 0.14);
}

.content-page {
  background: #f7f4ed;
}

.content-main {
  padding-top: 92px;
}

.content-hero {
  max-width: 1080px;
  margin: 0 auto;
  padding: 72px 20px 32px;
}

.content-hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.15;
  margin: 10px 0 0;
}

.content-lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.content-body {
  max-width: 1080px;
  margin: 0 auto 80px;
  padding: 36px 20px 64px;
  background: #fff;
  border: 1px solid rgba(30, 58, 42, .12);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(30, 58, 42, .08);
}

.content-body > * {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.content-body h2,
.content-body h3 {
  color: var(--green-dark);
}

.content-body table {
  width: 100%;
  border-collapse: collapse;
}

.content-body th,
.content-body td {
  border: 1px solid rgba(30, 58, 42, .14);
  padding: 12px 14px;
  vertical-align: top;
}

.content-body th {
  width: 28%;
  background: rgba(30, 58, 42, .06);
  color: var(--green-dark);
  text-align: left;
}

.legal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.legal-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid rgba(166, 135, 82, .36);
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.legal-tabs a.is-current {
  border-color: var(--brass);
  background: var(--brass);
  color: var(--white);
}

.legal-section {
  padding: 30px 0;
  border-top: 1px solid rgba(166, 135, 82, .2);
}

.legal-section:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.legal-section h2 {
  margin: 0 0 18px;
  color: var(--forest);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.35;
}

.legal-section > p {
  margin: 0;
  line-height: 1.95;
}

.legal-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.legal-card {
  padding: 24px;
  border: 1px solid rgba(166, 135, 82, .26);
  border-radius: 18px;
  background: rgba(250, 248, 242, .78);
}

.legal-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(166, 135, 82, .14);
  color: var(--brass);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.legal-card h3 {
  margin: 0 0 10px;
  color: var(--forest);
  font-size: 20px;
  line-height: 1.35;
}

.legal-card p {
  min-height: 96px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.legal-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.legal-table {
  overflow: hidden;
  border: 1px solid rgba(166, 135, 82, .24);
  border-radius: 14px;
}

.content-body .legal-table th,
.content-body .legal-table td {
  padding: 16px 18px;
  border-color: rgba(166, 135, 82, .18);
  line-height: 1.8;
}

.content-body .legal-table th {
  width: 190px;
  background: rgba(31, 58, 43, .06);
  color: var(--forest);
  white-space: nowrap;
}

.legal-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-list li {
  position: relative;
  padding: 14px 18px 14px 42px;
  border: 1px solid rgba(166, 135, 82, .2);
  border-radius: 12px;
  background: rgba(250, 248, 242, .74);
  line-height: 1.75;
}

.legal-list li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brass);
}

.legal-note {
  padding: 18px 20px;
  border-left: 4px solid var(--brass);
  border-radius: 12px;
  background: rgba(166, 135, 82, .1);
  color: var(--forest);
  font-weight: 800;
}

@media (max-width: 640px) {
  .content-main {
    padding-top: 72px;
  }

  .content-hero {
    padding: 48px 16px 24px;
  }

  .content-body {
    margin-bottom: 48px;
    padding: 24px 16px 40px;
    border-radius: 12px;
  }

  .content-body th,
  .content-body td {
    display: block;
    width: 100%;
  }

  .content-body table,
  .content-body tbody,
  .content-body tr {
    display: block;
    width: 100%;
  }

  .content-body table {
    border-collapse: separate;
    border-spacing: 0;
  }

  .content-body tr {
    margin-bottom: 14px;
    border: 1px solid rgba(30, 58, 42, .14);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
  }

  .content-body th,
  .content-body .legal-table th {
    border: 0;
    background: #f0f0f0;
    padding: 14px 16px;
  }

  .content-body td,
  .content-body .legal-table td {
    border: 0;
    border-top: 1px solid rgba(30, 58, 42, .12);
    padding: 16px;
  }

  .legal-card-grid {
    grid-template-columns: 1fr;
  }

  .legal-card p {
    min-height: 0;
  }

  .legal-tabs a {
    flex: 1 1 100%;
  }
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px clamp(20px, 5vw, 64px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(10, 16, 13, 0.34), rgba(10, 16, 13, 0));
  box-shadow: none;
  backdrop-filter: blur(16px);
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(245, 244, 239, 0.92);
  box-shadow: 0 10px 40px rgba(23, 32, 27, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 500;
}

.brand small {
  margin-top: 2px;
  font-size: 11px;
  color: currentColor;
  opacity: 0.72;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 38px);
  font-size: 14px;
  font-weight: 700;
}

.global-nav a {
  position: relative;
  padding: 8px 0;
}

.global-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.global-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 0.25s ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
  background: #111b16;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0 0 auto;
}

.hero-media {
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: heroPhotoRise 9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform: scale(1) translateY(0);
  transform-origin: center;
}

.hero-shade {
  height: 100%;
  background:
    linear-gradient(90deg, rgba(10, 18, 14, 0.72) 0%, rgba(10, 18, 14, 0.42) 44%, rgba(10, 18, 14, 0.18) 100%),
    linear-gradient(180deg, rgba(10, 18, 14, 0.34) 0%, rgba(10, 18, 14, 0.05) 34%, rgba(10, 18, 14, 0.48) 100%);
}

@keyframes heroPhotoRise {
  from {
    transform: scale(1) translateY(0);
  }

  to {
    transform: scale(1.045) translateY(-10px);
  }
}

@keyframes heroFloatIn {
  from {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes heroPhotoRiseMobile {
  from {
    transform: scale(1) translateY(0);
  }

  to {
    transform: scale(1.035) translateY(-6px);
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100vh;
  max-width: 1040px;
  margin: 0 auto;
  padding: 28vh 24px 44px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--brass);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: clamp(56px, 6vw, 86px);
  font-weight: 400;
  line-height: 1.3;
  animation: heroFloatIn 1.25s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.hero-copy {
  max-width: 620px;
  margin: 18px 0 0;
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: 21px;
  line-height: 1.8;
  animation: heroFloatIn 1.15s cubic-bezier(0.16, 1, 0.3, 1) 0.28s;
}

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

.hero-actions {
  display: grid;
  width: min(720px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  animation: heroFloatIn 1.05s cubic-bezier(0.16, 1, 0.3, 1) 0.42s;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid currentColor;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border-color: var(--brass);
  color: var(--ink);
  background: var(--brass);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button-outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.button-dark {
  color: var(--white);
  background: var(--forest);
}

.hero-scroll {
  margin-top: auto;
  align-self: center;
  color: rgba(255, 255, 255, 0.78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  animation: heroFloatIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.56s;
}

.hero-scroll span {
  display: block;
  width: 14px;
  height: 14px;
  margin: 5px auto 0;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img,
  .hero h1,
  .hero-copy,
  .hero-actions,
  .hero-scroll {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
  }
}

.section-head h2,
.sell-lead h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.14;
}

.section-head p:not(.section-kicker) {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.9;
}

.section {
  min-width: 0;
  max-width: 1180px;
  margin: 0 auto;
  padding: 112px 24px;
}

.product-grid {
  display: grid;
  margin-top: 42px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(23, 32, 27, 0.08);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-thumb {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--soft);
}

.product-thumb-empty {
  display: grid;
  aspect-ratio: 4 / 3;
  place-items: center;
  color: rgba(166, 135, 82, 0.55);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  letter-spacing: 0.12em;
}

.live-product-card.is-soldout .product-thumb::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(23, 32, 27, 0.58);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  content: "SOLD OUT";
}

.product-card div {
  padding: 18px;
}

.product-card span,
.journal-card span {
  color: var(--brass);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.product-card h3,
.shop-card h3,
.journal-card h3 {
  margin: 10px 0 0;
  font-size: 18px;
  line-height: 1.45;
}

.journal-card h3 a {
  color: inherit;
  text-decoration: none;
}

.journal-card h3 a:hover {
  color: var(--brass);
}

.product-card p,
.journal-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.product-card .product-price {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 700;
}

.store-preview .product-grid {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  gap: 12px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(150px, 18vw, 190px);
  grid-template-columns: none;
  grid-template-rows: repeat(2, auto);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: auto;
  scrollbar-width: none;
  touch-action: auto;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

.store-preview .product-grid.is-loading {
  display: block;
  min-height: 190px;
  cursor: default;
}

.product-loading {
  margin: 0;
  padding: 48px 20px;
  border: 1px solid rgba(166, 135, 82, 0.18);
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
}

.store-preview {
  overflow-x: hidden;
}

@keyframes tlMarqueeLane {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(var(--marquee-distance, -50%), 0, 0);
  }
}

.store-preview .product-grid.is-marquee,
.buy-results-grid.is-marquee {
  backface-visibility: hidden;
  will-change: scroll-position;
}

.store-preview .product-grid.is-marquee-paused,
.buy-results-grid.is-marquee-paused,
.store-preview .product-grid.is-dragging,
.buy-results-grid.is-dragging {
  animation-play-state: paused;
}

.store-preview .product-grid::-webkit-scrollbar {
  display: none;
}

.store-preview .product-grid.is-dragging,
.buy-results-grid.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.store-preview .product-grid.is-dragging a,
.buy-results-grid.is-dragging a {
  pointer-events: none;
}

.store-preview .product-card {
  box-shadow: 0 12px 34px rgba(23, 32, 27, 0.07);
}

.store-preview .product-card img,
.store-preview .product-thumb-empty {
  aspect-ratio: 4 / 3;
}

.store-preview .product-card div {
  padding: 11px;
}

.store-preview .product-card h3 {
  margin-top: 7px;
  font-size: 13px;
  line-height: 1.4;
}

.store-preview .product-card p {
  margin-top: 7px;
}

.store-preview .product-card .product-price {
  font-size: 12px;
}

.store-preview .product-card span {
  font-size: 9px;
}

.section-action {
  margin-top: 30px;
}

.sell-section {
  overflow-x: hidden;
  padding: 108px 24px;
  background:
    linear-gradient(90deg, rgba(31, 58, 43, 0.07), rgba(166, 135, 82, 0.08)),
    var(--soft);
}

.sell-inner {
  display: grid;
  min-width: 0;
  max-width: 1180px;
  margin: 0 auto;
  gap: 42px;
}

.sell-lead {
  max-width: 660px;
}

.sell-lead p:not(.section-kicker) {
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.9;
}

.sell-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.sell-panel article {
  min-height: 280px;
  padding: 28px;
  background: var(--white);
}

.sell-panel span {
  color: var(--brass);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.sell-panel h3 {
  margin: 28px 0 0;
  font-size: 22px;
  line-height: 1.45;
}

.sell-panel p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.method-panel .button {
  width: 100%;
  margin-top: 28px;
}

.buy-results {
  min-width: 0;
  overflow-x: hidden;
  margin-top: 34px;
}

.buy-results .compact h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.18;
}

.buy-results-grid {
  display: grid;
  width: 100%;
  min-width: 0;
  margin-top: 22px;
  grid-auto-flow: column;
  grid-auto-columns: clamp(460px, 44vw, 560px);
  grid-template-columns: none;
  grid-template-rows: repeat(2, auto);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: auto;
  scrollbar-width: none;
  touch-action: auto;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

.buy-results-grid::-webkit-scrollbar {
  display: none;
}

.buy-result-card {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  min-height: 188px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  color: inherit;
  text-decoration: none;
}

.buy-result-photo {
  display: grid;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--soft);
  place-items: center;
  color: var(--brass);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
}

.buy-result-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.buy-result-photo-empty {
  background: linear-gradient(135deg, rgba(166, 135, 82, .16), rgba(31, 58, 43, .08));
}

.buy-result-body {
  min-width: 0;
  padding: 18px;
}

.buy-result-body time {
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
}

.buy-result-body h4 {
  margin: 10px 0 0;
  display: -webkit-box;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.buy-result-card:hover h4 {
  color: var(--brass);
}

.buy-result-body p {
  margin: 12px 0 0;
  color: var(--muted);
  display: -webkit-box;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.buy-result-card.is-hidden {
  display: none;
}

.buy-results-more-wrap {
  display: flex;
  margin-top: 24px;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.buy-results-more-button,
.buy-results-close-button {
  display: inline-flex;
  min-width: min(100%, 240px);
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.buy-results-more-button {
  border-color: var(--forest);
  color: var(--forest);
  font-weight: 700;
}

.buy-results-close-button {
  color: var(--muted);
}

.buy-results-more-button:hover,
.buy-results-close-button:hover {
  border-color: var(--brass);
  color: var(--brass);
}

.buy-results-more-button.is-hidden,
.buy-results-close-button.is-hidden {
  display: none;
}

@media (max-width: 520px) {
  .buy-results-more-button,
  .buy-results-close-button {
    flex: 1 1 100%;
  }
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-weight: 700;
}

.text-link.dark {
  color: var(--forest);
}

.text-link::after {
  margin-left: 10px;
  content: "→";
}

.store-grid {
  display: grid;
  margin-top: 42px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.store-card-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.shop-card {
  display: flex;
  min-height: 360px;
  padding: 28px;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--white);
}

.shop-card.online {
  background: #202820;
  color: var(--white);
}

.shop-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid currentColor;
  color: var(--brass);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
}

.status.open {
  color: var(--moss);
}

.shop-card-top p {
  margin: 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
}

.online .shop-card-top p,
.online dt {
  color: rgba(255, 255, 255, 0.58);
}

.shop-card dl {
  display: grid;
  margin: 28px 0 0;
  gap: 1px;
  background: var(--line);
}

.shop-card dl > div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  padding: 14px 0;
  background: var(--white);
}

.online dl > div {
  background: #202820;
}

.shop-card dt {
  color: var(--muted);
  font-size: 12px;
}

.shop-card dd {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.shop-card dd a {
  color: inherit;
}

.card-link {
  display: inline-flex;
  margin-top: auto;
  padding-top: 28px;
  align-items: center;
  color: var(--brass);
  font-weight: 700;
}

.card-link::after {
  margin-left: 10px;
  content: "→";
}

.card-actions {
  display: grid;
  margin-top: auto;
  padding-top: 28px;
  grid-template-columns: 1fr;
  gap: 12px;
}

.card-actions .card-link {
  margin-top: 0;
  padding-top: 0;
}

.x-account-link {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid #121a16;
  background: #121a16;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.x-account-link::after {
  margin-left: 10px;
  content: "→";
}

.store-detail {
  display: grid;
  max-width: 980px;
  margin: 56px auto 0;
  gap: 34px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.store-detail-head {
  display: grid;
  padding: 34px;
  gap: 12px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #ffffff 0%, #f2efe7 100%);
}

.store-detail-head .section-kicker {
  margin-bottom: 0;
}

.store-detail-head h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.18;
}

.store-detail-head p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.store-detail-block h3 {
  margin: 0;
  padding: 20px 26px;
  background: var(--soft);
  color: var(--ink);
  font-size: 22px;
  font-weight: 500;
}

.store-detail-block > p {
  margin: 26px 0 0;
  padding: 0 26px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.store-info-layout {
  display: grid;
  margin-top: 26px;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.store-map {
  min-height: 250px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--soft);
}

.store-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.store-info-list {
  display: grid;
  align-content: start;
  margin: 0;
  border-top: 1px solid var(--line);
}

.store-info-list > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.store-info-list dt {
  color: var(--moss);
  font-size: 14px;
  font-weight: 700;
}

.store-info-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
}

.store-info-list a {
  color: var(--forest);
  font-weight: 700;
}

.store-photo {
  margin: 18px 0 0;
  overflow: hidden;
  border: 8px solid rgba(23, 32, 27, 0.14);
  background: var(--white);
}

.store-photo img {
  width: 100%;
  aspect-ratio: 2048 / 1365;
  object-fit: cover;
}

.journal {
  padding-top: 32px;
}

.journal-grid {
  display: grid;
  margin-top: 42px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.journal-grid-featured {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  background: transparent;
  border: 0;
}

.journal-card {
  min-height: 250px;
  padding: 28px;
  background: var(--paper);
}

.journal-card-featured {
  display: flex;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0;
  color: inherit;
  text-decoration: none;
}

.journal-card-body {
  display: grid;
  padding: 16px;
  gap: 10px;
}

.journal-card-image {
  display: grid;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  place-items: center;
  background: #d8ddd4;
}

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

.journal-card-image span {
  color: var(--brass);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.journal-card.is-hidden {
  display: none;
}

.journal-more-wrap {
  display: flex;
  margin-top: 28px;
  justify-content: center;
}

.journal-more-button {
  min-width: min(100%, 420px);
  min-height: 52px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  transition: border-color .2s ease, color .2s ease;
}

.journal-more-button:hover {
  border-color: var(--brass);
  color: var(--brass);
}

.journal-more-button.is-hidden {
  display: none;
}

.journal-empty {
  display: grid;
  min-height: 150px;
  margin-top: 42px;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.46);
}

.journal-empty p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

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

.archive-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 150px 24px 104px;
}

.archive-hero {
  margin-bottom: 42px;
}

.archive-hero h1 {
  margin: 10px 0 16px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.16;
}

.archive-hero p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.archive-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.archive-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
}

.archive-card-link {
  display: grid;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.archive-card-image {
  display: grid;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  place-items: center;
  background: #d8ddd4;
}

.archive-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.archive-card-image-empty span {
  color: var(--brass);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.archive-card:hover .archive-card-image img {
  transform: scale(1.04);
}

.archive-card-body {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.archive-card-body time {
  color: var(--brass);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.archive-card-body h2 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.55;
}

.archive-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.archive-empty {
  display: grid;
  min-height: 180px;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.54);
}

.archive-empty p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.archive-pagination {
  margin-top: 42px;
}

.archive-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.archive-pagination .page-numbers {
  display: inline-grid;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.archive-pagination .page-numbers.current,
.archive-pagination .page-numbers:hover {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

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

.single-main {
  max-width: 980px;
  margin: 0 auto;
  padding: 150px 24px 96px;
}

.single-article {
  display: grid;
  gap: 34px;
}

.single-hero h1 {
  max-width: 860px;
  margin: 0;
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.18;
}

.single-meta {
  display: flex;
  margin-top: 22px;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--brass);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.single-eyecatch {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--soft);
}

.single-eyecatch img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.single-content {
  padding: clamp(24px, 5vw, 52px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 17px;
  line-height: 2;
}

.single-content > *:first-child {
  margin-top: 0;
}

.single-content > *:last-child {
  margin-bottom: 0;
}

.single-content a {
  color: var(--forest);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.single-content img {
  height: auto;
  margin: 24px auto;
}

.contact-page {
  background: linear-gradient(180deg, #f5f4ef 0%, #ece9df 100%);
}

.contact-page .site-header {
  color: var(--ink);
  background: rgba(245, 244, 239, 0.94);
  box-shadow: 0 10px 40px rgba(23, 32, 27, 0.08);
}

.contact-main {
  max-width: 980px;
  margin: 0 auto;
  padding: 150px 24px 96px;
}

.contact-hero {
  margin-bottom: 38px;
}

.contact-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: clamp(48px, 7vw, 78px);
  font-weight: 400;
  line-height: 1.12;
}

.contact-hero p:not(.section-kicker) {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.9;
}

.contact-content {
  display: grid;
  gap: 24px;
}

.contact-tel-card,
.contact-form-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 60px rgba(23, 32, 27, 0.08);
}

.contact-tel-card {
  display: grid;
  padding: 28px;
  gap: 8px;
  text-align: center;
}

.contact-tel-card p,
.contact-tel-card span {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-tel-card a {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
}

.contact-form-card {
  padding: clamp(24px, 5vw, 42px);
}

.contact-form-card h2 {
  margin: 0 0 26px;
  padding-left: 14px;
  border-left: 4px solid var(--brass);
  font-size: 20px;
}

.form-group {
  display: grid;
  margin-bottom: 18px;
  gap: 8px;
}

.form-group label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.form-group label span {
  display: inline-flex;
  margin-left: 8px;
  padding: 2px 7px;
  color: var(--white);
  background: var(--brass);
  font-size: 11px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.form-group input,
.form-group select {
  min-height: 52px;
  padding: 0 14px;
}

.form-group textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid rgba(166, 135, 82, 0.28);
  outline-offset: 2px;
  border-color: var(--brass);
}

.contact-submit {
  width: 100%;
  margin-top: 8px;
  border-color: var(--brass);
}

.privacy-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.privacy-note a {
  color: var(--forest);
  font-weight: 700;
}

.success-msg {
  display: grid;
  min-height: 240px;
  place-items: center;
  text-align: center;
}

.success-msg[hidden] {
  display: none;
}

.success-msg h2 {
  margin: 0;
  border: 0;
  padding: 0;
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: 38px;
  font-weight: 400;
}

.success-msg p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.site-footer {
  display: grid;
  padding: 70px clamp(24px, 6vw, 72px) 34px;
  grid-template-columns: minmax(320px, 460px) minmax(320px, 420px);
  justify-content: center;
  gap: clamp(64px, 12vw, 220px);
  color: var(--white);
  background: #131a16;
}

.site-footer p {
  max-width: 430px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.95;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 36px;
  align-content: start;
}

.footer-nav {
  display: grid;
  align-content: start;
  grid-template-columns: 1fr;
  gap: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 700;
}

.footer-nav a {
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-legal {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.6;
}

.footer-legal a {
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer small {
  grid-column: 1 / -1;
  justify-self: start;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

@media (max-width: 860px) {
  .site-header {
    padding: 16px 20px;
  }

  .menu-button {
    display: block;
  }

  .global-nav {
    position: fixed;
    inset: 77px 16px auto;
    display: none;
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .global-nav.is-open {
    display: flex;
  }

  .global-nav a {
    min-height: 48px;
    border-bottom: 1px solid var(--line);
  }

  .hero,
  .hero-inner {
    min-height: 100svh;
  }

  .hero-media {
    top: 0;
    height: 100%;
    background: #111b16;
  }

  .hero-media img {
    object-fit: cover;
    object-position: center center;
    transform: scale(1);
    animation: heroPhotoRiseMobile 8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(10, 18, 14, 0.52) 0%, rgba(10, 18, 14, 0.34) 34%, rgba(10, 18, 14, 0.78) 100%),
      linear-gradient(90deg, rgba(10, 18, 14, 0.68) 0%, rgba(10, 18, 14, 0.18) 100%);
  }

  .hero-inner {
    padding: 30vh 20px 28px;
    align-items: flex-start;
    text-align: left;
  }

  .hero h1 {
    font-size: 44px;
    line-height: 1.24;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.9;
  }

  .hero-actions {
    width: min(100%, 650px);
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 28px;
  }

  .hero-actions .button {
    min-height: 58px;
    font-size: 17px;
  }

  .hero-scroll {
    margin-top: auto;
  }

  .section-head h2,
  .sell-lead h2 {
    font-size: 42px;
  }

  .section {
    padding: 76px 20px;
  }

  .product-grid,
  .journal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-card div,
  .journal-card {
    padding: 18px;
  }

  .product-card h3,
  .journal-card h3 {
    font-size: 18px;
  }

  .product-card p,
  .journal-card p {
    font-size: 13px;
    line-height: 1.65;
  }

  .journal-card {
    min-height: 0;
  }

  .journal-grid-featured {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .journal-card-featured {
    min-height: 0;
  }

  .journal-card-image {
    min-height: 0;
  }

  .contact-main {
    padding: 124px 20px 76px;
  }

  .single-main {
    padding: 124px 20px 76px;
  }

  .single-content {
    font-size: 15px;
    line-height: 1.9;
  }

  .contact-tel-card {
    padding: 24px 18px;
  }

  .contact-form-card {
    padding: 24px 18px;
  }

  .store-grid {
    grid-template-columns: 1fr;
  }

  .store-detail {
    margin-top: 38px;
    gap: 28px;
    padding-top: 32px;
  }

  .store-detail-head {
    padding: 24px 20px;
  }

  .store-detail-head h3 {
    font-size: 34px;
  }

  .store-detail-head p:last-child {
    font-size: 14px;
  }

  .store-detail-block h3 {
    padding: 18px 20px;
    font-size: 20px;
  }

  .store-detail-block > p {
    padding: 0 20px;
    font-size: 15px;
  }

  .store-info-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .store-map {
    min-height: 230px;
  }

  .store-info-list > div {
    grid-template-columns: 88px 1fr;
    gap: 16px;
  }

  .store-info-list dd {
    font-size: 15px;
  }

  .store-photo {
    border-width: 5px;
  }

  .sell-section {
    padding: 76px 20px;
  }

  .sell-inner,
  .sell-panel {
    grid-template-columns: 1fr;
  }

  .buy-results-grid {
    grid-auto-columns: min(56vw, 240px);
    grid-template-columns: none;
    grid-template-rows: repeat(2, auto);
    gap: 10px;
  }

  .buy-result-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .buy-result-photo {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .buy-result-body {
    padding: 10px;
  }

  .buy-result-body time {
    font-size: 10px;
  }

  .buy-result-body h4 {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.4;
    -webkit-line-clamp: 3;
  }

  .buy-result-body p {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 24px 24px;
  }

  .site-footer .brand-mark {
    width: 48px;
    height: 48px;
  }

  .site-footer p {
    max-width: none;
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.75;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    font-size: 13px;
  }

  .footer-legal {
    grid-template-columns: 1fr;
    font-size: 11px;
  }

  .site-footer small {
    font-size: 12px;
  }

  .archive-main {
    padding: 118px 20px 78px;
  }

  .archive-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .archive-card-body {
    padding: 18px;
  }

  .archive-card-body h2 {
    font-size: 17px;
  }
}

@media (max-width: 520px) {
  .brand strong {
    font-size: 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .section-head h2,
  .sell-lead h2 {
    font-size: 34px;
  }

  #online-title {
    font-size: 30px;
    text-align: left;
    white-space: nowrap;
  }

  .button-row .button,
  .text-link {
    width: 100%;
  }

  .shop-card {
    padding: 22px;
  }

  .product-card div,
  .journal-card {
    padding: 16px;
  }

  .product-card h3,
  .journal-card h3 {
    font-size: 16px;
    line-height: 1.45;
  }

  .product-card p,
  .journal-card p {
    font-size: 12px;
  }

  .product-card span,
  .journal-card span {
    font-size: 10px;
  }

  .journal-card {
    min-height: 0;
  }

  .journal-card-image {
    min-height: 0;
  }

  .journal-card-body {
    padding: 14px;
  }

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

  .journal-grid-featured .journal-card-body {
    padding: 10px;
    gap: 6px;
  }

  .journal-grid-featured .journal-card h3 {
    font-size: 12px;
    line-height: 1.45;
  }

  .journal-grid-featured .journal-card p {
    display: none;
  }

  .journal-grid-featured .journal-card span {
    font-size: 9px;
  }

  .buy-results .compact h3 {
    font-size: 28px;
  }

  .buy-result-card {
    grid-template-columns: 1fr;
  }

  .buy-result-photo {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .buy-result-body {
    padding: 10px;
  }

  .buy-result-body h4 {
    font-size: 12px;
    line-height: 1.4;
    -webkit-line-clamp: 3;
  }

  .archive-hero h1 {
    font-size: 36px;
  }

  .archive-card-grid {
    grid-template-columns: 1fr;
  }

  .archive-card-body {
    padding: 16px;
  }

  .archive-card-body h2 {
    font-size: 16px;
  }

  .archive-card-body p {
    font-size: 13px;
  }
}
