@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  padding-top: 80px;
}

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

h1 {
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 7vw, 40px);
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #f7f7f7;
}

h2 {
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 6vw, 32px);
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #222;
}

h3 {
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 4vw, 24px);
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #222;
}

ul,
li,
a,
summary {
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #222;
  list-style: none;
  text-decoration: none;
}

small {
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #222;
}

.logo,
.label {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.08em;
}

.l-container {
  width: min(1100px, 100% - 48px);
  margin-inline: auto;
}
@media (width <= 768px) {
  .l-container {
    width: min(1100px, 100% - 32px);
  }
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding-inline: 18px;
  border-radius: 22px;
  text-decoration: none;
  transition: 0.2s ease;
}

.btn-primary {
  background: #c9a66b;
  color: #f7f7f7;
}
.btn-primary:hover {
  filter: brightness(0.95);
}

.btn-ghost {
  background: transparent;
  color: #222;
  border: 1px solid rgba(34, 34, 34, 0.08);
}

.btn-invert {
  background: #fff;
  color: #222;
}
.btn-invert:hover {
  filter: brightness(0.95);
}

.btn-invert-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.card {
  display: grid;
  gap: 18px;
}

.cards--3 {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.cards--4 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.section {
  padding-block: 100px;
}

.section__header {
  margin-bottom: 28px;
}

.section__label {
  color: #c9a66b;
}

.section__desc {
  color: #777;
}

.section__footer {
  margin-top: 18px;
}

.section--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.section--primary {
  background: #c9a66b;
}

.section--bg {
  background: #fff;
}

.section--muted {
  background: #f7f7f7;
}

@media (width <= 768px) {
  .section {
    padding-block: 80px;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  will-change: opacity, transform;
}

.reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(34, 34, 34, 0.08);
  transition: box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}
.header.is-scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.95);
}
.header__inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.header__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.header__logo span:first-child {
  font-size: 18px;
  font-weight: 600;
}
.header__logo span:last-child {
  font-size: 14px;
  color: #777;
}
.header__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}
@media (width <= 768px) {
  .header__nav {
    position: fixed;
    inset: 80px 0 auto 0;
    background: #fff;
    border-bottom: 1px solid rgba(34, 34, 34, 0.08);
    padding: 18px 24px 24px;
    opacity: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
    transform: translateY(-100%);
  }
}
.header__nav__list {
  display: flex;
  gap: clamp(16px, 4vw, 32px);
  list-style: none;
}
@media (width <= 768px) {
  .header__nav__list {
    flex-direction: column;
  }
}
.header__nav__link {
  text-decoration: none;
}
.header__nav__link:hover {
  color: #777;
}
.header__nav__cta {
  display: none;
}
@media (width <= 768px) {
  .header__nav__cta {
    display: flex;
  }
}
@media (width <= 768px) {
  .header__reserve {
    display: none;
  }
}
.header.open .header__nav {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.hamburger__button {
  display: none;
}
@media (width <= 768px) {
  .hamburger__button {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
  }
}
.hamburger__button__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #222;
  transition: 0.25s ease;
}
.hamburger__button__line:nth-child(1) {
  top: 8px;
}
.hamburger__button__line:nth-child(2) {
  top: 20px;
}
.hamburger__button__line:nth-child(3) {
  top: 32px;
}

.header.open .hamburger__button__line:nth-child(1) {
  transform: rotate(45deg);
  top: 19px;
}

.header.open .hamburger__button__line:nth-child(2) {
  opacity: 0;
}

.header.open .hamburger__button__line:nth-child(3) {
  transform: rotate(-45deg);
  top: 19px;
}

.hero {
  position: relative;
  min-height: 600px;
  display: grid;
  align-items: center;
  overflow: hidden;
}
@media (width <= 768px) {
  .hero {
    min-height: 80vh;
  }
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media .hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
}
.hero__inner {
  position: relative;
  z-index: 1;
}
.hero__content {
  max-width: 520px;
  color: #f7f7f7;
}
.hero__content .hero__title {
  line-height: 1.35;
  margin-bottom: 14px;
}
.hero__content .hero__lead {
  opacity: 0.9;
  margin-bottom: 22px;
}
.hero__cta {
  display: flex;
  margin-block: 24px;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__meta {
  display: grid;
  gap: 6px;
}
.hero__meta__item {
  font-size: 14px;
  color: #f7f7f7;
}
.hero__meta__item span {
  margin-right: 6px;
}
.hero__meta__item a {
  color: #f7f7f7;
}

.hero-reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.hero.is-ready .hero-reveal {
  opacity: 1;
  transform: translateY(0);
}

.concept {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: center;
}
@media (width <= 768px) {
  .concept {
    grid-template-columns: 1fr;
  }
}
.concept__list {
  display: grid;
  gap: 16px;
}
.concept__item {
  padding: 18px;
  border: 1px solid rgba(34, 34, 34, 0.08);
  border-radius: 14px;
}
.concept__item .concept__title {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 700;
}
.concept__item .concept__desc {
  font-size: 14px;
  color: #777;
}
.concept__media img {
  width: 100%;
  height: 420px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

.menu__nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.menu__btn {
  height: 40px;
  padding-inline: 14px;
  border: 1px solid rgba(34, 34, 34, 0.08);
  border-radius: 22px;
  font-size: 14px;
  background: #fff;
  cursor: pointer;
}
.menu__btn.is-active {
  border-color: transparent;
  background: rgba(201, 166, 107, 0.18);
}
.menu__panel {
  animation: fade 0.2s ease;
}
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.menu__item {
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.menu__title {
  font-size: 18px;
  margin-bottom: 8px;
}
.menu__price {
  font-size: clamp(20px, 4vw, 24px);
  margin-bottom: 8px;
  font-weight: 700;
}
.menu__meta {
  font-size: 12px;
  margin-bottom: 8px;
  color: #777;
}
.menu__text {
  font-size: 14px;
  color: #777;
}
.menu__link {
  color: #c9a66b;
  font-weight: 500;
}

.staff__item {
  padding: 18px;
  border: 1px solid rgba(34, 34, 34, 0.08);
  border-radius: 12px;
  text-align: center;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.25s ease;
}
.staff__item:hover {
  transform: translateY(-2px);
}
.staff__img {
  width: 120px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
}
.staff__name {
  font-weight: 700;
}
.staff__position {
  font-size: 12px;
  margin: 4px 0 6px;
  color: #777;
}
.staff__skill {
  font-size: 14px;
  margin-bottom: 12px;
  color: #777;
}
.staff__link__btn {
  width: 100%;
  height: 40px;
  border: 1px solid rgba(34, 34, 34, 0.08);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: 0.25s;
}
.staff__link__btn:hover {
  filter: brightness(0.95);
}

.news__item {
  padding-block: 16px;
  border-bottom: 1px solid rgba(34, 34, 34, 0.08);
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: 16px;
}
@media (width <= 375px) {
  .news__item {
    grid-template-columns: 1fr;
  }
}
.news__date {
  color: #777;
  font-weight: 400;
}
.news__badge {
  max-width: 80px;
  padding: 2px 10px;
  border-radius: 999px;
  background: #c9a66b;
  font-weight: 400;
  text-align: center;
}

.accordion {
  display: grid;
  gap: 10px;
}
.accordion__item {
  border: 1px solid rgba(34, 34, 34, 0.08);
  border-radius: 14px;
  background-color: #fff;
}
.accordion__summary {
  display: flex;
  padding: 16px 18px;
}
.accordion__summary::before {
  content: "▼";
  transition: transform 0.25s ease;
  margin-right: 16px;
}
.accordion__item[open] .accordion__summary::before {
  transform: rotate(-90deg);
}
.accordion__content {
  display: grid;
  grid-template-rows: 0fr;
  margin-left: 32px;
  padding: 0 18px 16px;
  color: #777;
  transition: grid-template-rows 0.35s ease;
}

.access {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 22px;
  align-items: start;
}
@media (width <= 768px) {
  .access {
    grid-template-columns: 1fr;
  }
}
.access__item {
  padding-block: 10px;
  border-bottom: 1px solid rgba(34, 34, 34, 0.08);
  display: grid;
  grid-template-columns: 120px 1fr;
}
.access__link {
  display: flex;
  margin-top: 16px;
  gap: 10px;
}
.access__map {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: #fff;
}
.access__map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

.reserve {
  padding-block: 70px;
}
.reserve__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.reserve__label {
  margin-bottom: 6px;
  color: #fff;
}
.reserve__title {
  margin-bottom: 6px;
  color: #fff;
}
.reserve__text {
  margin-bottom: 6px;
  color: #fff;
}
.reserve .reserve__action {
  display: flex;
  gap: 12px;
}

.footer {
  padding-block: 50px;
  background: #222;
}
.footer__nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 18px;
}
.footer__nav a {
  color: #fff;
  font-weight: 400;
}
.footer__nav__list {
  display: flex;
  gap: 18px;
}
.footer small {
  font-size: 12px;
  color: #fff;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 2000;
}

.modal.is-open {
  display: block;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.modal__dialog {
  position: relative;
  width: min(900px, 100% - 32px);
  margin: 80px auto 0;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.modal.is-open .modal__dialog {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(34, 34, 34, 0.08);
  background: #fff;
  cursor: pointer;
  font-size: 32px;
  transition: 0.25s;
}
.modal__close:hover {
  background: #777;
  color: #fff;
}

.modal__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal__img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.modal__content {
  padding: 22px;
}

.modal__title {
  margin: 0 0 6px;
}

.modal__meta {
  margin: 0 0 12px;
  color: var(--c-sub);
}

.modal__text {
  margin: 0;
  color: var(--c-sub);
}

@media (max-width: 900px) {
  .modal__body {
    grid-template-columns: 1fr;
  }
  .modal__dialog {
    margin-top: 40px;
  }
}
body.is-modal-open {
  overflow: hidden;
}/*# sourceMappingURL=style.css.map */