@charset "UTF-8";

:root {
  --ink: #211a17;
  --ink-soft: #625750;
  --wine: #631f2d;
  --wine-dark: #401c1e;
  --green: #173d33;
  --green-soft: #2f594b;
  --sage: #dce4da;
  --gold: #b38a4a;
  /* 白地に置く文字用。--gold は白地で3.16:1しかなく基準を満たさないため分ける */
  --gold-text: #8a6a34;
  --gold-light: #dfc99c;
  --ivory: #f3eadc;
  --paper: #ffffff;
  --sand: #e6d8c5;
  --line: rgba(68, 45, 31, 0.18);
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", Georgia, serif;
  --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", Meiryo, sans-serif;
  --en-serif: Georgia, "Times New Roman", serif;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-image: cubic-bezier(0.16, 1, 0.3, 1);
  --shell: min(1180px, calc(100% - 96px));
  --header-height: 94px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.95;
  letter-spacing: 0.055em;
  overflow-wrap: anywhere;
}

body.menu-open { overflow: hidden; }

h1,
h2,
h3,
p,
figure,
dl,
dd,
ul { margin: 0; }

ul { padding: 0; list-style: none; }

h1,
h2,
h3 { text-wrap: balance; }

p,
dd,
li { text-wrap: pretty; }

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

a { color: inherit; }

button,
input,
textarea { font: inherit; }

button { color: inherit; }

sup { font-size: 0.62em; line-height: 0; vertical-align: super; }

.section-shell,
.container {
  width: var(--shell);
  margin-inline: auto;
}

.br-sp { display: none; }

.section { padding: 124px 0; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--paper);
  color: var(--wine);
  font-weight: 700;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-top: 3px solid var(--green);
  border-bottom: 1px solid rgba(23, 61, 51, 0.13);
  background: rgba(255, 255, 255, 0.965);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  width: min(1320px, calc(100% - 64px));
  height: 100%;
  margin-inline: auto;
}

.brand,
.brand a { display: block; line-height: 0; }

.brand__logo { width: 238px; }

.global-nav { margin-left: auto; }

.global-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
}

.global-nav a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1px;
  min-height: 50px;
  text-decoration: none;
  transition: color 180ms ease;
}

.global-nav a:hover { color: var(--wine); }

.global-nav__ja {
  font-family: var(--serif);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.07em;
}

.global-nav__en {
  color: var(--green-soft);
  font-family: var(--en-serif);
  font-size: 8px;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.global-nav a:not(.global-nav__contact)::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease-out);
}

.global-nav a:not(.global-nav__contact):hover::before,
.global-nav a:not(.global-nav__contact):focus-visible::before { transform: scaleX(1); }

.global-nav__contact {
  isolation: isolate;
  overflow: hidden;
  padding: 0 20px;
  border: 1px solid var(--wine);
  background: transparent;
  color: var(--wine);
  transition: color 300ms ease;
}

.global-nav__contact::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: 0;
  background: var(--green);
  transition: width 320ms cubic-bezier(0.77, 0, 0.18, 1);
}

.global-nav__contact:hover,
.global-nav__contact:focus-visible { color: #fff !important; }
.global-nav__contact:hover::before,
.global-nav__contact:focus-visible::before { width: 100%; }
.global-nav__contact:hover .global-nav__en,
.global-nav__contact:focus-visible .global-nav__en { color: var(--gold-light); }

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 20px;
}

/* 言語切替。OSの既定メニューは意匠を揃えられないため、ボタン＋一覧で自作している */
.lang-switch { position: relative; flex: 0 0 auto; }

.lang-switch__button {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(99, 31, 45, 0.24);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.lang-switch__button:hover { border-color: var(--gold); background: #fff; }
.lang-switch__button:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.lang-switch__button[aria-expanded="true"] { border-color: var(--gold); background: #fff; }

/* 地球儀のかわりに緯線・経線を描いた円 */
.lang-switch__glyph {
  position: relative;
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--wine);
  opacity: 0.75;
}

.lang-switch__glyph::before,
.lang-switch__glyph::after {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.lang-switch__glyph::before { top: 5px; border-width: 0 0 1px; border-radius: 0; }
.lang-switch__glyph::after { inset: -1px 3px; }

.lang-switch__current {
  font-family: var(--en-serif);
  font-size: 12px;
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
}

.lang-switch__caret {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--wine);
  border-bottom: 1px solid var(--wine);
  opacity: 0.75;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 200ms var(--ease-out);
}

.lang-switch__button[aria-expanded="true"] .lang-switch__caret { transform: translateY(1px) rotate(-135deg); }

.lang-switch__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 120;
  min-width: 148px;
  padding: 6px;
  border: 1px solid rgba(99, 31, 45, 0.18);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(37, 22, 30, 0.16);
}

.lang-switch__menu[hidden] { display: none; }

.lang-switch__option {
  padding: 9px 12px 9px 30px;
  position: relative;
  border-radius: 7px;
  font-family: var(--en-serif);
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.lang-switch__option:hover,
.lang-switch__option:focus-visible { outline: none; background: var(--ivory); }

.lang-switch__option[aria-selected="true"] { color: var(--wine); }

/* 選択中の印。チェックマークを罫線2本で描く */
.lang-switch__option[aria-selected="true"]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  width: 5px;
  height: 9px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: translateY(-60%) rotate(45deg);
}

/* 狭い画面ではヘッダーの幅に余裕がない。ロゴのサイズは変えず、
   切替UIの側を「JA」「IT」の略号にして場所を空ける。 */
@media (max-width: 600px) {
  .lang-switch__button { height: 30px; gap: 5px; padding: 0 8px; }
  .lang-switch__glyph { width: 11px; height: 11px; }
  .lang-switch__glyph::before { top: 4px; }
  .lang-switch__caret { display: none; }
  .lang-switch__current { font-size: 0; }
  .lang-switch__current::after {
    content: attr(data-short);
    font-size: 11px;
    letter-spacing: 0.08em;
  }
}

.header-instagram {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 9px;
  background:
    radial-gradient(circle at 30% 105%, #ffd600 0 10%, #ff7a00 28%, transparent 55%),
    linear-gradient(135deg, #833ab4 0%, #c13584 34%, #e1306c 55%, #fd1d1d 74%, #fcb045 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 4px 12px rgba(37, 22, 30, 0.18);
  color: #fff;
  text-decoration: none;
  transition: box-shadow 180ms ease, transform 160ms var(--ease-out);
}

.header-instagram:active { transform: scale(0.96); }

.header-instagram__glyph {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 6px;
}

.header-instagram__glyph::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.header-instagram__glyph::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 2.5px;
  height: 2.5px;
  border-radius: 50%;
  background: currentColor;
}

.menu-button { display: none; }

/* Hero */

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--wine-dark);
  color: #fff;
}

.hero__media {
  position: absolute;
  inset: -8%;
  z-index: -2;
  background: url("images/bar-italia.jpg") center 47% / cover no-repeat;
  animation: hero-drift 7s ease-in-out alternate infinite;
  transform: translate3d(-2%, -1%, 0) scale(1.08);
  transform-origin: center;
  will-change: transform;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(24, 13, 11, 0.84) 0%, rgba(29, 16, 13, 0.55) 46%, rgba(29, 16, 13, 0.14) 78%),
    linear-gradient(0deg, rgba(23, 12, 10, 0.32), transparent 45%);
}

.hero__content {
  width: var(--shell);
  margin-inline: auto;
  padding: 72px 0 104px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--gold-light);
  font-family: var(--en-serif);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero__eyebrow,
.hero__title,
.hero__lead,
.hero__actions {
  animation: hero-copy-in 900ms var(--ease-out) both;
}

.hero__eyebrow { animation-delay: 90ms; }
.hero__title { animation-delay: 170ms; }
.hero__lead { animation-delay: 260ms; }
.hero__actions { animation-delay: 350ms; }

.hero__eyebrow::before {
  content: "";
  width: 48px;
  height: 1px;
  background: currentColor;
}

.hero__title {
  margin-top: 30px;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 500;
  line-height: 1.38;
  letter-spacing: 0.095em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
}

.hero__lead {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 2.1;
  letter-spacing: 0.1em;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 42px;
}

.hero__caption {
  position: absolute;
  left: 28px;
  bottom: 30px;
  font-family: var(--en-serif);
  font-size: 10px;
  letter-spacing: 0.24em;
  writing-mode: vertical-rl;
}

.hero__scroll {
  position: absolute;
  right: 30px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  width: 24px;
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  transition: opacity 220ms ease;
}

.hero__scroll-text {
  display: block;
  font-family: var(--en-serif);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  position: relative;
  display: block;
  width: 1px;
  height: 66px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.32);
}

.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  animation: scroll-guide-line 1.5s cubic-bezier(1, 0, 0, 1) infinite;
  transform: scaleY(0);
  transform-origin: 0 0;
}

/* Shared */

.section-heading__en {
  color: var(--green);
  font-family: var(--en-serif);
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0.18em;
}

.section-heading__en--light { color: var(--gold-light); }

.section-heading__ja {
  margin-top: 15px;
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.08em;
}

.section-heading--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 72px;
  margin-bottom: 60px;
}

.section-heading__note {
  max-width: 35em;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 2;
}

.button {
  --button-base: transparent;
  --button-fill: var(--green);
  --button-color: var(--ink);
  --button-hover-color: #fff;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 12px 30px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  cursor: pointer;
  background: var(--button-base);
  color: var(--button-color);
  transition: color 300ms ease, border-color 300ms ease, transform 140ms var(--ease-out);
}

.button::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: 0;
  background: var(--button-fill);
  transition: width 320ms cubic-bezier(0.77, 0, 0.18, 1);
}

.button__label { position: relative; z-index: 1; }
.button:active { transform: scale(0.98); }
.button--light { --button-base: rgba(255, 253, 248, 0.96); --button-color: var(--wine-dark); border-color: rgba(255, 255, 255, 0.75); }
.button--wine { --button-base: var(--wine); --button-color: #fff; border-color: var(--wine); }
.button--gold { --button-base: var(--gold-light); --button-color: var(--wine-dark); border-color: var(--gold-light); }
.button--wide { width: 100%; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-underline-offset: 6px;
}

.text-link--light { color: #fff; }
.text-link span { transition: transform 220ms var(--ease-out); }

/* Philosophy */

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

.philosophy__grid {
  display: grid;
  grid-template-columns: minmax(480px, 1.08fr) minmax(390px, 0.92fr);
  gap: 88px;
  align-items: start;
}

.philosophy__title { font-size: clamp(30px, 3vw, 42px); letter-spacing: 0.06em; }
.philosophy__title span { display: block; white-space: nowrap; }

.philosophy__body {
  position: relative;
  padding-top: 12px;
  color: var(--ink-soft);
  font-family: var(--serif);
  line-height: 2.2;
}

.philosophy__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: -54px;
  width: 1px;
  height: 180px;
  background: var(--line);
}

.philosophy__lead { color: var(--ink); font-size: 19px; line-height: 2; }
.philosophy__body p + p { margin-top: 26px; }
.philosophy__signature { color: var(--gold-text); font-family: var(--en-serif); font-size: 18px; font-style: italic; letter-spacing: 0.08em; }

/* Founder */

.founder {
  position: relative;
  overflow: hidden;
  padding: 110px 0 120px;
  background: linear-gradient(135deg, #f9f5ed 0%, var(--ivory) 72%, #e7dbc8 100%);
}

.founder::after {
  content: "";
  position: absolute;
  right: -7vw;
  bottom: -18vw;
  width: 36vw;
  height: 36vw;
  border: 1px solid rgba(179, 138, 74, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.founder__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: clamp(64px, 8vw, 128px);
  align-items: center;
}

.founder__body { position: relative; z-index: 1; max-width: 700px; }
.founder__title { margin-top: 18px; font-family: var(--serif); font-size: clamp(34px, 3.2vw, 44px); font-weight: 500; line-height: 1.65; letter-spacing: 0.07em; }
.founder__title span { display: block; white-space: nowrap; }
.founder__rule { display: block; width: 64px; height: 1px; margin: 36px 0; background: var(--gold); }
.founder__body > p:not(.section-heading__en, .founder__signature) { color: var(--ink-soft); font-family: var(--serif); line-height: 2.15; }
.founder__body > p + p { margin-top: 22px; }
.founder__lead { color: var(--ink) !important; font-size: 18px; }

.founder__signature { display: flex; align-items: baseline; flex-direction: column; gap: 5px; margin-top: 34px !important; }
.founder__signature span { color: var(--ink-soft); font-size: 11px; letter-spacing: 0.12em; }
.founder__signature strong { color: var(--wine); font-family: var(--serif); font-size: 17px; font-weight: 500; letter-spacing: 0.12em; }

.founder__portrait { position: relative; z-index: 1; justify-self: end; width: 100%; max-width: 320px; margin: 0; padding: 10px; border: 1px solid rgba(179, 138, 74, 0.55); background: #fffdf8; box-shadow: 18px 18px 0 var(--wine); }
.founder__portrait::before { display: none; }
.founder__portrait img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; filter: saturate(0.82) contrast(0.98); }
.founder__portrait figcaption { display: flex; align-items: flex-start; flex-direction: column; margin-top: 10px; padding: 17px 18px 19px; background: var(--wine-dark); }
.founder__name-en { color: var(--gold-light); font-family: var(--en-serif); font-size: 10px; font-style: italic; letter-spacing: 0.2em; text-transform: uppercase; }
.founder__portrait figcaption strong { margin-top: 4px; color: #fff; font-family: var(--serif); font-size: 20px; font-weight: 500; letter-spacing: 0.16em; }
.founder__portrait figcaption small { margin-top: 4px; color: rgba(255, 255, 255, 0.62); font-size: 9px; letter-spacing: 0.1em; }

/* Products */

.products-showcase {
  overflow: hidden;
  background: var(--ivory);
}

.products-showcase__lead {
  max-width: 48em;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 2.15;
}

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

.product-card { min-width: 0; }

.product-card__link {
  position: relative;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  min-height: 236px;
  height: 100%;
  padding: 22px 30px 22px 22px;
  border: 1px solid rgba(68, 45, 31, 0.12);
  background: #fff;
  text-decoration: none;
  transition: border-color 500ms var(--ease-image), box-shadow 500ms var(--ease-image), transform 500ms var(--ease-image);
}

.product-card__media {
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #f8f5ef;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 950ms var(--ease-image);
  will-change: transform;
}

/* 公式パッケージを主役にし、画像内の販促ラベルは円形の外へ逃がす */
.product-card__media--capsule-pack img {
  width: 138.5%;
  height: 138.5%;
  max-width: none;
  margin-top: -23.1%;
  object-position: center center;
}

.product-card__media--capsule-pack-plastic img { margin-left: -3.9%; }
.product-card__media--capsule-pack-aluminum img { margin-left: -38.5%; }

.product-card__type {
  color: var(--wine);
  font-family: var(--en-serif);
  font-size: 10px;
  font-style: italic;
  line-height: 1.4;
  letter-spacing: 0.14em;
}

.product-card h3 {
  margin-top: 9px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.055em;
}

.product-card__body > p:not(.product-card__type) {
  margin-top: 11px;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.8;
}

.product-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--wine);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.product-card__more span { transition: transform 220ms var(--ease-out); }

/* Brands */

.brands { padding-bottom: 0; background: #fff; }

.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px 32px;
}

.brand-card--large { grid-column: 1 / -1; }

.brand-card__link { display: block; text-decoration: none; }

.brand-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sand);
}

.brand-card--large .brand-card__media { aspect-ratio: 2.18 / 1; }

.brand-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1100ms var(--ease-image);
  will-change: transform;
}

.brand-card--large .brand-card__media img { object-position: center 47%; }
.brand-card:nth-child(2) .brand-card__media img { object-position: center 56%; }
.brand-card:nth-child(3) .brand-card__media img { object-position: center 52%; }

.brand-card__number {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 253, 248, 0.92);
  color: var(--wine);
  font-family: var(--en-serif);
  font-size: 12px;
}

.brand-card__body { padding: 27px 4px 0; }

.brand-card--large .brand-card__body {
  display: grid;
  grid-template-columns: 0.65fr 0.9fr 1.5fr auto;
  gap: 28px;
  align-items: start;
}

.brand-card__category { color: var(--wine); font-family: var(--en-serif); font-size: 12px; font-style: italic; letter-spacing: 0.13em; }

.brand-card__title {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.brand-card--large .brand-card__title { margin-top: 0; }

.brand-card__text { margin-top: 15px; color: var(--ink-soft); font-size: 14px; line-height: 2; }
.brand-card--large .brand-card__text { margin-top: 0; }

.brand-card__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-bottom: 1px solid currentColor;
}

.brand-card--large .brand-card__more { margin-top: 2px; }

.product-note {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  margin-top: 100px;
  padding: 32px 0 32px 32px;
  background: var(--green);
}

.product-note::before { content: ""; position: absolute; z-index: -1; top: 0; bottom: 0; left: 50%; width: 100vw; transform: translateX(-50%); background: var(--green); }

.product-note__visuals { position: relative; min-height: 610px; }

.product-note__image {
  position: absolute;
  overflow: hidden;
  background: #0f2b24;
}

.product-note__image--main { top: 0; left: 0; width: 84%; height: 78%; }
.product-note__image--sub { right: 0; bottom: 0; width: 60%; height: 43%; border: 10px solid var(--green); }

.product-note__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1100ms var(--ease-image);
  will-change: transform;
}

.product-note__image--main img { object-position: 53% center; }
.product-note__image--sub img { object-position: center; }
.product-note__body { align-self: center; padding: 54px 58px; color: rgba(255, 255, 255, 0.72); font-size: 13.5px; }
.product-note__label { color: var(--gold-light); font-family: var(--en-serif); font-size: 12px; font-style: italic; letter-spacing: 0.15em; }
.product-note__title { margin: 13px 0 22px; color: #fff; font-family: var(--serif); font-size: 31px; font-weight: 500; line-height: 1.65; letter-spacing: 0.08em; }

.product-note__steps { margin: 32px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255, 255, 255, 0.18); }
.product-note__steps li { display: grid; grid-template-columns: 28px 82px 1fr; gap: 12px; align-items: baseline; padding: 13px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
.product-note__steps span { color: var(--gold-light); font-family: var(--en-serif); font-size: 10px; }
.product-note__steps strong { color: #fff; font-family: var(--en-serif); font-size: 12px; font-style: italic; font-weight: 400; letter-spacing: 0.07em; }
.product-note__steps small { color: rgba(255, 255, 255, 0.68); font-size: 10.5px; }

/* Trust */

.trust { position: relative; overflow: hidden; background: var(--wine-dark); color: #fff; }
.trust::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 18% 20%, rgba(179, 138, 74, 0.13), transparent 38%), linear-gradient(115deg, rgba(255, 255, 255, 0.02), transparent 42%); pointer-events: none; }
.trust .section-shell { position: relative; }

.trust__heading { display: grid; grid-template-columns: minmax(410px, 0.9fr) minmax(0, 1.1fr); gap: 80px; align-items: start; margin-bottom: 82px; }
.trust__heading h2 { font-family: var(--serif); font-size: clamp(34px, 2.9vw, 40px); font-weight: 500; line-height: 1.65; letter-spacing: 0.045em; white-space: nowrap; text-wrap: nowrap; }
.trust__intro { max-width: 44em; color: rgba(255, 255, 255, 0.72); font-family: var(--serif); line-height: 2.15; }
.trust__intro p + p { margin-top: 22px; }

.trust__events h3,
.trust__certification h3 { font-family: var(--serif); font-size: clamp(25px, 2.4vw, 33px); font-weight: 500; letter-spacing: 0.08em; }
.trust__events h3::after,
.trust__certification h3::after { content: ""; display: block; width: 46px; height: 1px; margin: 20px 0 34px; background: var(--gold-light); }

.trust__timeline { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 32px; margin: 0; padding: 0; list-style: none; }
.trust__timeline li { min-height: 126px; padding: 22px 4px; border-top: 1px solid rgba(223, 201, 156, 0.38); }
.trust__timeline time { display: block; color: var(--gold-light); font-family: var(--en-serif); font-size: 18px; font-style: italic; }
.trust__timeline span { display: block; margin-top: 10px; color: rgba(255, 255, 255, 0.78); font-family: var(--serif); font-size: 12px; line-height: 1.85; }

.trust__certification { display: grid; grid-template-columns: minmax(0, 1fr) minmax(240px, 300px); gap: 80px; align-items: center; margin-top: 88px; padding: 52px 58px; border: 1px solid rgba(223, 201, 156, 0.4); background: rgba(255, 255, 255, 0.045); }
.trust__certification-body { max-width: 48em; color: rgba(255, 255, 255, 0.72); font-family: var(--serif); line-height: 2.15; }
.trust__certification-body p + p { margin-top: 18px; }
.trust__certification-body p:last-child { color: var(--gold-light); }
.trust__certification figure { position: relative; isolation: isolate; padding: 14px; background: #fffdf8; box-shadow: 0 24px 52px rgba(17, 6, 7, 0.3); }
.trust__certification figure::after { content: ""; position: absolute; z-index: 1; inset: 0; background: url("images/trust-frame-gold.png") center / 124% 105% no-repeat; filter: drop-shadow(0 5px 6px rgba(17, 6, 7, 0.24)); pointer-events: none; }
.trust__certification img { position: relative; z-index: 0; width: 100%; aspect-ratio: 1; object-fit: contain; }

/* Business banner */

.business-banner {
  position: relative;
  isolation: isolate;
  padding: 110px 0;
  overflow: hidden;
  background: var(--green);
  color: #fff;
}

.business-banner::after {
  content: "IJ";
  position: absolute;
  right: -0.08em;
  bottom: -0.48em;
  z-index: -1;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--en-serif);
  font-size: 320px;
  line-height: 1;
}

.business-banner__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
}

.business-banner__title {
  margin-top: 20px;
  font-family: var(--serif);
  font-size: clamp(32px, 3.2vw, 43px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.08em;
}

.business-banner__title span { display: block; white-space: nowrap; }

.business-banner__body { color: rgba(255, 255, 255, 0.77); font-size: 14px; }
.business-banner__body .button { margin-top: 30px; }
.business-banner .button--gold { --button-fill: var(--wine); }

/* Stores */

.stores {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: 0;
  padding: 0;
  background: var(--paper);
}

.stores__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: center;
  width: auto;
  margin-left: 0;
  margin-right: 0;
  padding: 112px max(58px, calc((100vw - 1180px) / 2));
}

.stores__intro > p:not(.section-heading__en) { margin-top: 28px; color: var(--ink-soft); font-size: 14px; }
.stores__intro .button { margin-top: 32px; }
.stores__title span { display: block; white-space: nowrap; }

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

.store-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color 180ms ease;
}

.store-list a span:last-child { transition: transform 220ms var(--ease-out); }

.stores__visual { min-height: 100%; overflow: hidden; }
.stores__visual img { width: 100%; height: 100%; object-fit: cover; object-position: 53% center; transition: transform 1200ms var(--ease-image); will-change: transform; }

/* Company */

.company {
  position: relative;
  isolation: isolate;
  background: var(--ivory);
  overflow: hidden;
}

/* 背景の街並みは、文字が読めるよう十分に伏せて敷く */
.company::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("images/company-street.jpg") center 62% / cover no-repeat;
  opacity: 0.16;
}

/* 上下をクリーム色へ溶かし、セクションの境目を目立たせない */
.company::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    var(--ivory) 0%,
    rgba(243, 234, 220, 0.55) 22%,
    rgba(243, 234, 220, 0.55) 78%,
    var(--ivory) 100%
  );
}
.company .section-heading--row { margin-bottom: 56px; }

.history { display: grid; grid-template-columns: minmax(250px, 0.34fr) minmax(0, 0.66fr); gap: 72px; margin-bottom: 78px; padding: 56px; border: 1px solid rgba(99, 31, 45, 0.2); background: rgba(255, 253, 248, 0.62); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); }
.history__intro h3 { margin-top: 14px; color: var(--wine); font-family: var(--serif); font-size: clamp(26px, 2.8vw, 38px); font-weight: 500; line-height: 1.65; letter-spacing: 0.07em; }
.history__list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.history__list li { display: grid; grid-template-columns: 96px 1fr; gap: 24px; padding: 18px 4px; border-bottom: 1px solid var(--line); }
.history__list time { color: var(--gold-text); font-family: var(--en-serif); font-size: 15px; font-style: italic; }
.history__list span { color: var(--ink-soft); font-size: 13px; }

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

.profile-list__row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 32px;
  padding: 22px 8px;
  border-bottom: 1px solid var(--line);
}

.profile-list dt { color: var(--green); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; }
.profile-list dd { font-size: 14px; }

/* Contact */

.contact { background: var(--wine); color: #fff; }

.contact__grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(500px, 1.1fr);
  gap: 82px;
  align-items: start;
}

.contact__intro { position: static; }

.contact__title {
  margin-top: 18px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.07em;
}

.contact__title span { display: block; white-space: nowrap; }

.contact__intro > p:not(.section-heading__en, .contact__hours) { margin-top: 28px; color: rgba(255, 255, 255, 0.75); font-size: 14px; }
.contact__intro .text-link { margin-top: 24px; }
.contact__hours { margin-top: 44px; color: var(--gold-light); font-size: 12px; letter-spacing: 0.12em; }

.form { padding: 46px; border: 1px solid rgba(255, 255, 255, 0.2); background: rgba(33, 12, 17, 0.18); }
.form__trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form__row { margin-bottom: 22px; }
.form__label { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 13px; font-weight: 700; }
.req { color: var(--gold-light); font-size: 10px; letter-spacing: 0.08em; }

.form__input {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  font-size: 16px;
}

.form__input:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 2px; }
.form__textarea { min-height: 150px; resize: vertical; }

.privacy { margin: 10px 0 20px; border-top: 1px solid rgba(255, 255, 255, 0.22); border-bottom: 1px solid rgba(255, 255, 255, 0.22); }
.privacy summary { padding: 14px 0; font-size: 12px; font-weight: 700; cursor: pointer; }
.privacy__body { padding: 0 0 16px; color: rgba(255, 255, 255, 0.7); font-size: 12px; }
.privacy__body p + p { margin-top: 10px; }

.choice { display: flex; align-items: flex-start; gap: 10px; min-height: 32px; font-size: 13px; cursor: pointer; }
.choice input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 5px; accent-color: var(--gold-light); }
.form__consent { margin-bottom: 18px; }
.form__note { margin-top: 16px; color: rgba(255, 255, 255, 0.65); font-size: 11px; text-align: center; }

/* Results */

.result { min-height: calc(100vh - var(--header-height)); padding: 110px 0; background: var(--ivory); }
.result .section-shell,
.result .container { width: min(760px, calc(100% - 48px)); margin-inline: auto; }
.result__eyebrow { color: var(--wine); font-family: var(--en-serif); font-size: 13px; font-style: italic; letter-spacing: 0.18em; }
.result__title { margin-top: 18px; font-family: var(--serif); font-size: 42px; font-weight: 500; line-height: 1.55; }
.result__text { margin-top: 28px; color: var(--ink-soft); }
.result__note { margin-top: 26px; padding: 22px; border: 1px solid var(--line); background: var(--paper); color: var(--ink-soft); font-size: 13px; }
.result__actions { margin-top: 32px; }
.result .btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 10px 26px; background: var(--wine); color: #fff; text-decoration: none; }

/* Footer */

.site-footer { padding: 56px 0 28px; background: #102821; color: rgba(255, 255, 255, 0.72); }
.site-footer__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 64px; }
.site-footer__brand { display: block; line-height: 0; }
.site-footer__brand img { width: 220px; }
.site-footer__links { display: grid; grid-template-columns: repeat(2, auto); gap: 8px 40px; }
.site-footer__links a { display: inline-flex; align-items: center; min-height: 36px; font-size: 11px; text-decoration: none; }
.site-footer__links a:hover { color: #fff; }
.site-footer__bottom { display: flex; align-items: end; justify-content: space-between; gap: 48px; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.site-footer__note { max-width: 72em; font-size: 9.5px; line-height: 1.8; }
.site-footer__copy { flex: 0 0 auto; font-family: var(--en-serif); font-size: 9px; letter-spacing: 0.15em; }

.site-footer > .container { text-align: center; }

/* Reveal */

.reveal { opacity: 0; transform: translate3d(0, 28px, 0); transition: opacity 850ms var(--ease-out), transform 850ms var(--ease-out); }
.reveal--delay { transition-delay: 120ms; }
.reveal.is-visible { opacity: 1; transform: translate3d(0, 0, 0); }
.no-js .reveal { opacity: 1; transform: none; }

/* Focus */

a:focus-visible,
button:focus-visible,
summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.button:focus-visible { color: var(--button-hover-color); }
.button:focus-visible::before { width: 100%; }

@media (hover: hover) and (pointer: fine) {
  .button:hover { color: var(--button-hover-color); }
  .button:hover::before { width: 100%; }
  .text-link:hover span { transform: translate3d(4px, 0, 0); }
  .product-card__link:hover { border-color: rgba(99, 31, 45, 0.32); box-shadow: 0 18px 44px rgba(66, 37, 24, 0.09); transform: translate3d(0, -4px, 0); }
  .product-card__link:hover .product-card__media img { transform: scale(1.065); }
  .product-card__link:hover .product-card__more span { transform: translate3d(4px, 0, 0); }
  .brand-card__link:hover .brand-card__media img { transform: scale(1.055); }
  .product-note__image:hover img { transform: scale(1.045); }
  .trust-card:hover figure img { transform: scale(1.035); }
  .stores__visual:hover img { transform: scale(1.04); }
  .store-list a:hover { color: var(--green); }
  .store-list a:hover span:last-child { transform: translate3d(5px, 0, 0); }
  .header-instagram:hover {
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.24),
      0 7px 18px rgba(37, 22, 30, 0.24);
    transform: translate3d(0, -1px, 0) scale(1.04);
  }
  .hero__scroll:hover { opacity: 0.56; }
}

@keyframes hero-drift {
  from { transform: translate3d(-2%, -1%, 0) scale(1.08); }
  to { transform: translate3d(2.5%, 1.5%, 0) scale(1.17); }
}

@keyframes hero-drift-gentle {
  from { transform: translate3d(-1.2%, -0.5%, 0) scale(1.08); }
  to { transform: translate3d(1.4%, 0.7%, 0) scale(1.13); }
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translate3d(0, 18px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes scroll-guide-line {
  0% { transform: scaleY(0); transform-origin: 0 0; }
  50% { transform: scaleY(1); transform-origin: 0 0; }
  50.1% { transform: scaleY(1); transform-origin: 0 100%; }
  100% { transform: scaleY(0); transform-origin: 0 100%; }
}

/* Responsive */

@media (max-width: 1080px) {
  :root { --shell: min(100% - 64px, 960px); }
  .global-nav__list { gap: 13px; }
  .global-nav__ja { font-size: 12.5px; }
  .global-nav__en { font-size: 7.5px; }
  .brand__logo { width: 194px; }
  .philosophy__grid { grid-template-columns: minmax(420px, 1fr) minmax(0, 0.95fr); gap: 60px; }
  .founder__grid { grid-template-columns: minmax(0, 1fr) minmax(240px, 290px); gap: 64px; }
  .trust__heading { gap: 52px; }
  .trust__certification { gap: 48px; padding: 46px; }
  .history { gap: 48px; padding: 46px; }
  .product-card__link { grid-template-columns: 155px minmax(0, 1fr); gap: 22px; min-height: 210px; padding: 20px; }
  .product-card h3 { font-size: 18px; }
  .business-banner__grid { grid-template-columns: 1.18fr 0.82fr; gap: 58px; }
  .stores { grid-template-columns: 1fr 40%; }
  .stores__grid { grid-template-columns: 1fr; gap: 44px; padding: 96px 56px; }
  .contact__grid { grid-template-columns: minmax(370px, 0.9fr) minmax(440px, 1.1fr); gap: 54px; }
}

@media (max-width: 820px) {
  :root { --header-height: 76px; --shell: calc(100% - 48px); }
  .section { padding: 90px 0; }
  .site-header { backdrop-filter: none; }
  .site-header__inner { width: calc(100% - 40px); }
  .brand__logo { width: 190px; }
  .site-header__actions { margin-left: auto; }
  .header-instagram { width: 32px; height: 32px; }

  .menu-button {
    position: relative;
    z-index: 102;
    display: block;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-button span {
    position: absolute;
    left: 10px;
    width: 26px;
    height: 1px;
    background: var(--ink);
    transition: transform 220ms ease, top 220ms ease;
  }

  .menu-button span:first-child { top: 18px; }
  .menu-button span:last-child { top: 27px; }
  .menu-button[aria-expanded="true"] span:first-child { top: 23px; transform: rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { top: 23px; transform: rotate(-45deg); }

  .js .global-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 101;
    display: grid;
    align-items: start;
    padding: 36px 24px 48px;
    background: var(--paper);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .menu-open .global-nav { visibility: visible; opacity: 1; pointer-events: auto; }
  .global-nav__list { display: grid; gap: 0; }
  .global-nav li { border-bottom: 1px solid var(--line); }
  .global-nav a { display: flex; flex-direction: row; align-items: center; justify-content: flex-start; gap: 12px; min-height: 64px; }
  .global-nav__ja { font-size: 16px; }
  .global-nav__en { margin-left: auto; font-size: 9px; }
  .global-nav a::after { content: "→"; color: var(--wine); }
  .global-nav__contact { padding: 0; border: 0; background: transparent; color: inherit; }
  .global-nav__contact:hover { background: transparent; color: var(--wine) !important; }
  .global-nav a:not(.global-nav__contact)::before,
  .global-nav__contact::before { display: none; }

  .hero { min-height: calc(92svh - var(--header-height)); }
  .hero__media { background-position: 61% center; }
  .hero__shade { background: linear-gradient(90deg, rgba(24, 13, 11, 0.82), rgba(29, 16, 13, 0.3)); }
  .hero__caption,
  .hero__scroll { display: none; }
  .hero__content { padding: 72px 0; }
  .hero__title { font-size: clamp(45px, 8.7vw, 64px); }

  .philosophy__grid,
  .business-banner__grid,
  .contact__grid { grid-template-columns: 1fr; gap: 52px; }
  .philosophy__body { padding: 40px 0 0; border-top: 1px solid var(--line); }
  .philosophy__body::before { display: none; }
  .founder__grid { grid-template-columns: 1fr; gap: 52px; }
  .founder__body { max-width: none; }
  .founder__portrait { width: min(100%, 300px); margin-left: auto; }
  .product-catalog { grid-template-columns: 1fr; }
  .product-card__link { grid-template-columns: 190px minmax(0, 1fr); min-height: 230px; }

  .brand-card--large .brand-card__body { grid-template-columns: 1fr; gap: 0; }
  .brand-card--large .brand-card__text { margin-top: 15px; }
  .brand-card--large .brand-card__more { margin-top: 20px; }

  .product-note { grid-template-columns: 1fr; padding: 24px 24px 0; }
  .product-note__visuals { min-height: 520px; }
  .product-note__body { padding: 48px 24px 52px; }

  .trust__heading { grid-template-columns: 1fr; gap: 28px; }
  .trust__timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 36px; }
  .trust__certification { grid-template-columns: 1fr; }
  .trust__certification figure { justify-self: end; width: min(100%, 260px); }

  .history { grid-template-columns: 1fr; gap: 34px; }

  .stores { grid-template-columns: 1fr; }
  .stores__grid { width: var(--shell); margin-inline: auto; padding: 90px 0; }
  .stores__visual { max-height: 520px; aspect-ratio: 4 / 3; }

  .contact__intro { position: static; }

  .site-footer__top,
  .site-footer__bottom { align-items: flex-start; flex-direction: column; }
  .site-footer__bottom { gap: 18px; }
}

@media (max-width: 600px) {
  :root { --shell: calc(100% - 40px); }
  body { font-size: 15px; line-height: 1.9; }
  .section { padding: 72px 0; }
  .br-pc { display: none; }
  .br-sp { display: inline; }
  .brand__logo { width: 170px; }

  .hero { min-height: calc(88svh - var(--header-height)); }
  .hero__media { background-position: 64% center; }
  .hero__shade { background: linear-gradient(90deg, rgba(24, 13, 11, 0.86), rgba(29, 16, 13, 0.42)); }
  .hero__content { padding: 56px 0 64px; }
  .hero__eyebrow { font-size: 11px; letter-spacing: 0.17em; }
  .hero__eyebrow::before { width: 30px; }
  .hero__title { margin-top: 24px; font-size: 39px; line-height: 1.46; }
  .hero__lead { margin-top: 22px; font-size: 14px; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 14px; margin-top: 32px; }
  .hero__actions .text-link { align-self: flex-start; }

  .section-heading__ja { margin-top: 10px; font-size: 29px; }
  .section-heading--row { align-items: flex-start; flex-direction: column; gap: 22px; margin-bottom: 40px; }

  .philosophy__grid { gap: 34px; }
  .philosophy__title { font-size: clamp(22px, 6.5vw, 29px); }
  .philosophy__body { padding-top: 28px; }
  .philosophy__lead { font-size: 17px; }

  .founder__grid { gap: 48px; }
  .founder__title { font-size: 31px; line-height: 1.6; }
  .founder__title span { white-space: normal; }
  .founder__rule { margin: 28px 0; }
  .founder__lead { font-size: 17px; }
  .founder__portrait { width: min(82%, 270px); padding: 8px 8px 0; }
  .founder__portrait { box-shadow: 12px 12px 0 var(--wine); }
  .founder__portrait figcaption { align-items: flex-start; flex-direction: column; gap: 3px; }

  .products-showcase__heading { margin-bottom: 36px; }
  .products-showcase__lead { font-size: 14px; }
  .product-catalog { gap: 14px; }
  .product-card__link { grid-template-columns: 118px minmax(0, 1fr); gap: 18px; min-height: 180px; padding: 16px; }
  .product-card h3 { font-size: 16px; line-height: 1.55; }
  .product-card__body > p:not(.product-card__type) { display: none; }
  .product-card__more { margin-top: 12px; }

  .brand-grid { grid-template-columns: 1fr; gap: 50px; }
  .brand-card--large { grid-column: auto; }
  .brand-card--large .brand-card__media,
  .brand-card__media { aspect-ratio: 4 / 3; }
  .brand-card__body { padding-top: 22px; }
  .brand-card__title { font-size: 24px; }
  .product-note { margin-top: 68px; padding: 14px 14px 0; }
  .product-note__visuals { min-height: 380px; }
  .product-note__image--main { width: 92%; height: 70%; }
  .product-note__image--sub { width: 70%; height: 43%; border-width: 7px; }
  .product-note__body { padding: 36px 10px 42px; }
  .product-note__title { font-size: 25px; }
  .product-note__steps li { grid-template-columns: 24px 70px 1fr; gap: 8px; }

  .trust__heading { margin-bottom: 44px; }
  .trust__heading h2 { font-size: clamp(23px, 7.2vw, 28px); letter-spacing: 0.035em; white-space: nowrap; text-wrap: nowrap; }
  .trust__timeline { grid-template-columns: 1fr; row-gap: 0; }
  .trust__timeline li { min-height: 0; padding: 18px 2px; }
  .trust__timeline time { font-size: 17px; }
  .trust__timeline span { margin-top: 5px; }
  .trust__certification { gap: 38px; margin-top: 70px; padding: 30px 24px; }
  .trust__certification figure { justify-self: center; width: min(100%, 220px); }

  .business-banner { padding: 72px 0; }
  .business-banner__grid { gap: 34px; }
  .business-banner__title { font-size: clamp(20px, 6.4vw, 24px); line-height: 1.75; letter-spacing: 0.02em; }
  .business-banner::after { font-size: 190px; }

  .stores__grid { gap: 38px; padding: 72px 0; }
  .stores__title { font-size: clamp(23px, 7vw, 29px); letter-spacing: 0.04em; }
  .store-list a { min-height: 64px; font-size: 15px; }
  .stores__visual { max-height: 340px; }

  .profile-list__row { grid-template-columns: 1fr; gap: 2px; padding: 17px 2px; }
  .profile-list dt { font-size: 11px; }
  .history { margin-bottom: 56px; padding: 28px 22px; }
  .history__intro h3 { font-size: 24px; letter-spacing: 0.035em; }
  .history__list li { grid-template-columns: 80px 1fr; gap: 12px; }

  .contact__grid { gap: 38px; }
  .contact__title { font-size: clamp(20px, 6.4vw, 25px); line-height: 1.75; letter-spacing: 0.02em; }
  .contact__hours { margin-top: 30px; }
  .form { padding: 26px 20px; }
  .form__grid { grid-template-columns: 1fr; gap: 0; }
  .button { width: 100%; }

  .site-footer { padding-top: 44px; }
  .site-footer__brand img { width: 190px; }
  .site-footer__links { grid-template-columns: 1fr; gap: 2px; width: 100%; }
  .site-footer__links a { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }

  .result { padding: 72px 0; }
  .result__title { font-size: 30px; }

}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__media { animation: hero-drift-gentle 12s ease-in-out alternate infinite; }
  .hero__eyebrow,
  .hero__title,
  .hero__lead,
  .hero__actions { animation: none; }
  .hero__scroll-line::after { animation-duration: 2.6s; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── 購入先リンク ───────────────────────── */
.shop-links { margin-top: 18px; }

.shop-links__label {
  margin-bottom: 9px;
  color: var(--ink-soft);
  font-family: var(--en-serif);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.shop-links__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shop-links__item {
  position: relative;
  display: inline-block;
  padding: 3px 0;
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color 260ms var(--ease-out);
}

.shop-links__item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transition: right 320ms var(--ease-out);
}

.shop-links__item:hover::after,
.shop-links__item:focus-visible::after { right: 0; }

/* モールごとの色はホバー時にだけ静かに乗せる */
.shop-links__item--official:hover { color: var(--wine); }
.shop-links__item--rakuten:hover  { color: #bf0000; }
.shop-links__item--amazon:hover   { color: #b1740f; }
.shop-links__item--yahoo:hover    { color: #c8102e; }
.shop-links__item--line:hover     { color: #06c755; }

/* カード全体のリンクを外したため、画像の拡大はカードのホバーで起こす */
.product-card:hover .product-card__media img { transform: scale(1.065); }

@media (max-width: 720px) {
  .shop-links { margin-top: 14px; }
  .shop-links__item { font-size: 10.5px; }
  .product-card__body > p:not(.product-card__type) { display: block; }
}

/* ── 理念セクションの写真 ─────────────────── */
/* 2カラムのグリッドを保つため、写真は見出し側の列に置く */
.philosophy__media {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  overflow: hidden;
}

.philosophy__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 58%;
}

/* 左（見出し＋写真）の高さに対し、本文を上下中央に置いて重心を合わせる */
.philosophy__body {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
}

@media (max-width: 900px) {
  .philosophy__media,
  .philosophy__body { grid-column: 1; grid-row: auto; }
  .philosophy__media img { aspect-ratio: 16 / 9; }
}

/* ===== 2026-08-25 多言語対応にともなう調整 ===== */

/* 見出しは日本語の改行位置に合わせて nowrap を指定しているが、
   語長の違う言語では枠からはみ出す（伊語のお問い合わせ見出しで349px超過）。
   日本語以外では自然に折り返す。 */
html:not([lang="ja"]) .philosophy__title span,
html:not([lang="ja"]) .founder__title span,
html:not([lang="ja"]) .business-banner__title span,
html:not([lang="ja"]) .stores__title span,
html:not([lang="ja"]) .contact__title span,
html:not([lang="ja"]) .trust__heading h2 {
  white-space: normal;
  text-wrap: pretty;
}

/* ===== 2026-08-25 表示速度の調整（見た目は変えない） ===== */

/* will-change は「これから変形する」というブラウザへの予告で、それ自体は何も描画しない。
   常時指定すると対象ごとに合成レイヤーを確保し続けるため、ホバー時だけ動く画像から外す。
   transition は指定がなくても動作する。ヒーロー背景は常時アニメーションのため対象外。 */
.product-card__media img,
.brand-card__media img,
.product-note__image img,
.stores__visual img { will-change: auto; }

/* 追従ヘッダーの backdrop-filter は、スクロールのたびに背後を再ブラーする。
   背景が96.5%不透明のため見た目への寄与はごく小さい。
   実測（1280px・ヘッダー帯120,320画素）: 最大差 7/255、3以上ずれた画素は2.2%。
   820px以下では元から無効だったため、全幅で外して挙動を揃える。 */
.site-header { backdrop-filter: none; -webkit-backdrop-filter: none; }

/* 狭い画面の切替UI。略号が小さく読みにくかったため12pxに上げ、
   タップ領域も本文への誤タップが起きない高さを確保する。 */
@media (max-width: 600px) {
  .lang-switch__button { height: 32px; padding: 0 9px; }
  .lang-switch__current::after { font-size: 12px; font-weight: 600; }
}
