:root {
  --header-bg: #e5e3e3;
  --text-main: #3e3632;
  --text-dark: #2f2926;
  --border-main: #615953;
  --hover-bg: #3f3733;
  --hover-text: #f5f2ee;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text-main);
  background: #f8f6f2;
}

.global-header {
  background: var(--header-bg);
  position: sticky;
  top: 0;
  z-index: 50;
}

.global-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  padding: 18px 48px;
  gap: 20px;
}

.site-logo {
  margin: 0;
  font-size: clamp(1.2rem, 1.25vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  white-space: nowrap;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 44px;
}

.global-nav__list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 44px;
}

.global-nav a {
  display: inline-block;
  color: var(--text-main);
  text-decoration: none;
  font-size: 1.9rem;
  font-size: clamp(0.86rem, 0.62vw, 1rem);
  letter-spacing: 0.14em;
  font-weight: 500;
  line-height: 1;
  transition: opacity 0.24s ease;
}

.global-nav__list a:hover,
.global-nav__list a:focus-visible {
  opacity: 0.62;
}

.reserve-button {
  min-width: 136px;
  padding: 15px 24px;
  text-align: center;
  border: 2px solid var(--border-main);
  letter-spacing: 0.06em;
  transition: background-color 0.24s ease, color 0.24s ease;
}

.reserve-button:hover,
.reserve-button:focus-visible {
  opacity: 1;
  background: var(--hover-bg);
  color: var(--hover-text);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 38px;
  border: 1px solid var(--border-main);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  cursor: pointer;
}

.menu-toggle__line {
  width: 22px;
  height: 1px;
  background: var(--text-dark);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

@media (max-width: 1180px) {
  .global-header__inner {
    padding-inline: 28px;
  }

  .global-nav {
    gap: 28px;
  }

  .global-nav__list {
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .global-header__inner {
    min-height: 80px;
    padding: 14px 18px;
  }

  .site-logo {
    font-size: clamp(1.02rem, 4.6vw, 1.4rem);
  }

  .menu-toggle {
    display: inline-flex;
    z-index: 30;
  }

  .global-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #edeae7;
    border-top: 1px solid #d5d0cb;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 18px 18px;
    gap: 14px;
  }

  .global-header {
    position: relative;
  }

  .global-nav.is-open {
    display: flex;
    animation: navFade 0.25s ease;
  }

  .global-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .global-nav__list li {
    border-bottom: 1px solid #d2cbc4;
  }

  .global-nav__list a {
    width: 100%;
    padding: 14px 6px;
    font-size: 0.9rem;
  }

  .reserve-button {
    width: 100%;
    min-width: 0;
    padding: 13px 14px;
    font-size: 0.88rem;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@keyframes navFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-header {
  position: relative;
  min-height: calc(100vh - 90px);
  background-image: url("../../image/ce9349e04c8606706d5097227c00c3fc.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 16, 12, 0.2) 0%, rgba(21, 16, 12, 0.38) 100%);
}

.hero-header__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #f8f6f3;
  margin-top: -12px;
}

.hero-header__lead {
  margin: 0;
  font-size: clamp(0.9rem, 1.05vw, 1.8rem);
  letter-spacing: 0.22em;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.hero-header__title {
  margin: 22px 0 0;
  font-size: clamp(2.3rem, 7vw, 5.3rem);
  letter-spacing: 0.08em;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.32);
}

.hero-header__side-nav {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-33%);
  z-index: 3;
  display: flex;
  flex-direction: column;
}

.hero-header__side-nav a {
  width: 112px;
  min-height: 82px;
  display: grid;
  place-items: center start;
  padding-left: 22px;
  text-decoration: none;
  color: #f1eeea;
  font-size: 1.56rem;
  font-size: clamp(0.95rem, 0.72vw, 1.05rem);
  letter-spacing: 0.13em;
  font-weight: 600;
  background: rgba(48, 44, 40, 0.42);
  border-bottom: 1px solid rgba(231, 224, 215, 0.28);
  transition: background-color 0.24s ease, padding-left 0.24s ease;
}

.hero-header__side-nav a:last-child {
  border-bottom: none;
}

.hero-header__side-nav a:hover,
.hero-header__side-nav a:focus-visible {
  background: rgba(58, 53, 48, 0.7);
  padding-left: 26px;
}

.about-section {
  background: #e9e9e9;
  padding-top: clamp(58px, 6vw, 92px);
}

.about-section__inner {
  width: min(100%, 1020px);
  margin-inline: auto;
  padding-inline: clamp(18px, 7vw, 104px);
}

.about-section__title {
  margin: 0;
  font-size: clamp(2.55rem, 5.1vw, 4.45rem);
  letter-spacing: 0.08em;
  line-height: 1;
  color: #3b332f;
  font-weight: 600;
}

.about-section__text {
  color: #3d3532;
  font-size: clamp(0.92rem, 1.05vw, 1.28rem);
  letter-spacing: 0.03em;
  line-height: 1.75;
}

.about-section__text p {
  margin: 0;
}

.about-section__text p + p {
  margin-top: 30px;
}

.about-section__text--lead {
  margin-top: clamp(38px, 4.4vw, 58px);
}

.about-section__wide-image {
  width: 100vw;
  margin: clamp(54px, 5.6vw, 82px) 0 0;
  margin-left: calc(50% - 50vw);
}

.about-section__wide-image img {
  display: block;
  width: 100%;
  height: clamp(250px, 33vw, 430px);
  object-fit: cover;
}

.about-section__text--sub {
  margin-top: clamp(44px, 5vw, 68px);
}

.about-gallery {
  margin-top: clamp(34px, 4.5vw, 54px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(9px, 0.9vw, 14px);
  padding-bottom: clamp(52px, 6vw, 74px);
}

.about-gallery img {
  width: 100%;
  aspect-ratio: 672 / 512;
  object-fit: cover;
  display: block;
}

.about-section__wide-image--bottom {
  margin-top: 0;
}

.about-section__wide-image--bottom img {
  height: clamp(210px, 24vw, 330px);
}

.menu-section {
  background: #45372f;
  color: #f4efe8;
}

.menu-section__inner {
  position: relative;
  min-height: 980px;
  padding: clamp(56px, 7vw, 94px) clamp(24px, 4vw, 52px);
  overflow: hidden;
}

.menu-section__content {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
}

.menu-section__title {
  margin: 0;
  color: #f7f4ef;
  font-size: clamp(2.6rem, 4.7vw, 4.35rem);
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.menu-list {
  margin: clamp(36px, 4vw, 52px) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(190, 176, 163, 0.16);
}

.menu-list li {
  border-bottom: 1px solid rgba(190, 176, 163, 0.16);
}

.menu-list a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 0 20px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.menu-list a:hover,
.menu-list a:focus-visible {
  opacity: 0.72;
  transform: translateX(4px);
}

.menu-list__en {
  font-size: clamp(1.1rem, 1.4vw, 1.95rem);
  letter-spacing: 0.05em;
  font-weight: 600;
  line-height: 1;
}

.menu-list__ja {
  font-size: clamp(0.8rem, 0.8vw, 1rem);
  color: rgba(241, 232, 224, 0.78);
  letter-spacing: 0.04em;
  line-height: 1;
}

.menu-section__visual {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.menu-orb {
  position: absolute;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(196, 182, 165, 0.24);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

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

.menu-orb--small-top {
  width: clamp(86px, 9vw, 128px);
  aspect-ratio: 1;
  top: clamp(122px, 16vw, 156px);
  left: clamp(48%, 54vw, 56%);
}

.menu-orb--large-right {
  width: clamp(206px, 22vw, 290px);
  aspect-ratio: 1;
  top: clamp(48px, 6vw, 92px);
  right: clamp(46px, 6vw, 88px);
}

.menu-orb--middle-right {
  width: clamp(132px, 14vw, 202px);
  aspect-ratio: 1;
  top: clamp(386px, 42vw, 560px);
  right: clamp(212px, 18vw, 252px);
}

.menu-orb--bottom-left {
  width: clamp(182px, 20vw, 274px);
  aspect-ratio: 1;
  top: clamp(514px, 57vw, 730px);
  left: clamp(43%, 49vw, 50%);
}

.menu-section__watermark {
  position: absolute;
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(14px, 2vw, 24px);
  color: rgba(228, 220, 209, 0.16);
  font-size: clamp(4.2rem, 8vw, 5.6rem);
  font-weight: 600;
  line-height: 1;
  z-index: 2;
}

.instagram-section {
  background: #e9e7e4;
  padding: clamp(70px, 7vw, 104px) 0 clamp(66px, 7vw, 96px);
}

.instagram-section__inner {
  width: min(100%, 1360px);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 58px);
}

.instagram-section__title {
  margin: 0;
  color: rgba(203, 197, 191, 0.25);
  font-size: clamp(3.3rem, 8.8vw, 8rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  font-weight: 700;
}

.instagram-grid {
  margin-top: clamp(10px, 1.6vw, 20px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.instagram-grid img {
  width: 100%;
  height: clamp(320px, 31vw, 440px);
  object-fit: cover;
  display: block;
}

.instagram-account {
  margin-top: clamp(36px, 4.2vw, 52px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  text-decoration: none;
  color: #50463f;
  font-size: clamp(1rem, 1vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: opacity 0.24s ease;
}

.instagram-account:hover,
.instagram-account:focus-visible {
  opacity: 0.65;
}

.instagram-account__icon {
  width: 16px;
  height: 16px;
  border: 2px solid #62584f;
  border-radius: 4px;
  position: relative;
}

.instagram-account__icon::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border: 2px solid #62584f;
  border-radius: 50%;
  inset: 0;
  margin: auto;
}

.instagram-account__icon::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  background: #62584f;
  border-radius: 50%;
  right: 2px;
  top: 2px;
}

.voice-section {
  background: #e9e7e4;
  padding: clamp(66px, 7vw, 104px) 0 clamp(74px, 8vw, 120px);
}

.voice-section__inner {
  width: min(100%, 1080px);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 42px);
}

.voice-section__title {
  margin: 0;
  color: #3b332e;
  font-size: clamp(2.6rem, 5vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.voice-grid {
  margin-top: clamp(40px, 4.8vw, 62px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.2vw, 28px) clamp(18px, 2.2vw, 26px);
}

.voice-card {
  border-top: 1px solid rgba(188, 180, 170, 0.38);
  padding: 22px 18px 20px 24px;
}

.voice-card__stars {
  margin: 0;
  color: #b96f4b;
  letter-spacing: 0.15em;
  font-size: 0.95rem;
  line-height: 1;
}

.voice-card__heading {
  margin: 18px 0 0;
  color: #2f2926;
  font-size: clamp(1.2rem, 1.45vw, 1.52rem);
  line-height: 1.45;
  letter-spacing: 0.02em;
  font-weight: 700;
}

.voice-card__text {
  margin: 14px 0 0;
  color: #4e4540;
  font-size: clamp(0.94rem, 0.98vw, 1.12rem);
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.voice-card__author {
  margin: 18px 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.voice-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #c6815e;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  flex-shrink: 0;
}

.voice-card__icon--amber {
  background: #b27047;
}

.voice-card__icon--peach {
  background: #d59d82;
}

.voice-card__icon--gray {
  background: #a0988b;
}

.voice-card__icon--brown {
  background: #7c6a59;
}

.voice-card__author strong {
  display: block;
  color: #2f2926;
  font-size: 1.06rem;
  line-height: 1.2;
}

.voice-card__author small {
  display: block;
  margin-top: 4px;
  color: #7a6f66;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.2;
}

.reserve-section {
  background: #ece9e5;
  padding: clamp(82px, 8vw, 120px) 0 clamp(90px, 9vw, 124px);
}

.reserve-section__inner {
  width: min(100%, 460px);
  margin-inline: auto;
}

.reserve-section__title {
  margin: 0;
  text-align: center;
  color: #3a322d;
  font-size: clamp(3.05rem, 5.5vw, 4.45rem);
  letter-spacing: 0.09em;
  line-height: 1;
  font-weight: 600;
}

.reserve-section__lead {
  margin: 20px 0 0;
  text-align: center;
  color: #6d635c;
  font-size: clamp(0.86rem, 0.96vw, 1rem);
  letter-spacing: 0.01em;
}

.reserve-section__tel-block {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.reserve-section__tel-label {
  color: #afa49b;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
}

.reserve-section__tel {
  color: #36302c;
  font-size: clamp(2.15rem, 3.3vw, 2.8rem);
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  font-weight: 600;
}

.reserve-section__separator {
  margin: 44px 0 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #afa49b;
  font-size: 0.93rem;
  letter-spacing: 0.14em;
}

.reserve-section__separator::before,
.reserve-section__separator::after {
  content: "";
  flex: 1;
  border-top: 1px solid rgba(188, 180, 170, 0.42);
}

.reserve-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.reserve-form__row {
  display: grid;
  gap: 14px;
}

.reserve-form__row--2col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reserve-form__row--3col {
  grid-template-columns: 1.08fr 1fr 1fr;
}

.reserve-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reserve-form__group label {
  color: #5a514a;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.reserve-form__group label span {
  color: #b77654;
  margin-left: 2px;
}

.reserve-form input,
.reserve-form select,
.reserve-form textarea {
  width: 100%;
  border: 1px solid #dad2ca;
  background: #f2f2f2;
  color: #3f3732;
  font: inherit;
  font-size: 0.88rem;
  line-height: 1;
  padding: 0 12px;
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.reserve-form input,
.reserve-form select {
  height: 44px;
}

.reserve-form textarea {
  min-height: 90px;
  resize: vertical;
  padding-top: 12px;
  line-height: 1.5;
}

.reserve-form input::placeholder,
.reserve-form textarea::placeholder {
  color: #9a928a;
}

.reserve-form input:focus,
.reserve-form select:focus,
.reserve-form textarea:focus {
  border-color: #b6a99d;
  box-shadow: 0 0 0 2px rgba(182, 169, 157, 0.18);
}

.reserve-form__submit {
  margin-top: 4px;
  height: 58px;
  border: none;
  background: #46392f;
  color: #f7f4ef;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background-color 0.22s ease, transform 0.22s ease;
}

.reserve-form__submit::after {
  content: "  ->";
  font-size: 0.95em;
}

.reserve-form__submit:hover,
.reserve-form__submit:focus-visible {
  background: #3d3128;
  transform: translateY(-1px);
}

.contact-map {
  width: 100%;
  height: clamp(220px, 28vw, 400px);
  overflow: hidden;
  margin-bottom: clamp(28px, 3vw, 42px);
}

.contact-map iframe {
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  display: block;
}

.faq-section {
  background: #ffffff;
  padding: clamp(82px, 8vw, 120px) 0;
}

.faq-section__inner {
  width: min(100%, 1280px);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 52px);
}

.faq-section__title {
  margin: 0 0 clamp(48px, 5vw, 68px);
  text-align: center;
  color: #3a322d;
  font-size: clamp(3.05rem, 5.5vw, 4.45rem);
  letter-spacing: 0.09em;
  line-height: 1;
  font-weight: 600;
}

.faq-list {
  width: min(100%, 800px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(186, 176, 165, 0.24);
}

.faq-item:first-child {
  border-top: 1px solid rgba(186, 176, 165, 0.24);
}

.faq-item__button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2vw, 24px);
  padding: clamp(20px, 2vw, 28px) 0;
  background: transparent;
  border: none;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-align: left;
}

.faq-item__button:hover {
  background-color: rgba(58, 50, 45, 0.03);
}

.faq-item__button:focus-visible {
  outline: 2px solid #b77654;
  outline-offset: -2px;
}

.faq-item__question {
  flex: 1;
  color: #3a322d;
  font-size: clamp(0.95rem, 1.1vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.faq-item__icon {
  flex-shrink: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  color: #b77654;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 0.22s ease;
}

.faq-item__icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq-item__icon::after {
  width: 2px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.faq-item__button[aria-expanded="true"] .faq-item__icon::after {
  transform: translateX(-50%) scaleY(0);
}

.faq-item__answer {
  overflow: hidden;
  max-height: 500px;
  transition: all 0.3s ease;
}

.faq-item__answer[hidden] {
  display: none;
}

.faq-item__button[aria-expanded="true"] + .faq-item__answer {
  display: block;
  animation: slideDown 0.3s ease;
}

.faq-item__answer p {
  margin: 0 0 clamp(16px, 2vw, 24px) 0;
  color: #5a5149;
  font-size: clamp(0.88rem, 0.95vw, 1rem);
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.faq-item__answer p:last-child {
  margin-bottom: 0;
  padding-bottom: clamp(16px, 2vw, 24px);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .faq-section {
    padding: 68px 0;
  }

  .faq-section__title {
    margin-bottom: 40px;
  }

  .faq-item__button {
    padding: 18px 0;
    gap: 12px;
  }

  .faq-item__question {
    font-size: 0.95rem;
  }

  .faq-item__icon {
    width: 18px;
    height: 18px;
  }

  .faq-item__icon::before {
    height: 1.5px;
  }

  .faq-item__icon::after {
    width: 1.5px;
  }

  .faq-item__answer p {
    font-size: 0.88rem;
  }
}

@media (max-width: 560px) {
  .faq-section {
    padding: 48px 0;
  }

  .faq-section__title {
    font-size: 2.2rem;
    margin-bottom: 32px;
  }

  .faq-list {
    gap: 0;
  }

  .faq-item__button {
    padding: 16px 0;
    gap: 10px;
  }

  .faq-item__question {
    font-size: 0.88rem;
    font-weight: 600;
  }

  .faq-item__icon {
    width: 16px;
    height: 16px;
  }

  .faq-item__icon::before {
    height: 1.5px;
  }

  .faq-item__icon::after {
    width: 1.5px;
  }

  .faq-item__answer p {
    font-size: 0.8rem;
    margin-bottom: 12px;
    line-height: 1.6;
  }

  .faq-item__answer p:last-child {
    padding-bottom: 12px;
  }
}

.contact-section {
  background: #f1ebe5;
  /* padding: clamp(44px, 5vw, 68px) 0 clamp(52px, 6vw, 84px); */
}

.contact-section__inner {
  width: min(100%, 1280px);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 52px);
}

.contact-section__title {
  margin: 0;
  text-align: left;
  color: #3a322d;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  letter-spacing: 0.09em;
  line-height: 1;
  font-weight: 600;
  margin-bottom: clamp(28px, 3vw, 40px);
}

.contact-info {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(28px, 3.5vw, 48px);
  margin-bottom: clamp(20px, 2.5vw, 32px);
}

.contact-info__main {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.4vw, 30px);
}

.contact-info__name {
  margin: 0;
  color: #3a322d;
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
}

.contact-info__tel {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info__label {
  color: #9d938a;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.contact-info__tel a {
  color: #3a322d;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease;
}

.contact-info__tel a:hover,
.contact-info__tel a:focus-visible {
  opacity: 0.65;
}

.contact-info__address {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info__address p {
  margin: 0;
  color: #5a5149;
  font-size: 0.84rem;
  line-height: 1.7;
}

.contact-info__hours {
  border-top: 1px solid rgba(186, 176, 165, 0.24);
  border-bottom: 1px solid rgba(186, 176, 165, 0.24);
  padding: clamp(14px, 1.6vw, 20px) 0;
}

.contact-info__hours h4 {
  margin: 0 0 10px;
  color: #3a322d;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.contact-info__hours ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-info__hours li {
  color: #5a5149;
  font-size: 0.84rem;
  line-height: 1.5;
  display: flex;
  gap: 12px;
}

.contact-info__hours .label {
  min-width: 60px;
  font-weight: 600;
}

.contact-info__details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-info__details dl {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  row-gap: 10px;
  margin: 0;
}

.contact-info__details dt {
  color: #3a322d;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.contact-info__details dd {
  margin: 0;
  color: #5a5149;
  font-size: 0.82rem;
  line-height: 1.6;
}

.contact-info__policies {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.8vw, 24px);
}

.contact-policy {
  padding: clamp(14px, 1.8vw, 20px);
  background: rgba(255, 255, 255, 0.6);
  border-left: 3px solid #b77654;
}

.contact-policy h4 {
  margin: 0 0 10px;
  color: #3a322d;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.contact-policy p {
  margin: 0;
  color: #5a5149;
  font-size: 0.78rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.contact-policy p + p {
  margin-top: 8px;
}

@media (max-width: 900px) {
  .contact-map {
    height: clamp(180px, 36vw, 280px);
    margin-bottom: 24px;
  }

  .contact-section {
    padding: 40px 0 52px;
  }

  .contact-section__title {
    text-align: center;
    margin-bottom: 28px;
  }

  .contact-info {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-info__main {
    gap: 18px;
  }

  .contact-info__details dl {
    column-gap: 14px;
    row-gap: 10px;
  }

  .contact-info__policies {
    gap: 18px;
  }

  .contact-policy {
    padding: 14px;
  }
}

@media (max-width: 560px) {
  .contact-map {
    height: 240px;
    margin-bottom: 18px;
  }

  .contact-section {
    padding: 28px 0 40px;
  }

  .contact-section__title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .contact-info__name {
    font-size: 1.12rem;
  }

  .contact-info__tel a {
    font-size: 0.92rem;
  }

  .contact-info__address p {
    font-size: 0.78rem;
  }

  .contact-info__hours {
    padding: 14px 0;
  }

  .contact-info__hours h4 {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }

  .contact-info__hours li {
    font-size: 0.76rem;
    gap: 8px;
  }

  .contact-info__hours .label {
    min-width: 50px;
  }

  .contact-info__details dl {
    column-gap: 10px;
    row-gap: 8px;
  }

  .contact-info__details dt {
    font-size: 0.74rem;
  }

  .contact-info__details dd {
    font-size: 0.74rem;
  }

  .contact-policy {
    padding: 12px;
  }

  .contact-policy h4 {
    font-size: 0.76rem;
    margin-bottom: 8px;
  }

  .contact-policy p {
    font-size: 0.72rem;
    line-height: 1.6;
  }
}

.footer-section {
  background: #e9e7e4;
  padding: clamp(48px, 5vw, 72px) 0 clamp(32px, 4vw, 48px);
}

.footer-section__inner {
  width: min(100%, 1280px);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 3.5vw, 48px);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  margin: 0;
  color: #3a322d;
  font-size: clamp(1.35rem, 1.8vw, 1.65rem);
  letter-spacing: 0.08em;
  line-height: 1;
  font-weight: 600;
}

.footer-buttons {
  display: flex;
  gap: clamp(12px, 1.5vw, 18px);
}

.footer-button {
  padding: 11px 20px;
  border: 1px solid #9a8f86;
  background: transparent;
  color: #3a322d;
  text-decoration: none;
  font-size: clamp(0.82rem, 0.9vw, 0.95rem);
  letter-spacing: 0.08em;
  font-weight: 600;
  transition: background-color 0.22s ease, color 0.22s ease;
}

.footer-button:hover,
.footer-button:focus-visible {
  background: #3a322d;
  color: #f4efe8;
}

.footer-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 28px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav a {
  color: #5a5149;
  text-decoration: none;
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  letter-spacing: 0.04em;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  opacity: 0.6;
}

.footer-socials {
  display: flex;
  gap: clamp(24px, 3vw, 36px);
  justify-content: center;
}

.footer-socials a {
  color: #6d6259;
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  opacity: 0.65;
  color: #3a322d;
}

.footer-copyright {
  text-align: center;
  color: #9d938a;
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  margin: 0;
}

@media (max-width: 900px) {
  .footer-section {
    padding: 38px 0 28px;
  }

  .footer-section__inner {
    gap: 24px;
  }

  .footer-top {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }

  .footer-buttons {
    gap: 10px;
    width: 100%;
  }

  .footer-button {
    flex: 1;
    padding: 9px 12px;
    font-size: 0.8rem;
  }

  .footer-nav__list {
    gap: 14px;
    flex-wrap: wrap;
  }

  .footer-socials {
    gap: 18px;
  }
}

@media (max-width: 560px) {
  .footer-section {
    padding: 28px 0 20px;
  }

  .footer-section__inner {
    gap: 16px;
  }

  .footer-logo {
    font-size: 1.24rem;
  }

  .footer-buttons {
    width: 100%;
    gap: 8px;
  }

  .footer-button {
    flex: 1;
    padding: 8px 6px;
    font-size: 0.72rem;
  }

  .footer-nav__list {
    gap: 10px;
  }

  .footer-nav a {
    font-size: 0.8rem;
  }

  .footer-socials {
    gap: 14px;
    font-size: 0.8rem;
  }

  .footer-socials a {
    font-size: 0.78rem;
  }

  .footer-copyright {
    font-size: 0.72rem;
  }
}

@media (max-width: 1200px) {
  .hero-header__side-nav a {
    width: 98px;
    min-height: 72px;
    padding-left: 16px;
  }
}

@media (max-width: 900px) {
  .hero-header {
    min-height: calc(100vh - 80px);
    background-position: center;
  }

  .hero-header__content {
    margin-top: -18px;
    padding-inline: 16px;
  }

  .hero-header__lead {
    letter-spacing: 0.14em;
  }

  .hero-header__title {
    margin-top: 16px;
    letter-spacing: 0.05em;
  }

  .hero-header__side-nav {
    top: auto;
    bottom: 22px;
    transform: none;
    left: 14px;
    right: 14px;
    flex-direction: row;
    gap: 10px;
  }

  .hero-header__side-nav a {
    width: auto;
    min-height: 52px;
    flex: 1;
    place-items: center;
    justify-content: center;
    padding-left: 0;
    border-bottom: none;
    border: 1px solid rgba(231, 224, 215, 0.35);
    background: rgba(48, 44, 40, 0.58);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
  }

  .hero-header__side-nav a:hover,
  .hero-header__side-nav a:focus-visible {
    padding-left: 0;
  }

  .about-section {
    padding-top: 50px;
  }

  .about-section__inner {
    padding-inline: 20px;
  }

  .about-section__title {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }

  .about-section__text {
    font-size: 0.95rem;
    line-height: 1.9;
  }

  .about-section__wide-image {
    margin-top: 40px;
  }

  .about-section__wide-image img {
    height: clamp(250px, 55vw, 360px);
  }

  .about-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 28px;
    padding-bottom: 50px;
  }

  .about-section__wide-image--bottom {
    margin-top: 0;
  }

  .menu-section__inner {
    min-height: 860px;
    padding: 42px 20px 52px;
  }

  .menu-section__content {
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
  }

  .menu-list {
    margin-top: 30px;
  }

  .menu-list a {
    padding: 20px 0 18px;
  }

  .menu-orb--small-top {
    left: 58%;
    top: 88px;
    width: clamp(80px, 14vw, 110px);
  }

  .menu-orb--large-right {
    right: 22px;
    top: 44px;
    width: clamp(154px, 30vw, 224px);
  }

  .menu-orb--middle-right {
    right: 20px;
    top: 382px;
    width: clamp(110px, 24vw, 170px);
  }

  .menu-orb--bottom-left {
    left: 56%;
    top: 500px;
    width: clamp(150px, 28vw, 216px);
  }

  .instagram-section {
    padding: 58px 0 70px;
  }

  .instagram-section__title {
    font-size: clamp(2.8rem, 13vw, 5.2rem);
  }

  .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .instagram-grid img {
    height: clamp(250px, 42vw, 360px);
  }

  .voice-section {
    padding: 58px 0 72px;
  }

  .voice-grid {
    margin-top: 30px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 16px;
  }

  .voice-card {
    padding: 18px 12px 14px;
  }

  .reserve-section {
    padding: 64px 20px 82px;
  }

  .reserve-section__inner {
    width: min(100%, 620px);
  }

  .reserve-section__tel-block {
    margin-top: 48px;
  }

  .reserve-form__submit {
    height: 54px;
  }
}

@media (max-width: 560px) {
  .about-section__text {
    font-size: 0.88rem;
  }

  .about-gallery {
    grid-template-columns: 1fr;
  }

  .about-section__wide-image img {
    height: 220px;
  }

  .about-section__wide-image--bottom img {
    height: 180px;
  }

  .menu-section__inner {
    min-height: auto;
    padding: 38px 18px 42px;
  }

  .menu-section__title {
    font-size: clamp(2.25rem, 12vw, 3rem);
  }

  .menu-list a {
    padding: 18px 0 16px;
  }

  .menu-list__en {
    font-size: 1.62rem;
  }

  .menu-list__ja {
    font-size: 0.84rem;
  }

  .menu-section__visual {
    position: relative;
    inset: auto;
    height: 520px;
    margin-top: 20px;
  }

  .menu-orb--small-top {
    left: 46%;
    top: 8px;
    width: 92px;
  }

  .menu-orb--large-right {
    right: 0;
    top: 42px;
    width: 170px;
  }

  .menu-orb--middle-right {
    right: 6px;
    top: 248px;
    width: 128px;
  }

  .menu-orb--bottom-left {
    left: 8px;
    top: 292px;
    width: 160px;
  }

  .menu-section__watermark {
    font-size: 3.6rem;
  }

  .instagram-section {
    padding: 48px 0 56px;
  }

  .instagram-section__inner {
    padding-inline: 12px;
  }

  .instagram-grid {
    margin-top: 12px;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .instagram-grid img {
    height: 300px;
  }

  .instagram-account {
    margin-top: 28px;
    font-size: 0.96rem;
  }

  .voice-section {
    padding: 46px 0 58px;
  }

  .voice-section__inner {
    padding-inline: 12px;
  }

  .voice-section__title {
    font-size: clamp(2.1rem, 12vw, 2.9rem);
  }

  .voice-grid {
    grid-template-columns: 1fr;
    margin-top: 24px;
    gap: 14px;
  }

  .voice-card {
    padding: 16px 8px 12px;
  }

  .voice-card__heading {
    font-size: 1.56rem;
  }

  .voice-card__text {
    font-size: 0.97rem;
    line-height: 1.7;
  }

  .reserve-section {
    padding: 50px 12px 64px;
  }

  .reserve-section__title {
    font-size: clamp(2.5rem, 13vw, 3.4rem);
  }

  .reserve-section__lead {
    margin-top: 14px;
    font-size: 0.82rem;
  }

  .reserve-section__tel-block {
    margin-top: 36px;
    gap: 8px;
  }

  .reserve-section__tel {
    font-size: clamp(1.95rem, 10vw, 2.4rem);
  }

  .reserve-section__separator {
    margin: 32px 0 24px;
  }

  .reserve-form {
    gap: 10px;
  }

  .reserve-form__row--2col,
  .reserve-form__row--3col {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .reserve-form input,
  .reserve-form select {
    height: 42px;
  }

  .reserve-form__submit {
    height: 52px;
    font-size: 1rem;
  }
}
