@charset "UTF-8";

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* ---------- Base ---------- */
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333a3a;
  background-color: #f5f3ee;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Utility ---------- */
.page-wrapper {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
}

/* ---------- Header ---------- */
.site-header {
  background-color: #034234;
  height: 72px;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 100%;
}

/* ---------- Logo (img版) ---------- */
.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 150px;
  height: 100%;
}

.logo-img {
  width: 150px;
  height: auto;
  display: block;
}

/* ---------- Reserve Button (Header) ---------- */
.reserve-btn {
  background-color: #f5f3ee;
  height: 34px;
  border-radius: 34px;
  width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
}

.reserve-btn-text {
  font-family: 'Noto Sans JP', sans-serif;
  color: #034234;
  font-size: 1.2rem;
  letter-spacing: 0.24px;
  line-height: 1.3;
}

/* ---------- Hamburger / Close Button ---------- */
.hamburger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.hamburger-icon-img,
.close-icon-img {
  width: 20px;
  height: 20px;
  display: block;
}

/* ---------- Navigation Overlay ---------- */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nav-overlay-bg {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

/* ---------- Navigation Panel ---------- */
.nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 390px;
  max-width: 100%;
  background-color: #f5f3ee;
  z-index: 70;
  transform: translateX(100%);
  transition: transform 0.5s ease-in-out;
}

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

.nav-header {
  background-color: #034234;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.nav-menu-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 48px 0;
}

.nav-menu-link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.nav-menu-line {
  background-color: #034234;
  height: 2px;
  width: 32px;
  flex-shrink: 0;
}

.nav-menu-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: #034234;
  font-size: 2rem;
  letter-spacing: 2.4px;
}

/* ---------- Main Content ---------- */
.site-main {
  width: 100%;
}

/* ---------- Section Common ---------- */
.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 24px 0;
  width: 100%;
}

.section--padded-bottom {
  padding-bottom: 48px;
}

/* ---------- DecoParts (img版) ---------- */
.deco-parts-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 140px;
}

/* ---------- Section Title ---------- */
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: #034234;
  font-size: 2rem;
  letter-spacing: 2.4px;
  text-align: center;
  padding: 18px 0 30px;
  line-height: 1.5;
}

/* ---------- Accent Line ---------- */
.accent-line {
  width: 80px;
  height: 2px;
  background-color: #920f29;
}

/* ---------- Text Styles ---------- */
.text-body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #333a3a;
  font-size: 1.2rem;
  letter-spacing: 0.72px;
  line-height: 1.8;
  text-align: center;
}

.text-subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #333a3a;
  font-size: 1.6rem;
  letter-spacing: 0.32px;
  line-height: 1.6;
  text-align: center;
}

.text-small {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #333a3a;
  font-size: 1rem;
  letter-spacing: 0.4px;
  line-height: 1.8;
  text-align: center;
}

/* ---------- Utility / Modifier ---------- */
.text-subtitle--spaced {
  padding: 32px 0;
}

.text-body--narrow {
  width: 100%;
  max-width: 343px;
}

.readmore-wrap--tight {
  padding-top: 8px;
}

.footer-cta__spacer {
  padding-top: 24px;
}

/* ---------- Logo Box (Dark BG) ---------- */
.logo-box {
  background-color: #034234;
  border-radius: 4px;
  padding: 14px 48px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 248px;
}

.logo-box-img {
  width: 150px;
  height: auto;
  display: block;
}

/* ---------- Read More Button ---------- */
.btn-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: #034234;
  letter-spacing: 1.44px;
  line-height: 1.3;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
}

.btn-readmore__text {
  display: block;
}

.btn-readmore__arrow {
  width: 18px;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.readmore-wrap {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding: 16px 0 24px;
}

/* ---------- CTA Button (Large) ---------- */
.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #034234;
  height: 48px;
  border-radius: 48px;
  width: 216px;
  color: #f5f3ee;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 1.92px;
  line-height: 1.3;
  padding-left: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-cta .arrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 1.92px;
}

/* ---------- CTA Label Common ---------- */
.btn-cta__label {
  display: block;
}

.btn-cta__label--montserrat {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 1.2px;
  line-height: 1.5;
}

.btn-cta__label--montserrat-lg {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 1.4px;
  line-height: 1.5;
}

/* ---------- External Link Icon ---------- */
.external-link-icon {
  width: 14px;
  height: 14px;
  display: block;
  flex-shrink: 0;
}

/* ---------- Break Image ---------- */
.break-image {
  width: 100%;
  overflow: hidden;
}

.break-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* ---------- Hover Common ---------- */
.reserve-btn,
.hamburger-btn,
.nav-menu-link,
.btn-readmore,
.btn-cta,
.pagetop,
.footer-social-icon {
  transition: opacity 0.3s ease;
}

.reserve-btn:hover,
.hamburger-btn:hover,
.nav-menu-link:hover,
.btn-readmore:hover,
.btn-cta:hover,
.pagetop:hover,
.footer-social-icon:hover {
  opacity: 0.85;
}

/* ---------- Main Visual ---------- */
.mv {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}

.mv__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}

.mv__image.is-active {
  opacity: 1;
}

/* ---------- Menu Item (TOP page) ---------- */
.menu-item-top {
  text-align: center;
  padding-bottom: 18px;
  width: 100%;
}

.menu-item-top-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #333a3a;
  letter-spacing: 1.6px;
  text-align: center;
  padding: 6px 0;
  border-bottom: 0.5px solid #ca9c00;
  line-height: 1.5;
}

.menu-item-top-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  color: #333a3a;
  letter-spacing: 0.72px;
  line-height: 1.8;
  text-align: center;
  padding: 10px 0;
}

/* ---------- Access Info ---------- */
.access-info {
  text-align: center;
  padding: 0 0 24px;
}

.access-hours {
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 24px 16px 0;
}

.access-hours-item {
  width: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.access-hours-label,
.access-hours-value {
  font-size: 1.2rem;
  letter-spacing: 0.72px;
  line-height: 1.8;
  text-align: center;
}

.access-note {
  padding: 32px 16px;
}

.access-map {
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 4px;
  background: #e0ddd8;
}

.access-map__iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* ---------- Footer CTA Section ---------- */
.footer-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 16px 88px;
  background-color: #f5f3ee;
  position: relative;
}

/* ---------- Footer ---------- */
.site-footer {
  background-color: #034234;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 44px 24px 18px;
  position: relative;
}

/* ---------- Page Top ---------- */
.footer__pagetop {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.pagetop {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  pointer-events: auto;
}

.pagetop__icon,
.pagetop img {
  width: 30px;
  height: 30px;
  display: block;
  margin-bottom: 8px;
}

.pagetop__text,
.pagetop span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 2px;
  color: #333a3a;
  text-align: center;
  margin-bottom: 8px;
}

/* ---------- Footer Logo ---------- */
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-img {
  width: 150px;
  height: auto;
  display: block;
}

/* ---------- Footer Social ---------- */
.footer-social {
  display: flex;
  gap: 24px;
  align-items: center;
  padding-top: 16px;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-social-icon img {
  width: 20px;
  height: 20px;
  display: block;
}

.footer-copy {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #f5f3ee;
  font-size: 1rem;
  letter-spacing: 0.8px;
  text-align: center;
  padding-top: 18px;
  line-height: 1.8;
}

/* ---------- Body overflow lock ---------- */
body.menu-open {
  overflow: hidden;
}

@media screen and (min-width: 760px) and (max-width: 1199px) {
  .page-wrapper {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .section.menu-section {
    padding-left: 6%;
    padding-right: 6%;
  }

  .site-header {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .header-inner {
    width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
  }

  .reserve-btn {
    width: 160px;
    margin-left: auto;
    margin-right: 12px;
  }

  .site-main {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-top: 0;
  }

  .mv {
    width: 100%;
    height: 640px;
    overflow: hidden;
  }

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

  .section,
  .footer-cta {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .section {
    padding-left: 40px;
    padding-right: 40px;
  }

  .text-body--narrow {
    max-width: 480px;
  }

  .logo-box {
    width: 300px;
  }

  .btn-cta {
    width: 248px;
  }

  .break-image {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .break-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
  }

  .access-map {
    height: 320px;
  }

  .nav-panel {
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    height: 100dvh;
  }

  .nav-header {
    width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
  }

  .nav-menu-list {
    width: 100%;
    height: calc(100dvh - 72px);
    padding: 56px 48px;
    box-sizing: border-box;
    gap: 56px;
  }
}

/* =========================
   PC layout / 1200px-
========================= */
@media screen and (min-width: 1200px) {
  body {
    background-color: #f5f3ee;
    background-image: url("../images/back_ground_no-185.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }

  .page-wrapper {
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: 100vh;
  }

  /* ---------- Header ---------- */
  .site-header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 390px;
    z-index: 1000;
  }

  .hamburger-btn,
  .nav-overlay,
  .nav-header {
    display: none;
  }

  /* ---------- Left Fixed Nav ---------- */
  .nav-panel {
    position: fixed;
    top: 50%;
    left: calc((((100vw - 390px) / 2) - 214px) / 2);
    right: auto;
    bottom: auto;
    transform: translateY(-50%);
    width: 214px;
    max-width: none;
    height: 480px;
    z-index: 900;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: transparent;
    box-shadow: none;
  }

  .nav-panel.is-open {
    transform: translateY(-50%);
  }

  .nav-menu-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 58px 32px;
    gap: 34px;
  }

  .nav-menu-list::before,
  .nav-menu-list::after {
    content: "";
    display: block;
    width: 110px;
    height: 10px;
    background: url("../images/decoparts.svg") center center / contain no-repeat;
    flex-shrink: 0;
  }

  .nav-menu-link {
    justify-content: center;
    min-height: auto;
    padding: 0;
    border: 0;
  }

  .nav-menu-line {
    display: none;
  }

  .nav-menu-label {
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.12em;
    line-height: 1;
  }

  /* ---------- Main ---------- */
  .site-main {
    width: 390px;
    max-width: 390px;
    margin: 0 auto;
    padding-top: 72px;
    background-color: #f5f3ee;
  }

  .mv {
    height: auto;
    aspect-ratio: 390 / 520;
  }

  .mv__image,
  .break-image img {
    height: 100%;
  }

  /* ---------- Footer ---------- */
  .site-footer {
    width: 100%;
  }
}

/* =================================
   Fade In Animation
================================= */

/* ページ読み込み時のふわっと */
.js-fadein-load {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.js-fadein-load.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* スクロールで出るふわっと */
.js-fadein {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.js-fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* 動きが苦手な環境への配慮 */
@media (prefers-reduced-motion: reduce) {
  .js-fadein-load,
  .js-fadein {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =================================
   PC Side Reserve
================================= */
.pc-side-reserve {
  display: none;
}

@media screen and (min-width: 1200px) {
  .pc-side-reserve {
    display: block;
    position: fixed;
    top: 50%;
    right: calc((((100vw - 390px) / 2) - 214px) / 2);
    transform: translateY(-50%);
    width: 214px;
    z-index: 900;
  }

  .pc-side-reserve__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .pc-side-reserve__block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .pc-side-reserve__title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: 0.08em;
    color: #ffffff;
    text-align: center;
  }

  .pc-side-reserve__title--small {
    font-size: 1.4rem;
    line-height: 1.8;
  }

  .btn-cta--side {
    width: 214px;
    max-width: 100%;
    height: 44px;
    padding-left: 0;
    gap: 8px;
  }
}