@charset "UTF-8";
/* ============ base (テーマ非依存・変数参照) ============ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.06em;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
}

header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4vw;
  transition: 0.4s;
}

.logo {
  cursor: pointer;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

/* logo .la/.lb switched by [data-theme] */
nav ul {
  display: flex;
  gap: 1.9vw;
  list-style: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

nav a {
  position: relative;
  padding-bottom: 4px;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

nav a:hover::after, nav a.cur::after {
  width: 100%;
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 120;
}

.menu-btn span {
  width: 26px;
  height: 1px;
  background: var(--fg);
  transition: 0.3s;
}

.mnav {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.mnav.open {
  opacity: 0.98;
  pointer-events: auto;
}

.mnav ul {
  list-style: none;
  text-align: center;
}

.mnav a {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.3em;
  display: block;
  padding: 0.9rem;
}

.page {
  display: none;
}

.page.act {
  display: block;
  animation: pgin 0.6s ease;
}

@keyframes pgin {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
section {
  padding: 12vh 6vw;
}

.sec-head {
  display: flex;
  align-items: baseline;
  gap: 1.4rem;
  margin-bottom: 6vh;
}

.sec-head .en {
  font-size: 0.66rem;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
}

.sec-head h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  letter-spacing: 0.2em;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal.on {
  opacity: 1;
  transform: none;
}

.btn {
  display: inline-block;
  margin-top: 3rem;
  padding: 1rem 3.2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  cursor: pointer;
  background: none;
  transition: 0.35s;
}

.btn:hover {
  background: var(--gold);
  color: var(--bg);
}

/* hero */
.hero {
  position: relative;
  height: 100svh;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .hb {
  display: none;
}

.hero-copy {
  position: absolute;
  top: 50%;
  right: 8vw;
  transform: translateY(-50%);
  z-index: 2;
  writing-mode: vertical-rl;
  max-height: 78svh;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  letter-spacing: 0.28em;
  white-space: nowrap;
  margin-block-start: 1.7rem;
}

.hero-copy h1 img {
  height: min(56svh, 530px);
  width: auto;
  display: block;
}

.hero-copy p {
  font-family: var(--serif);
  font-size: clamp(0.9rem, 1.6vw, 1.15rem);
  letter-spacing: 0.3em;
  color: var(--gold);
  white-space: nowrap;
  padding-block-start: 0.6rem;
}

.hero-en {
  position: absolute;
  left: 4vw;
  bottom: 9vh;
  z-index: 2;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  letter-spacing: 0.55em;
  color: var(--gold);
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(0, 0, 0, 0.6);
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  width: 1px;
  height: 9vh;
  background: var(--line);
  overflow: hidden;
}

.scroll-hint::after {
  content: "";
  position: absolute;
  left: 0;
  top: -40%;
  width: 100%;
  height: 40%;
  background: var(--gold);
  animation: drop 2.2s infinite;
}

@keyframes drop {
  to {
    top: 110%;
  }
}
/* page head (下層共通) */
.page-head {
  padding: 24vh 6vw 6vh;
}

.page-head .en {
  font-size: 0.68rem;
  letter-spacing: 0.55em;
  color: var(--gold);
  text-transform: uppercase;
}

.page-head h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: 0.24em;
  margin: 1.2rem 0;
}

.page-head p {
  max-width: 640px;
  font-size: 0.9rem;
  color: var(--muted);
}

.crumb {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.crumb a:hover {
  color: var(--gold);
}

/* values */
.lead {
  max-width: 720px;
  margin: 0 auto 8vh;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  letter-spacing: 0.14em;
  line-height: 2.5;
}

.lead em {
  font-style: normal;
  color: var(--gold);
}

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.value {
  background: var(--bg2);
  padding: 3.4rem 2rem;
  position: relative;
}

.value::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2rem;
  width: 34px;
  height: 2px;
  background: var(--gold);
}

.value .num {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
}

.value h3 {
  font-size: 1.08rem;
  letter-spacing: 0.14em;
  margin: 1rem 0;
}

.value p {
  font-size: 0.8rem;
  color: var(--muted);
}

/* brew rows: 写真×文章パネルの重なり構成 */
.brew-wrap {
  max-width: 1380px;
  margin: 0 auto;
  padding: 4vh 6vw 12vh;
  display: flex;
  flex-direction: column;
  gap: 14vh;
}

.brew-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  position: relative;
}

.brew-row .ph {
  grid-area: 1/1/2/9;
  overflow: hidden;
  aspect-ratio: 15/10;
  box-shadow: 0 32px 80px var(--shadow);
}

.brew-row .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s;
}

.brew-row:hover .ph img {
  transform: scale(1.04);
}

.brew-row .tx {
  grid-area: 1/7/2/13;
  position: relative;
  z-index: 2;
  background: var(--panel);
  padding: 4.4rem 4rem;
  border-top: 2px solid var(--gold);
  box-shadow: 0 26px 70px var(--shadow);
}

.brew-row:nth-child(even) .ph {
  grid-area: 1/5/2/13;
}

.brew-row:nth-child(even) .tx {
  grid-area: 1/1/2/7;
}

.ch-big {
  position: absolute;
  top: -5rem;
  right: 2.6rem;
  z-index: 3;
  font-family: var(--serif);
  font-size: clamp(4.5rem, 8vw, 7.5rem);
  line-height: 1;
  color: var(--gold);
  opacity: 0.18;
  pointer-events: none;
  user-select: none;
}

.brew-row .tx .en {
  font-size: 0.63rem;
  letter-spacing: 0.45em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  display: block;
}

.brew-row .tx h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  letter-spacing: 0.2em;
  margin-bottom: 1.6rem;
}

.brew-row .tx p {
  font-size: 0.87rem;
  color: var(--sub);
  max-width: 46ch;
}

.brew-row .tx .kakun {
  font-family: var(--serif);
  color: var(--gold);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  letter-spacing: 0.12em;
  line-height: 2.2;
  margin: 1.6rem 0 0;
}

.more {
  margin-top: 2rem;
  font-size: 0.73rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  display: inline-block;
}

.more::after {
  content: "　→";
  display: inline-block;
  transition: transform 0.3s;
}

.more:hover::after {
  transform: translateX(6px);
}

/* products */
.filters {
  max-width: 1200px;
  margin: 0 auto 6vh;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.fgroup {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.fgroup .flabel {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-right: 1rem;
  white-space: nowrap;
  font-family: var(--serif);
}

.pill {
  border: 1px solid var(--line);
  background: var(--bg2);
  color: var(--fg);
  padding: 0.85em 1.9em;
  font-size: 0.92rem;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: 0.25s;
  min-height: 44px;
}

.pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.pill.on {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
  font-weight: 500;
}

.pill.on::before {
  content: "✓ ";
  font-weight: 700;
}

.news .filters {
  margin-bottom: 3vh;
}

.news-empty {
  padding: 2rem 1rem;
  text-align: center;
  list-style: none;
}

.news-empty span {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}

.pcount {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.pgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4vw;
  max-width: 1200px;
  margin: 0 auto;
}

.pcard {
  text-align: center;
  padding: 1.6rem 0 2rem;
  background: none;
  cursor: pointer;
  position: relative;
  transition: 0.4s;
}

.pcard:hover {
  transform: translateY(-8px);
}

.pcard img {
  height: 265px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 20px 24px var(--shadow));
  transition: filter 0.4s;
}

.pcard:hover img {
  filter: drop-shadow(0 26px 30px var(--shadow)) brightness(1.06);
}

.pcard h3 {
  font-size: 0.92rem;
  letter-spacing: 0.2em;
  margin-top: 1.3rem;
}

.pcard .tags {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.tagc, .tagt {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  padding: 0.15em 0.8em;
  border: 1px solid var(--line);
  color: var(--muted);
}

.tagt {
  color: var(--gold);
  border-color: var(--gold);
}

.dummy-note {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-align: center;
  margin-top: 5vh;
}

/* product detail */
.detail {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 6vw;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.d-photo {
  position: sticky;
  top: 14vh;
  text-align: center;
  padding: 2.4rem 1.6rem 1.8rem;
  background: var(--card);
}

.d-photo.product-gallery {
  display: flex;
  flex-direction: column;
  max-height: calc(100dvh - 16vh);
  max-height: 84vh;
  overflow: hidden;
}

.product-gallery__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.d-photo img, .product-gallery__slide img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(46vh, 420px);
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
  filter: drop-shadow(0 22px 26px var(--shadow));
  display: block;
}

.product-gallery__main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.product-gallery__stage {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery__slide {
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
}

.product-gallery__slide[hidden] {
  display: none !important;
}

.product-gallery__caption {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  color: var(--muted);
  margin: 0;
}

.product-gallery__nav {
  flex: 0 0 auto;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--fg);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.product-gallery__nav:hover, .product-gallery__nav:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  outline: none;
}

.product-gallery__nav[hidden] {
  display: none !important;
}

.product-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
}

.product-gallery__thumbs li {
  margin: 0;
}

.product-gallery__thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s, border-color 0.2s;
}

.product-gallery__thumb img {
  width: auto;
  height: auto;
  max-height: 4.2rem;
  max-width: 3.6rem;
  object-fit: contain;
  object-position: center;
  filter: none;
  margin: 0;
  display: block;
}

.product-gallery__thumb-cap {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  max-width: 4.5rem;
  line-height: 1.3;
  text-align: center;
}

.product-gallery__thumb.is-active, .product-gallery__thumb:hover, .product-gallery__thumb:focus-visible {
  opacity: 1;
  border-color: var(--gold);
  outline: none;
}

.product-gallery__download {
  flex: 0 0 auto;
  margin: 1.2rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  text-align: center;
}

.product-gallery__download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  padding: 0.85rem 1.6rem;
}

.d-head .cat {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  color: var(--gold);
}

.d-head h1 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  letter-spacing: 0.22em;
  margin: 0.8rem 0 0.2rem;
}

.d-head .kana {
  font-size: 0.72rem;
  letter-spacing: 0.5em;
  color: var(--muted);
}

.d-block {
  margin-top: 7vh;
}

.d-block h2 {
  font-size: 1.05rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.2rem;
}

.d-block h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.d-block > p {
  font-size: 0.9rem;
  color: var(--sub);
}

.bars {
  display: flex;
  flex-direction: column;
  gap: 1.1em;
  margin-top: 1.8rem;
}

.bar {
  display: grid;
  grid-template-columns: 6.5em 1fr;
  align-items: center;
  gap: 1.2em;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
}

.track {
  height: 4px;
  background: var(--line);
  position: relative;
}

.fill {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: var(--gold);
  width: 0;
  transition: width 1.2s ease 0.3s;
}

.on .fill {
  width: var(--w);
}

.temps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 1.8rem;
}

.temp {
  background: var(--bg2);
  padding: 1.5em 0.5em;
  text-align: center;
}

.temp .mark {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--muted);
}

.temp.best .mark {
  color: var(--gold);
}

.temp .nm {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  margin-top: 0.4em;
}

.temp .deg {
  font-size: 0.62rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

table.spec {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.6rem;
}

.spec th, .spec td {
  border-bottom: 1px solid var(--line);
  padding: 1em 0.6em;
  font-size: 0.84rem;
  text-align: left;
  font-weight: 400;
}

.spec th {
  color: var(--muted);
  width: 9em;
  letter-spacing: 0.2em;
}

.quote {
  border-left: 2px solid var(--gold);
  padding: 0.6em 1.8em;
  margin: 2.2em 0;
  font-size: 0.9rem;
  color: var(--sub);
}

.quote cite {
  display: block;
  margin-top: 1em;
  color: var(--muted);
  font-size: 0.72rem;
  font-style: normal;
  letter-spacing: 0.2em;
}

.backlink {
  display: inline-block;
  margin: 8vh 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  cursor: pointer;
}

/* 造り chapters */
.ch-num {
  font-family: var(--serif);
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  color: var(--gold);
}

.tsukuri-lead {
  max-width: 680px;
  margin: 0 auto 4vh;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.9vw, 1.25rem);
  line-height: 2.6;
  letter-spacing: 0.14em;
}

/* 菊姫考 */
.feature {
  max-width: 820px;
  margin: 0 auto;
  background: var(--card);
  padding: 7vh 7vw;
  border-top: 2px solid var(--gold);
}

.feature .ftag {
  font-size: 0.64rem;
  letter-spacing: 0.4em;
  color: var(--gold);
}

.feature h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  letter-spacing: 0.16em;
  margin: 1.4rem 0 3vh;
  line-height: 1.9;
}

.feature p {
  font-size: 0.92rem;
  color: var(--sub);
  margin-bottom: 1.8em;
  text-align: justify;
}

.feature p.fquote {
  font-family: var(--serif);
  color: var(--fg);
  border-left: 2px solid var(--gold);
  padding-left: 1.6em;
  line-height: 2.3;
}

.feature .fauthor {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-align: right;
}

.kou-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4vw;
  max-width: 1200px;
  margin: 8vh auto 0;
}

.kou-col {
  background: var(--card);
  padding: 3rem 2.2rem;
}

.kou-col h3 {
  font-size: 1.02rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.kou-col .cnt {
  font-size: 0.66rem;
  letter-spacing: 0.25em;
  color: var(--muted);
  margin-bottom: 1.8rem;
}

.kou-col ul {
  list-style: none;
}

.kou-col li {
  border-bottom: 1px solid var(--line);
}

.kou-col a {
  display: block;
  padding: 0.9em 0.2em;
  font-size: 0.82rem;
  transition: 0.3s;
}

.kou-col a:hover {
  color: var(--gold);
  padding-left: 0.8em;
}

/* コンテンツ(media) */
.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3vw;
  max-width: 1200px;
  margin: 0 auto;
}

.media-box {
  background: var(--card);
  padding: 3.4rem 3rem;
}

.media-box .en {
  font-size: 0.62rem;
  letter-spacing: 0.45em;
  color: var(--gold);
  text-transform: uppercase;
}

.media-box h3 {
  font-size: 1.15rem;
  letter-spacing: 0.22em;
  margin: 0.8rem 0 0.6rem;
}

.media-box .desc {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 1.6rem;
}

.media-box ul {
  list-style: none;
}

.media-box li {
  border-bottom: 1px solid var(--line);
}

.media-box li a {
  display: flex;
  gap: 1.6rem;
  align-items: baseline;
  padding: 1em 0.2em;
  font-size: 0.84rem;
  transition: 0.3s;
}

.media-box li a:hover {
  color: var(--gold);
}

.media-box time {
  font-family: var(--serif);
  font-size: 0.72rem;
  color: var(--gold);
  white-space: nowrap;
  letter-spacing: 0.12em;
}

.videos {
  max-width: 1200px;
  margin: 6vh auto 0;
}

.videos h3 {
  font-size: 1.15rem;
  letter-spacing: 0.22em;
  margin-bottom: 0.6rem;
}

.v-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2vw;
  margin-top: 3vh;
}

.vcard {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.vcard img {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
  transition: transform 0.8s;
  filter: brightness(0.8);
}

.vcard:hover img {
  transform: scale(1.05);
}

.vcard .play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vcard .play i {
  width: 58px;
  height: 58px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  color: #fff;
  font-size: 0.8rem;
  padding-left: 4px;
  background: rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.vcard:hover .play i {
  background: var(--gold);
  border-color: var(--gold);
}

.vcard .vt {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.2rem 1.2rem 0.9rem;
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: #fff;
}

.movie-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
  background: rgba(8, 7, 6, 0.78);
  backdrop-filter: blur(2px);
}

.movie-modal__panel {
  position: relative;
  width: min(960px, 100%);
  background: #0c0b09;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.movie-modal__close {
  position: absolute;
  top: -2.6rem;
  right: 0;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.movie-modal__close:hover, .movie-modal__close:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  outline: none;
}

.movie-modal__frame {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
}

.movie-modal__frame iframe, .movie-modal__frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #000;
}

html.movie-modal-open, html.movie-modal-open body {
  overflow: hidden;
}

/* news */
.news ul {
  list-style: none;
  max-width: 860px;
  margin: 0 auto;
}

.news li {
  border-bottom: 1px solid var(--line);
}

.news li:first-child {
  border-top: 1px solid var(--line);
}

.news a {
  display: flex;
  gap: 3rem;
  align-items: baseline;
  padding: 1.5rem 1rem;
  transition: 0.3s;
}

.news a:hover {
  background: var(--hover);
}

.news time {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.news span {
  font-size: 0.88rem;
}

/* story band / owner */
.story {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 0 6vw;
}

.story .bg {
  position: absolute;
  inset: 0;
}

.story .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: var(--story-op);
}

.story .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--story-grad);
}

.story-in {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 12vh 0;
}

.story-in .en {
  font-size: 0.66rem;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
}

.story-in h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  letter-spacing: 0.2em;
  margin: 1.5rem 0 2rem;
  line-height: 1.9;
}

.nw {
  white-space: nowrap;
  display: inline-block;
}

.story-in p {
  font-size: 0.9rem;
  color: var(--sub);
}

.owner {
  background: var(--bg2);
  text-align: center;
}

.owner .tag {
  display: inline-block;
  margin-bottom: 1.6rem;
  padding: 0.35rem 1.4rem;
  border: 1px solid var(--amber);
  color: var(--amber);
  font-size: 0.66rem;
  letter-spacing: 0.4em;
}

.owner h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  letter-spacing: 0.24em;
  margin-bottom: 1.8rem;
  line-height: 2;
}

.owner p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 0.88rem;
  color: var(--sub);
}

/* about / contact */
.about-wrap, .form-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.form-wrap label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin: 2.2rem 0 0.7rem;
}

.form-wrap input, .form-wrap textarea {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--line);
  color: var(--fg);
  padding: 1em 1.2em;
  font-family: inherit;
  font-size: 0.9rem;
}

.form-wrap input:focus, .form-wrap textarea:focus {
  outline: 1px solid var(--gold);
}

.form-note {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 2rem;
  letter-spacing: 0.15em;
}

/* footer */
footer {
  border-top: 1px solid var(--line);
  padding: 9vh 6vw 4vh;
  background: var(--footer);
}

.f-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 4vw;
  max-width: 1100px;
  margin: 0 auto;
}

.f-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: 0.35em;
  color: var(--f-fg);
}

.f-logo small {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.45em;
  color: var(--gold);
  margin-top: 0.4rem;
}

footer address {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--f-text);
  margin-top: 1.6rem;
  line-height: 2.2;
}

.f-nav {
  list-style: none;
  font-size: 0.8rem;
  color: var(--f-text);
}

.f-nav li {
  margin-bottom: 0.9rem;
}

.f-nav a:hover {
  color: var(--gold);
}

.f-note {
  max-width: 1100px;
  margin: 7vh auto 0;
  padding-top: 3vh;
  border-top: 1px solid var(--line);
  font-size: 0.66rem;
  color: var(--f-note);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  nav {
    display: none;
  }
  .menu-btn {
    display: flex;
  }
  .values, .kou-grid {
    grid-template-columns: 1fr 1fr;
  }
  .brew-wrap {
    gap: 11vh;
    padding-bottom: 10vh;
  }
  .brew-row {
    display: flex;
    flex-direction: column;
  }
  .brew-row .ph {
    width: 100%;
    aspect-ratio: 16/10;
  }
  .brew-row .tx {
    width: calc(100% - 9vw);
    margin: -14vw auto 0;
    padding: 2.8rem 2.2rem;
  }
  .ch-big {
    top: -3.6rem;
    right: 1.4rem;
    font-size: 4rem;
  }
  .pgrid {
    grid-template-columns: 1fr 1fr;
  }
  .detail {
    grid-template-columns: 1fr;
  }
  .d-photo {
    position: static;
  }
  .d-photo.product-gallery {
    max-height: none;
    overflow: visible;
  }
  .product-gallery__body {
    overflow: visible;
  }
  .media-grid {
    grid-template-columns: 1fr;
  }
  .v-grid {
    grid-template-columns: 1fr;
  }
  .f-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    right: 6vw;
  }
}
@media (max-width: 560px) {
  .values, .kou-grid, .pgrid {
    grid-template-columns: 1fr;
  }
  .news a {
    gap: 1rem;
    flex-direction: column;
    padding: 1.2rem 0.6rem;
  }
  .temps {
    grid-template-columns: repeat(5, 1fr);
  }
  .temp .nm {
    font-size: 0.62rem;
  }
}
/* ==== 改良版 追加スタイル ==== */
/* 質感: 微細な紙目ノイズ */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* 数字帯 */
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 9vh 4vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  padding: 1rem 3.6vw;
  text-align: center;
  position: relative;
}

.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: var(--line);
}

.stat .v {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.stat .v small {
  font-size: 0.42em;
  letter-spacing: 0.15em;
}

.stat .l {
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  color: var(--muted);
  margin-top: 0.7rem;
}

/* 温度体験 */
.onkan {
  background: var(--bg2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.onkan .en {
  font-size: 0.66rem;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
}

.onkan h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: 0.24em;
  margin: 1.4rem 0 0.8rem;
}

.onkan .sub {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.2em;
}

.cup {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  margin: 5.5vh auto 0;
  position: relative;
  transition: background 1.2s ease, box-shadow 1.2s ease;
  background: radial-gradient(circle at 35% 30%, #e9dfc8, #b9a26b);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.cup::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px solid rgba(13, 13, 15, 0.18);
}

.cup .st {
  position: absolute;
  bottom: 99%;
  width: 2px;
  height: 52px;
  border-radius: 2px;
  opacity: 0;
  background: linear-gradient(transparent, rgba(246, 244, 239, 0.55));
  transition: opacity 0.9s;
}

.cup .st:nth-child(1) {
  left: 38%;
}

.cup .st:nth-child(2) {
  left: 52%;
}

.cup .st:nth-child(3) {
  left: 66%;
}

.cup.warm .st:nth-child(1) {
  animation: steam 2.8s infinite ease-in-out;
}

.cup.warm .st:nth-child(2) {
  animation: steam 2.8s 0.9s infinite ease-in-out;
}

.cup.warm .st:nth-child(3) {
  animation: steam 2.8s 1.7s infinite ease-in-out;
}

@keyframes steam {
  0% {
    transform: translateY(10px) scaleY(0.6);
    opacity: 0;
  }
  35% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-20px) scaleY(1.25);
    opacity: 0;
  }
}
.onkan .deg {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-top: 3.2vh;
}

.onkan .desc {
  font-family: var(--serif);
  font-size: clamp(1.02rem, 1.9vw, 1.35rem);
  letter-spacing: 0.13em;
  line-height: 2.4;
  margin: 1.6vh auto 0;
  min-height: 6.2em;
  transition: opacity 0.5s;
}

.onkan .desc.fade {
  opacity: 0;
}

.temp-tabs {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 3.4vh;
  flex-wrap: wrap;
}

.onkan .note {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.2em;
  margin-top: 3.4vh;
}

/* シーン別 */
.scenes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6vw;
  max-width: 1400px;
  margin: 0 auto;
}

.scene {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4.1;
}

.scene img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.9);
  transition: transform 1.1s, filter 0.6s;
}

.scene:hover img {
  transform: scale(1.07);
  filter: brightness(0.68);
}

.scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 45%, rgba(10, 10, 12, 0.82));
}

.scene .in {
  position: absolute;
  inset: auto 0 0;
  padding: 1.6rem 1.3rem;
  z-index: 2;
}

.scene h3 {
  font-size: 1.02rem;
  letter-spacing: 0.16em;
}

.scene .who {
  font-size: 0.7rem;
  color: #cfccc4;
  margin-top: 0.5rem;
  line-height: 1.9;
}

.scene .rec {
  display: inline-block;
  font-size: 0.66rem;
  color: var(--gold);
  letter-spacing: 0.22em;
  margin-top: 1rem;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* 声 */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.6vw;
  max-width: 1200px;
  margin: 0 auto;
}

.voice {
  background: var(--bg2);
  padding: 3rem 2.6rem;
  border-top: 2px solid var(--gold);
  font-size: 0.88rem;
  color: var(--sub);
  line-height: 2.2;
}

.voice .q {
  font-family: var(--serif);
  font-size: 1.02rem;
  letter-spacing: 0.1em;
}

.voice cite {
  display: block;
  margin-top: 1.6rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-style: normal;
  letter-spacing: 0.22em;
}

/* 購入導線 */
.buy {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.buy .bg {
  position: absolute;
  inset: 0;
}

.buy .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.buy .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 20%, var(--bg) 100%);
}

.buy .in {
  position: relative;
  z-index: 1;
}

.buy h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: 0.26em;
}

.buy p {
  font-size: 0.85rem;
  color: var(--sub);
  max-width: 560px;
  margin: 1.8rem auto 0;
}

.buy .btns {
  display: flex;
  gap: 1.4rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* 商品カードのホバー誘導 */
.pcard {
  padding-bottom: 3.4rem;
}

.pcard::after {
  content: "詳しく見る →";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.2rem;
  font-size: 0.64rem;
  letter-spacing: 0.26em;
  color: var(--gold);
  opacity: 0;
  transition: 0.35s;
}

.pcard:hover::after {
  opacity: 1;
}

@media (max-width: 900px) {
  .scenes {
    grid-template-columns: 1fr 1fr;
  }
  .voices-grid {
    grid-template-columns: 1fr;
  }
  .stat {
    padding: 1rem 6vw;
  }
}
@media (max-width: 560px) {
  .scenes {
    grid-template-columns: 1fr 1fr;
    gap: 2.4vw;
  }
  .scene .who {
    display: none;
  }
}
/* ==== 微調整追加: 強み・造り目次・コンベア・PICKUP ==== */
.strengths {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1240px;
  margin: 0 auto;
}

.str {
  background: none;
  padding: 1.4rem 2vw 0.6rem;
  text-align: center;
  position: relative;
}

.str:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8%;
  bottom: 8%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--line) 25%, var(--line) 75%, transparent);
}

.str .kanji {
  font-family: var(--serif);
  font-size: clamp(4rem, 6.4vw, 6rem);
  line-height: 1;
  position: relative;
  display: inline-block;
}

.str .kanji::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.1rem;
  transform: translateX(-50%);
  width: 2.6rem;
  height: 2px;
  background: var(--gold);
}

.str .copy {
  writing-mode: vertical-rl;
  margin: 2.6rem auto 0;
  font-family: var(--serif);
  font-size: clamp(0.92rem, 1.4vw, 1.1rem);
  letter-spacing: 0.26em;
  line-height: 2;
  height: 17.5em;
  white-space: nowrap;
}

.str .fact {
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  margin-top: 1.8rem;
  line-height: 1.9;
}

.toc {
  list-style: none;
  max-width: 960px;
  margin: 0 auto;
}

.toc li {
  border-bottom: 1px solid var(--line);
}

.toc li:first-child {
  border-top: 1px solid var(--line);
}

.toc a {
  display: grid;
  grid-template-columns: 5.4em 5.6em 1fr auto;
  align-items: baseline;
  gap: 2rem;
  padding: 2.1rem 1.2rem;
  transition: background 0.3s;
}

.toc a:hover {
  background: var(--hover);
}

.t-num {
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  color: var(--gold);
}

.t-ttl {
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: 0.4em;
}

.t-cp {
  font-size: 0.84rem;
  color: var(--sub);
}

.t-ar {
  color: var(--gold);
  transition: transform 0.3s;
}

.toc a:hover .t-ar {
  transform: translateX(8px);
}

.line {
  position: relative;
  margin: 2vh auto 3vh;
  max-width: 1380px;
}

.line-view {
  overflow: hidden;
}

.line-track {
  display: flex;
  align-items: flex-end;
  width: max-content;
  animation: convey 38s linear infinite;
}

.line:hover .line-track {
  animation-play-state: paused;
}

.line-item {
  flex: 0 0 auto;
  padding: 1.4rem 3.4vw 0;
  cursor: pointer;
  transition: transform 0.4s;
}

.line-item:hover {
  transform: translateY(-12px);
}

.line-item img {
  height: min(30vh, 265px);
  width: auto;
  filter: drop-shadow(0 20px 24px var(--shadow));
}

.line-belt {
  height: 12px;
  background: var(--belt);
  border-top: 1px solid rgba(201, 162, 75, 0.55);
  box-shadow: 0 -12px 34px rgba(201, 162, 75, 0.12);
}

.line-note {
  text-align: center;
  font-size: 0.66rem;
  letter-spacing: 0.25em;
  color: var(--muted);
  margin-top: 1.6rem;
}

@keyframes convey {
  to {
    transform: translateX(-50%);
  }
}
.scenes {
  grid-template-columns: repeat(6, 1fr);
}

.scene.pickup {
  grid-column: span 2;
  aspect-ratio: 6.28/4.1;
}

.scene.lite img {
  filter: brightness(0.72) saturate(0.95);
}

.scene .ptag {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: var(--bg);
  background: var(--gold);
  padding: 0.25em 1em;
  margin-bottom: 0.9rem;
}

@media (max-width: 900px) {
  .strengths {
    grid-template-columns: 1fr 1fr;
    row-gap: 6vh;
  }
  .str:nth-child(odd)::before {
    display: none;
  }
  .scenes {
    grid-template-columns: 1fr 1fr;
  }
  .toc a {
    grid-template-columns: 4.6em 4.2em 1fr auto;
    gap: 1rem;
    padding: 1.6rem 0.6rem;
  }
}
@media (max-width: 560px) {
  .toc a {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }
  .t-num {
    grid-row: 1;
  }
  .t-ttl {
    grid-row: 1;
    justify-self: end;
  }
  .t-cp {
    grid-column: 1/3;
  }
  .t-ar {
    display: none;
  }
  .line-item img {
    height: 180px;
  }
}
/* ==== 微調整第2弾: 造りビジュアルグリッド・商品ページ誘導 ==== */
.craft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2vw;
  max-width: 1260px;
  margin: 0 auto;
}

.craft {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.craft img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42) saturate(0.9);
  transition: transform 1s, filter 0.5s;
}

.craft:hover img {
  transform: scale(1.06);
  filter: brightness(0.62);
}

.craft .c-in {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.6rem;
}

.c-kanji {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: #f6f4ef;
  line-height: 1;
  position: relative;
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
}

.c-kanji::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 2.2rem;
  height: 1px;
  background: var(--gold);
}

.c-cp {
  font-size: 0.75rem;
  color: #d8d4cb;
  letter-spacing: 0.12em;
  line-height: 2;
  max-width: 32ch;
}

.find-note {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--fg);
  letter-spacing: 0.16em;
  line-height: 2.2;
  margin-top: 1.6rem;
}

.find-note::before {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.2rem;
}

@media (max-width: 900px) {
  .craft-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2vw;
  }
}
@media (max-width: 560px) {
  .c-cp {
    font-size: 0.66rem;
    max-width: 24ch;
  }
  .pill {
    padding: 0.8em 1.3em;
    font-size: 0.86rem;
  }
}
/* ==== SNSバナー ==== */
.sns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2vw;
  max-width: 920px;
  margin: 0 auto;
}

.sns-card {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  border: 1px solid var(--line);
  padding: 1.9rem 2.1rem;
  transition: 0.3s;
}

.sns-card:hover {
  border-color: var(--gold);
  background: var(--hover);
}

.sns-card > svg {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
}

.sns-tx {
  flex: 1;
}

.sns-tx h3 {
  font-size: 1.02rem;
  letter-spacing: 0.22em;
}

.sns-tx p {
  font-size: 0.76rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}

.sns-tx .d {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 0.5rem;
  letter-spacing: 0.1em;
}

.f-sns {
  display: flex;
  gap: 1rem;
  margin-top: 1.8rem;
}

.f-sns a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(154, 150, 142, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--f-sub);
  transition: 0.3s;
}

.f-sns a svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.f-sns a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

@media (max-width: 700px) {
  .sns-grid {
    grid-template-columns: 1fr;
  }
}
/*THEME:A*/
:root {
  --bg:#0d0d0f;
  --bg2:#16161a;
  --card:#16161a;
  --fg:#f6f4ef;
  --sub:#c9c5bc;
  --muted:#9a968e;
  --gold:#c9a24b;
  --amber:#b98d5e;
  --line:rgba(201,162,75,.25);
  --hover:rgba(201,162,75,.07);
  --panel:rgba(19,19,24,.97);
  --belt:linear-gradient(180deg,#26262c,#0a0a0c);
  --shadow:rgba(0,0,0,.65);
  --footer:#0a0a0c;
  --f-fg:#f6f4ef;
  --f-sub:#c9c5bc;
  --f-text:#e4e0d8;
  --f-note:#cfcbc3;
  --story-op:.34;
  --story-grad:linear-gradient(90deg,#0d0d0f 6%,transparent 55%,#0d0d0f 96%);
  --serif:"Shippori Mincho B1","Yu Mincho",serif;
  --sans:"Zen Kaku Gothic New","Yu Gothic",sans-serif;
}

header {
  background: linear-gradient(rgba(13, 13, 15, 0.85), rgba(13, 13, 15, 0));
}

header.scrolled {
  background: rgba(13, 13, 15, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.hero .ha {
  opacity: 0.62;
  transform: scale(1.06);
  animation: hz 9s ease-out forwards;
}

@keyframes hz {
  to {
    transform: scale(1);
  }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(13, 13, 15, 0.75) 100%);
}

.hero-copy h1 {
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}

.hero-copy h1 img {
  filter: drop-shadow(0 0 22px rgba(0, 0, 0, 0.55));
}

.pcard::before {
  content: "";
  position: absolute;
  inset: auto 12% 2.4rem;
  height: 90px;
  background: radial-gradient(ellipse at bottom, rgba(201, 162, 75, 0.25), transparent 70%);
}

/*THEME:END*/
/* ===== WP版調整 ===== */
a.pcard {
  display: block;
}

.page {
  display: block;
  animation: pgin 0.6s ease;
}

a.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.feature h2 a {
  color: inherit;
}

.feature h2 a:hover {
  color: var(--gold);
}

.pagination, .nav-links {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin: 6vh 0 2vh;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  flex-wrap: wrap;
}

.pagination a, .pagination span, .nav-links a, .nav-links span {
  color: var(--muted);
  padding: 0.4em 0.8em;
}

.pagination .current, .nav-links .current {
  color: var(--gold);
}

.pagination ul, .news-pagination ul {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.pagination li, .news-pagination li {
  margin: 0;
}

.entry-body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 0.92rem;
  color: var(--sub);
}

.entry-body p {
  margin-bottom: 1.6em;
}

.entry-body img {
  margin: 2em auto;
}

.feature .entry-body {
  max-width: none;
  color: var(--sub);
}

.feature .entry-body p {
  margin-bottom: 1.8em;
  text-align: justify;
}

.feature .entry-body p.fquote, .feature .entry-body .fquote {
  font-family: var(--serif);
  color: var(--fg);
  border-left: 2px solid var(--gold);
  padding-left: 1.6em;
  line-height: 2.3;
}

.wpcf7 label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin: 2.2rem 0 0.7rem;
}

.wpcf7 input[type=text], .wpcf7 input[type=email], .wpcf7 input[type=tel], .wpcf7 textarea {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--line);
  color: var(--fg);
  padding: 1em 1.2em;
  font-family: inherit;
  font-size: 0.9rem;
}

.wpcf7 input:focus, .wpcf7 textarea:focus {
  outline: 1px solid var(--gold);
}

.wpcf7-submit {
  display: inline-block;
  margin-top: 3rem;
  padding: 1rem 3.2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  cursor: pointer;
  background: none;
  transition: 0.35s;
}

.wpcf7-submit:hover {
  background: var(--gold);
  color: var(--bg);
}

/* テーマ切替ボタン */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: 1.2rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--fg);
  cursor: pointer;
  transition: 0.3s;
  flex-shrink: 0;
}

.theme-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.theme-toggle .icon-sun {
  display: none;
}

.theme-toggle .icon-moon {
  display: block;
}

html[data-theme=light] .theme-toggle .icon-sun {
  display: block;
}

html[data-theme=light] .theme-toggle .icon-moon {
  display: none;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

@media (max-width: 900px) {
  .header-tools {
    margin-left: auto;
    margin-right: 0.8rem;
  }
}
/* ロゴ切替: 黒テーマ=白抜き(.la) / 白テーマ=カラー(.lb)
   ヒーロー内は写真上のため常に白抜き（.la）を優先表示 */
html:not([data-theme=light]) .lb {
  display: none !important;
}

html[data-theme=light] .la {
  display: none !important;
}

html[data-theme=light] .hero-copy .la,
html .hero-copy .la {
  display: block !important;
}

html[data-theme=light] .hero-copy .lb,
html .hero-copy .lb {
  display: none !important;
}

html[data-theme=light] .f-logo .la {
  display: block !important;
}

html[data-theme=light] .f-logo .lb {
  display: none !important;
}

/*THEME:LIGHT — 白ベース（モダン・ヘリテージ維持・画像セクションは明瞭に）*/
html[data-theme=light] {
  --bg:#f7f4ed;
  --bg2:#ebe5d8;
  --card:#fffcf7;
  /* 本文コントラストを確保（薄墨ではなくほぼ墨色） */
  --fg:#12100c;
  --sub:#2a2620;
  --muted:#554e44;
  --gold:#7d5a14;
  --amber:#7a5a30;
  --line:rgba(125,90,20,.34);
  --hover:rgba(125,90,20,.1);
  --panel:rgba(255,252,247,.98);
  --belt:linear-gradient(180deg,#ddd5c6,#c4bba8);
  --shadow:rgba(28,22,12,.2);
  --footer:#161410;
  --f-fg:#f6f4ef;
  --f-sub:#c9c5bc;
  --f-text:#e4e0d8;
  --f-note:#cfcbc3;
  /* 写真をはっきり見せ、左右は暗いベールでテキスト可読性を確保 */
  --story-op:.78;
  --story-grad:linear-gradient(90deg,rgba(22,20,16,.88) 0%,rgba(22,20,16,.45) 42%,rgba(22,20,16,.15) 70%,rgba(247,244,237,.55) 100%);
}

/* ライト時タイポ: 細字をやめコントラストと字面をはっきり */
html[data-theme=light] body {
  font-weight: 400;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

html[data-theme=light] h1,
html[data-theme=light] h2,
html[data-theme=light] h3,
html[data-theme=light] h4 {
  font-weight: 700;
}

html[data-theme=light] .page-head h1,
html[data-theme=light] .sec-head h2,
html[data-theme=light] .d-head h1,
html[data-theme=light] .onkan h2,
html[data-theme=light] .owner h2,
html[data-theme=light] .videos h3,
html[data-theme=light] .media-box h3,
html[data-theme=light] .feature h2 {
  color: var(--fg);
}

html[data-theme=light] .lead,
html[data-theme=light] .tsukuri-lead,
html[data-theme=light] .page-head p,
html[data-theme=light] .brew-row .tx p,
html[data-theme=light] .d-block > p,
html[data-theme=light] .value p,
html[data-theme=light] .voice,
html[data-theme=light] .feature p,
html[data-theme=light] .news span,
html[data-theme=light] .media-box .desc,
html[data-theme=light] .form-note,
html[data-theme=light] .dummy-note,
html[data-theme=light] .owner p,
html[data-theme=light] .find-note {
  color: var(--sub);
  font-weight: 400;
}

html[data-theme=light] .page-head .en,
html[data-theme=light] .sec-head .en,
html[data-theme=light] nav a,
html[data-theme=light] .pill,
html[data-theme=light] .btn,
html[data-theme=light] .more,
html[data-theme=light] .backlink,
html[data-theme=light] .flabel,
html[data-theme=light] .tagc,
html[data-theme=light] .tagt,
html[data-theme=light] .crumb {
  font-weight: 500;
}

html[data-theme=light] .str .copy,
html[data-theme=light] .brew-row .tx h3,
html[data-theme=light] .pcard h3,
html[data-theme=light] .kou-col a,
html[data-theme=light] .media-box li a,
html[data-theme=light] .sns-tx h3 {
  font-weight: 500;
  color: var(--fg);
}

html[data-theme=light] .kana,
html[data-theme=light] .pcount,
html[data-theme=light] .line-note,
html[data-theme=light] .onkan .sub,
html[data-theme=light] .onkan .note {
  color: var(--muted);
}

html[data-theme=light] .spec th {
  color: var(--muted);
  font-weight: 500;
}

html[data-theme=light] .spec td {
  color: var(--fg);
  font-weight: 400;
}

html[data-theme=light] .pill {
  color: var(--fg);
}

html[data-theme=light] .pill.on {
  color: #fffef9;
  font-weight: 600;
}

/* ライトモードのヘッダーは常に不透明クリーム */
html[data-theme=light] header,
html[data-theme=light] header.scrolled {
  background: #f7f4ed !important;
  backdrop-filter: none;
  border-bottom: 1px solid var(--line);
  color: var(--fg);
}

html[data-theme=light] header .logo .la {
  display: none !important;
}

html[data-theme=light] header .logo .lb {
  display: block !important;
}

html[data-theme=light] header .theme-toggle {
  color: var(--fg);
  border-color: var(--line);
}

html[data-theme=light] header .menu-btn span {
  background: var(--fg);
}

html[data-theme=light] body::after {
  opacity: 0.025;
}

html[data-theme=light] .cup {
  box-shadow: 0 20px 48px rgba(40, 30, 12, 0.22);
}

html[data-theme=light] .pcard::before {
  background: radial-gradient(ellipse at bottom, rgba(154, 114, 40, 0.22), transparent 70%);
}

/* ヒーロー: クリーム被せをやめ、暗いビネットで写真と白ロゴを両立 */
html[data-theme=light] .hero .ha {
  opacity: 0.88;
}

html[data-theme=light] .hero::after {
  background: radial-gradient(ellipse at 70% 45%, transparent 28%, rgba(12, 10, 8, 0.55) 100%), linear-gradient(180deg, rgba(12, 10, 8, 0.2) 0%, transparent 35%, rgba(12, 10, 8, 0.45) 100%);
}

html[data-theme=light] .hero-en {
  color: #e8c56a;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55), 0 0 2px rgba(0, 0, 0, 0.4);
}

html[data-theme=light] .hero-copy p {
  color: #e8c56a;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}

/* ヒーロー上のタイトルはライトでも白を維持（写真とのコントラスト） */
html[data-theme=light] .hero-copy h1 {
  color: #fffef9;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

html[data-theme=light] .hero-copy h1 img {
  filter: drop-shadow(0 2px 18px rgba(0, 0, 0, 0.65));
}

/* 造りグリッド: 写真を明るくし、下に濃いグラデで文字を明確に */
html[data-theme=light] .craft img {
  filter: brightness(0.62) saturate(1.05) contrast(1.05);
}

html[data-theme=light] .craft:hover img {
  filter: brightness(0.78) saturate(1.08) contrast(1.05);
}

html[data-theme=light] .craft .c-in {
  background: linear-gradient(180deg, rgba(10, 8, 6, 0.15) 0%, rgba(10, 8, 6, 0.55) 100%);
}

html[data-theme=light] .c-kanji {
  color: #fffef9;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

html[data-theme=light] .c-cp {
  color: #f0ebe3;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

/* シーンカード: 同様に明瞭化 */
html[data-theme=light] .scene img {
  filter: brightness(0.58) saturate(1.05) contrast(1.04);
}

html[data-theme=light] .scene:hover img {
  filter: brightness(0.72) saturate(1.08) contrast(1.04);
}

html[data-theme=light] .scene.lite img {
  filter: brightness(0.7) saturate(1.05) contrast(1.04);
}

html[data-theme=light] .scene::after {
  background: linear-gradient(transparent 35%, rgba(8, 6, 4, 0.88));
}

html[data-theme=light] .scene h3 {
  color: #fffef9;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

html[data-theme=light] .scene .who {
  color: #e4dfd6;
}

html[data-theme=light] .scene .rec {
  color: #e8c56a;
  border-color: #e8c56a;
}

html[data-theme=light] .scene .ptag {
  color: #1a1712;
}

/* 菊姫考ストーリー帯 */
html[data-theme=light] .story-in .en {
  color: #e8c56a;
}

html[data-theme=light] .story-in h2 {
  color: #fffef9;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

html[data-theme=light] .story-in p {
  color: #e8e2d8;
}

/* 購入導線: クリーム被せを完全に排除 */
html[data-theme=light] .buy .bg img {
  opacity: 0.75 !important;
  filter: brightness(0.48) saturate(1.1) contrast(1.06);
}

html[data-theme=light] .buy .bg::after {
  background: radial-gradient(ellipse at center, rgba(12, 10, 8, 0.2) 8%, rgba(12, 10, 8, 0.78) 100%) !important;
}

html[data-theme=light] .buy h2 {
  color: #fffef9;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

html[data-theme=light] .buy p {
  color: #e4dfd6;
}

html[data-theme=light] .buy .btn {
  color: #e8c56a;
  border-color: #e8c56a;
}

html[data-theme=light] .buy .btn:hover {
  background: #e8c56a;
  color: #161410;
}

/* 映像カード */
html[data-theme=light] .vcard img {
  filter: brightness(0.85) contrast(1.05);
}

html[data-theme=light] .vcard .vt {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
}

/*THEME:LIGHT:END*/

/*# sourceMappingURL=main.css.map */
