:root {
  --ivory: #f8f4ee;
  --ivory2: #f0e8da;
  --ivory3: #e8dece;
  --sumi: #1c1812;
  --sumi2: #2e2820;
  --sumi3: #3d3428;
  --gold: #a8894a;
  --gold2: #c9a84c;
  --gold3: #e8c97a;
  --warm-gray: #8a7f6e;
  --light-gray: #d4cbbe;
  --ff-serif: Shippori Mincho B1, Noto Serif JP, serif;
  --ff-en: Cormorant Garamond, serif;
  --ff-sans: Zen Kaku Gothic New, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --nav-h: 64px;
}

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

html {
  scroll-behavior: auto;
  font-size: 16px;
}
html.is-menu-open {
  overflow: hidden;
  touch-action: none;
}

body {
  background: #f8f4ee;
  color: #1c1812;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.is-menu-open {
  overflow: hidden;
  touch-action: none;
}
body.is-opening {
  overflow: hidden;
  height: 100%;
}
body.is-opening .h-logo {
  opacity: 0;
}
body.is-opening-done .h-logo {
  opacity: 1;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}

.en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  letter-spacing: 0.04em;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

.rv1 {
  transition-delay: 0.1s;
}

.rv2 {
  transition-delay: 0.2s;
}

.rv3 {
  transition-delay: 0.3s;
}

.sec-head {
  margin-bottom: clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.sec-en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  letter-spacing: 0.35em;
  color: #a8894a;
  margin-bottom: 0.5rem;
}

.sec-ja {
  font-family: "Shippori Mincho B1", "Noto Serif JP", serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  color: #1c1812;
  line-height: 1.4;
}

.sec-lead {
  margin-top: 1.2rem;
  font-size: clamp(0.85rem, 1.3vw, 0.95rem);
  line-height: 2.1;
  color: #8a7f6e;
}
@media (max-width: 480px) {
  .sec-lead {
    font-size: 12px;
  }
}

.sec-inkline {
  height: 1px;
  width: 70%;
  max-width: 260px;
  margin: 1rem auto 0;
  background: linear-gradient(90deg, transparent, rgba(168, 137, 74, 0.55), transparent);
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
}
.sec-inkline.in {
  animation: inkline 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.char-split .ch {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.char-split.in .ch {
  opacity: 1;
  transform: none;
}

.parallax-img {
  overflow: hidden;
  position: relative;
}
.parallax-img img {
  will-change: transform;
}
.parallax-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(168, 137, 74, 0);
  transition: border-color 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.parallax-img.in::after {
  border-color: rgba(168, 137, 74, 0.22);
}

#opening {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: #f8f4ee;
  display: grid;
  place-items: center;
  clip-path: circle(140% at 50% 50%);
  will-change: transform, opacity;
}
#opening.done {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 720px) {
  #opening {
    place-items: center;
    padding: 0;
  }
}

.op-pack {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  will-change: transform, filter, opacity;
  transform-origin: center center;
}
@media (max-width: 720px) {
  .op-pack {
    transform: none !important;
  }
}

.op-logo_img {
  display: block;
  margin: 0 auto;
  width: clamp(160px, 42vw, 260px);
  height: auto;
}
@media (max-width: 720px) {
  .op-logo_img {
    width: clamp(150px, 48vw, 220px);
  }
}

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  z-index: 1000;
  background: rgba(248, 244, 238, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(28, 24, 18, 0.06);
  display: flex;
  align-items: center;
  transition: background 0.3s, box-shadow 0.3s;
}
#site-header.scrolled {
  background: rgba(248, 244, 238, 0.97);
  box-shadow: 0 1px 20px rgba(28, 24, 18, 0.08);
}

.header-inner {
  width: calc(100% - 40px);
  max-width: 1200px;
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .header-inner {
    width: calc(100% - 24px);
    height: 68px;
  }
}

.h-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #1c1812;
  position: relative;
  z-index: 1200;
}

.h-logo-img {
  display: block;
  height: 56px;
  width: auto;
}
@media (max-width: 900px) {
  .h-logo-img {
    height: 34px;
  }
}

.h-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 1100;
}
.h-nav a {
  color: rgba(28, 24, 18, 0.62);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.h-nav a:hover {
  color: #c9a84c;
}
@media (max-width: 900px) {
  .h-nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    padding: 7rem 1.5rem 3rem;
    background: #f8f4ee;
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.55rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }
  .h-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .h-nav.is-open a {
    opacity: 1;
    transform: translateY(0);
  }
  .h-nav .hide-sp {
    display: block;
  }
  .h-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 12em;
    text-align: center;
    color: #1c1812;
    font-size: 1.1rem;
    line-height: 1.8;
    letter-spacing: 0.18em;
    padding-left: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: color 0.2s ease, opacity 0.45s ease, transform 0.45s ease;
  }
  .h-nav a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 1px;
    background: #c9a84c;
    transform: translateY(-50%);
  }
  .h-nav.is-open a:nth-child(1) {
    transition-delay: 0.06s;
  }
  .h-nav.is-open a:nth-child(2) {
    transition-delay: 0.11s;
  }
  .h-nav.is-open a:nth-child(3) {
    transition-delay: 0.16s;
  }
  .h-nav.is-open a:nth-child(4) {
    transition-delay: 0.21s;
  }
  .h-nav.is-open a:nth-child(5) {
    transition-delay: 0.26s;
  }
  .h-nav.is-open a:nth-child(6) {
    transition-delay: 0.31s;
  }
  .h-nav.is-open a:nth-child(7) {
    transition-delay: 0.36s;
  }
}
@media (max-width: 480px) {
  .h-nav {
    padding: 6.5rem 1.25rem 2.5rem;
    gap: 1.35rem;
  }
  .h-nav a {
    font-size: 1rem;
    min-width: 11em;
  }
}

.h-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: #1c1812;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.h-instagram svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.h-instagram:hover {
  color: #a8894a;
  transform: translateY(-1px);
}
@media (min-width: 901px) {
  .h-instagram {
    margin-left: 0.5rem;
  }
}
@media (max-width: 900px) {
  .h-instagram {
    width: 26px;
    height: 26px;
    margin-top: 0.8rem;
  }
}

.h-burger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 1200;
}
.h-burger span {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 1.5px;
  background: #1c1812;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}
.h-burger span:nth-child(1) {
  transform: translate(-50%, -8px);
}
.h-burger span:nth-child(2) {
  transform: translate(-50%, 0);
}
.h-burger span:nth-child(3) {
  transform: translate(-50%, 8px);
}
.h-burger.is-active span:nth-child(1) {
  transform: translate(-50%, 0) rotate(45deg);
}
.h-burger.is-active span:nth-child(2) {
  opacity: 0;
}
.h-burger.is-active span:nth-child(3) {
  transform: translate(-50%, 0) rotate(-45deg);
}
@media (max-width: 900px) {
  .h-burger {
    display: block;
  }
}

#side-nav {
  position: fixed;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  transition: opacity 0.5s;
}
#side-nav.visible {
  opacity: 1;
}
@media (max-width: 1100px) {
  #side-nav {
    display: none;
  }
}

.side-dot {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}
.side-dot-circle {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid #a8894a;
  background: transparent;
  transition: background 0.25s, transform 0.25s;
  flex-shrink: 0;
}
.side-dot-label {
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  color: #8a7f6e;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.2s;
  white-space: nowrap;
}
.side-dot:hover .side-dot-circle, .side-dot.active .side-dot-circle {
  background: #a8894a;
  transform: scale(1.3);
}
.side-dot:hover .side-dot-label {
  opacity: 1;
  transform: none;
}
.side-dot.active .side-dot-circle {
  animation: dotBreath 1.6s ease-in-out infinite;
}

#hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1c1812;
  padding-top: 64px;
  will-change: transform, filter;
}
#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, rgba(248, 244, 238, 0.03) 0 1px, transparent 1px 28px), repeating-linear-gradient(90deg, rgba(248, 244, 238, 0.02) 0 1px, transparent 1px 28px);
  mix-blend-mode: overlay;
  opacity: 0.22;
  pointer-events: none;
  z-index: 1;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg {
  background: url("../img/kv.jpg") center/cover;
  transform: scale(1.06);
  animation: kenBurns 20s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-overlay {
  background: linear-gradient(100deg, rgba(28, 24, 18, 0.82) 0%, rgba(28, 24, 18, 0.45) 55%, rgba(28, 24, 18, 0.65) 100%);
  animation: lightFlicker 8s ease-in-out infinite;
}

.u_pc_none {
  display: none;
}
@media (max-width: 480px) {
  .u_pc_none {
    display: block;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(2rem, 7vw, 6rem);
  max-width: 700px;
}
@media (max-width: 480px) {
  .hero-content {
    width: 100%;
    max-width: none;
    min-width: 0;
    padding: 0 1.25rem;
  }
}

.hero-eyebrow,
.hero-h1,
.hero-desc,
.hero-contact {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(8px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-eyebrow {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(0.7rem, 1.1vw, 0.85rem);
  letter-spacing: 0.5em;
  color: #c9a84c;
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition-delay: 0.1s;
}

.hero-h1 {
  font-family: "Shippori Mincho B1", "Noto Serif JP", serif;
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 700;
  color: #f8f4ee;
  line-height: 1.6;
  margin-bottom: 2rem;
  white-space: nowrap;
  transition-delay: 0.35s;
}
.hero-h1 em {
  font-style: normal;
  color: #e8c97a;
}
@media (max-width: 480px) {
  .hero-h1 {
    white-space: normal;
    font-size: clamp(1.65rem, 9vw, 2.2rem);
    line-height: 1.55;
  }
}

.hero-desc {
  font-size: clamp(0.82rem, 1.3vw, 0.9rem);
  color: rgba(240, 232, 218, 0.65);
  line-height: 2.2;
  margin-bottom: 2.5rem;
  letter-spacing: 0.06em;
  transition-delay: 0.6s;
}
@media (max-width: 480px) {
  .hero-desc {
    max-width: 100%;
  }
}

body.hero-ready .hero-eyebrow,
body.hero-ready .hero-h1,
body.hero-ready .hero-desc,
body.hero-ready .hero-contact {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.hero-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
  transition-delay: 0.85s;
}

.hero-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 50%;
  max-width: 200px;
  padding: 8px;
  font-family: "Shippori Mincho B1", "Noto Serif JP", serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  transition: all 0.25s ease;
}
.hero-contact-btn.is-tel {
  background: #a8894a;
  color: #1c1812;
}
.hero-contact-btn.is-tel:hover {
  background: #c9a84c;
  transform: translateY(-2px);
}
.hero-contact-btn.is-ig {
  border: 1px solid rgba(248, 244, 238, 0.35);
  color: rgba(248, 244, 238, 0.85);
  background: rgba(28, 24, 18, 0.2);
  backdrop-filter: blur(4px);
}
.hero-contact-btn.is-ig:hover {
  border-color: #c9a84c;
  color: #c9a84c;
  transform: translateY(-2px);
}
@media (max-width: 480px) {
  .hero-contact-btn {
    width: 100%;
    max-width: 200px;
  }
}

.hero-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.hero-contact-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
}

.hero-contact-text {
  line-height: 1;
}

.hero-scroll {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 2;
}
.hero-scroll-text {
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  color: #e8c97a;
}
.hero-scroll-bar {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, #e8c97a, transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}

#intro,
#drink,
#owner {
  background: #f8f4ee;
  padding: clamp(5rem, 10vw, 8rem) 0;
}
@media (max-width: 480px) {
  #intro,
  #drink,
  #owner {
    padding: 4rem 0;
  }
}

.intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
@media (max-width: 720px) {
  .intro-inner {
    grid-template-columns: 1fr;
  }
}

.intro-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.intro-img img {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.intro-img:hover img {
  transform: scale(1.04);
}
@media (max-width: 720px) {
  .intro-img {
    aspect-ratio: auto;
  }
}

.intro-text .sec-en,
.intro-text .sec-ja {
  text-align: left;
}
.intro-text .sec-en {
  margin-bottom: 0.4rem;
}

.intro-rule {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1.2rem 0 1.6rem;
}
.intro-rule::before {
  content: "";
  flex: 0 0 30px;
  height: 1px;
  background: #a8894a;
  opacity: 0.5;
}
.intro-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #d4cbbe;
}

.intro-body {
  font-family: "Shippori Mincho B1", "Noto Serif JP", serif;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 2.5;
  color: #3d3428;
  border-left: 2px solid rgba(168, 137, 74, 0.3);
  padding-left: 1.4rem;
  margin-bottom: 2rem;
}
@media (max-width: 480px) {
  .intro-body {
    font-size: 12px;
    white-space: nowrap;
  }
}

.osake img {
  object-fit: contain;
}
@media (max-width: 720px) {
  .osake img {
    width: 100%;
    height: auto;
  }
}

#space {
  background: #f0e8da;
  padding: clamp(5rem, 10vw, 8rem) 0;
}
@media (max-width: 480px) {
  #space {
    padding: 4rem 0;
  }
}

.space-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  align-items: start;
}
@media (max-width: 640px) {
  .space-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}

.space-img-a,
.space-img-b,
.space-img-c,
.space-img-d {
  overflow: hidden;
}
.space-img-a img,
.space-img-b img,
.space-img-c img,
.space-img-d img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.space-img-a:hover img,
.space-img-b:hover img,
.space-img-c:hover img,
.space-img-d:hover img {
  transform: scale(1.04);
}

.space-img-a {
  grid-column: 1/8;
  grid-row: 1;
  aspect-ratio: 4/3;
}
@media (max-width: 640px) {
  .space-img-a {
    grid-column: 1/3;
    grid-row: 1;
  }
}

.space-img-b {
  grid-column: 8/13;
  grid-row: 1;
  aspect-ratio: 3/4;
}
@media (max-width: 640px) {
  .space-img-b {
    grid-column: 1/2;
    grid-row: 2;
  }
}

.space-img-c {
  grid-column: 1/5;
  grid-row: 2;
  height: clamp(160px, 25vw, 280px);
}
@media (max-width: 640px) {
  .space-img-c {
    grid-column: 2/3;
    grid-row: 2;
  }
}

.space-img-d {
  grid-column: 5/13;
  grid-row: 2;
  height: clamp(160px, 25vw, 280px);
}
@media (max-width: 640px) {
  .space-img-d {
    grid-column: 1/3;
    grid-row: 3;
    height: clamp(180px, 40vw, 260px);
  }
}

[class^=space-img-].in > img {
  animation: imgReveal 0.95s cubic-bezier(0.16, 1, 0.3, 1) both;
}

#menu-section {
  position: relative;
  background: #1c1812;
}
#menu-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none;
}
@media (max-width: 480px) {
  #menu-section {
    height: auto !important;
  }
}

.menu-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 480px) {
  .menu-sticky {
    position: relative;
    height: auto;
    min-height: unset;
    padding: 4rem 0;
    overflow: visible;
  }
}

.menu-head {
  text-align: center;
  padding: 2rem 0;
}
.menu-head .sec-en {
  color: #c9a84c;
}
.menu-head .sec-ja {
  color: #f8f4ee;
}
.menu-head .sec-lead {
  color: rgba(216, 201, 174, 0.85);
}
.menu-head .sec-ja,
.menu-head .sec-lead {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.menu-viewport {
  width: 100%;
  overflow: hidden;
}
@media (max-width: 480px) {
  .menu-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .menu-viewport::-webkit-scrollbar {
    display: none;
  }
}

.menu-track {
  display: flex;
  gap: clamp(0.8rem, 1.5vw, 1.2rem);
  padding: 0 clamp(1.2rem, 4vw, 3rem);
  will-change: transform;
}
@media (max-width: 480px) {
  .menu-track {
    will-change: unset;
    transform: none !important;
    padding: 0 1.2rem;
    gap: 0.8rem;
  }
}

.menu-item {
  flex: 0 0 clamp(240px, 36vw, 440px);
  height: clamp(240px, 32vh, 360px);
  position: relative;
  overflow: hidden;
  background: #111;
}
.menu-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu-item:hover img {
  transform: scale(1.05);
}
.menu-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, transparent 30%, rgba(248, 244, 238, 0.14) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0s;
  pointer-events: none;
}
.menu-item:hover::after {
  transform: translateX(120%);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0.9rem 1.1rem;
  background: linear-gradient(transparent, rgba(28, 24, 18, 0.85));
  font-family: "Shippori Mincho B1", "Noto Serif JP", serif;
  font-size: 0.88rem;
  color: #f8f4ee;
  letter-spacing: 0.1em;
}
@media (max-width: 480px) {
  .menu-item {
    flex: 0 0 80vw;
    height: 56vw;
    scroll-snap-align: start;
  }
}

.menu-progress {
  height: 1px;
  background: rgba(168, 137, 74, 0.15);
  margin-top: 1.5rem;
  overflow: hidden;
}
@media (max-width: 480px) {
  .menu-progress {
    display: none;
  }
}

.menu-progress-fill {
  height: 100%;
  background: #a8894a;
  width: 0%;
  transition: width 0.08s linear;
}

.menu-note {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(216, 201, 174, 0.85);
  padding: 1rem clamp(1.2rem, 4vw, 3rem) 0;
  letter-spacing: 0.08em;
}
@media (max-width: 480px) {
  .menu-note {
    white-space: nowrap;
  }
}

.menu-ig-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(168, 137, 74, 0.3);
  color: #c9a84c;
  font-size: 0.78rem;
  padding: 0.6rem 1.4rem;
  letter-spacing: 0.12em;
  transition: all 0.2s;
  margin-top: 1rem;
}
.menu-ig-link:hover {
  background: rgba(168, 137, 74, 0.1);
}

.menu-dots {
  display: none;
}
@media (max-width: 480px) {
  .menu-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0 0.4rem;
  }
}

.menu-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(168, 137, 74, 0.3);
  transition: background 0.25s, transform 0.25s;
}
.menu-dot.is-active {
  background: #a8894a;
  transform: scale(1.35);
}

#access {
  background: #f8f4ee;
  padding: clamp(5rem, 10vw, 8rem) 0;
}
@media (max-width: 480px) {
  #access {
    padding: 4rem 0;
  }
}

.access-wrap {
  position: relative;
}

.access-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.access-head .sec-en {
  color: #a8894a;
}
.access-head .sec-ja {
  color: #1c1812;
}
@media (max-width: 720px) {
  .access-head {
    margin-bottom: 2rem;
  }
}

.access-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
}
@media (max-width: 900px) {
  .access-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
}

.access-info,
.access-map-area {
  min-width: 0;
}

@media (max-width: 900px) {
  .access-info {
    order: 1;
  }
}

@media (max-width: 900px) {
  .access-map-area {
    order: 2;
  }
}

.access-list {
  margin: 0;
  padding: 0;
}

.access-row {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.4rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(28, 24, 18, 0.12);
}
.access-row:first-child {
  border-top: 1px solid rgba(28, 24, 18, 0.12);
}
.access-row dt {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: rgba(28, 24, 18, 0.42);
  flex-shrink: 0;
}
.access-row dd {
  margin: 0;
  font-size: 1rem;
  line-height: 2;
  color: #3d3428;
}
@media (max-width: 720px) {
  .access-row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding: 1rem 0;
  }
  .access-row dt {
    font-size: 0.78rem;
  }
  .access-row dd {
    font-size: 0.95rem;
    line-height: 1.9;
  }
}

.access-tel {
  color: #a8894a;
  transition: opacity 0.2s ease;
}
.access-tel:hover {
  opacity: 0.7;
}

.map {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid rgba(168, 137, 74, 0.18);
  background: #f4efe6;
}
.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 720px) {
  .map {
    aspect-ratio: 3/2;
  }
}

.map-link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.85rem;
  padding-bottom: 0.18rem;
  color: #a8894a;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(168, 137, 74, 0.35);
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.map-link:hover {
  opacity: 0.75;
  border-color: rgba(168, 137, 74, 0.6);
}

#fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 600;
  display: flex;
  background: rgba(248, 244, 238, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(168, 137, 74, 0.2);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
#fixed-cta.visible {
  transform: translateY(0);
}

.fcta-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.75rem 0.5rem;
  border-right: 1px solid rgba(168, 137, 74, 0.15);
  transition: background 0.2s;
}
.fcta-btn:last-child {
  border-right: none;
}
.fcta-btn:hover {
  background: rgba(168, 137, 74, 0.06);
}
.fcta-btn.is-reserve {
  background: #1c1812;
}
.fcta-btn.is-reserve:hover {
  background: #2e2820;
}
.fcta-btn.is-reserve .fcta-icon {
  color: #c9a84c;
}
.fcta-btn.is-reserve .fcta-label {
  color: rgba(248, 244, 238, 0.7);
}

.fcta-icon {
  display: flex;
  color: #a8894a;
}

.fcta-label {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: #8a7f6e;
}

.site-footer {
  background: linear-gradient(180deg, #2a2219 0%, #1f1912 100%);
  padding: 4rem 1.5rem 2rem;
  text-align: center;
}

.ft-inner {
  max-width: 960px;
  margin: 0 auto;
}

.ft-logo img {
  width: auto;
  height: 100px;
  display: block;
  margin: 0 auto;
  opacity: 0.9;
}

.ft-sub {
  margin-top: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(201, 168, 76, 0.6);
}

.ft-links {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.6rem;
}
.ft-links a {
  color: rgba(248, 244, 238, 0.7);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  transition: 0.2s;
}
.ft-links a:hover {
  color: #c9a84c;
}

.ft-copy {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(248, 244, 238, 0.08);
  font-size: 0.7rem;
  color: rgba(248, 244, 238, 0.35);
}

@keyframes kenBurns {
  from {
    transform: scale(1.06) translate(0, 0);
  }
  to {
    transform: scale(1.11) translate(-1.5%, 0.8%);
  }
}
@keyframes lightFlicker {
  0%, 100% {
    opacity: 1;
  }
  25% {
    opacity: 0.93;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0.96;
  }
}
@keyframes lineSway {
  0%, 100% {
    transform: rotate(0deg);
    opacity: 1;
  }
  33% {
    transform: rotate(0.2deg);
    opacity: 0.88;
  }
  66% {
    transform: rotate(-0.12deg);
    opacity: 0.95;
  }
}
@keyframes scrollDrop {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50.01% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
@keyframes inkline {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}
@keyframes dotBreath {
  0%, 100% {
    transform: scale(1.3);
    opacity: 1;
  }
  50% {
    transform: scale(1.6);
    opacity: 0.7;
  }
}
@keyframes imgReveal {
  from {
    transform: scale(1.09);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/*# sourceMappingURL=style.css.map */
