@charset "UTF-8";
:root {
  --color-bg: #f4efe6;
  --color-bg-card: #edebe9;
  --color-dark: #1c1714;
  --color-gray: #666666;
  --color-muted: #b0a89e;
  --color-footer: #3f3639;
  --bg-base-rgb: 244, 239, 230;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #f4efe6;
  color: #1c1714;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.img-box {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background-color: #edebe9;
  border: 1px solid #b0a89e;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.img-box::after {
  content: attr(data-label);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  color: #b0a89e;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 8px;
  position: relative;
  z-index: 1;
}
.img-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, transparent calc(50% - 0.5px), rgba(176, 168, 158, 0.4) calc(50% - 0.5px), rgba(176, 168, 158, 0.4) calc(50% + 0.5px), transparent calc(50% + 0.5px)), linear-gradient(to top right, transparent calc(50% - 0.5px), rgba(176, 168, 158, 0.4) calc(50% - 0.5px), rgba(176, 168, 158, 0.4) calc(50% + 0.5px), transparent calc(50% + 0.5px));
}

.back-to-top {
  display: none;
}
@media (max-width: 767px) {
  .back-to-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: fixed;
    bottom: 32px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: #1c1714;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(8px);
  }
  .back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}
.back-to-top__arrow {
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid #ffffff;
  border-right: 1.5px solid #ffffff;
  transform: rotate(-45deg);
  margin-top: 3px;
}
.back-to-top__label {
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
}

@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.concept-body-sp {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.section-label {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #b0a89e;
  width: 100%;
  text-align: center;
}

.deco-line {
  width: 80px;
  height: 1px;
  background-color: #b0a89e;
  flex-shrink: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.rd1 {
  transition-delay: 0.1s;
}

.rd2 {
  transition-delay: 0.2s;
}

.rd3 {
  transition-delay: 0.3s;
}

.rd4 {
  transition-delay: 0.4s;
}

section[id] {
  scroll-margin-top: 68px;
}
@media (min-width: 1024px) {
  section[id] {
    scroll-margin-top: 60px;
  }
}

#curtain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
}
#curtain::before, #curtain::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  background: #f4efe6;
  transition: transform 1.1s cubic-bezier(0.76, 0, 0.24, 1);
}
#curtain::before {
  top: 0;
}
#curtain::after {
  bottom: 0;
}
#curtain.open::before {
  transform: translateY(-100%);
}
#curtain.open::after {
  transform: translateY(100%);
}

#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: transparent;
}

#phase-catch {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transition: opacity 0.9s ease;
}
#phase-catch.visible {
  opacity: 1;
}
#phase-catch.hidden {
  opacity: 0;
}

.catch-line {
  display: flex;
  justify-content: center;
  line-height: 1;
}
.catch-line + .catch-line {
  margin-top: 0.6em;
}

.catch-char {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-weight: 200;
  font-size: clamp(16px, 2.2vw, 26px);
  letter-spacing: 0.22em;
  color: #1a1a1a;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
#phase-catch.visible .catch-char {
  opacity: 1;
  transform: translateY(0);
}

#phase-logo {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease;
}
#phase-logo.visible {
  opacity: 1;
}
#phase-logo.hidden {
  opacity: 0;
}

.splash-logo {
  height: auto;
  width: 70vw;
  max-width: 900px;
  display: block;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #e5ddd5;
  border-bottom: 1px solid transparent;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.6s ease, box-shadow 0.3s ease;
}
.site-header.scrolled, .page-brand .site-header, .page-collection .site-header {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  border-bottom-color: rgba(176, 168, 158, 0.2);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}
@media (min-width: 768px) {
  .header-inner {
    padding: 8px 24px;
  }
}

.header-logo a {
  display: flex;
  align-items: center;
}

.logo-img-box img {
  width: 160px;
  height: auto;
  display: block;
}
@media (min-width: 768px) {
  .logo-img-box img {
    width: 240px;
  }
}

.header-nav {
  display: none;
}
@media (min-width: 768px) {
  .header-nav {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .header-nav button, .header-nav a {
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 2px;
    color: #1c1714;
    background: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
  }
  .header-nav button:hover, .header-nav a:hover {
    opacity: 0.6;
  }
}

.header-nav__item--brands {
  display: none;
}
@media (min-width: 768px) {
  .header-nav__item--brands {
    display: block;
    position: relative;
  }
  .header-nav__item--brands > a {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .header-nav__item--brands:hover .header-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
  .header-nav__item--brands:hover .header-nav__chevron {
    transform: rotate(180deg);
  }
}

.header-nav__dropdown {
  display: none;
}
@media (min-width: 768px) {
  .header-nav__dropdown {
    display: block;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    background: #e5ddd5;
    border: 1px solid rgba(28, 23, 20, 0.1);
    border-radius: 4px;
    padding: 8px 0;
    min-width: 148px;
    white-space: nowrap;
    z-index: 200;
  }
  .header-nav__dropdown::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
  }
}

.header-nav__chevron {
  display: block;
  opacity: 0.6;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

@media (min-width: 768px) {
  .header-nav__dropdown-link {
    display: block;
    padding: 10px 20px;
    font-family: "Noto Serif JP", serif;
    font-size: 12px;
    letter-spacing: 1px;
    color: #1c1714;
    transition: opacity 0.15s;
  }
  .header-nav__dropdown-link:hover {
    opacity: 0.5;
  }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .header-right {
    gap: 16px;
  }
}

.header-sns-group {
  display: none;
}
@media (min-width: 768px) {
  .header-sns-group {
    display: flex;
    align-items: center;
    gap: 16px;
  }
}

.header-sns-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-sns-icon .img-box {
  width: 48px;
  height: 48px;
  min-height: 0;
  border: none;
  background: transparent;
}
.header-sns-icon .img-box::before {
  display: none;
}
.header-sns-icon .img-box::after {
  font-size: 9px;
  color: #b0a89e;
}

.nav-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  color: #1c1714;
}
.nav-hamburger .img-box {
  width: 36px;
  height: 36px;
  min-height: 0;
  border: none;
  background: transparent;
}
.nav-hamburger .img-box::before {
  display: none;
}
.nav-hamburger .img-box::after {
  font-size: 8px;
  color: #b0a89e;
  content: attr(data-label);
}
.nav-hamburger .icon-menu,
.nav-hamburger .icon-close {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-hamburger .icon-close {
  display: none;
}
.nav-hamburger.active .icon-menu {
  display: none;
}
.nav-hamburger.active .icon-close {
  display: flex;
}
@media (min-width: 768px) {
  .nav-hamburger {
    display: none;
  }
}

#mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  background: #f4efe6;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
#mobile-nav.open {
  visibility: visible;
  opacity: 1;
}
@media (min-width: 1024px) {
  #mobile-nav {
    display: none !important;
  }
}

.mobile-nav__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 24px;
  overflow-y: auto;
}

.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  flex-shrink: 0;
}

.mobile-nav__logo img {
  width: 150px;
  height: auto;
  display: block;
}

.mobile-nav__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-right: -10px;
  background: none;
  border: none;
  color: #1c1714;
  cursor: pointer;
}

.mobile-nav__menu {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mobile-nav__menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.mobile-nav__menu li {
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.mobile-nav__menu li a {
  display: block;
  padding: 14px 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.18em;
  color: #1c1714;
  transition: color 0.2s;
}
.mobile-nav__menu li a:hover, .mobile-nav__menu li a:active {
  color: #ba0b2f;
}

.mobile-nav__brands {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 4px 0 10px;
}

.mobile-nav__menu .mobile-nav__brand-link {
  display: block;
  padding: 9px 0;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: rgba(28, 23, 20, 0.55);
  text-align: center;
  transition: color 0.2s;
}
.mobile-nav__menu .mobile-nav__brand-link:hover, .mobile-nav__menu .mobile-nav__brand-link:active {
  color: #ba0b2f;
}

#mobile-nav.open .mobile-nav__menu li {
  opacity: 1;
  transform: none;
}

#mobile-nav.open .mobile-nav__menu li:nth-child(1) {
  transition-delay: 0.08s;
}

#mobile-nav.open .mobile-nav__menu li:nth-child(2) {
  transition-delay: 0.13s;
}

#mobile-nav.open .mobile-nav__menu li:nth-child(3) {
  transition-delay: 0.18s;
}

#mobile-nav.open .mobile-nav__menu li:nth-child(4) {
  transition-delay: 0.23s;
}

#mobile-nav.open .mobile-nav__menu li:nth-child(5) {
  transition-delay: 0.28s;
}

#mobile-nav.open .mobile-nav__menu li:nth-child(6) {
  transition-delay: 0.33s;
}

.mobile-nav__sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 20px 0 0;
}
.mobile-nav__sns img {
  width: 26px;
  height: 26px;
  display: block;
}

.mobile-nav__footer {
  flex-shrink: 0;
  background: #3f3639;
  padding: 22px 24px;
  text-align: center;
}

.mobile-nav__copy {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) and (max-width: 1023px) {
  .header-inner {
    padding: 12px 24px;
  }
  .header-nav {
    display: none;
  }
  .header-sns-group {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
}
.hero {
  position: relative;
  background: #1c1714;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
}

.hero-carousel {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.3s ease;
}
@media (min-width: 768px) {
  .hero-slide {
    display: grid;
    grid-template-columns: 60% 40%;
    grid-template-rows: 1fr 1fr;
  }
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: opacity 0.4s ease;
  }
}
.hero-slide__sweets {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero-slide__sweets {
    position: relative;
    inset: auto;
    grid-column: 1;
    grid-row: 1/span 2;
  }
}
.hero-slide__sweets img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.hero-slide.is-active .hero-slide__sweets img {
  transform: scale(1.16);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide__sweets img {
    transition: none;
    transform: none;
  }
  .hero-slide.is-active .hero-slide__sweets img {
    transform: none;
  }
}
.hero-slide__chef {
  display: none;
  margin: 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero-slide__chef {
    display: block;
    grid-column: 2;
    grid-row: 1;
  }
}
.hero-slide__chef img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (max-width: 767px) {
  .hero-slide__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.58) 0%, transparent 52%);
    padding: 0 24px 72px;
    text-align: center;
    pointer-events: none;
  }
}
@media (min-width: 768px) {
  .hero-slide__card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    grid-column: 2;
    grid-row: 2;
    background: #1c1714;
    padding: 6% 9% 6% 7%;
  }
}
@media (min-width: 1440px) {
  .hero-slide__card {
    padding: 64px 88px 64px 64px;
  }
}

@media (min-width: 768px) {
  .hero-slide--ewig .hero-slide__card,
  .hero-slide--imoto .hero-slide__card {
    background: #3f3639;
  }
}

.hero-card__award {
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.78);
}
@media (max-width: 767px) {
  .hero-card__award {
    display: none;
  }
}
@media (min-width: 1024px) {
  .hero-card__award {
    font-size: 13px;
  }
}

.hero-card__rule {
  display: block;
  width: 40px;
  height: 1px;
  margin: 16px 0 20px;
  background: rgba(255, 255, 255, 0.4);
}
@media (max-width: 767px) {
  .hero-card__rule {
    display: none;
  }
}

.hero-card__brand {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
  text-decoration: none;
}
@media (max-width: 767px) {
  .hero-card__brand {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
    pointer-events: auto;
  }
}

.hero-card__chef-name {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1.3;
  letter-spacing: 0.1em;
  color: #ffffff;
}
@media (max-width: 767px) {
  .hero-card__chef-name {
    display: none;
  }
}

.hero-card__chef-en {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
}
@media (max-width: 767px) {
  .hero-card__chef-en {
    display: none;
  }
}

.hero-card__desc {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 26px;
}
@media (max-width: 767px) {
  .hero-card__desc {
    display: none;
  }
}

.hero-card__product {
  display: none;
  text-decoration: none;
}
@media (max-width: 767px) {
  .hero-card__product {
    display: block;
    font-family: "Noto Serif JP", serif;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: #ffffff;
    margin-top: 10px;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
    pointer-events: auto;
  }
}

.hero-card__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
}
.hero-card__link .hero-card__arrow {
  transition: transform 0.3s ease;
}
.hero-card__link:hover .hero-card__arrow {
  transform: translateX(5px);
}
@media (max-width: 767px) {
  .hero-card__link {
    margin-top: 18px;
    font-size: 20px;
    gap: 0;
    pointer-events: auto;
  }
}

@media (max-width: 767px) {
  .hero-card__link-text {
    display: none;
  }
}

.hero-sidetitle {
  position: absolute;
  top: 80px;
  left: 40px;
  z-index: 3;
}
@media (max-width: 767px) {
  .hero-sidetitle {
    display: none;
  }
}
@media (min-width: 1024px) {
  .hero-sidetitle {
    top: 72px;
    left: 56px;
  }
}
.hero-sidetitle__logo {
  display: block;
  width: 240px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  flex-shrink: 0;
}

.hero-sidetitle__line {
  display: block;
  width: 80px;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  transform-origin: left center;
  flex-shrink: 0;
}

@keyframes heroSidelineCountdown {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}
.hero-sp-middle {
  display: none;
}
@media (max-width: 767px) {
  .hero-sp-middle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
}

.hero-sp-logo {
  display: block;
  width: 320px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.hero-sp-timer {
  display: flex;
  align-items: center;
  width: 160px;
}

.hero-sp-timer__left,
.hero-sp-timer__right {
  display: block;
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.65);
}

.hero-sp-timer__left {
  transform-origin: right center;
}

.hero-sp-timer__right {
  transform-origin: left center;
}

@keyframes heroSpTimerLeft {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}
@keyframes heroSpTimerRight {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}
.hero-dots {
  position: absolute;
  z-index: 3;
  left: 40px;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 18px;
}
@media (max-width: 767px) {
  .hero-dots {
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
  }
}
@media (min-width: 1024px) {
  .hero-dots {
    left: 56px;
    bottom: 40px;
  }
}

.hero-counter {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}
@media (max-width: 767px) {
  .hero-counter {
    display: none;
  }
}
.hero-counter__cur {
  color: #ffffff;
}
.hero-counter__sep {
  margin: 0 2px;
  color: rgba(255, 255, 255, 0.5);
}
.hero-counter__total {
  color: rgba(255, 255, 255, 0.5);
}

.hero-dots__list {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.hero-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}
.hero-dot.is-active {
  background: #ffffff;
  transform: scale(1.25);
}

.news-bar {
  background: #3f3639;
  color: #ffffff;
}

.news-bar__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 36px 24px;
}
@media (min-width: 768px) {
  .news-bar__inner {
    flex-direction: row;
    justify-content: center;
    gap: 28px;
    padding: 0 48px;
    min-height: 64px;
  }
}

.news-bar__label {
  flex-shrink: 0;
  padding: 7px 16px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
}

.news-bar__feed {
  display: grid;
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .news-bar__feed {
    width: auto;
    min-width: 0;
    flex: 0 1 auto;
    text-align: left;
    justify-items: start;
    max-width: 430px;
    overflow: hidden;
  }
}

.news-bar__item {
  grid-area: 1/1;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px 24px;
  padding: 0;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  text-align: inherit;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.news-bar__item.is-active {
  visibility: visible;
  opacity: 1;
}
@media (min-width: 768px) {
  .news-bar__item {
    width: auto;
    flex-direction: row;
    justify-content: flex-start;
    white-space: nowrap;
  }
}
.news-bar__item:hover .news-bar__text {
  color: rgba(255, 255, 255, 0.7);
}

.news-bar__item.is-marquee {
  justify-content: flex-start;
  animation: news-ticker var(--mq-dur, 14s) linear infinite;
}

.news-bar__item.is-marquee:not(.is-active) {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .news-bar__item.is-marquee {
    animation: none;
    transform: none;
  }
}
@keyframes news-ticker {
  from {
    transform: translateX(var(--mq-start, 100%));
  }
  to {
    transform: translateX(var(--mq-end, -100%));
  }
}
.news-bar__date {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #ffffff;
}

.news-bar__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #ffffff;
  transition: color 0.2s ease;
  max-width: 17em;
  overflow-wrap: anywhere;
}
@media (min-width: 768px) {
  .news-bar__text {
    max-width: none;
  }
}

.news-bar__controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
@media (min-width: 768px) {
  .news-bar__controls {
    flex-direction: row;
    gap: 20px;
  }
}

.news-bar__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-bar__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.3s ease;
}
.news-bar__dot.is-active {
  background: #ffffff;
}
.news-bar__dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.news-bar__arrows {
  display: flex;
  align-items: center;
  gap: 16px;
}

.news-bar__arrow {
  padding: 0;
  background: none;
  border: none;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: color 0.2s ease;
}
.news-bar__arrow:hover {
  color: #ffffff;
}

.news-bar__sep {
  background: rgba(255, 255, 255, 0.35);
  width: 28px;
  height: 1px;
}
@media (min-width: 768px) {
  .news-bar__sep {
    width: 1px;
    height: 18px;
  }
}

.news-bar__sns {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}
.news-bar__sns img {
  width: 26px;
  height: 26px;
  display: block;
}

.news-bar__sns-item:first-child img {
  filter: brightness(0) invert(1);
}

.brands-grid-section {
  background: #e5ddd5;
  padding: 72px 24px;
}
@media (min-width: 768px) {
  .brands-grid-section {
    padding: 100px 48px;
  }
}

.brands-grid-inner {
  max-width: 832px;
  margin: 0 auto;
  text-align: center;
}

.brands-grid-heading {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: clamp(24px, 3.4vw, 32px);
  line-height: 1.75;
  letter-spacing: 0.06em;
  color: #1c1714;
  margin-top: 32px;
}

.brands-grid-sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.78;
  color: #1c1714;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .brands-grid-sub {
    text-align: left;
  }
}
@media (min-width: 768px) {
  .brands-grid-sub {
    font-size: 18px;
  }
}

.brands-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
  }
}

.brand-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  background: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.brand-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(28, 23, 20, 0.08);
}

.brand-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-card__logo img {
  max-height: 80px;
  width: auto;
  display: block;
}

.brand-card__name {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.16em;
  color: #1c1714;
}

.brand-card__arrow {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
  color: #1c1714;
  transition: transform 0.3s ease, color 0.3s ease;
}

.brand-card:hover .brand-card__arrow {
  color: #1c1714;
  transform: translate(4px, -50%);
}

.gallery {
  position: relative;
  overflow: hidden;
  padding: 72px 24px;
  color: #ffffff;
}
@media (min-width: 768px) {
  .gallery {
    padding: 96px 48px;
  }
}

.gallery__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}
.gallery__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(32, 26, 19, 0.62);
}

.gallery__inner {
  position: relative;
  z-index: 1;
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
@media (min-width: 768px) {
  .gallery__inner {
    gap: 32px;
  }
}

.section-label--light {
  color: rgba(255, 255, 255, 0.6);
}

.gallery__heading {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #ffffff;
}
@media (min-width: 768px) {
  .gallery__heading {
    font-size: 32px;
    line-height: 1.75;
  }
}

.gallery__sub {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  color: #ffffff;
  max-width: 640px;
}
@media (max-width: 767px) {
  .gallery__sub {
    text-align: left;
  }
}
@media (min-width: 768px) {
  .gallery__sub {
    max-width: none;
    white-space: nowrap;
  }
}

.gallery__line {
  width: 80px;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
}

.gallery__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 4096/2731;
}

.gallery__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}
.gallery__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery__dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gallery__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.gallery__dot.is-active {
  background: #ffffff;
}
.gallery__dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.15);
}

.concept-section {
  background: #ffffff;
  padding: 72px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .concept-section {
    padding: 60px 0;
  }
}

.concept-figure {
  display: flex;
  width: 100%;
}

.concept-figure__box {
  width: 88%;
  max-width: 400px;
  height: 150px;
}
@media (min-width: 768px) {
  .concept-figure__box {
    width: 400px;
  }
}
.concept-figure__box .img-box {
  min-height: 0;
  height: 100%;
}
.concept-figure__box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.concept-fig--1,
.concept-fig--3 {
  justify-content: flex-end;
}

.concept-fig--2,
.concept-fig--4 {
  justify-content: flex-start;
}

@media (min-width: 768px) {
  .concept-fig--1,
  .concept-fig--2,
  .concept-fig--3,
  .concept-fig--4 {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
  }
  .concept-fig--1 {
    justify-content: flex-start;
    padding-left: 128px;
  }
  .concept-fig--2 {
    justify-content: flex-start;
  }
  .concept-fig--3 {
    justify-content: flex-end;
  }
  .concept-fig--4 {
    justify-content: flex-end;
    padding-right: 128px;
  }
}
.concept-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .concept-inner {
    max-width: 768px;
    margin: 0 auto;
    gap: 32px;
    padding: 0;
  }
}

.br-tablet {
  display: none;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .br-tablet {
    display: block;
  }
}

.concept-heading {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 2px;
  color: #1c1714;
  text-align: left;
  line-height: 42px;
}
@media (min-width: 768px) {
  .concept-heading {
    font-size: 32px;
    line-height: 56px;
    white-space: nowrap;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .concept-heading {
    white-space: normal;
  }
}

.concept-body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #1c1714;
  text-align: left;
  line-height: 1.9;
  width: 100%;
}
@media (min-width: 768px) {
  .concept-body {
    font-size: 16px;
    text-align: center;
  }
}

.concept-phrases {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}
@media (min-width: 768px) {
  .concept-phrases {
    gap: 20px;
  }
}

.concept-phrase {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 16px;
  color: #1c1714;
  text-align: center;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .concept-phrase {
    font-size: 18px;
  }
}

.concept-omakase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.omakase-logo {
  display: inline-block;
  transition: opacity 0.3s ease;
}
.omakase-logo:hover {
  opacity: 0.6;
}
.omakase-logo img {
  width: 200px;
  height: auto;
  display: block;
}

.concept-omakase-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  color: #1c1714;
  text-align: left;
  line-height: 1.9;
  width: 100%;
}
@media (min-width: 768px) {
  .concept-omakase-desc {
    text-align: center;
  }
}

.page-brand {
  background: #e5ddd5;
}

.brand-page {
  display: block;
}

.brand-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.br-pc {
  display: none;
}
@media (min-width: 768px) {
  .br-pc {
    display: inline;
  }
}

.brand-rule {
  width: 100%;
  height: 1px;
  background: rgba(28, 23, 20, 0.18);
}

.brand-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 80px 24px 24px;
  text-align: center;
}
@media (min-width: 1024px) {
  .brand-hero {
    padding-top: 72px;
  }
}

.brand-hero__award {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #ba0b2f;
}

.brand-hero__name {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 0.02em;
  color: #1c1714;
}

.brand-chef {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0 24px 56px;
}

.brand-chef__photo {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 560/840;
  overflow: hidden;
}
.brand-chef__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-chef__role {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  color: #666666;
  text-align: center;
}

.brand-chef__bio {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 12px;
  color: #666666;
  line-height: 2;
  letter-spacing: -0.002px;
  width: 100%;
  max-width: 768px;
}

.brand-about,
.brand-gifts,
.brand-story {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 72px 24px;
}
@media (min-width: 1024px) {
  .brand-about,
  .brand-gifts,
  .brand-story {
    padding: 96px 48px;
  }
}
.brand-about > *,
.brand-gifts > *,
.brand-story > * {
  width: 100%;
  max-width: 768px;
}

.brand-about {
  background: #ffffff;
  gap: 48px;
}

.brand-gifts {
  background: #edebe9;
  gap: 48px;
}

.brand-story {
  background: #ffffff;
  gap: 32px;
}

.brand-about__lead {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 2;
  color: #1c1714;
  text-align: center;
}

.brand-about__deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 14px;
  color: #666666;
}
.brand-about__deco::before, .brand-about__deco::after {
  content: "";
  width: 48px;
  height: 1px;
  background: currentColor;
}

.brand-about__genre {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #1c1714;
  text-align: center;
}

.brand-about__images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 1024px) {
  .brand-about__images {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.brand-about__img {
  aspect-ratio: 36/24;
  overflow: hidden;
}
.brand-about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-about__body {
  display: flex;
  flex-direction: column;
  gap: 1.6em;
}
.brand-about__body p {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 14px;
  color: #1c1714;
  line-height: 2;
  letter-spacing: 0.02em;
}

.brand-about__reserve {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #1c1714;
  text-align: right;
  transition: opacity 0.25s ease;
}
.brand-about__reserve:hover {
  opacity: 0.65;
}
.brand-about__reserve:hover .brand-arrow {
  transform: translateX(4px);
}

.brand-gifts__heading {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #1c1714;
  text-align: center;
}
@media (min-width: 1024px) {
  .brand-gifts__heading {
    font-size: 32px;
  }
}

.brand-gifts__hero {
  aspect-ratio: 768/486;
  overflow: hidden;
}
@media (max-width: 767px) {
  .brand-gifts__hero {
    width: calc(100% + 24px * 2);
    max-width: none;
    margin-left: -24px;
    margin-right: -24px;
  }
}
.brand-gifts__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-gifts__name {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #1c1714;
  text-align: center;
}
@media (min-width: 1024px) {
  .brand-gifts__name {
    font-size: 32px;
  }
}

.brand-gifts__desc {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 14px;
  color: #1c1714;
  line-height: 2;
  letter-spacing: 0.02em;
  white-space: pre-line;
}

.brand-product {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1024px) {
  .brand-product {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
}

@media (min-width: 1024px) {
  .brand-product--rev {
    flex-direction: row-reverse;
  }
}

.brand-product__photo {
  width: 100%;
  aspect-ratio: 2731/4096;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .brand-product__photo {
    flex: 1 0 0;
  }
}
.brand-product__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-product__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
@media (min-width: 1024px) {
  .brand-product__text {
    flex: 1 0 0;
  }
}

.brand-product__name {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #1c1714;
}
@media (min-width: 1024px) {
  .brand-product__name {
    font-size: 32px;
  }
}

.brand-product__desc {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 14px;
  color: #1c1714;
  line-height: 2;
  letter-spacing: 0.02em;
  white-space: pre-line;
}

.brand-story__heading {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 2;
  letter-spacing: 0.02em;
  color: #1c1714;
  text-align: center;
}
@media (min-width: 1024px) {
  .brand-story__heading {
    font-size: 32px;
  }
}

.brand-story__p {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 14px;
  color: #1c1714;
  line-height: 2;
  letter-spacing: 0.02em;
  text-align: left;
}
@media (min-width: 1024px) {
  .brand-story__p {
    text-align: center;
  }
}

.brand-story__top {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #1c1714;
  text-align: right;
  transition: opacity 0.25s ease;
}
.brand-story__top:hover {
  opacity: 0.65;
}
.brand-story__top:hover .brand-arrow {
  transform: translateX(4px);
}

.gifts-section {
  background-color: #f4efe6;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' seed='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23g)' opacity='0.16'/%3E%3C/svg%3E"), url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600'%3E%3Cfilter id='f'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.12' numOctaves='2' seed='8' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='600' height='600' filter='url(%23f)' opacity='0.12'/%3E%3C/svg%3E");
  background-size: 256px 256px, 600px 600px;
  background-repeat: repeat, repeat;
}

.gifts-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 24px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .gifts-header {
    align-items: center;
    padding: 64px 0 0;
  }
}

.gifts-heading {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 2px;
  color: #1c1714;
  line-height: normal;
  text-align: center;
}
@media (min-width: 768px) {
  .gifts-heading {
    font-size: 32px;
    white-space: nowrap;
  }
}

@media (min-width: 768px) {
  .br-mobile {
    display: none;
  }
}

.gifts-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #1c1714;
  line-height: 28px;
  text-align: left;
}
@media (min-width: 768px) {
  .gifts-desc {
    font-size: 18px;
    line-height: normal;
    text-align: left;
  }
}

.gifts-nav {
  display: flex;
  flex-direction: column;
  padding: 8px 24px 40px;
}
@media (min-width: 768px) {
  .gifts-nav {
    display: none;
  }
}

.gifts-nav__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 20px;
  text-decoration: none;
  gap: 12px;
}

.gifts-nav__left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.gifts-nav__icon {
  width: 18px;
  height: auto;
  flex-shrink: 0;
}

.gifts-nav__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.gifts-nav__shop {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1c1714;
}

.gifts-nav__product {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1c1714;
  line-height: 1.45;
}

.gifts-nav__arrow {
  font-size: 18px;
  color: #1c1714;
  flex-shrink: 0;
  opacity: 0.6;
}

.gift-item {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 768px) {
  .gift-item {
    flex-direction: row;
    align-items: stretch;
    padding: 96px 64px;
    gap: 10px;
  }
}

.gift-chef-col {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (min-width: 768px) {
  .gift-chef-col {
    width: 28%;
    flex-shrink: 0;
  }
}

.gift-chef-photo {
  height: 540px;
  overflow: hidden;
}
.gift-chef-photo .img-box {
  height: 540px;
  min-height: 0;
  border: none;
  background-color: #e3e1df;
}
.gift-chef-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@media (min-width: 768px) {
  .gift-chef-photo {
    aspect-ratio: 347/540;
    height: auto;
    margin-bottom: -24px;
  }
  .gift-chef-photo .img-box {
    height: 100%;
  }
}

.gift-chef-info {
  background: #edebe9;
  padding: 64px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.gift-michelin {
  display: flex;
  align-items: center;
  gap: 8px;
}
.gift-michelin__text {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  color: #ba0b2f;
  white-space: normal;
}
.gift-michelin__star {
  width: 18px;
  height: 20px;
  background: #edebe9;
  border: 1px solid #b0a89e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: #ba0b2f;
}
.gift-michelin__star .img-box {
  width: 18px;
  height: 20px;
  min-height: 0;
  border: none;
  background: transparent;
}
.gift-michelin__star .img-box::before {
  display: none;
}
.gift-michelin__star .img-box::after {
  content: "★";
  font-size: 10px;
  color: #ba0b2f;
}
.gift-michelin__selected {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  color: #ba0b2f;
  white-space: nowrap;
}

.gift-shop-name {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 36px;
  color: #1c1714;
  line-height: 1.2;
  letter-spacing: -0.007px;
}

.gift-chef-name {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 12px;
  color: #666666;
  line-height: 2;
  letter-spacing: -0.002px;
}

.gift-detail-col {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .gift-detail-col {
    display: contents;
  }
}

.gift-detail-inner {
  background: #edebe9;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .gift-detail-inner {
    width: 32%;
    flex-shrink: 0;
    padding: 48px 32px;
  }
}

@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.gift-chef-info .gift-chef-bio.sp-only {
  margin-top: -24px;
}

@media (max-width: 767px) {
  .gift-detail-inner .gift-chef-bio,
  .gift-detail-inner .gift-key-phrase {
    display: none;
  }
}

.gift-chef-bio {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 12px;
  color: #666666;
  line-height: 2;
  letter-spacing: -0.002px;
}

.gift-key-phrase {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 16px;
  color: #1c1714;
  line-height: 2;
  letter-spacing: -0.003px;
}

.gift-about-divider {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 14px;
  color: #666666;
  line-height: 2;
  letter-spacing: -0.003px;
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .gift-about-divider {
    font-size: 16px;
  }
}

.gift-location {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  color: #1c1714;
}

.gift-sub-photos {
  display: flex;
  gap: 8px;
  align-items: stretch;
  width: 100%;
}
.gift-sub-photos__item {
  flex: 1;
  height: auto;
  overflow: hidden;
}
.gift-sub-photos__item .img-box {
  height: 90px;
  min-height: 0;
  border: none;
}
.gift-sub-photos__item img {
  width: 100%;
  height: auto;
  display: block;
}

.gift-shop-desc {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 12px;
  color: #666666;
  line-height: 2;
  letter-spacing: -0.002px;
}

.gift-detail-link {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 14px;
  color: #1c1714;
  line-height: 2;
  letter-spacing: 0.28px;
  white-space: nowrap;
  cursor: pointer;
  display: inline-block;
  align-self: flex-start;
  transition: opacity 0.2s;
}
.gift-detail-link:hover {
  opacity: 0.6;
}

.gift-product-col {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .gift-product-col {
    width: 40%;
    flex-shrink: 0;
  }
}

.gift-product-header {
  background: #edebe9;
  padding: 16px 40px;
}
.gift-product-header__text {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 14px;
  color: #666666;
  line-height: 2;
  letter-spacing: -0.003px;
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .gift-product-header__text {
    font-size: 16px;
  }
}

.gift-product-photo {
  height: 247px;
  overflow: hidden;
}
.gift-product-photo .img-box {
  height: 247px;
  min-height: 0;
  border: none;
}
.gift-product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (min-width: 768px) {
  .gift-product-photo {
    aspect-ratio: 600/380;
    height: auto;
  }
  .gift-product-photo .img-box {
    height: 100%;
  }
}

.gift-product-info {
  background: #edebe9;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.gift-product-name {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 32px;
  color: #1c1714;
  line-height: 1.2;
  letter-spacing: -0.006px;
}

.gift-product-desc {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 12px;
  color: #666666;
  line-height: 2;
  letter-spacing: -0.002px;
}

.gift-accordion {
  background: #edebe9;
  padding: 16px 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  cursor: pointer;
  white-space: nowrap;
}
.gift-accordion__label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #1c1714;
  line-height: 28px;
}
.gift-accordion__icon {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  color: #1c1714;
  line-height: 28px;
}
@media (min-width: 768px) {
  .gift-accordion {
    display: none;
  }
}

@media (min-width: 768px) {
  .gift-detail-panel {
    display: contents !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .gifts-header {
    padding: 60px 32px 0;
    align-items: flex-start;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .gift-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "chef    detail" "product product";
    padding: 60px 32px;
    gap: 0;
    align-items: unset;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .gift-chef-col {
    grid-area: chef;
    width: auto;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .gift-chef-photo {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .gift-chef-info {
    padding: 40px 24px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .gift-detail-col {
    display: contents !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .gift-detail-inner {
    grid-area: detail;
    width: auto;
    flex-shrink: 1;
    padding: 40px 24px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .gift-product-col {
    grid-area: product;
    width: auto;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .gift-product-info {
    padding: 32px 24px;
  }
}

.shop-section {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 48px 24px;
}
@media (min-width: 1024px) {
  .shop-section {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 72px 48px;
  }
}

.shop-text-panel {
  width: 100%;
  max-width: 560px;
}
@media (min-width: 1024px) {
  .shop-text-panel {
    width: auto;
    max-width: 500px;
    flex: 0 1 500px;
    min-width: 0;
  }
}

.shop-text-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.shop-text-inner .section-label {
  width: auto;
  text-align: left;
}

.shop-date-heading {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 4px;
  line-height: 1.5;
  color: #1c1714;
}
@media (min-width: 1280px) {
  .shop-date-heading {
    font-size: 40px;
    line-height: 64.4px;
  }
}

.shop-address,
.shop-contact {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #1c1714;
  line-height: 27.2px;
}

.shop-map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid #1c1714;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #1c1714;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease;
}
.shop-map-btn:hover {
  background: #1c1714;
  color: #ffffff;
}

.shop-map-btn__arrow {
  transition: transform 0.3s ease;
}

.shop-map-btn:hover .shop-map-btn__arrow {
  transform: translateX(4px);
}

.shop-message-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.shop-message {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #1c1714;
  line-height: 27.2px;
}

.shop-image-panel {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1402/1122;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .shop-image-panel {
    width: auto;
    max-width: 649px;
    flex: 1 1 0;
    min-width: 0;
  }
}

.shop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.site-footer {
  background: #3f3639;
  padding: 24px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-copy {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 12px;
  color: #ffffff;
  letter-spacing: 1.2px;
  white-space: nowrap;
}
@media (min-width: 1440px) {
  .footer-copy {
    font-size: 16px;
    letter-spacing: 1.6px;
  }
}

.story-section {
  background: #f4efe6;
  padding: 80px 24px;
}
@media (min-width: 768px) {
  .story-section {
    padding: 120px 0 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .story-section {
    padding: 80px 32px 0;
  }
}

.br-desktop {
  display: none;
}
@media (min-width: 768px) {
  .br-desktop {
    display: block;
  }
}

.story-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .story-inner {
    padding-bottom: 80px;
  }
}

.story-heading {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 28px;
  color: #1c1714;
  line-height: 1.4;
  letter-spacing: 2px;
}
@media (min-width: 768px) {
  .story-heading {
    font-size: 36px;
  }
}

.story-body {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 14px;
  color: #1c1714;
  line-height: 2;
  letter-spacing: 0.5px;
  text-align: left;
}
@media (min-width: 768px) {
  .story-body {
    text-align: center;
    font-size: 15px;
  }
}

.story-accent {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 15px;
  color: #1c1714;
  line-height: 2;
  letter-spacing: 0.5px;
}
@media (min-width: 768px) {
  .story-accent {
    font-size: 16px;
  }
}

.story-quote {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 15px;
  color: #1c1714;
  line-height: 2;
  letter-spacing: 0.5px;
}
@media (min-width: 768px) {
  .story-quote {
    font-size: 16px;
  }
}

.story-close {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 14px;
  color: #1c1714;
  line-height: 2;
  letter-spacing: 0.5px;
}
@media (min-width: 768px) {
  .story-close {
    font-size: 15px;
  }
}

.news-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.news-modal.open {
  display: flex;
}

.news-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.news-modal__content {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 32px 32px;
  width: 100%;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-height: 90vh;
  overflow-y: auto;
}

.news-modal__body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  color: #1c1714;
  line-height: 1.9;
}

.news-modal__sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #1c1714;
  line-height: 1.6;
}

.news-modal__link {
  display: block;
  width: 100%;
  padding: 16px 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #1c1714;
  text-align: center;
  border: 1px solid #1c1714;
  transition: background 0.2s, color 0.2s;
}
.news-modal__link:hover {
  background: #1c1714;
  color: #ffffff;
}

.news-modal__sns {
  display: flex;
  gap: 16px;
  justify-content: center;
}
@media (min-width: 480px) {
  .news-modal__sns {
    gap: 32px;
  }
}

.news-modal__sns-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #1c1714;
  transition: opacity 0.2s;
}
@media (min-width: 768px) {
  .news-modal__sns-item {
    flex: 0 1 auto;
  }
}
.news-modal__sns-item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.news-modal__sns-item:hover {
  opacity: 0.6;
}

.news-modal__sns-arrow {
  font-size: 16px;
  color: #1c1714;
}

.news-modal__close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #1c1714;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  padding: 4px 0;
  transition: opacity 0.2s;
}
.news-modal__close:hover {
  opacity: 0.5;
}

.shop-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.shop-modal.open {
  display: flex;
}

.shop-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.shop-modal__content {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 48px 40px;
  width: 90vw;
  max-width: 520px;
  height: 90vh;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
}

.shop-modal__close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #1c1714;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  padding: 4px 0;
  transition: opacity 0.2s;
}
.shop-modal__close:hover {
  opacity: 0.5;
}

.shop-modal__hero {
  width: 100%;
  flex-shrink: 0;
}
.shop-modal__hero img {
  width: 100%;
  height: auto;
  display: block;
}

.shop-modal__name {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 28px;
  color: #1c1714;
  line-height: 1.2;
}

.shop-modal__divider {
  width: 360px;
  max-width: 100%;
  height: 0;
  border-top: 1px solid #C9A55A;
  align-self: center;
  flex-shrink: 0;
}

.shop-modal__body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #1c1714;
  line-height: 1.9;
}

.shop-modal__omakase {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  color: #1c1714;
  letter-spacing: 1px;
  transition: opacity 0.2s;
}
.shop-modal__omakase:hover {
  opacity: 0.6;
}

.news-item {
  cursor: pointer;
}
.news-item:hover {
  opacity: 0.7;
}

@media (max-width: 767px) {
  body.modal-open .back-to-top {
    opacity: 0 !important;
    pointer-events: none !important;
  }
}
.collection {
  background: #f4efe6;
  padding: 96px 24px 72px;
}
@media (min-width: 768px) {
  .collection {
    padding: 120px 48px 96px;
  }
}

.collection__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.collection__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.08em;
  text-align: center;
  color: #1c1714;
}
@media (min-width: 768px) {
  .collection__title {
    font-size: 30px;
  }
}

.collection-filter {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
  margin: 40px auto 0;
}
@media (min-width: 768px) {
  .collection-filter {
    flex-direction: row;
    align-items: flex-end;
    gap: 16px;
    margin-top: 56px;
  }
}

.collection-filter__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .collection-filter__field {
    flex: 1;
  }
}

.collection-filter__label {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #666666;
}

.collection-filter__control {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #b0a89e;
  border-radius: 4px;
  height: 48px;
}

.collection-filter__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 14px;
  color: #ba0b2f;
  flex-shrink: 0;
}

.collection-filter__select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  padding: 0 40px 0 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #1c1714;
  cursor: pointer;
}
.collection-filter__select:focus {
  outline: none;
}

.collection-filter__chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  color: #666666;
  pointer-events: none;
}

.collection-filter__submit {
  height: 48px;
  background: #ba0b2f;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1em;
  border-radius: 4px;
  padding: 0 32px;
  transition: opacity 0.25s ease;
}
@media (min-width: 768px) {
  .collection-filter__submit {
    flex-shrink: 0;
    min-width: 120px;
  }
}
.collection-filter__submit:hover {
  opacity: 0.85;
}

.collection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px 32px;
  margin-top: 56px;
}
@media (min-width: 768px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 72px;
  }
}
@media (min-width: 1024px) {
  .collection-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.collection-card {
  display: flex;
  flex-direction: column;
}
.collection-card.is-hidden {
  display: none;
}

.collection-card__photo {
  width: 100%;
  aspect-ratio: 9/16;
  overflow: hidden;
  background: #edebe9;
}
.collection-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.collection-card__photo .img-box {
  min-height: 0;
}

.collection-card__brand {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #666666;
  text-align: center;
  margin-top: 20px;
}

.collection-card__name {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #1c1714;
  text-align: center;
  margin-top: 8px;
  min-height: 51px;
}

.collection-card__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.9;
  color: #666666;
  margin-top: 16px;
  white-space: pre-line;
}

.collection-empty {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #666666;
  margin-top: 56px;
}

.collection__foot {
  display: flex;
  justify-content: flex-end;
  margin-top: 64px;
}
@media (min-width: 768px) {
  .collection__foot {
    margin-top: 80px;
  }
}

.collection__top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #1c1714;
  transition: color 0.25s ease;
}
.collection__top:hover {
  color: #ba0b2f;
}
