:root {
  --bg: #f7f4ef;
  --page-edge: #eee3e0;
  --card: #fffdf9;
  --text: #4a453f;
  --muted: #948c82;
  --line: #ded7cd;
  --accent: #bba571;
  --accent-soft: #e6ddca;
  --button: #4f4942;
  --button-text: #fffdf9;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Montserrat", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --content-mobile: calc(100% - 48px);
  --content-desktop: min(calc(100% - 96px), 1120px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--page-edge);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; }
h1, h2, h3, p { margin-top: 0; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--button);
  color: var(--button-text);
  padding: 8px 12px;
  border-radius: 999px;
}
.skip-link:focus { transform: translateY(0); }

.site-shell {
  width: 100%;
  min-height: 100svh;
  margin: 0 auto;
  background: var(--bg);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

.site-header {
  width: 100%;
  background: rgba(247, 244, 239, 0.94);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  width: var(--content-mobile);
  max-width: 1120px;
  margin: 0 auto;
  height: 72px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo,
.menu-logo,
.footer-logo {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1;
}
.header-logo { font-size: 21px; white-space: nowrap; }
.menu-button,
.menu-close {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-button {
  width: 38px;
  height: 38px;
  display: grid;
  gap: 5px;
  align-content: center;
  justify-content: center;
}
.menu-button span {
  width: 27px;
  height: 1px;
  background: var(--text);
  display: block;
}
.desktop-nav { display: none; }

.menu-panel {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  z-index: 100;
  background: var(--bg);
  padding: 24px 22px;
}
.menu-panel-inner {
  min-height: 100%;
  border: 1px solid var(--line);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
}
.menu-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}
.menu-logo { font-size: 28px; margin: 0; }
.menu-close { font-size: 11px; letter-spacing: 0.18em; }
.menu-list {
  padding: 38px 0 28px;
  display: grid;
  gap: 18px;
}
.menu-list a {
  font-size: 20px;
  line-height: 1.4;
  display: flex;
  gap: 14px;
  align-items: baseline;
  border-bottom: 1px solid rgba(222, 215, 205, 0.8);
  padding-bottom: 16px;
}
.menu-list span {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
}
.menu-actions { margin-top: auto; display: grid; gap: 14px; }

.section {
  width: var(--content-mobile);
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 0;
}
.hero {
  padding-top: 46px;
  padding-bottom: 64px;
  min-height: calc(100svh - 72px);
}
.hero-copy {
  text-align: center;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.eyebrow,
.section-kicker,
.card-label,
.tagline-en,
.footer-sub {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.eyebrow { margin: 0 0 24px; font-size: 14px; }

h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 13vw, 62px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0.045em;
  margin: 0 0 23px;
  text-align: center;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
}
.hero-lead {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.065em;
  margin-bottom: 42px;
}
.hero-image-frame {
  margin: 0 auto;
  background: var(--card);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  width: 100%;
}
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.tagline-en { text-align: center; margin: 24px 0 30px; }
.hero-actions,
.contact-actions { display: grid; gap: 16px; }
.button {
  min-height: 56px;
  border-radius: 8px;
  padding: 14px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}
.button:hover { transform: translateY(-1px); opacity: 0.92; }
.button-primary { background: var(--button); color: var(--button-text); }
.button-outline { border: 1px solid var(--button); color: var(--button); background: rgba(255,255,255,0.14); }

.about { border-top: 1px solid var(--line); }
.section-kicker { font-weight: 700; color: var(--accent); margin-bottom: 12px; }
h2 {
  font-size: clamp(23px, 6.8vw, 34px);
  line-height: 1.45;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
h3 { font-size: 16px; line-height: 1.65; margin-bottom: 8px; }
.narrow-text p { margin-bottom: 20px; }
.section-text,
.narrow-text,
.promise-card p,
.service-list p,
.store-card p { color: #6a6259; }
.sp-only { display: block; }

.promise-grid,
.service-list,
.items-grid { display: grid; gap: 16px; }
.promise-card,
.store-card,
.service-list article,
.item-card {
  background: rgba(255, 253, 249, 0.74);
  border: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(74, 69, 63, 0.035);
}
.promise-card,
.service-list article { padding: 24px; }
.promise-card span,
.service-list span {
  display: inline-block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.12em;
}

.brand-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  margin: 34px 0 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brand-list span {
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: 0.08em;
  line-height: 1.2;
  padding: 16px 0;
  border-bottom: 1px solid rgba(222, 215, 205, 0.65);
}
.brand-list span:last-child { border-bottom: 0; color: var(--muted); font-size: 22px; font-family: var(--sans); }
.text-link { display: inline-flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--accent); padding-bottom: 4px; font-weight: 600; }
.text-link::after { content: "→"; color: var(--accent); }

.store-card { padding: 26px; margin-bottom: 18px; }
.store-card .button { width: 100%; margin-top: 10px; }
.card-label { margin-bottom: 8px; }
.primary-store h3 { font-size: 22px; }
.marketplace-links { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 18px; }
.marketplace-links a { border: 1px solid var(--line); background: var(--bg); padding: 13px 14px; text-align: center; border-radius: 999px; font-weight: 600; }

.items-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 12px;
  margin: 34px 0 28px;
  align-items: start;
}
.item-card { padding: 10px; text-align: center; min-width: 0; overflow: hidden; }
.item-image {
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
  background: #fbfaf7;
  margin: 0 0 14px 0;
}
.item-image > img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}
.item-brand { color: var(--muted); font-weight: 700; font-size: 12px; margin-bottom: 0; }
.item-card h3 { font-family: var(--sans); font-size: 14px; font-weight: 400; color: #625b53; margin-bottom: 4px; }
.past-items .button { width: 100%; }

.service-list { margin: 32px 0 28px; }
.service .button { width: 100%; }
.message { text-align: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.message-en { font-family: var(--serif); font-size: clamp(26px, 8vw, 40px); line-height: 1.25; letter-spacing: 0.04em; margin-bottom: 24px; }
.contact-info { margin-top: 28px; border-top: 1px solid var(--line); padding-top: 20px; display: grid; gap: 12px; font-size: 13px; }
.contact-info p { margin: 0; }
.contact-info span { display: block; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 2px; }
.contact-info a { border-bottom: 1px solid var(--accent); }
.site-footer { width: var(--content-mobile); max-width: 1120px; margin: 0 auto; padding: 42px 0 50px; border-top: 1px solid var(--line); text-align: center; }
.footer-logo { font-size: 34px; margin-bottom: 10px; }
.footer-sub { margin-bottom: 30px; }
.footer-copy { color: var(--muted); font-size: 12px; margin-bottom: 0; }

@media (max-width: 374px) {
  :root { --content-mobile: calc(100% - 34px); }
  .header-logo { font-size: 18px; }
  .eyebrow { font-size: 12px; }
  h1 { font-size: clamp(34px, 11.4vw, 42px); letter-spacing: 0.035em; }
  .hero-lead { font-size: 13px; }
  .button { font-size: 11px; min-height: 52px; padding-left: 12px; padding-right: 12px; }
  .items-grid { gap: 14px 8px; }
  .item-card { padding: 8px; }
  .item-card h3 { font-size: 11px; }
  .item-brand { font-size: 10px; }
}

@media (min-width: 680px) {
  body { background: var(--bg); font-size: 16px; }
  .site-shell { max-width: none; box-shadow: none; }
  .sp-only { display: none; }
  .header-inner,
  .section,
  .site-footer { width: min(calc(100% - 72px), 760px); }
  .hero-image-frame { max-width: 680px; }
  h1 { font-size: clamp(72px, 12vw, 108px); letter-spacing: 0.07em; }
  .hero-lead { font-size: 18px; }
  .hero-actions,
  .contact-actions { max-width: 560px; margin-left: auto; margin-right: auto; }
  .promise-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .marketplace-links { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 960px) {
  .header-inner,
  .section,
  .site-footer { width: var(--content-desktop); }
  .site-header { position: sticky; }
  .header-inner { height: 88px; }
  .header-logo { font-size: 26px; }
  .menu-button { display: none; }
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
  }
  .desktop-nav a { padding: 10px 0; }
  .desktop-nav a:hover { color: var(--text); }
  .hero {
    min-height: calc(100svh - 88px);
    padding-top: 78px;
    padding-bottom: 96px;
    display: grid;
    align-content: center;
  }
  .eyebrow { font-size: 16px; margin-bottom: 24px; }
  h1 { font-size: clamp(96px, 10vw, 142px); letter-spacing: 0.085em; margin-bottom: 28px; overflow: visible; }
  .hero-lead { margin-bottom: 54px; }
  .hero-image-frame { width: min(100%, 880px); }
  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 680px;
  }
  .section { padding: 110px 0; }
  h2 { font-size: 38px; }
  .about .narrow-text { max-width: 720px; }
  .brand-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-list span { border-right: 1px solid rgba(222, 215, 205, 0.65); padding: 18px 0; }
  .brand-list span:nth-child(even) { border-right: 0; padding-left: 34px; }
  .brand-list span:last-child { border-right: 0; }
  .items-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
  .item-card { padding: 14px; }
  .past-items .button,
  .service .button { max-width: 360px; }
  .store { max-width: 980px; }
  .store-card { padding: 34px; }
  .contact { max-width: 800px; }
  .contact-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: none; }
}

@media (min-width: 1280px) {
  .hero-image-frame { width: min(100%, 960px); }
  .section { padding-top: 124px; padding-bottom: 124px; }
}
