/* =========================================================
   NAGI — Japanese Dining
   Portfolio Website
========================================================= */


/* =========================================================
   01 / RESET
========================================================= */

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

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
p,
dl,
dd {
  margin: 0;
}

body {
  min-width: 320px;
  overflow-x: hidden;

  background: #f3efe7;
  color: #191816;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-weight: 400;
  line-height: 1.9;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  padding: 0;
  border: 0;

  background: transparent;
  color: inherit;

  font: inherit;
  cursor: pointer;
}


/* =========================================================
   02 / VARIABLES
========================================================= */

:root {
  --bg: #f3efe7;
  --bg-light: #f7f3eb;
  --bg-deep: #e9e3d8;

  --ink: #191816;
  --ink-soft: #625c53;

  --dark: #121310;
  --white: #f9f6ef;

  --accent: #957b50;
  --accent-light: #b3996f;

  --line: rgba(25, 24, 22, 0.14);

  --serif-en:
    "Cormorant Garamond",
    Georgia,
    serif;

  --serif-jp:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  --side: clamp(30px, 5vw, 88px);

  --ease:
    cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   03 / COMMON
========================================================= */

section[id] {
  scroll-margin-top: 84px;
}

.section-label {
  margin-bottom: 26px;

  color: var(--accent);

  font-family: var(--serif-en);
  font-size: 14px;
  font-weight: 500;

  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(34px, 3.8vw, 61px);
  font-weight: 400;

  line-height: 1.58;
  letter-spacing: 0.08em;
}

.section-number {
  color: var(--accent);

  font-family: var(--serif-en);
  font-size: 12px;

  letter-spacing: 0.24em;
}

.section-description {
  max-width: 560px;

  margin-top: 30px;

  color: var(--ink-soft);

  font-size: clamp(12px, 0.95vw, 14px);

  line-height: 2.3;
  letter-spacing: 0.07em;
}


/* =========================================================
   04 / HEADER
========================================================= */

.header {
  position: fixed;
  z-index: 1000;

  top: 0;
  left: 0;

  display: grid;

  width: 100%;
  height: 96px;

  grid-template-columns:
    1fr
    auto
    1fr;

  align-items: center;

  padding:
    0
    var(--side);

  color: var(--white);

  transition:
    height 0.6s var(--ease),
    background 0.6s var(--ease),
    color 0.6s var(--ease),
    backdrop-filter 0.6s var(--ease);
}

.header::after {
  position: absolute;

  right: var(--side);
  bottom: 0;
  left: var(--side);

  height: 1px;

  content: "";

  background: rgba(255, 255, 255, 0.18);

  transition: background 0.5s ease;
}

.header.is-scrolled {
  height: 84px;

  background: rgba(243, 239, 231, 0.95);
  color: var(--ink);

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.header.is-scrolled::after {
  background: rgba(25, 24, 22, 0.13);
}

body.menu-open .header {
  background: transparent;
  color: var(--white);

  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.menu-open .header::after {
  background: rgba(255, 255, 255, 0.15);
}


/* =========================================================
   05 / HEADER LOGO
========================================================= */

.header-logo {
  justify-self: start;

  display: inline-flex;
  flex-direction: column;

  line-height: 1;
}

.header-logo-main {
  font-family: var(--serif-en);
  font-size: 30px;
  font-weight: 500;

  letter-spacing: 0.2em;
}

.header-logo-sub {
  margin-top: 8px;

  font-family: var(--serif-en);
  font-size: 7px;

  letter-spacing: 0.3em;

  opacity: 0.62;
}


/* =========================================================
   06 / HEADER NAV
========================================================= */

.header-nav {
  display: flex;

  gap: clamp(27px, 3vw, 52px);

  align-items: center;
}

.header-nav a {
  position: relative;

  padding: 8px 0;

  font-family: var(--serif-en);
  font-size: 14px;

  letter-spacing: 0.1em;
}

.header-nav a::after {
  position: absolute;

  right: 0;
  bottom: 2px;
  left: 0;

  height: 1px;

  content: "";

  background: currentColor;

  transform: scaleX(0);
  transform-origin: right;

  transition: transform 0.45s var(--ease);
}

.header-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}


/* =========================================================
   07 / RESERVATION BUTTON
========================================================= */

.header-reserve {
  justify-self: end;

  display: flex;

  width: 158px;
  height: 48px;

  align-items: center;
  justify-content: center;

  border: 1px solid currentColor;

  font-family: var(--serif-en);
  font-size: 13px;

  letter-spacing: 0.14em;

  transition:
    background 0.4s ease,
    color 0.4s ease;
}

.header-reserve:hover {
  background: var(--white);
  color: var(--ink);
}

.header.is-scrolled
.header-reserve:hover {
  background: var(--ink);
  color: var(--white);
}


/* =========================================================
   08 / MOBILE MENU
========================================================= */

.menu-button {
  display: none;

  width: 42px;
  height: 42px;

  align-items: center;
  justify-content: center;
  flex-direction: column;

  gap: 7px;
}

.menu-button span {
  display: block;

  width: 27px;
  height: 1px;

  background: currentColor;

  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.menu-button.is-open
span:first-child {
  transform:
    translateY(4px)
    rotate(45deg);
}

.menu-button.is-open
span:last-child {
  transform:
    translateY(-4px)
    rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 900;

  inset: 0;

  display: flex;
  visibility: hidden;

  align-items: center;

  padding:
    120px
    var(--side)
    60px;

  background: #151512;
  color: var(--white);

  opacity: 0;

  pointer-events: none;

  transition:
    opacity 0.45s ease,
    visibility 0.45s ease;
}

.mobile-menu.is-open {
  visibility: visible;

  opacity: 1;

  pointer-events: auto;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;

  width: 100%;
}

.mobile-menu-nav a {
  padding: 17px 0;

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.12);

  font-family: var(--serif-en);

  font-size:
    clamp(32px, 10vw, 48px);

  letter-spacing: 0.06em;
}


/* =========================================================
   09 / HERO
========================================================= */

.hero {
  position: relative;

  min-height: 100svh;

  overflow: hidden;

  background: #10100e;
  color: var(--white);
}

.hero-image {
  position: absolute;

  inset: 0;

  background-image:
    url("../assets/images/nagi-1.png");

  background-size: cover;
  background-position: center;

  animation:
    heroZoom
    14s
    ease-out
    forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.055);
  }

  to {
    transform: scale(1.015);
  }
}

.hero-image::before {
  position: absolute;

  inset: 0;

  content: "";

  background:
    linear-gradient(
      90deg,
      rgba(8, 8, 7, 0.68) 0%,
      rgba(8, 8, 7, 0.23) 40%,
      rgba(8, 8, 7, 0.05) 67%,
      rgba(8, 8, 7, 0.2) 100%
    );
}

.hero-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.24),
      transparent 44%,
      rgba(0, 0, 0, 0.4)
    );
}

.hero-content {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;

  min-height: 100svh;

  justify-content: center;

  padding:
    140px
    var(--side)
    108px;
}

.hero-eyebrow {
  margin-bottom: 30px;

  font-family: var(--serif-en);
  font-size: 11px;

  letter-spacing: 0.32em;

  opacity: 0.68;
}

.hero-title {
  font-family: var(--serif-en);

  font-size:
    clamp(105px, 15vw, 230px);

  font-weight: 400;

  line-height: 0.74;
  letter-spacing: 0.055em;
}

.hero-copy {
  margin-top:
    clamp(55px, 7vh, 84px);

  font-size:
    clamp(16px, 1.45vw, 22px);

  line-height: 2.1;
  letter-spacing: 0.2em;
}

.hero-scroll {
  position: absolute;
  z-index: 3;

  right: var(--side);
  bottom: 42px;

  display: flex;

  gap: 16px;

  align-items: center;
}

.hero-scroll span {
  font-family: var(--serif-en);
  font-size: 9px;

  letter-spacing: 0.28em;

  opacity: 0.65;
}

.hero-scroll-line {
  position: relative;

  width: 74px;
  height: 1px;

  overflow: hidden;

  background:
    rgba(255, 255, 255, 0.25);
}

.hero-scroll-line::after {
  position: absolute;

  top: 0;
  left: 0;

  width: 48%;
  height: 100%;

  content: "";

  background: var(--white);

  animation:
    scrollLine
    2.2s
    ease-in-out
    infinite;
}

@keyframes scrollLine {
  0% {
    transform: translateX(-120%);
  }

  50% {
    transform: translateX(70%);
  }

  100% {
    transform: translateX(230%);
  }
}


/* =========================================================
   10 / PHILOSOPHY
========================================================= */

.intro {
  display: grid;

  grid-template-columns:
    110px
    minmax(0, 1fr);

  padding:
    145px
    var(--side)
    155px;

  border-bottom:
    1px solid
    var(--line);
}

.intro .section-number {
  padding-top: 3px;
}

.intro-inner {
  width: 100%;
  max-width: 1280px;
}

.intro-inner
> .section-label {
  margin-bottom: 55px;
}

.intro-body {
  display: grid;

  grid-template-columns:
    minmax(480px, 1.05fr)
    minmax(340px, 0.75fr);

  gap:
    clamp(70px, 8vw, 130px);

  align-items: start;
}

.intro-heading {
  font-size:
    clamp(45px, 4.5vw, 70px);

  font-weight: 400;

  line-height: 1.62;
  letter-spacing: 0.1em;
}

.intro-heading span {
  display: block;

  white-space: nowrap;
}

.intro-text {
  display: grid;

  gap: 24px;

  padding-top: 10px;

  color: var(--ink-soft);

  font-size:
    clamp(12px, 0.9vw, 14px);

  line-height: 2.35;
  letter-spacing: 0.075em;
}


/* =========================================================
   11 / CONCEPT
========================================================= */

.concept {
  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(0, 0.95fr);

  min-height: 830px;

  background: var(--bg-light);
}

.concept-visual {
  min-height: 830px;

  overflow: hidden;
}

.concept-image {
  width: 100%;
  height: 100%;

  background-image:
    url("../assets/images/nagi-2.png");

  background-size: cover;
  background-position: center;

  transition:
    transform
    1.2s
    var(--ease);
}

.concept:hover
.concept-image {
  transform: scale(1.018);
}

.concept-content {
  display: flex;
  flex-direction: column;

  justify-content: center;

  min-width: 0;

  padding:
    90px
    clamp(40px, 5vw, 78px);
}

.concept-title {
  font-size:
    clamp(32px, 2.75vw, 44px);

  line-height: 1.85;
  letter-spacing: 0.055em;
}

.concept-title span {
  display: block;

  white-space: nowrap;
}

.dish-name {
  color: var(--ink);

  letter-spacing: 0.1em;
}


/* =========================================================
   12 / MENU
========================================================= */

.menu-section {
  padding:
    clamp(120px, 10vw, 160px)
    var(--side)
    clamp(140px, 12vw, 185px);

  background: var(--dark);
  color: var(--white);
}

.menu-heading {
  display: grid;

  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(300px, 0.55fr);

  column-gap:
    clamp(70px, 8vw, 150px);

  align-items: start;

  margin-bottom: 88px;
}

.menu-heading
.section-label {
  color: var(--accent-light);
}

.menu-title span {
  display: block;
}

.menu-heading-text {
  align-self: start;

  max-width: 380px;

  margin-top: 76px;

  color:
    rgba(249, 246, 239, 0.55);

  font-size: 12px;

  line-height: 2.35;
  letter-spacing: 0.08em;
}

.menu-list {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap:
    clamp(34px, 5vw, 78px);
}

.menu-card {
  min-width: 0;
}

.menu-card-image {
  overflow: hidden;

  aspect-ratio: 1.35 / 1;

  background-size: cover;
  background-position: center;

  transition:
    transform 0.9s var(--ease),
    filter 0.9s var(--ease);
}

.menu-card-image--01 {
  background-image:
    url("../assets/images/nagi-3.png");
}

.menu-card-image--02 {
  background-image:
    url("../assets/images/nagi-4.png");
}

.menu-card:hover
.menu-card-image {
  transform: scale(1.012);

  filter: brightness(1.04);
}

.menu-card-content {
  position: relative;

  padding-top: 32px;
}

.menu-card-number {
  position: absolute;

  right: 0;
  top: 33px;

  color:
    rgba(255, 255, 255, 0.28);

  font-family: var(--serif-en);
  font-size: 11px;

  letter-spacing: 0.18em;
}

.menu-card h3 {
  font-size:
    clamp(23px, 2.1vw, 31px);

  font-weight: 400;

  letter-spacing: 0.13em;
}

.menu-card-en {
  margin-top: 7px;

  color: var(--accent-light);

  font-family: var(--serif-en);
  font-size: 13px;

  letter-spacing: 0.1em;
}

.menu-card-description {
  max-width: 440px;

  margin-top: 25px;

  color:
    rgba(249, 246, 239, 0.5);

  font-size: 12px;

  line-height: 2.1;
  letter-spacing: 0.07em;
}

.menu-dish {
  margin-top: 28px;

  color:
    rgba(249, 246, 239, 0.63);

  font-size: 12px;

  line-height: 2;
  letter-spacing: 0.08em;
}

.menu-price {
  margin-top: 28px;

  font-family: var(--serif-en);
  font-size: 27px;

  letter-spacing: 0.06em;
}

.menu-price span {
  margin-left: 8px;

  font-family: var(--serif-jp);
  font-size: 9px;

  letter-spacing: 0.1em;

  opacity: 0.44;
}


/* =========================================================
   13 / CHEF
========================================================= */

.chef {
  display: grid;

  grid-template-columns:
    minmax(0, 0.8fr)
    minmax(0, 1.2fr);

  min-height: 760px;

  background: var(--bg-deep);
}

.chef-content {
  display: flex;
  flex-direction: column;

  justify-content: center;

  padding:
    90px
    clamp(46px, 7vw, 115px);
}

.chef-japanese {
  margin-top: 12px;

  color: var(--ink-soft);

  font-size: 10px;

  letter-spacing: 0.28em;
}

.chef-name {
  margin-top: 20px;

  font-size:
    clamp(34px, 4vw, 57px);

  font-weight: 400;

  letter-spacing: 0.15em;
}

.chef-name-en {
  margin-top: 8px;

  color: var(--accent);

  font-family: var(--serif-en);
  font-size: 14px;

  letter-spacing: 0.1em;
}

.chef-description {
  max-width: 460px;

  margin-top: 48px;

  color: var(--ink-soft);

  font-size: 12px;

  line-height: 2.3;
  letter-spacing: 0.08em;
}

.chef-image {
  min-height: 760px;

  background-image:
    url("../assets/images/nagi-8.png");

  background-size: cover;
  background-position: center;

  transition:
    filter
    0.8s
    ease;
}

.chef:hover
.chef-image {
  filter: brightness(1.025);
}


/* =========================================================
   14 / SPACE
========================================================= */

.space {
  padding:
    clamp(115px, 10vw, 150px)
    var(--side)
    clamp(125px, 10vw, 155px);

  background: var(--bg);
}

.space-heading {
  margin-bottom: 70px;
}

.space-title span {
  display: block;
}


/*
   左右の写真と説明文を
   同じ基準線で揃える
*/

.space-gallery {
  display: grid;

  grid-template-columns:
    minmax(0, 1.42fr)
    minmax(250px, 0.58fr);

  gap:
    clamp(22px, 3vw, 46px);

  align-items: start;
}

.space-card {
  display: grid;

  grid-template-rows:
    auto
    auto;

  min-width: 0;
}


/*
   PCでは左右の写真の高さを揃える。
   横幅が違うので、
   左はワイド、右は縦長に見える。
*/

.space-image {
  width: 100%;

  height:
    clamp(
      420px,
      37vw,
      575px
    );

  background-size: cover;
  background-position: center;
}

.space-image-large {
  background-image:
    url("../assets/images/nagi-5.png");
}

.space-image-small {
  background-image:
    url("../assets/images/nagi-6.png");
}


/*
   説明文は両方とも
   写真の左端から開始。
   写真下の余白も同じ。
*/

.space-caption {
  width: 100%;
  max-width: none;

  margin-top: 38px;
  margin-left: 0;

  color: var(--ink-soft);

  font-size: 12px;

  line-height: 2.35;
  letter-spacing: 0.07em;
}


/*
   読みやすさのため
   文字そのものの最大幅だけ制限
*/

.space-card-main
.space-caption {
  padding-right:
    clamp(20px, 4vw, 80px);
}

.space-card-sub
.space-caption {
  padding-right: 0;
}


/* =========================================================
   15 / DETAIL VISUAL
========================================================= */

.detail-visual {
  min-height:
    min(77vh, 790px);

  background-image:
    linear-gradient(
      rgba(10, 10, 8, 0.04),
      rgba(10, 10, 8, 0.2)
    ),
    url("../assets/images/nagi-7.png");

  background-size: cover;
  background-position: center 48%;
  background-attachment: fixed;
}


/* =========================================================
   16 / INFORMATION
========================================================= */

.information {
  padding:
    clamp(105px, 8vw, 135px)
    var(--side)
    clamp(110px, 9vw, 145px);

  background: #ebe5da;
}

.information-heading {
  margin-bottom: 64px;
}

.information-heading
.section-title {
  font-size:
    clamp(38px, 4vw, 61px);
}

.information-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(380px, 0.95fr);

  gap:
    clamp(55px, 8vw, 120px);

  align-items: start;
}

.information-map {
  width: 100%;

  aspect-ratio: 1.24 / 1;

  background-image:
    url("../assets/images/nagi-9.png");

  background-size: cover;
  background-position: center;
}

.information-list {
  border-top:
    1px solid
    var(--line);
}

.information-row {
  display: grid;

  grid-template-columns:
    120px
    1fr;

  gap: 28px;

  padding: 21px 0;

  border-bottom:
    1px solid
    var(--line);
}

.information-row dt {
  color: var(--ink-soft);

  font-size: 10px;

  letter-spacing: 0.12em;
}

.information-row dd {
  font-size: 12px;

  line-height: 2;
  letter-spacing: 0.05em;
}


/* =========================================================
   17 / RESERVATION
========================================================= */

.reservation {
  position: relative;

  display: flex;

  min-height: 610px;

  align-items: center;
  justify-content: center;

  overflow: hidden;

  padding:
    100px
    var(--side);

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(151, 119, 70, 0.17),
      transparent 37%
    ),
    #131410;

  color: var(--white);

  text-align: center;
}

.reservation::before,
.reservation::after {
  position: absolute;

  left: 50%;

  width: 1px;

  content: "";

  background:
    rgba(255, 255, 255, 0.14);
}

.reservation::before {
  top: 0;

  height: 90px;
}

.reservation::after {
  bottom: 0;

  height: 95px;
}

.reservation-inner {
  position: relative;
  z-index: 2;

  width:
    min(680px, 100%);
}

.reservation
.section-label {
  color: var(--accent-light);
}

.reservation-title {
  font-size:
    clamp(44px, 5.6vw, 73px);

  font-weight: 400;

  letter-spacing: 0.15em;
}

.reservation-text {
  margin-top: 32px;

  color:
    rgba(249, 246, 239, 0.52);

  font-size: 12px;

  line-height: 2.25;
  letter-spacing: 0.08em;
}

.reservation-button {
  display: flex;

  width:
    min(390px, 100%);

  height: 72px;

  align-items: center;
  justify-content: space-between;

  margin:
    48px
    auto
    0;

  padding:
    0
    30px;

  border:
    1px solid
    rgba(255, 255, 255, 0.32);

  font-family: var(--serif-en);
  font-size: 15px;

  letter-spacing: 0.12em;

  transition:
    background 0.45s ease,
    color 0.45s ease,
    border-color 0.45s ease;
}

.reservation-button:hover {
  border-color: var(--white);

  background: var(--white);
  color: var(--ink);
}

.reservation-arrow {
  font-size: 19px;

  transition:
    transform
    0.4s
    var(--ease);
}

.reservation-button:hover
.reservation-arrow {
  transform: translateX(7px);
}


/* =========================================================
   18 / FOOTER
========================================================= */

.footer {
  position: relative;

  padding:
    95px
    var(--side)
    32px;

  background-image:
    linear-gradient(
      rgba(10, 10, 8, 0.9),
      rgba(10, 10, 8, 0.94)
    ),
    url("../assets/images/nagi-7.png");

  background-size: cover;
  background-position: center;

  color: var(--white);
}

.footer-top {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  padding-bottom: 68px;

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.14);
}

.footer-logo {
  display: inline-flex;
  flex-direction: column;
}

.footer-logo-main {
  font-family: var(--serif-en);

  font-size:
    clamp(54px, 6vw, 88px);

  line-height: 0.9;
  letter-spacing: 0.17em;
}

.footer-logo-sub {
  margin-top: 18px;

  font-family: var(--serif-en);
  font-size: 8px;

  letter-spacing: 0.31em;

  opacity: 0.42;
}

.footer-address {
  color:
    rgba(255, 255, 255, 0.42);

  font-size: 10px;

  line-height: 2;
  letter-spacing: 0.07em;

  text-align: right;
}

.footer-bottom {
  display: flex;

  justify-content: space-between;

  gap: 20px;

  padding-top: 27px;

  color:
    rgba(255, 255, 255, 0.27);

  font-family: var(--serif-en);
  font-size: 9px;

  letter-spacing: 0.11em;
}


/* =========================================================
   19 / TABLET
========================================================= */

@media (max-width: 1100px) {

  .header {
    grid-template-columns:
      1fr
      auto;
  }

  .header-nav,
  .header-reserve {
    display: none;
  }

  .menu-button {
    display: flex;

    justify-self: end;
  }


  /* PHILOSOPHY */

  .intro {
    grid-template-columns:
      70px
      minmax(0, 1fr);

    padding:
      125px
      var(--side)
      135px;
  }

  .intro-body {
    grid-template-columns: 1fr;
  }

  .intro-heading span {
    white-space: normal;
  }

  .intro-text {
    max-width: 570px;

    margin-top: 45px;
    margin-left: auto;

    padding-top: 0;
  }


  /* CONCEPT */

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

  .concept-content {
    padding:
      70px
      36px;
  }

  .concept-title {
    font-size:
      clamp(27px, 3.4vw, 37px);
  }


  /* MENU */

  .menu-heading {
    grid-template-columns: 1fr;

    gap: 32px;
  }

  .menu-heading-text {
    max-width: 520px;

    margin-top: 0;
    margin-left: auto;
  }


  /* SPACE */

  .space-image {
    height:
      clamp(
        340px,
        39vw,
        470px
      );
  }


  /* INFORMATION */

  .information-layout {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .information-map {
    aspect-ratio: 1.55 / 1;
  }


  .detail-visual {
    background-attachment: scroll;
  }

}


/* =========================================================
   20 / MOBILE
========================================================= */

@media (max-width: 760px) {

  :root {
    --side: 22px;
  }


  /* HEADER */

  .header {
    height: 74px;
  }

  .header::after {
    right: 22px;
    left: 22px;
  }

  .header.is-scrolled {
    height: 68px;
  }

  .header-logo-main {
    font-size: 25px;
  }

  .header-logo-sub {
    margin-top: 6px;

    font-size: 6px;
  }


  /* HERO */

  .hero-content {
    justify-content: flex-end;

    padding:
      110px
      var(--side)
      125px;
  }

  .hero-image {
    background-position:
      58% center;
  }

  .hero-title {
    font-size:
      clamp(78px, 28vw, 120px);

    line-height: 0.84;
  }

  .hero-eyebrow {
    margin-bottom: 20px;

    font-size: 9px;
  }

  .hero-copy {
    margin-top: 38px;

    font-size: 14px;

    line-height: 2.15;
  }

  .hero-scroll {
    right: auto;
    bottom: 30px;
    left: var(--side);
  }


  /* COMMON */

  .section-label {
    margin-bottom: 20px;

    font-size: 11px;
  }

  .section-title {
    font-size:
      clamp(30px, 9vw, 42px);

    line-height: 1.7;
  }


  /* PHILOSOPHY */

  .intro {
    display: block;

    padding:
      90px
      var(--side)
      100px;
  }

  .intro
  .section-number {
    margin-bottom: 34px;
  }

  .intro-inner
  > .section-label {
    margin-bottom: 34px;
  }

  .intro-body {
    display: block;
  }

  .intro-heading {
    font-size:
      clamp(33px, 9.5vw, 46px);

    line-height: 1.65;
    letter-spacing: 0.08em;
  }

  .intro-heading span {
    white-space: normal;
  }

  .intro-text {
    margin-top: 42px;
    margin-left: 0;

    font-size: 12px;

    line-height: 2.25;
  }


  /* CONCEPT */

  .concept {
    display: flex;
    flex-direction: column;

    min-height: auto;
  }

  .concept-visual {
    min-height: 0;
  }

  .concept-image {
    aspect-ratio: 4 / 5;
  }

  .concept-content {
    padding:
      82px
      var(--side)
      98px;
  }

  .concept-title {
    font-size:
      clamp(23px, 6.8vw, 34px);

    line-height: 1.9;
    letter-spacing: 0.035em;
  }

  .concept-title span {
    white-space: nowrap;
  }

  .section-description {
    margin-top: 24px;

    font-size: 12px;
  }


  /* MENU */

  .menu-section {
    padding:
      95px
      var(--side)
      110px;
  }

  .menu-heading {
    gap: 28px;

    margin-bottom: 62px;
  }

  .menu-heading-text {
    max-width: 100%;

    margin-left: 0;

    font-size: 11px;
  }

  .menu-list {
    grid-template-columns: 1fr;

    gap: 75px;
  }

  .menu-card-image {
    aspect-ratio: 1.1 / 1;
  }

  .menu-card h3 {
    font-size: 23px;
  }

  .menu-card-description,
  .menu-dish {
    font-size: 11px;
  }


  /* CHEF */

  .chef {
    display: flex;
    flex-direction: column-reverse;

    min-height: auto;
  }

  .chef-image {
    min-height: 0;

    aspect-ratio: 4 / 5;

    background-position:
      55% center;
  }

  .chef-content {
    padding:
      84px
      var(--side)
      98px;
  }

  .chef-name {
    font-size: 35px;
  }

  .chef-description {
    margin-top: 36px;

    font-size: 11px;
  }


  /* SPACE */

  .space {
    padding:
      92px
      var(--side)
      105px;
  }

  .space-heading {
    margin-bottom: 48px;
  }

  .space-gallery {
    display: block;
  }

  .space-card + .space-card {
    margin-top: 60px;
  }

  .space-image {
    height: auto;
  }

  .space-image-large {
    aspect-ratio: 1.1 / 1;
  }

  .space-image-small {
    width: 74%;

    margin-left: auto;

    aspect-ratio: 0.9 / 1;
  }

  .space-caption {
    width: 100%;
    max-width: 100%;

    margin-top: 28px;

    padding-right: 0 !important;

    font-size: 11px;
  }

  .space-card-sub
  .space-caption {
    width: 74%;

    margin-left: auto;
  }


  /* DETAIL */

  .detail-visual {
    min-height: 60vh;

    background-position:
      56% center;
  }


  /* INFORMATION */

  .information {
    padding:
      92px
      var(--side)
      100px;
  }

  .information-heading {
    margin-bottom: 48px;
  }

  .information-heading
  .section-title {
    font-size: 37px;
  }

  .information-layout {
    gap: 42px;
  }

  .information-map {
    aspect-ratio: 1 / 1;
  }

  .information-row {
    grid-template-columns:
      80px
      1fr;

    gap: 17px;

    padding: 18px 0;
  }

  .information-row dt {
    font-size: 9px;
  }

  .information-row dd {
    font-size: 11px;
  }


  /* RESERVATION */

  .reservation {
    min-height: 560px;

    padding:
      90px
      var(--side);
  }

  .reservation::before,
  .reservation::after {
    height: 70px;
  }

  .reservation-title {
    font-size: 45px;
  }

  .reservation-text {
    margin-top: 28px;

    font-size: 11px;
  }

  .reservation-button {
    height: 64px;

    margin-top: 42px;

    padding:
      0
      24px;
  }


  /* FOOTER */

  .footer {
    padding:
      70px
      var(--side)
      27px;
  }

  .footer-top {
    display: block;

    padding-bottom: 48px;
  }

  .footer-logo-main {
    font-size: 58px;
  }

  .footer-address {
    margin-top: 48px;

    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;

    gap: 7px;
  }

}


/* =========================================================
   21 / SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

  .hero-title {
    font-size: 74px;
  }

  .intro-heading {
    font-size: 31px;
  }

  .section-title {
    font-size: 28px;
  }

  .concept-title {
    font-size: 21px;
  }

  .chef-name {
    font-size: 31px;
  }

}


/* =========================================================
   22 / REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  .hero-image {
    animation: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

}