:root {
  --paper: #f7f2e9;
  --paper-strong: #fffaf0;
  --ink: #201b16;
  --muted: #6d6258;
  --line: #ded1bf;
  --red: #9a2f22;
  --red-dark: #6f2119;
  --green: #1f4b3f;
  --gold: #b98a41;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(35, 25, 17, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  line-height: 1.7;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--ink);
  background: rgba(255, 250, 240, .96);
  box-shadow: 0 12px 32px rgba(30, 22, 14, .12);
  backdrop-filter: blur(16px);
  transition: background .2s ease, box-shadow .2s ease, color .2s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
}

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

.brand-logo {
  width: clamp(48px, 4.6vw, 62px);
  height: clamp(48px, 4.6vw, 62px);
  flex: 0 0 auto;
  object-fit: contain;
  opacity: .92;
  filter: saturate(.88) contrast(.96);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.25;
}

.brand strong {
  font-family: "HGP行書体", "HGS行書体", "HG行書体", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(42px, 1.9vw, 48px);
  font-weight: 700;
  letter-spacing: 0;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 6px 0;
}

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

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

.site-nav .language-link {
  padding: 6px 12px;
  border: 1px solid currentColor;
  border-radius: 8px;
}

.site-nav .language-link::after {
  content: none;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(30, 17, 13, .82), rgba(30, 17, 13, .48) 44%, rgba(30, 17, 13, .22));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  padding: 130px clamp(22px, 6vw, 80px) 120px;
}

.eyebrow,
.section-kicker,
.product-tag {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0;
}

.hero h1,
.section h2,
.contact h2 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

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

.hero-en h1 {
  max-width: 760px;
  font-size: clamp(34px, 5vw, 60px);
}

.hero-en .lead {
  max-width: 680px;
  font-size: clamp(16px, 1.7vw, 19px);
}

.lead {
  max-width: 620px;
  margin: 28px 0 0;
  font-size: clamp(17px, 2vw, 21px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: var(--red);
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, .7);
}

.button.secondary.dark {
  color: var(--paper-strong);
  border-color: rgba(255, 250, 240, .55);
}

.button.online {
  color: var(--ink);
  border-color: #f3cf73;
  background: linear-gradient(180deg, #f7d981, var(--gold));
  box-shadow: 0 12px 28px rgba(185, 138, 65, .32);
}

.button.online:hover {
  filter: brightness(1.04);
}

.hero-info {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: 24px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: min(680px, calc(100% - 36px));
}

.hero-info span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 8px;
  background: rgba(32, 27, 22, .25);
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(220px, 420px) minmax(0, 720px);
  gap: clamp(24px, 6vw, 84px);
  align-items: start;
  background: var(--paper-strong);
}

.intro p:last-child {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 18px;
}

@media (min-width: 901px) {
  .intro p:last-child {
    margin-top: 32px;
  }
}

.section h2,
.contact h2 {
  font-size: clamp(30px, 4vw, 52px);
}

.about-heading-ja {
  font-size: clamp(28px, 3.6vw, 46px);
}

.about-heading-ja span {
  white-space: nowrap;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
}

.section-heading.compact {
  margin-bottom: 18px;
}

.products {
  background: #efe5d6;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid rgba(69, 53, 38, .14);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

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

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

.product-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.product-card p {
  margin: 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--red);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.product-online-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid rgba(154, 47, 34, .22);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.product-online-cta p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 800;
  line-height: 1.55;
}

.product-online-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  color: var(--paper-strong);
  background: var(--red);
  font-weight: 800;
}

.product-online-cta a:hover {
  background: var(--red-dark);
}

.promise {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: clamp(30px, 7vw, 90px);
  align-items: center;
  background: var(--paper-strong);
}

.promise-copy p:last-child {
  margin: 20px 0 0;
  color: var(--muted);
}

.promise-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.promise-list div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.promise-list dt {
  color: var(--red);
  font-weight: 900;
}

.promise-list dd {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
}

.news {
  background: var(--green);
  color: var(--paper-strong);
}

.news .section-kicker {
  color: #d6b36c;
}

.news-list {
  border-top: 1px solid rgba(255, 250, 240, .22);
}

.news-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 250, 240, .22);
}

.news-row:hover span {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.news-row time {
  color: rgba(255, 250, 240, .68);
  font-weight: 800;
}

.news-empty {
  margin: 0;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 250, 240, .22);
  color: rgba(255, 250, 240, .72);
}

.shop {
  background: var(--paper);
}

.delivery-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin: -8px 0 30px;
  padding: 20px 24px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.delivery-banner span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  color: var(--paper-strong);
  background: var(--red);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 900;
  line-height: 1.3;
}

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

.shop-layout {
  display: grid;
  grid-template-columns: minmax(260px, 440px) 1fr;
  gap: 28px;
}

.map-panel {
  overflow: hidden;
  min-height: 380px;
  border-radius: 8px;
  border: 1px solid rgba(69, 53, 38, .16);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

.info-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

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

.info-list dt {
  color: var(--muted);
  font-weight: 800;
}

.info-list dd {
  margin: 0;
}

.contact {
  padding: clamp(70px, 9vw, 110px) clamp(20px, 5vw, 72px);
  color: var(--paper-strong);
  background: var(--red-dark);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 560px);
  gap: 28px;
  align-items: center;
}

.contact p:last-child {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 250, 240, .76);
}

.contact-actions {
  margin-top: 0;
}

.contact-link {
  flex: 1 1 240px;
  padding: 22px;
  border: 1px solid rgba(255, 250, 240, .25);
  border-radius: 8px;
  background: rgba(255, 250, 240, .08);
}

.contact-link span,
.contact-link strong {
  display: block;
}

.contact-link span {
  color: rgba(255, 250, 240, .7);
  font-size: 13px;
  font-weight: 800;
}

.contact-link strong {
  margin-top: 6px;
  font-size: clamp(18px, 2vw, 24px);
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: var(--paper-strong);
  background: #171411;
}

.site-footer p,
.site-footer small,
.footer-shop-link {
  margin: 0;
}

.footer-shop-link {
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 250, 240, .65);
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--paper-strong);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px;
  }

  .intro,
  .promise,
  .shop-layout,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .delivery-banner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
    padding-inline: 16px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    max-width: 245px;
    font-size: 21px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand small {
    font-size: 11px;
  }

  .hero {
    min-height: 96vh;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(30, 17, 13, .88), rgba(30, 17, 13, .56));
  }

  .hero-content {
    padding: 118px 20px 150px;
  }

  .hero-en .hero-content {
    padding-bottom: 126px;
  }

  .hero-en h1 {
    font-size: 34px;
  }

  .hero-en .lead {
    margin-top: 20px;
    font-size: 16px;
  }

  .hero-en .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
    gap: 10px;
  }

  .hero-en .hero-actions .button {
    width: auto;
    min-height: 46px;
    padding-inline: 12px;
    white-space: nowrap;
  }

  .hero-en .hero-actions .button.online {
    grid-column: 1 / -1;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-info {
    left: 20px;
    right: 20px;
  }

  .hero-info span {
    flex: 1 1 100%;
  }

  .hero-en .hero-info span {
    text-align: center;
  }

  .product-online-cta {
    align-items: stretch;
  }

  .product-online-cta a {
    width: 100%;
  }

  .news-row,
  .info-list div,
  .promise-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .map-panel {
    min-height: 310px;
  }

  .site-footer {
    flex-direction: column;
  }
}
