:root {
  --ink: #25323a;
  --muted: #6f7a72;
  --paper: #fffaf0;
  --white: #ffffff;
  --mint: #9fcdbf;
  --blue: #526f93;
  --coral: #e98973;
  --lemon: #f2ce67;
  --line: rgba(37, 50, 58, 0.16);
  --shadow: 0 24px 70px rgba(37, 50, 58, 0.16);
  --font-jp-display: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "YuGothic",
    sans-serif;
  --font-latin: "Montserrat", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "YuGothic",
    "Noto Sans JP", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(159, 205, 191, 0.38), transparent 26rem),
    linear-gradient(135deg, #fffaf0 0%, #f6fbf7 48%, #fff5eb 100%);
  font-family: var(--font-body);
  font-feature-settings: "palt";
  line-height: 1.8;
  overflow-x: hidden;
}

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

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

.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(90deg, rgba(37, 50, 58, 0.24) 1px, transparent 1px),
    linear-gradient(rgba(37, 50, 58, 0.18) 1px, transparent 1px);
  background-size: 22px 22px;
  mix-blend-mode: multiply;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: flex;
  width: min(1120px, calc(100% - 32px));
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 42px rgba(37, 50, 58, 0.12);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-latin);
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  width: 48px;
  aspect-ratio: 1;
  object-fit: contain;
  transform: rotate(-6deg);
  filter: saturate(1.08) contrast(1.04);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  color: rgba(37, 50, 58, 0.76);
  font-family: var(--font-latin);
  font-size: 0.76rem;
  font-weight: 900;
}

.nav a {
  position: relative;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(360px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  padding: 132px clamp(18px, 5vw, 78px) 72px;
}

.hero-copy {
  max-width: 590px;
}

.hero-menu {
  position: relative;
}

.hero-kicker {
  display: inline-flex;
  margin: 0 0 8px;
  color: var(--coral);
  font-size: clamp(0.82rem, 1.05vw, 1.02rem);
  font-weight: 800;
  line-height: 1.4;
}

.hero-word {
  position: relative;
  width: min(100%, 390px);
  min-height: clamp(1.9rem, 2.7vw, 2.66rem);
  margin-bottom: 8px;
  overflow: hidden;
}

.hero-word span {
  position: absolute;
  inset: 0 auto auto 0;
  color: var(--blue);
  font-size: clamp(1.58rem, 2.56vw, 2.45rem);
  font-family: var(--font-jp-display);
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  transform: translateY(76%) rotate(3deg) scaleY(1.02);
  transition:
    opacity 0.72s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
  -webkit-text-stroke: 0;
}

.hero-word span.is-active {
  opacity: 1;
  transform: translateY(0) rotate(-1deg) scaleY(1.02);
}

.eyebrow,
.section-title p,
.day-strip > p {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(1.92rem, 3.28vw, 3.34rem);
  font-family: var(--font-jp-display);
  font-weight: 800;
  line-height: 1.2;
  -webkit-text-stroke: 0;
}

h1 span {
  display: block;
}

h1 span:nth-child(2) {
  transform: translateX(0.12em);
}

h1 span:nth-child(3) {
  transform: translateX(0.02em);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(1.95rem, 4.2vw, 4.25rem);
  font-family: var(--font-jp-display);
  font-weight: 800;
  line-height: 1.14;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
  font-family: var(--font-jp-display);
  font-weight: 800;
  line-height: 1.25;
}

.hero-copy p:not(.eyebrow),
.concept-text,
.goods-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
}

.hero-menu-card {
  position: relative;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  width: min(100%, 460px);
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 48px rgba(37, 50, 58, 0.11);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.hero-menu-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--coral);
  content: "";
}

.menu-time {
  display: grid;
  width: 64px;
  aspect-ratio: 1;
  place-items: center;
  margin: 0;
  border-radius: 50%;
  background: var(--lemon);
  color: var(--ink);
  font-family: var(--font-latin);
  font-size: 0.94rem;
  font-weight: 950;
  line-height: 1;
  transform: rotate(-7deg);
}

.hero-menu-card h2 {
  margin: 0 0 4px;
  font-size: clamp(0.94rem, 1.18vw, 1.12rem);
  line-height: 1.25;
  -webkit-text-stroke: 0;
}

.hero-menu-card p:not(.menu-time) {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
}

.hero-menu-card.is-changing {
  animation: cardPop 0.46s ease;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 20px;
  font-family: var(--font-jp-display);
  font-weight: 900;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.button:hover {
  box-shadow: 0 16px 36px rgba(37, 50, 58, 0.15);
  transform: translateY(-3px);
}

.button.primary {
  border-color: transparent;
  background: var(--ink);
  color: var(--white);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.64);
}

.hero-stage {
  position: relative;
  min-height: 650px;
}

.hero-stage::before {
  position: absolute;
  top: 6%;
  left: 12%;
  width: min(36vw, 420px);
  aspect-ratio: 1;
  border: 1px dashed rgba(233, 137, 115, 0.42);
  border-radius: 50%;
  content: "";
  animation: slowSpin 22s linear infinite;
}

.hero-float-photo {
  position: absolute;
  top: 9%;
  left: -24%;
  z-index: 2;
  width: min(46%, 320px);
  aspect-ratio: 1;
  border: 14px solid rgba(255, 250, 240, 0.96);
  border-radius: 50%;
  box-shadow: 0 24px 54px rgba(37, 50, 58, 0.2);
  object-fit: cover;
  transform: rotate(-4deg);
  animation: floatPhoto 6.8s ease-in-out infinite;
}

.hero-image {
  position: absolute;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-main {
  top: 0;
  right: 0;
  width: min(74%, 610px);
  height: 78%;
  border-radius: 999px 999px 8px 8px;
}

.image-sub {
  bottom: 24px;
  left: 0;
  width: min(46%, 320px);
  aspect-ratio: 1;
  border: 14px solid var(--paper);
  border-radius: 50%;
  animation: float 5s ease-in-out infinite;
}

.round-note {
  position: absolute;
  right: 6%;
  bottom: 30px;
  display: grid;
  width: 132px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--lemon);
  color: var(--ink);
  font-family: var(--font-latin);
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  transform: rotate(-7deg);
}

.scroll-label {
  position: absolute;
  right: 28px;
  bottom: 38px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  writing-mode: vertical-rl;
}

.scroll-label::after {
  display: block;
  width: 1px;
  height: 54px;
  margin: 10px auto 0;
  background: var(--muted);
  content: "";
  animation: scrollLine 1.6s ease-in-out infinite;
}

.day-strip {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 20px;
  align-items: center;
  margin: 0 auto;
  padding: 30px clamp(18px, 5vw, 78px);
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.46);
}

.day-strip ol {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.day-strip li {
  position: relative;
  min-height: 90px;
  border-left: 1px solid var(--line);
  padding-left: 14px;
  color: var(--muted);
  font-weight: 700;
  transition:
    color 0.35s ease,
    transform 0.35s ease;
}

.day-strip li::before {
  position: absolute;
  top: 0;
  left: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--line);
  content: "";
  transition:
    background 0.35s ease,
    transform 0.35s ease;
}

.day-strip li.is-active {
  color: var(--ink);
  transform: translateY(-5px);
}

.day-strip li.is-active::before {
  background: var(--coral);
  transform: scale(1.7);
}

.day-strip span {
  display: block;
  color: var(--coral);
  font-family: var(--font-latin);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.1;
}

.section-pad {
  padding: clamp(86px, 10vw, 150px) clamp(18px, 5vw, 78px);
}

.section-title {
  max-width: 640px;
}

.section-title.center {
  margin-inline: auto;
  text-align: center;
}

.concept {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 7vw, 110px);
  align-items: start;
}

.sticky-title {
  position: sticky;
  top: 130px;
}

.concept-text {
  max-width: 680px;
  border-left: 1px solid var(--line);
  padding-left: clamp(24px, 4vw, 54px);
  font-size: 1.18rem;
}

.concept-text p {
  margin-bottom: 34px;
}

.menu {
  background: #f7fbf5;
}

.menu-orbit {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  align-items: start;
  margin-top: 54px;
}

.menu-item {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(37, 50, 58, 0.1);
  transform: translateY(var(--lift, 0));
}

.menu-item:nth-child(2) {
  --lift: 42px;
}

.menu-item:nth-child(4) {
  --lift: 24px;
}

.menu-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.menu-item h3,
.menu-item p {
  padding-inline: 22px;
}

.menu-item h3 {
  margin-top: 20px;
}

.menu-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

.gallery {
  overflow: hidden;
}

.gallery-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.gallery figure {
  margin: 0;
}

.gallery figure:nth-child(2) {
  margin-top: 74px;
}

.gallery img {
  width: 100%;
  height: clamp(360px, 45vw, 560px);
  border-radius: 999px 999px 8px 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.gallery figcaption {
  margin-top: 14px;
  color: var(--blue);
  font-family: var(--font-latin);
  font-weight: 900;
}

.goods {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 36px;
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

.goods .eyebrow,
.goods-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.goods-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.goods-list span {
  display: grid;
  min-height: 170px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--lemon);
  font-family: var(--font-latin);
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  font-weight: 900;
}

.news-list {
  max-width: 820px;
  margin: 42px auto 0;
  border-top: 1px solid var(--line);
}

.news-list a {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.news-list a:hover {
  color: var(--coral);
  transform: translateX(8px);
}

.news-list time {
  color: var(--blue);
  font-family: var(--font-latin);
  font-weight: 900;
}

.access {
  padding-top: 0;
}

.access-card {
  display: flex;
  min-height: 360px;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 5vw, 60px);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(37, 50, 58, 0.82), rgba(37, 50, 58, 0.34)),
    url("https://images.unsplash.com/photo-1559925393-8be0ec4767c8?auto=format&fit=crop&w=1600&q=85")
      center/cover;
  color: var(--white);
  box-shadow: var(--shadow);
}

.access-card .eyebrow {
  color: var(--lemon);
}

.access-card p {
  margin-bottom: 6px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 78px) 44px;
  color: var(--muted);
  font-weight: 700;
}

[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-16px) rotate(3deg);
  }
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  45% {
    transform: scaleY(1);
    transform-origin: top;
  }
  46% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@keyframes slowSpin {
  to {
    transform: rotate(1turn);
  }
}

@keyframes cardPop {
  0% {
    transform: translateY(8px) scale(0.985);
    opacity: 0.72;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes floatPhoto {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateY(-18px) rotate(4deg);
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    justify-content: flex-end;
    gap: 10px 14px;
    max-width: 56%;
  }

  .hero,
  .concept,
  .goods {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 128px;
  }

  .hero-stage {
    min-height: 520px;
  }

  .hero-float-photo {
    top: 46%;
    left: 0;
    width: 46%;
    border-width: 8px;
  }

  .day-strip,
  .day-strip ol {
    grid-template-columns: 1fr;
  }

  .day-strip ol {
    display: flex;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .day-strip li {
    min-width: 170px;
  }

  .sticky-title {
    position: static;
  }

  .concept-text {
    padding-left: 24px;
  }

  .menu-orbit,
  .gallery-rail {
    grid-template-columns: 1fr;
  }

  .menu-item:nth-child(2),
  .menu-item:nth-child(4),
  .gallery figure:nth-child(2) {
    margin-top: 0;
    transform: none;
  }

  .access-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    display: block;
    padding: 12px;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 98px;
    gap: 18px;
  }

  h1 {
    margin-bottom: 14px;
    font-size: 1.78rem;
    line-height: 1.18;
  }

  .hero-word {
    min-height: 1.88rem;
    margin-bottom: 7px;
  }

  .hero-word span {
    font-size: 1.7rem;
  }

  .hero-menu-card {
    grid-template-columns: 58px 1fr;
    gap: 12px;
    padding: 12px;
  }

  .menu-time {
    width: 50px;
    font-size: 0.72rem;
  }

  .hero-stage {
    min-height: 340px;
  }

  .hero-float-photo {
    top: 12px;
    left: 0;
    width: 46%;
    border-width: 8px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .image-main {
    width: 84%;
    height: 72%;
  }

  .image-sub {
    width: 46%;
    border-width: 8px;
  }

  .round-note {
    width: 100px;
    font-size: 0.85rem;
  }

  .scroll-label {
    display: none;
  }

  .hero-actions,
  .footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .goods-list {
    grid-template-columns: 1fr;
  }

  .news-list a {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
