/* ============================================================
   秋の料理長フェア LP — combined stylesheet
   ============================================================ */

:root {
  --color-cream: #faf8f4;
  --color-grey-97: #faf8f4;
  --color-grey-34: #5c5751;
  --color-grey-16: #2c2926;
  --color-grey-10: #1a1a1a;
  --color-orange-45: #a8873e;
  --color-orange-86: #e3ded6;
  --color-orange-88: #e8e2d8;
  --color-red-33: #7a2e35;
  --color-white: #ffffff;

  --font-serif: "Shippori Mincho", serif;
  --font-mincho: "Shippori Mincho", serif;
}

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

html {
  scroll-behavior: smooth;
}

.hover-opacity:hover {
  opacity: 0.7;
}

/* ==================== responsive visibility utilities ==================== */
@media (min-width: 476px) {
  .max475 { display: none; }
}

@media (max-width: 475px) {
  .min476 { display: none; }
  .font-max475 { font-size: 13px; }
}

/* ==================== scroll reveal ==================== */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

[data-reveal="up"] { transform: translateY(48px); }
[data-reveal="left"] { transform: translateX(-48px); }
[data-reveal="right"] { transform: translateX(48px); }
[data-reveal="scale"] { transform: scale(0.92); }
[data-reveal="fade"] { transform: none; }

[data-reveal].is-revealed {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

[data-reveal-group] > [data-reveal]:nth-child(1) { transition-delay: 0s; }
[data-reveal-group] > [data-reveal]:nth-child(2) { transition-delay: 0.12s; }
[data-reveal-group] > [data-reveal]:nth-child(3) { transition-delay: 0.24s; }
[data-reveal-group] > [data-reveal]:nth-child(4) { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

body {
  font-family: "Shippori Mincho", serif;
}

body.nav-open {
  overflow: hidden;
}

/* ==================== navigation ==================== */
.navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 4vw, 128px);
  padding: 16px clamp(16px, 4vw, 70px) 16px clamp(16px, 8vw, 160px);
  background: #ffffff;
  position: relative;
}

/* logo */

.navigation__logo {
  display: block;
  flex-shrink: 0;
  line-height: 0;
}

.navigation__logo img {
  display: block;
  width: clamp(84px, 8vw, 120px);
  height: auto;
}

/* hamburger toggle (hidden on desktop) */

.navigation__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  z-index: 20;
}

.navigation__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #1a1a1a;
  transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
}

.navigation__toggle:hover span {
  background: #7a2e35;
}

.navigation__toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navigation__toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.navigation__toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* menu + cta panel */

.navigation__panel {
  display: flex;
  align-items: center;
  gap: clamp(24px, 6vw, 128px);
}

.navigation__backdrop {
  display: none;
}

.navigation__menu {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 40px);
  list-style: none;
}

.navigation__link {
  position: relative;
  display: block;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: clamp(15px, 1.3vw, 24px);
  line-height: 1.8;
  letter-spacing: 0.72px;
  text-align: center;
  white-space: nowrap;
  color: var(--color-grey-34);
  text-decoration: none;
  transition: color 0.3s ease;
}

.navigation__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.navigation__link:hover {
  color: #1a1a1a;
}

.navigation__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.navigation__divider {
  display: flex;
  align-items: center;
  height: 40px;
}

.navigation__divider img {
  display: block;
}

.navigation__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-shrink: 0;
  height: 75px;
  padding: 16px clamp(24px, 4vw, 64px) 16px clamp(28px, 5vw, 81px);
  background: #7a2e35;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.navigation__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(122, 46, 53, 0.35);
  filter: brightness(1.1);
}

.navigation__cta:hover .navigation__cta-icon img {
  transform: rotate(90deg) translateX(4px);
}

.navigation__cta-text {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: clamp(15px, 1.3vw, 24px);
  line-height: 1.8;
  letter-spacing: 0.72px;
  text-align: center;
  white-space: nowrap;
  color: #ffffff;
}

.navigation__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 8px;
  height: 11px;
  flex-shrink: 0;
}

.navigation__cta-icon img {
  display: block;
  width: 11px;
  height: 8px;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

/* ============ tablet / mobile ============ */

@media (max-width: 1080px) {
  .navigation__toggle {
    display: flex;
  }

  .navigation__backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 9;
  }

  .navigation__backdrop.is-open {
    opacity: 1;
    visibility: visible;
  }

  .navigation__panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(360px, 80vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: #ffffff;
    padding: 100px 32px 40px;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.08);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 10;
  }

  .navigation__panel.is-open {
    transform: translateX(0);
  }

  .navigation__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .navigation__item {
    width: 100%;
  }

  .navigation__link {
    width: 100%;
    padding: 16px 0;
    font-size: 18px;
    text-align: left;
  }

  .navigation__divider {
    display: none;
  }

  .navigation__item + .navigation__item {
    border-top: 1px solid #e8e2d8;
  }

  .navigation__cta {
    margin-top: 24px;
    width: 100%;
    height: 56px;
    padding: 16px 24px;
  }

  .navigation__cta-text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .navigation {
    padding: 12px 16px;
  }

  .navigation__logo img {
    width: 88px;
  }

  .navigation__panel {
    width: 100vw;
  }
}

/* ==================== header ==================== */
.header {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 800px;
  max-height: 41.6667vw; /* preserves the 1920:800 design ratio on wide viewports */
}

.header__photo {
  position: relative;
  flex: 1201 1201 0;
  overflow: hidden;
}

.header__photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header__panel {
  position: relative;
  flex: 719 719 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  background-color: #8d1924;
  background-image: url("../assets/header/panel-bg.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
}

.header__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  color: #ffffff;
  text-align: center;
}

.header__eyebrow {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.8;
  letter-spacing: 0.72px;
  white-space: nowrap;
}

.header__title {
  font-weight: 700;
  font-size: 64px;
  line-height: 1.8;
  letter-spacing: 1.92px;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .header {
    flex-direction: column;
    height: auto;
    max-height: none;
  }

  .header__photo {
    flex: none;
    height: 60vw;
    max-height: 500px;
  }

  .header__panel {
    flex: none;
    padding: 64px 24px;
  }

  .header__title {
    font-size: 40px;
    letter-spacing: 1.2px;
  }

  .header__eyebrow {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .header__title {
    font-size: 32px;
    white-space: normal;
  }
}

/* ==================== lead (info) ==================== */
.info {
  display: flex;
  justify-content: center;
  padding: 96px 24px;
}

.info__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  width: 100%;
  max-width: 1080px;
}

/* Header */

.info__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
  width: 100%;
}

.info__ornament {
  width: 86.341px;
  height: 65.345px;
  flex-shrink: 0;
}

.info__ornament--flip {
  transform: rotate(180deg) scaleY(-1);
}

.info__heading-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.info__eyebrow {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.54px;
  color: var(--color-orange-45);
  text-align: center;
}

.info__heading {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.96px;
  color: var(--color-grey-10);
  text-align: center;
  white-space: nowrap;
}

.info__divider {
  width: 40px;
  height: 1px;
  background: var(--color-orange-45);
}

/* Table */

.info__table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--color-orange-86);
  font-size: 18px;
  letter-spacing: 0.54px;
}

.info__table tr {
  border-bottom: 1px solid var(--color-orange-86);
}

.info__table th,
.info__table td {
  text-align: left;
  font-weight: 600;
  padding: 20px 0 21px;
  vertical-align: top;
}

.info__table th {
  width: 180px;
  min-width: 180px;
  color: var(--color-grey-34);
}

.info__table td {
  color: var(--color-grey-10);
}

.info__table td p {
  margin: 0;
  line-height: 1.8;
}

.info__price-row {
  display: flex;
  max-width: 690px;
  gap: 24px;
}

.info__reserve {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  color: var(--color-grey-10);
}

.info__reserve strong {
  font-weight: 600;
  color: var(--color-grey-16);
}

/* CTA */

.info__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-width: 350px;
  padding: 16px 48px;
  background: var(--color-red-33);
  color: var(--color-white);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.72px;
  line-height: 1.8;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.info__cta:hover,
.info__cta:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(122, 46, 53, 0.35);
  filter: brightness(1.1);
}

.info__cta:hover .info__cta-arrow img,
.info__cta:focus-visible .info__cta-arrow img {
  transform: rotate(90deg) translateX(4px);
}

.info__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 8px;
  height: 11px;
  flex-shrink: 0;
}

.info__cta-arrow img {
  width: 11px;
  height: 8px;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

/* Responsive */

@media (max-width: 640px) {
  .info__header {
    gap: 20px;
  }

  .info__ornament {
    width: 56px;
    height: 42.4px;
  }

  .info__heading {
    font-size: 26px;
    white-space: normal;
  }

  .info__table th {
    width: 80px;
    min-width: 80px;
  }

  .info__table th,
  .info__table td {
    font-size: 15px;
  }

  .info__price-row {
    flex-direction: column;
    gap: 4px;
  }

  .info__cta {
    width: 100%;
    min-width: 0;
    padding: 16px 24px;
    gap: 16px;
    font-size: 18px;
  }
}

/* ==================== intro ==================== */
.intro {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px clamp(24px, 8vw, 639px);
  min-height: 505px;
}

.intro__bg {
  position: absolute;
  inset: 0;
}

.intro__bg-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.intro__text {
  position: relative;
  z-index: 1;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 28px;
  color: #faf8f4;
  text-align: center;
  letter-spacing: 0.03em;
}

.intro__text p {
  margin: 0;
  line-height: 1.9;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .intro {
    padding: 64px 4px;
  }

  .intro__text {
    font-size: 18px;
  }

  .intro__text p {
    white-space: normal;
    font-size: 15px;
  }

  .chef__bio p {
    font-size: 13px;
  }

  .chef__career p {
    font-size: 13px;
  }
}

/* ==================== chef ==================== */
.chef {
  position: relative;
  overflow: hidden;
  background: var(--color-cream);
  padding: 120px 24px;
}

.chef__ornament {
  position: absolute;
  pointer-events: none;
}

.chef__ornament--top-left {
  top: -110px;
  left: -192px;
  width: 490px;
  height: 491px;
}

.chef__ornament--bottom-right {
  right: -192px;
  bottom: -110px;
  width: 490px;
  height: 491px;
  transform: rotate(180deg);
}

.chef__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

/* Profile */

.chef__profile {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 80px;
  width: 100%;
}

.chef__photo {
  flex-shrink: 0;
  width: 400px;
  max-width: 100%;
  aspect-ratio: 400 / 500;
  overflow: hidden;
}

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

.chef__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  flex: 1 1 320px;
  min-width: 0;
}

.chef__heading-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.chef__name {
  margin: 0;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.8;
  letter-spacing: 0.96px;
  color: var(--color-grey-10);
}

.chef__name-label {
  font-size: 24px;
  letter-spacing: 0.72px;
}

.chef__divider {
  width: 40px;
  height: 1px;
  background: var(--color-orange-45);
}

.chef__bio {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.54px;
}

.chef__bio p {
  margin: 0;
}

.chef__career {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.42px;
}

.chef__career p {
  margin: 0;
}

.chef__career-title {
  font-weight: 700;
}

/* Video */

.chef__video {
  width: 100%;
  background: var(--color-grey-10);
}

.chef__video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.chef__video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive */

@media (max-width: 1024px) {
  .chef {
    padding: 96px 24px;
  }

  .chef__ornament--top-left {
    top: -90px;
    left: -160px;
    width: 360px;
    height: 361px;
  }

  .chef__ornament--bottom-right {
    right: -160px;
    bottom: -90px;
    width: 360px;
    height: 361px;
  }

  .chef__profile {
    gap: 32px 48px;
  }

  .chef__photo {
    width: 320px;
    aspect-ratio: 320 / 400;
  }
}

@media (max-width: 640px) {
  .chef {
    padding: 72px 20px;
  }

  .chef__ornament--top-left {
    width: 280px;
    height: 281px;
    top: -70px;
    left: -130px;
  }

  .chef__ornament--bottom-right {
    width: 280px;
    height: 281px;
    right: -130px;
    bottom: -70px;
  }

  .chef__inner {
    gap: 48px;
  }

  .chef__profile {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
  }

  .chef__photo {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 4 / 5;
  }

  .chef__details {
    width: 100%;
    flex: none;
  }

  .chef__name {
    font-size: 26px;
  }

  .chef__name-label {
    font-size: 20px;
  }

  .chef__bio {
    font-size: 16px;
  }

}

/* ==================== course ==================== */
.course {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 65px;
  padding-top: 80px;
  background: #ffffff;
}

.course__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  text-align: center;
}

.course__eyebrow {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.54px;
  color: #a8873e;
}

.course__title {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.8;
  letter-spacing: 0.96px;
  color: #1a1a1a;
}

.course__divider {
  width: 40px;
  height: 1px;
  background: #a8873e;
}

.course__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 1279;
  overflow: hidden;
}

.course__photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .course {
    gap: 40px;
    padding-top: 56px;
  }

  .course__title {
    font-size: 26px;
    letter-spacing: 0.78px;
  }
}

@media (max-width: 480px) {
  .course__eyebrow {
    font-size: 16px;
  }

  .course__title {
    font-size: 22px;
    letter-spacing: 0.66px;
  }

  .course__photo {
    aspect-ratio: 4 / 5;
  }
}

/* ==================== menu ==================== */
.menu {
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 80px 24px;
}

.menu__decor {
  position: absolute;
  top: -81px;
  right: -166px;
  width: 467px;
  height: 467px;
  transform: scaleY(-1);
  pointer-events: none;
  z-index: 0;
}

.menu__frame {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  width: 100%;
  min-width: 0;
  max-width: 1080px;
  padding: 56px 20px;
}

.menu__corner {
  position: absolute;
  width: 118px;
  height: 118px;
}

.menu__corner--tl {
  top: 0;
  left: 0;
}

.menu__corner--bl {
  bottom: 0;
  left: 0;
  transform: scaleY(-1);
}

.menu__corner--tr {
  top: 0;
  right: 0;
  transform: scaleX(-1);
}

.menu__corner--br {
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}

.menu__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  width: 100%;
  min-width: 0;
  max-width: 720px;
}

/* Heading */

.menu__heading-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 329px;
}

.menu__eyebrow {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.54px;
  color: var(--color-orange-45);
  text-align: center;
}

.menu__heading {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.96px;
  color: var(--color-grey-10);
  text-align: center;
}

.menu__divider {
  width: 40px;
  height: 1px;
  background: var(--color-orange-45);
}

/* List */

.menu__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu__item {
  display: flex;
  align-items: flex-end;
  gap: 32px;
  padding: 22px 0 23px;
  border-bottom: 1px solid var(--color-orange-86);
}

.menu__num {
  flex-shrink: 0;
  width: 24px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.54px;
  color: var(--color-orange-45);
}

.menu__name {
  flex: 1;
  min-width: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.54px;
  color: var(--color-grey-10);
}

/* Responsive */

@media (max-width: 640px) {
  .menu {
    padding: 56px 20px;
  }

  .menu__decor {
    top: -40px;
    right: -80px;
    width: 222px;
    height: 222px;
  }

  .menu__frame {
    padding: 40px 20px;
  }

  .menu__corner {
    width: 64px;
    height: 64px;
  }

  .menu__content {
    gap: 40px;
  }

  .menu__heading {
    font-size: 26px;
  }

  .menu__item {
    gap: 16px;
    align-items: flex-start;
  }

  .menu__num,
  .menu__name {
    font-size: 15px;
  }
}

/* ==================== pickup ==================== */
.pickup {
  position: relative;
  background: var(--color-white);
  padding: 120px 24px;
  overflow: hidden;
}

.pickup__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

/* Header */

.pickup__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.pickup__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
}

.pickup__eyebrow {
  margin: 0;
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: var(--color-orange-45);
  text-align: center;
  white-space: nowrap;
}

.pickup__title {
  margin: 0;
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: var(--color-grey-10);
  text-align: center;
  white-space: nowrap;
}

.pickup__divider {
  width: 40px;
  height: 1px;
  background: var(--color-orange-45);
}

/* List */

.pickup__list {
  display: flex;
  flex-direction: column;
  gap: 96px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pickup__item {
  display: flex;
  align-items: center;
  gap: 56px;
  width: 100%;
}

.pickup__image {
  flex: 520 1 0px;
  max-width: 520px;
  aspect-ratio: 520 / 347;
  overflow: hidden;
}

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

.pickup__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 440 1 0px;
  max-width: 440px;
  padding-top: 24px;
}

.pickup__item-title {
  margin: 0;
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: var(--color-grey-10);
  white-space: nowrap;
}

.pickup__item-divider {
  width: 40px;
  height: 1px;
  background: var(--color-orange-45);
}

.pickup__item-desc {
  margin: 0;
  font-family: var(--font-mincho);
  font-weight: 400;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.06em;
  color: var(--color-grey-10);
}

/* CTA */

.pickup__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  padding: 16px 64px 16px 81px;
  background: var(--color-red-33);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.pickup__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(122, 46, 53, 0.35);
  filter: brightness(1.1);
}

.pickup__cta:hover .pickup__cta-arrow {
  transform: rotate(90deg) translateX(4px);
}

.pickup__cta span {
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: var(--color-white);
  white-space: nowrap;
}

.pickup__cta-arrow {
  width: 11px;
  height: 8px;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

/* Decoration */

.pickup__decoration {
  position: absolute;
  z-index: 0;
  left: -124px;
  bottom: -220px;
  width: 574px;
  height: 574px;
  max-width: none;
  background: linear-gradient(75deg, var(--color-orange-45) 16%, var(--color-cream) 89%);
  -webkit-mask-image: url('assets/pickup/icons/mandala-mask.svg');
  mask-image: url('assets/pickup/icons/mandala-mask.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 574px 574px;
  mask-size: 574px 574px;
  pointer-events: none;
}

/* Responsive */

@media (max-width: 1150px) {
  .pickup__item-title {
    white-space: normal;
  }
}

@media (max-width: 1024px) {
  .pickup {
    padding: 90px 24px;
  }
}

@media (max-width: 760px) {
  .pickup {
    padding: 80px 20px;
  }

  .pickup__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .pickup__image {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  .pickup__content {
    flex: none;
    width: 100%;
    max-width: 100%;
    padding-top: 0;
  }

  .pickup__item-title {
    white-space: normal;
    font-size: 18px;
  }
}

@media (max-width: 560px) {
  .pickup {
    padding: 64px 20px;
  }

  .pickup__list {
    gap: 64px;
  }

  .pickup__title,
  .pickup__eyebrow {
    white-space: normal;
  }

  .pickup__title {
    font-size: 26px;
  }

  .pickup__cta {
    padding: 16px 32px;
  }

  .pickup__cta span {
    font-size: 20px;
    white-space: normal;
    text-align: center;
  }

  .pickup__decoration {
    width: 380px;
    height: 380px;
    left: -90px;
    bottom: -140px;
    -webkit-mask-size: 380px 380px;
    mask-size: 380px 380px;
  }
}

/* ==================== slider ==================== */
.slider {
  --slider-item-width: 560px;
  --slider-item-height: 400px;
  --slider-duration: 42s;

  position: relative;
  width: 100%;
  height: var(--slider-item-height);
  overflow: hidden;
  background: #1a1a1a;
}

.slider__track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: slider-scroll var(--slider-duration) linear infinite;
}

.slider:hover .slider__track {
  animation-play-state: paused;
}

.slider__item {
  position: relative;
  flex: none;
  width: var(--slider-item-width);
  height: var(--slider-item-height);
}

.slider__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

@keyframes slider-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .slider__track {
    animation: none;
  }
}

@media (max-width: 1024px) {
  .slider {
    --slider-item-width: 400px;
    --slider-item-height: 286px;
    --slider-duration: 32s;
  }
}

@media (max-width: 480px) {
  .slider {
    --slider-item-width: 280px;
    --slider-item-height: 200px;
    --slider-duration: 24s;
  }
}

/* ==================== drinks-piano ==================== */
.drinks-piano {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 96px 24px;
  background: #ffffff;
  overflow: hidden;
}

.drinks-piano__ornament {
  position: absolute;
  left: -19vw;
  bottom: -17vw;
  width: calc(941.91 / 1920 * 100vw);
  height: auto;
  pointer-events: none;
  z-index: 0;
}

.drinks-piano__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 100%;
  max-width: 1080px;
  min-width: 0;
}

/* Block */

.drinks-piano__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  min-width: 0;
}

.drinks-piano__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.drinks-piano__heading-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.drinks-piano__eyebrow {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.54px;
  color: #a8873e;
}

.drinks-piano__title {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.8;
  letter-spacing: 0.96px;
  color: #1a1a1a;
  white-space: nowrap;
}

.drinks-piano__divider {
  width: 40px;
  height: 1px;
  background: #a8873e;
}

/* Row */

.drinks-piano__row {
  display: flex;
  align-items: center;
  gap: 72px;
  width: 100%;
  min-width: 0;
}

.drinks-piano__photo {
  position: relative;
  width: 540px;
  max-width: 100%;
  height: 320px;
  flex-shrink: 0;
  overflow: hidden;
}

.drinks-piano__photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drinks-piano__copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1 1 280px;
  min-width: 0;
  color: #1a1a1a;
}

.drinks-piano__price-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.drinks-piano__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.drinks-piano__price-label {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.8;
  letter-spacing: 0.72px;
  white-space: nowrap;
}

.drinks-piano__price-value {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.8;
  letter-spacing: 0.96px;
  white-space: nowrap;
}

.drinks-piano__note-center {
  width: 100%;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.54px;
  overflow-wrap: break-word;
}

.drinks-piano__text {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.54px;
}

.drinks-piano__annotation {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.42px;
}

.drinks-piano__schedule {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.8;
  letter-spacing: 0.72px;
  overflow-wrap: break-word;
}

/* Responsive */

@media (max-width: 1024px) {
  .drinks-piano {
    padding: 56px 24px;
  }

  .drinks-piano__inner {
    gap: 56px;
  }

  .drinks-piano__block {
    gap: 32px;
  }

  .drinks-piano__title {
    font-size: 26px;
  }

  .drinks-piano__row {
    flex-direction: column;
    gap: 32px;
  }

  .drinks-piano__photo {
    order: -1;
    width: 100%;
    height: auto;
    aspect-ratio: 540 / 320;
  }

  .drinks-piano__copy {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .drinks-piano__eyebrow {
    font-size: 16px;
  }

  .drinks-piano__title {
    font-size: 22px;
  }

  .drinks-piano__price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .drinks-piano__price-label {
    font-size: 20px;
  }

  .drinks-piano__price-value {
    font-size: 24px;
  }

  .drinks-piano__schedule {
    font-size: 20px;
  }
}

/* ==================== restaurant ==================== */
.restaurant {
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 80px 24px 96px;
  background: var(--color-grey-16);
}

.restaurant__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.restaurant__bg-img {
  position: absolute;
  top: -2%;
  left: -2%;
  width: 104%;
  height: 104%;
  object-fit: cover;
  filter: blur(4px);
}

.restaurant__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.restaurant__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 1080px;
}

/* Heading */

.restaurant__heading-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.restaurant__eyebrow {
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.54px;
  color: var(--color-orange-45);
  text-align: center;
}

.restaurant__heading {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.96px;
  color: var(--color-grey-97);
  text-align: center;
  white-space: nowrap;
}

.restaurant__divider {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-orange-45);
}

/* Lead text */

.restaurant__lead {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 1.08px;
  color: var(--color-grey-97);
  text-align: center;
}

/* Video */

.restaurant__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-grey-16);
}

.restaurant__video-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1024px) {
  .restaurant {
    padding: 56px 16px 64px;
  }

  .restaurant__inner {
    gap: 32px;
  }

  .restaurant__heading {
    font-size: 26px;
    letter-spacing: 0.78px;
  }

  .restaurant__lead {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .restaurant__eyebrow {
    font-size: 16px;
  }

  .restaurant__heading {
    font-size: 22px;
    letter-spacing: 0.66px;
    white-space: normal;
  }

  .restaurant__lead {
    font-size: 14px;
    letter-spacing: 0.84px;
  }
}

/* ==================== bottom ==================== */
.bottom {
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: #ffffff;
  padding: 80px 24px 160px;
}

.bottom__text {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.42px;
  color: #2c2926;
}

.bottom__text a {
  text-decoration: none;
}

.bottom__text a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .bottom {
    padding: 48px 24px 80px;
  }

  .bottom__text {
    white-space: normal;
    text-align: left;
  }

  .pickup__item-desc {
    font-size: 13px;
  }
  .drinks-piano__text {
    font-size: 14px;
  }
  .drinks-piano__annotation {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .bottom__text {
    font-size: 12px;
    letter-spacing: 0.36px;
  }
}

/* ==================== footer ==================== */
.footer {
  position: relative;
  background: #ffffff;
  padding-top: 40px;
}

.footer__band {
  display: flex;
  justify-content: center;
  padding: 64px 24px;
  background: #7a2e35;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 608px;
}

.footer__logo {
  display: block;
  width: 100%;
  max-width: 305px;
  height: auto;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer__social img {
  display: block;
  width: 48px;
  height: 48px;
}

.footer__social:hover {
  opacity: 0.85;
  transform: scale(1.1);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 29px;
  width: 100%;
  list-style: none;
}

.footer__divider img {
  display: block;
}

.footer__link {
  position: relative;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.54px;
  text-align: center;
  white-space: nowrap;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.footer__link:hover {
  opacity: 0.85;
}

.footer__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footer__copyright {
  width: 100%;
  padding: 24px 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
  color: #4a3b2e;
}

.footer__totop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #a8873e;
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.footer__totop:hover {
  background: #8f6f2e;
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1024px) {
  .footer__band {
    padding: 48px 24px;
  }

  .footer__links {
    row-gap: 12px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding-top: 32px;
  }

  .footer__band {
    padding: 40px 20px;
  }

  .footer__logo {
    max-width: 220px;
  }

  .footer__links {
    gap: 16px;
  }

  .footer__divider {
    display: none;
  }

  .footer__link {
    font-size: 16px;
  }

  .footer__copyright {
    font-size: 12px;
    padding: 20px 12px;
  }

  .footer__totop {
    right: 16px;
    bottom: 16px;
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}
