:root {
  --color-rose: #c88d8d;
  --color-rose-hover: #b77b7b;
  --color-text: #2a2a2a;
  --color-white: #ffffff;
  --page-max: 1080px;
  --header-height: 86px;
}

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

html {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", serif;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
  max-width: 100%;
}

main {
  overflow-x: hidden;
  max-width: 100%;
}

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

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

/* Header */
.site-header {
  position: relative;
  z-index: 10;
  background: var(--color-white);
}

.site-header__inner {
  display: flex;
  align-items: center;
  width: min(100% - 48px, var(--page-max));
  min-height: var(--header-height);
  margin: 0 auto;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header__logo {
  width: 64px;
  height: auto;
}

.site-nav {
  margin-left: auto;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--color-text);
  transition: opacity 0.2s ease;
}

.site-nav__link:hover {
  opacity: 0.65;
}

.reserve-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Zen Old Mincho", serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--color-white);
  background: var(--color-rose);
  border-radius: 999px;
  transition: background 0.2s ease;
}

.reserve-button:hover {
  background: var(--color-rose-hover);
}

.site-header__button {
  flex-shrink: 0;
  min-width: 184px;
  min-height: 48px;
  margin-left: clamp(20px, 3vw, 40px);
  padding: 0 24px;
}

.site-header__menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.site-header__menu-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-nav__reserve {
  display: none;
}

body.is-menu-open {
  overflow: hidden;
}

/* First View */
.first-view {
  position: relative;
  min-height: calc(100vh - var(--header-height));
}

.first-view__media {
  position: absolute;
  inset: 0;
  background: url("./img/fv.jpeg") center / cover no-repeat;
}

.first-view__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100% - 300px);
  min-height: inherit;
  margin: 0 auto;
  padding: 48px 0;
}

.first-view__title {
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(35px, 5vw, 80px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.1em;
  color: var(--color-white);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
}

.first-view__line {
  display: block;
}

.first-view__line--sub {
  line-height: 1;
  letter-spacing: 0.1em;
}

.first-view__text--mid {
  font-size: clamp(28px, 4vw, 60px);
  line-height: 1;
  vertical-align: baseline;
}

.first-view__text--large {
  font-size: clamp(34px, 5vw, 80px);
  line-height: 1;
  vertical-align: baseline;
}

.first-view__button {
  align-self: flex-start;
  min-width: clamp(200px, 42vw, 220px);
  min-height: clamp(52px, 9vw, 70px);
  margin-top: clamp(28px, 4vw, 42px);
  padding: 0 clamp(28px, 6vw, 56px);
  font-size: clamp(15px, 2.2vw, 22px);
}

/* About */
.about-section {
  padding: clamp(80px, 10vw, 120px) 0 clamp(72px, 8vw, 104px);
  background: var(--color-white);
}

.about-section__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(40px, 6vw, 88px);
  width: min(100% - 56px, var(--page-max));
  margin: 0 auto;
}

.about-section__visual {
  position: relative;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 50% 50% 0 0 / 24% 24% 0 0;
}

.about-section__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 37% 42%;
  border-radius: 50% 50% 0 0 / 24% 24% 0 0;
  transform-origin: 58% 42%;
}

.about-section__content {
  position: relative;
  z-index: 1;
  max-width: 480px;
  padding-top: 4px;
}

.about-section__content::before {
  content: "";
  position: absolute;
  top: 6%;
  right: 8%;
  width: clamp(260px, 38vw, 614px);
  height: clamp(300px, 52vw, 670px);
  background: linear-gradient(180deg, #f8dcd8 0%, #fff5f5 100%);
  border-radius: 50%;
  opacity: 0.88;
  filter: blur(155px);
  z-index: 0;
  pointer-events: none;
}

.about-section__heading {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(24px, 3vw, 32px);
}

.about-section__label {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 5vw, 56px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.15em;
  color: var(--color-text);
}

.about-section__title {
  position: relative;
  z-index: 1;
  margin: 0 0 clamp(28px, 3.5vw, 36px);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.12em;
}

.about-section__title-line {
  display: block;
}

.about-section__text {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 2.15;
  letter-spacing: 0.06em;
  color: #555555;
}

/* Recommend */
.recommend-section {
  padding: 88px 0 120px;
  background: #ffffff;
}

.recommend-section__inner {
  width: min(100% - 48px, var(--page-max));
  margin: 0 auto;
}

.recommend-section__heading {
  margin-bottom: 56px;
  text-align: center;
}

.recommend-section__eyebrow {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #9a9a9a;
}

.recommend-section__title {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

.recommend-section__title-brand {
  font-size: 1.45em;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.recommend-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 40px);
}

.recommend-card {
  text-align: center;
}

.recommend-card__image {
  width: 100%;
  margin: 0 auto 24px;
  border-radius: 28px;
}

.recommend-card__text {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.08em;
}

.recommend-card__accent {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-rose);
}

/* Features */
.features-section {
  background: linear-gradient(to left, #FCE3DE 0%, #DDAAAA 100%);
  border-radius: 120px 0 0 0;
  padding: 60px 5vw 82px 5vw;
  overflow: hidden;
  box-sizing: border-box;
}

.features__container {
  width: 100%;
  max-width: 1231px;
  margin: 0 auto;
  background-color: #FFFFFF;
  border-radius: 30px;
  padding: 80px 0 100px;
}

.features__header {
  margin-bottom: 60px;
  padding-left: 78px;
  padding-right: 6vw;
  
}

.features__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  color: #2a2a2a;
  margin: 0 0 2px;
  letter-spacing: 0.1em;
  
}

.features__subtitle {
  font-size: 12px;
  color: #999;
  letter-spacing: 0.1em;
  margin: 0;
  padding-left: 5px;
}

.features__list {
  width: 100%;
}

.feature-item {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 140px;
  overflow: visible;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-item.feature-item--reverse {
  flex-direction: row-reverse;
}

.feature-item__text-area {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 0;
  box-sizing: border-box;
  
}

.feature-item:not(.feature-item--reverse) .feature-item__text-area {
  
  right: -67px;
}

.feature-item.feature-item--reverse .feature-item__text-area {
  
  left: -67px;
}

.feature-item__image-area {
  position: relative;
  z-index: 1;
  flex: 0 0 55%;
  width: 55%;
  aspect-ratio: 5 / 2;
  overflow: hidden;
}

.feature-item:not(.feature-item--reverse) .feature-item__image-area {
  border-radius: 18.75rem 0 0 18.75rem;
}

.feature-item.feature-item--reverse .feature-item__image-area {
  border-radius: 0 18.75rem 18.75rem 0;
}

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

.feature-item__header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 611px;
}

.feature-item__content {
  flex: 1;
  min-width: 0;
}

.feature-item__badge {
  flex-shrink: 0;
  width: clamp(76px, 9vw, 90px);
  height: clamp(76px, 9vw, 90px);
  
  border: 1px solid rgba(208, 140, 139, 0.45);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #D08C8B;
  font-family: Zen Kaku Gothic New;
  font-weight: 100;
}

.badge-label {
  font-size: clamp(10px, 1.2vw, 10px);
  letter-spacing: 0.15em;
  font-family: "Cormorant Garamond", serif;
}

.badge-num {
  font-size: clamp(32px, 4.5vw, 34px);
  line-height: 1;
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 400;
}

.feature-item__heading {
  color: #D08C8B;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.3rem;
  letter-spacing: 0.08em;
}

.feature-item__desc {
  color: #4D4D4D;
  line-height: 2;
  font-size: 1rem;
  margin: 0;
  font-weight: 100;
}

@media (max-width: 768px) {
  .features-section {
    border-radius: 60px 0 0 0;
    
  }

  .features__container {
    border-radius: 48px 0 0 0;
    padding-top: 50px;
    padding-bottom: 1px;
  }

  .features__header {
    text-align: center;
    padding: 0 20px;
    margin-bottom: 80px;
  }

  .feature-item,
  .feature-item.feature-item--reverse {
    flex-direction: column;
    margin-bottom: 100px;
  }

  .feature-item:not(.feature-item--reverse) .feature-item__text-area,
  .feature-item.feature-item--reverse .feature-item__text-area {
    padding: 0 20px;
    order: 2;
    margin-top: 30px;
    right: 0;
    left: 0;
    z-index: auto;
  }

  .feature-item__image-area {
    order: 1;
    flex: none;
    width: 100%;
  }

  .feature-item:not(.feature-item--reverse) .feature-item__image-area {
    border-radius: 18.75rem 0 0 18.75rem;
  }

  .feature-item.feature-item--reverse .feature-item__image-area {
    border-radius: 0 18.75rem 18.75rem 0;
  }

  .feature-item__header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .feature-item__badge {
    width: 64px;
    height: 64px;
  }

  .badge-label {
    font-size: 9px;
  }

  .badge-num {
    font-size: 28px;
  }

  .feature-item__content {
    text-align: center;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 86px;
  }

  .site-header__inner {
    flex-wrap: nowrap;
    gap: 16px;
    min-height: var(--header-height);
    padding: 18px 0;
  }

  .site-header__logo {
    width: 58px;
  }

  .site-header__menu-toggle {
    display: flex;
  }

  .site-header__button {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
    width: 100%;
    margin-left: 0;
    padding: 40px 24px;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .site-header.is-open .site-nav {
    opacity: 1;
    visibility: visible;
  }

  .site-header.is-open .site-header__menu-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-header.is-open .site-header__menu-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .site-header__menu-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .site-nav__list {
    flex-direction: column;
    gap: 28px;
  }

  .site-nav__link {
    font-size: 20px;
  }

  .site-nav__reserve {
    display: inline-flex;
    min-width: 220px;
    min-height: 48px;
    padding: 0 28px;
    font-size: 1rem;
  }

  .about-section__inner {
    grid-template-columns: 1fr;
    gap: 42px;
    width: min(100% - 40px, var(--page-max));
  }

  .about-section__visual {
    width: min(100%, 520px);
    margin: 0 auto;
  }

  .about-section__content {
    max-width: 680px;
    margin: 0 auto;
  }

  .about-section__content::before {
    top: 0;
    right: auto;
    left: 50%;
    width: min(92vw, 440px);
    height: 68%;
    transform: translateX(-42%);
  }

  .recommend-list {
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .site-header__inner {
    justify-content: space-between;
    gap: 14px;
    width: min(100% - 32px, var(--page-max));
  }

  .site-header__brand {
    width: auto;
    justify-content: flex-start;
  }

  .site-nav__list {
    gap: 24px;
  }

  .site-nav__link {
    min-height: 34px;
  }

  .first-view__media {
    background-position: center;
  }

  .first-view__inner {
    width: min(100% - 32px, var(--page-max));
    padding: 74px 0 56px;
  }

  .first-view__title {
    font-size: clamp(35px, 5vw, 50px);
    line-height: 1.72;
  }

  .about-section {
    padding: 72px 0 64px;
  }

  .about-section__inner {
    width: min(100% - 32px, var(--page-max));
    gap: 36px;
  }

  .about-section__visual {
    width: min(100%, 400px);
    aspect-ratio: 4 / 4.6;
    border-radius: 50% 50% 0 0 / 40% 40% 0 0;
  }

  .about-section__image {
    border-radius: 50% 50% 0 0 / 24% 24% 0 0;
    object-position: 56% 44%;
    transform: scale(1.3);
    transform-origin: 56% 44%;
    z-index: 1;
  }

  .about-section__content {
    max-width: none;
    padding-top: 0;
  }

  .about-section__content::before {
    top: -2%;
    width: min(100%, 360px);
    height: 62%;
    transform: translateX(-50%);
  }

  .menu-section::before {
    content: none;
    display: none;
  }

  .about-section__heading {
    margin-bottom: 24px;
    text-align: center;
  }

  .about-section__label {
    font-size: 40px;
    text-align: center;
  }

  .about-section__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.75;
    letter-spacing: 0.1em;
    text-align: center;
  }

  .about-section__text {
    font-size: 15px;
    font-weight: 400;
    line-height: 2.05;
    letter-spacing: 0.05em;
  }

  .recommend-section {
    padding: 66px 0 96px;
  }

  .recommend-section__inner {
    width: min(100% - 32px, var(--page-max));
  }

  .recommend-section__heading {
    margin-bottom: 44px;
  }

  .recommend-section__title {
    font-size: 23px;
    letter-spacing: 0.04em;
  }

  .recommend-list {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .recommend-card__image {
    margin-bottom: 22px;
  }
}

/* Menu */
.menu-section {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0 clamp(96px, 12vw, 140px);
  background: var(--color-white);
  overflow: hidden;
}

.menu-section::before {
  content: "";
  position: absolute;
  top: 14%;
  right: 60%;
  width: clamp(260px, 38vw, 614px);
  height: clamp(300px, 52vw, 670px);
  background: linear-gradient(180deg, #f8dcd8 0%, #fff5f5 100%);
  border-radius: 50%;
  opacity: 0.88;
  filter: blur(155px);
  z-index: 0;
  pointer-events: none;
}

.menu-section__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, var(--page-max));
  margin: 0 auto;
}

.menu-section__header {
  margin-bottom: clamp(48px, 6vw, 72px);
}

.menu-section__title {
  margin: 0 0 4px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 5vw, 56px);
  font-weight: 500;
  line-height: 1;
  color: var(--color-text);
  letter-spacing: 0.1rem;
}

.menu-section__subtitle {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #999;
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 64px);
}

.menu-card {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 40px);
}

.menu-card--smallface,
.menu-card--visceral {
  position: relative;
  isolation: isolate;
}

.menu-card--smallface::before,
.menu-card--visceral::before {
  content: "";
  position: absolute;
  width: clamp(260px, 38vw, 614px);
  height: clamp(300px, 52vw, 670px);
  background: linear-gradient(180deg, #f8dcd8 0%, #fff5f5 100%);
  border-radius: 50%;
  opacity: 0.88;
  filter: blur(155px);
  z-index: 0;
  pointer-events: none;
}

.menu-card--smallface::before {
  top: 80%;
  left: 10%;
  transform: translate(-50%, -50%);
}

.menu-card--visceral::before {
  top: 70%;
  left: 100%;
  transform: translate(-50%, -40%);
}

.menu-card--smallface > *,
.menu-card--visceral > * {
  position: relative;
  z-index: 1;
}

.menu-card--smallface ~ .menu-card,
.menu-card--visceral ~ .menu-card {
  position: relative;
  z-index: 1;
}

.menu-card__image-area {
  flex: 0 0 clamp(320px, 35vw, 440px);
  width: clamp(320px, 35vw, 440px);
  overflow: hidden;
  border-radius: 30px;
}

.menu-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.menu-card__body {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 40px);
}

.menu-card__content {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.menu-card__name {
  margin: 0 0 12px;
  font-size: clamp(1.25rem, 1.6vw, 1.5rem);
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.menu-card__desc {
  margin: 0;
  font-size: clamp(1rem, 1.2vw, 1rem);
  line-height: 2;
  letter-spacing: 0.04em;
  color: #555;
}

.menu-card__button {
  align-self: flex-start;
  min-width: 180px;
  min-height: 44px;
  margin-top: 20px;
  padding: 20px 32px;
  font-size: 1.25rem;
}

.menu-card__price {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 8px;
  flex: 0 0 auto;
  margin: 0;
  color: var(--color-rose);
  white-space: nowrap;
}

.menu-card__price-value {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: clamp(24px, 4.5vw, 2rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
}

.menu-card__price-unit {
  margin-top: 0;
  font-size: 13px;
  letter-spacing: 0.06em;
}

/* Flow */
.flow-section {
  background: linear-gradient(to left, #fce3de 0%, #ddaaaa 100%);
  border-radius: 120px 0 0 0;
  padding: 60px 5vw 82px;
  overflow: hidden;
  box-sizing: border-box;
}

.flow-section__container {
  width: 100%;
  max-width: 1231px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 30px;
  padding: 80px clamp(24px, 5vw, 78px) 100px;
}

.flow-section__header {
  margin-bottom: 60px;
}

.flow-section__title {
  margin: 0 0 2px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 5vw, 56px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #2a2a2a;
}

.flow-section__subtitle {
  margin: 0;
  padding-left: 5px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #999;
}

.flow-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-item {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: stretch;
}

.flow-item__timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 80px;
}

.flow-item__inner {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  min-width: 0;
  padding-bottom: clamp(48px, 6vw, 72px);
}

.flow-item:last-child .flow-item__inner {
  padding-bottom: 0;
}

.flow-item:not(:last-child) .flow-item__timeline::after {
  content: "";
  flex: 1 1 auto;
  flex-grow: 1;
  width: 1px;
  min-height: 0;
  background: #4d4d4d;
}

.flow-item__badge {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #4d4d4d;
  color: #ffffff;
}

.flow-item__step-label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.750rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
}

.flow-item__step-num {
  margin-top: 4px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(1.5rem, 3vw, 1.5rem);
  font-weight: 400;
  line-height: 1;
}

.flow-item__text {
  
  min-width: 0;
}

.flow-item__title {
  margin: 0 0 12px;
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #d08c8b;
}

.flow-item__desc {
  margin: 0;
  font-size: clamp(0.9375rem, 1.1vw, 1rem);
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #4d4d4d;
}

.flow-item__image-area {
  flex: 0 0 clamp(280px, 36vw, 335px);
  overflow: hidden;
  border-radius: 30px;
}

.flow-item__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

/* Voice */
.voice {
  background: #ebe9e8;
  padding: clamp(80px, 10vw, 120px) clamp(20px, 5vw, 48px);
}

.voice__container {
  max-width: 1084px;
  margin: 0 auto;
  /* padding: clamp(48px, 6vw, 72px) clamp(32px, 5vw, 56px); */
  
}

.voice__header {
  margin-bottom: clamp(40px, 5vw, 56px);
}

.voice__title {
  margin: 0 0 4px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 5vw, 56px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #2a2a2a;
}

.voice__subtitle {
  margin: 0;
  padding-left: 4px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #999;
}

.voice-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.voice-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: clamp(24px, 3vw, 32px);
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.voice-card__profile {
  flex: 0 0 clamp(80px, 10vw, 100px);
  text-align: center;
}

.voice-card__photo {
  display: block;
  width: clamp(72px, 9vw, 88px);
  height: clamp(72px, 9vw, 88px);
  margin: 0 auto 10px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

.voice-card__attr {
  margin: 0;
  font-size: clamp(11px, 1.2vw, 13px);
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #666;
}

.voice-card__body {
  flex: 1 1 0;
  min-width: 0;
}

.voice-card__heading {
  margin: 0 0 12px;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--color-rose);
}

.voice-card__text {
  margin: 0;
  font-size: clamp(0.875rem, 1.1vw, 0.9375rem);
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #4d4d4d;
}

/* FAQ */
.faq {
  background: #ffffff;
  padding: clamp(80px, 10vw, 120px) clamp(20px, 5vw, 48px);
}

.faq__inner {
  max-width: 1084px;
  margin: 0 auto;
}

.faq__header {
  margin-bottom: clamp(40px, 5vw, 56px);
}

.faq__title {
  margin: 0 0 4px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 5vw, 56px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #2a2a2a;
}

.faq__subtitle {
  margin: 0;
  padding-left: 4px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #999;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: clamp(16px, 2.5vw, 20px) clamp(16px, 2.5vw, 24px);
  list-style: none;
  cursor: pointer;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  content: "";
}

.faq-question__label {
  flex-shrink: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1;
  color: var(--color-rose);
}

.faq-question__text {
  flex: 1 1 0;
  min-width: 0;
  font-size: clamp(0.9375rem, 1.2vw, 1rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #333;
}

.faq-question__icon {
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid #ccc;
  border-radius: 50%;
}

.faq-question__icon::before,
.faq-question__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #999;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-question__icon::before {
  width: 10px;
  height: 1px;
  transform: translate(-50%, -50%);
}

.faq-question__icon::after {
  width: 1px;
  height: 10px;
  transform: translate(-50%, -50%);
}

.faq-item[open] .faq-question__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  padding: 0 clamp(16px, 2.5vw, 24px) clamp(16px, 2.5vw, 20px);
  border-top: 1px dashed #ddd;
}

.faq-answer__body {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0;
  padding-top: clamp(16px, 2.5vw, 20px);
}

.faq-answer__label {
  flex-shrink: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.125rem, 1.8vw, 1.25rem);
  font-weight: 600;
  line-height: 1.6;
  color: var(--color-rose);
}

.faq-answer__text {
  flex: 1 1 0;
  min-width: 0;
  font-size: clamp(0.875rem, 1.1vw, 0.9375rem);
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #555;
}

/* Access */
.access {
  background: #ffffff;
  padding: clamp(80px, 10vw, 120px) clamp(20px, 5vw, 48px);
}

.access__inner {
  max-width: 1084px;
  margin: 0 auto;
}

.access__header {
  margin-bottom: clamp(32px, 4vw, 48px);
}

.access__title {
  margin: 0 0 4px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 5vw, 56px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #2a2a2a;
}

.access__subtitle {
  margin: 0;
  padding-left: 4px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #999;
}

.access-map {
  width: 100%;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.access-map__iframe,
.access-map__image {
  display: block;
  width: 100%;
  aspect-ratio: 21 / 9;
  border: 0;
  object-fit: cover;
}

.access-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.access-info__list {
  margin: 0;
}

.access-info__row {
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 3vw, 32px);
  margin: 0;
}

.access-info__row + .access-info__row {
  margin-top: clamp(20px, 2.5vw, 28px);
}

.access-info__term {
  flex: 0 0 4.5em;
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #999;
}

.access-info__desc {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  font-size: clamp(0.875rem, 1.1vw, 0.9375rem);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #333;
}

.access-info__note {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #888;
}

/* Footer */
.site-footer {
  background: #ffffff;
  padding: clamp(48px, 6vw, 80px) clamp(20px, 5vw, 48px) clamp(32px, 4vw, 48px);
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  max-width: 1084px;
  margin: 0 auto;
}

.site-footer__brand {
  flex-shrink: 0;
  line-height: 0;
  transition: opacity 0.2s ease;
}

.site-footer__brand:hover {
  opacity: 0.75;
}

.site-footer__logo {
  display: block;
  width: clamp(52px, 8vw, 72px);
  height: auto;
}

.site-footer__content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.site-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--color-text);
  transition: opacity 0.2s ease;
}

.site-footer__nav-link:hover {
  opacity: 0.65;
}

.site-footer__copyright {
  margin: 0;
  font-size: 11px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #aaa;
  text-align: right;
}

@media (max-width: 920px) {
  .flow-item__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .flow-item__image-area {
    flex: 0 0 auto;
    width: clamp(280px, 41vw, 480px);
  }
}

@media (max-width: 768px) {
  .menu-section::before {
    content: none;
    display: none;
  }

  .menu-section__inner {
    width: min(100% - 32px, var(--page-max));
  }

  .menu-card--smallface::before,
  .menu-card--visceral::before {
    content: none;
    display: none;
  }

  .menu-card {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .menu-card__image-area {
    flex: 0 0 auto;
    width: 100%;
    border-radius: 30px;
  }

  .menu-card__body {
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 50px;
  }

  .menu-card__content {
    display: contents;
  }

  .menu-card__name {
    order: 1;
    width: 100%;
    margin-bottom: 6px;
    line-height: 1.35;
    text-align: center;
  }

  .menu-card__desc {
    order: 2;
    width: 100%;
    line-height: 1.65;
    text-align: center;
  }

  .menu-card__price {
    order: 3;
    flex-direction: row;
    align-items: center;
    align-self: center;
    margin-top: 16px;
  }

  .menu-card__price-unit {
    margin-top: 0;
  }

  .menu-card__button {
    order: 4;
    align-self: center;
    width: 100%;
    max-width: 280px;
    margin-top: 12px;
  }

  .flow-item {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px 16px;
    align-items: stretch;
  }

  .flow-item__inner {
    gap: 16px;
    padding-bottom: 48px;
    align-items: flex-start;
  }

  .flow-item:last-child .flow-item__inner {
    padding-bottom: 0;
  }

  .flow-item:not(:last-child) .flow-item__timeline::after {
    min-height: 0;
    flex-grow: 1;
  }

  .flow-item__timeline {
    width: 56px;
    height: 100%;
  }

  .flow-item__badge {
    width: 56px;
    height: 56px;
  }

  .flow-item__step-label {
    font-size: 8px;
  }

  .flow-item__step-num {
    margin-top: 2px;
    font-size: 22px;
  }

  .flow-item__title {
    margin-bottom: 10px;
    line-height: 1.45;
  }

  .flow-item__desc {
    line-height: 1.75;
  }

  .flow-item__image-area {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .voice {
    padding: 64px 16px;
  }

  .voice__container {
    padding: 40px 20px;
  }

  .voice__header {
    margin-bottom: 32px;
  }

  .voice-list {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .voice-card {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: clamp(20px, 5vw, 24px);
  }

  .voice-card__profile {
    flex: none;
    width: 100%;
  }

  .voice-card__photo {
    width: clamp(56px, 16vw, 72px);
    height: clamp(56px, 16vw, 72px);
    margin-bottom: 8px;
  }

  .voice-card__body {
    width: 100%;
  }

  .voice-card__heading {
    margin-bottom: 8px;
    line-height: 1.5;
  }

  .voice-card__text {
    line-height: 1.85;
  }

  .faq {
    padding: 64px 16px;
  }

  .faq__header {
    margin-bottom: 32px;
  }

  .faq-list {
    gap: 12px;
  }

  .faq-question {
    gap: 10px;
    padding: 14px 16px;
  }

  .faq-question__icon {
    width: 24px;
    height: 24px;
  }

  .faq-question__icon::before {
    width: 8px;
  }

  .faq-question__icon::after {
    height: 8px;
  }

  .faq-answer {
    padding: 0 16px 16px;
  }

  .faq-answer__body {
    gap: 10px;
    padding-top: 14px;
  }

  .faq-answer__text {
    line-height: 1.85;
  }

  .access {
    padding: 64px 16px;
  }

  .access__header {
    margin-bottom: 28px;
  }

  .access-map__iframe,
  .access-map__image {
    aspect-ratio: 16 / 9;
  }

  .access-info {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .access-info__row {
    gap: 16px;
  }

  .access-info__term {
    
  }

  .site-footer {
    padding: 48px 16px 32px;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .site-footer__content {
    align-items: center;
    gap: 16px;
  }

  .site-footer__nav-list {
    justify-content: center;
    gap: 16px 20px;
  }

  .site-footer__copyright {
    text-align: center;
  }
}
