@charset "utf-8";

/* ==================================================
   Variables
================================================== */
:root {
  --color-text: #322b2b;
  --color-main: #bea37d; /* Gold/Beige Accent */
  --color-bg: #ffffff;
  --color-bg-secondary: #f9f9f9;
  --font-base: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif JP", serif;
  --font-en: "Cormorant Garamond", serif;
  --font-hand: "Klee One", cursive;
}

/* ---------- Variables ---------- */
:root {
  --sc-navy: #322b2b;
  --sc-teal: #bea37d;
  --sc-teal-light: #c4986a;
  --sc-dark: #322b2b;
  --sc-white: #ffffff;
  --sc-bg: #f9f6f2;
  --sc-bg2: #f2ede8;
  --sc-text: #322b2b;
  --sc-accent: #a8936a;
  --sc-border: #d9cfc5;
  --font-en: "Cormorant Garamond", serif;
  --font-base: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif JP", serif;
  --transition: 0.3s ease;
}

/* ==================================================
   Base
================================================== */
html {
  font-size: 62.5%; /* 10px */
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  background: -webkit-linear-gradient(bottom, #e7a584, #fbfbfb, #fbfbfb, #fbfbfb, #fbfbfb, #fbfbfb, #fbfbfb, #fbfbfb, #fbfbfb);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}
/* ============================================================
   SECTION COMMON
   ============================================================ */
.sc-section {
  padding: 90px 0;
}

.sc-section-bg {
  background: var(--sc-bg);
}

.sc-section-bg2 {
  background: var(--sc-bg2);
}

.sc-section-head {
  text-align: center;
  margin-bottom: 60px;
}

.sc-section-en {
  display: block;
  font-family: var(--font-en);
  font-size: 1.1rem;
  letter-spacing: 0.35em;
  color: var(--sc-teal);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.sc-section-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--sc-dark);
  line-height: 1.5;
}

.sc-section-title strong {
  color: var(--sc-teal);
}

.sc-section-lead {
  margin-top: 20px;
  font-size: 1.5rem;
  color: #666666;
  line-height: 2;
}

.sc-divider {
  width: 50px;
  height: 1px;
  background: var(--sc-teal);
  margin: 20px auto 0;
}
/* ---------- Inner ---------- */
.sc-inner {
  max-width: 960px;
  width: 92%;
  margin: 0 auto;
}
.sc-page *, .sc-page *::before, .sc-page *::after , .sc-cta * {
    box-sizing: border-box;
}

/* ==================================================
   Layout / Utilities
================================================== */
.section {
  padding: 80px 0;
}

.section-inner {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}

/* Section Heading */
.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading-en {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 4rem;
  letter-spacing: 0.05em;
  color: var(--color-main);
  position: relative;
  padding-bottom: 10px;
}

.section-heading-en::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background-color: var(--color-main);
}

/* Animation */
.inview {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.0s ease;
}

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

/* Buttons */
.btn-reserve-header {
  display: inline-block;
  background-color: var(--color-text);
  color: #fff;
  font-size: 1.3rem;
  padding: 10px 20px;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}

.btn-reserve-header:hover {
  background-color: var(--color-main);
  opacity: 1;
}

/* ==================================================
   Header
================================================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 1000;
  transition: background-color 0.3s;
}

.header-inner {
  max-width: 1200px;
  width: 94%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-family: var(--font-en);
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.logo-sub {
  font-size: 1.2rem;
  margin-left: 5px;
  font-family: var(--font-base);
  font-weight: 300;
}

.gnav-pc ul {
  display: flex;
  gap: 30px;
}

.gnav-pc a {
  font-family: var(--font-en);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  position: relative;
}

.gnav-pc a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-main);
  transition: width 0.3s;
}

.gnav-pc a:hover::after {
  width: 100%;
}

.gnav-pc a:hover {
  opacity: 1;
  color: var(--color-main);
}

/* Hamburger */
.hamburger {
  display: none; /* PC default hidden */
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-text);
  transition: all 0.3s;
}

.hamburger span:nth-of-type(1) { top: 0; }
.hamburger span:nth-of-type(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-of-type(3) { bottom: 0; }

.hamburger.is-active span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-of-type(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.98);
  z-index: 999;
  display: flex; /* Flex but hidden via opacity/visibility usually */
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-nav.is-active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-inner {
  text-align: center;
}

.mobile-nav ul li {
  margin-bottom: 30px;
}

.mobile-nav a {
  font-family: var(--font-en);
  font-size: 2.4rem;
  display: block;
}

.btn-reserve-mobile {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 40px;
  background-color: var(--color-text);
  color: #fff;
  font-size: 1.4rem;
}



/* ==================================================
   Page Title
================================================== */
.page-title-area {
  /* height: 40vh; */
  height: 50vh;
  min-height: 300px;
  background: url('../images/hero-bg.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 80px;
}

.page-title-area::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.page-title-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.page-title {
  font-family: var(--font-en);
  font-size: 5rem;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.page-subtitle {
  font-size: 1.6rem;
  letter-spacing: 0.2em;
}


/* ============================================================
   CTA SECTION
   ============================================================ */
.rc-cta {
  background: linear-gradient(135deg, #1e1a2e 0%, #3a2e50 100%);
  color: var(--rc-white);
  text-align: center;
  padding: 80px 0;
}

.rc-cta-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  color: #f0d9bb;
}

.rc-cta-lead {
  font-size: 1.5rem;
  opacity: 0.85;
  margin-bottom: 46px;
  line-height: 2;
}

.rc-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.rc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  padding: 18px 44px;
  border-radius: 2px;
  transition: all var(--transition);
  text-decoration: none;
  font-family: var(--font-serif);
}

.rc-btn-primary {
  background: var(--rc-gold);
  color: var(--rc-white);
}

.rc-btn-primary:hover {
  background: var(--rc-accent);
  transform: translateY(-2px);
  opacity: 1;
}

.rc-btn-line {
  background: #06c755;
  color: var(--rc-white);
}

.rc-btn-line:hover {
  background: #05b24c;
  transform: translateY(-2px);
  opacity: 1;
}

.rc-btn-tel {
  background: var(--rc-white);
  color: var(--rc-dark);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.rc-btn-tel:hover {
  background: #f5f0ea;
  transform: translateY(-2px);
  opacity: 1;
}

.rc-btn-icon {
  font-size: 1.8rem;
}

/* ============================================================
   ACCESS SECTION
   ============================================================ */
.rc-access-wrap {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.rc-access-info {
  flex: 0 0 380px;
}

.rc-access-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.45rem;
}

.rc-access-table th,
.rc-access-table td {
  padding: 14px 0;
  border-bottom: 1px solid var(--rc-border);
  vertical-align: top;
}

.rc-access-table th {
  width: 80px;
  color: var(--rc-gold);
  font-weight: 400;
  font-family: var(--font-serif);
  white-space: nowrap;
}

.rc-access-table td {
  color: var(--rc-text);
}

.rc-access-table a {
  color: var(--rc-dark);
  text-decoration: underline;
}

.rc-access-map {
  flex: 1;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.rc-access-map iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: none;
}

/* ============================================================
   ANIMATION
   ============================================================ */
.rc-inview {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.rc-inview.rc-visible {
  opacity: 1;
  transform: translateY(0);
}

.rc-inview-delay1 { transition-delay: 0.1s; }
.rc-inview-delay2 { transition-delay: 0.2s; }
.rc-inview-delay3 { transition-delay: 0.3s; }
.rc-inview-delay4 { transition-delay: 0.4s; }


/* ============================================================
   CTA SECTION
   ============================================================ */
.sc-cta {
  background: linear-gradient(135deg, #2a201b 0%, #4a3628 100%);
  padding: 90px 0;
}

.sc-cta-title {
  font-family: var(--font-serif);
  font-size: 3.0rem;
  font-weight: 300;
  color: var(--sc-white);
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.12em;
}

.sc-cta-lead {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  line-height: 2.1;
  margin-bottom: 50px;
}

.sc-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.sc-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 2px;
  transition: all var(--transition);
  min-width: 240px;
  justify-content: center;
}

.sc-btn-icon {
  font-size: 1.4rem;
}

.sc-btn-primary {
  background: var(--sc-teal);
  color: var(--sc-white);
}

.sc-btn-primary:hover {
  background: var(--sc-teal-light);
  transform: translateY(-2px);
}

.sc-btn-line {
  background: #06c755;
  color: var(--sc-white);
}

.sc-btn-line:hover {
  background: #05b04d;
  transform: translateY(-2px);
}

.sc-btn-tel {
  background: rgba(255, 255, 255, 0.1);
  color: var(--sc-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.sc-btn-tel:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

/* ============================================================
   ACCESS SECTION
   ============================================================ */
.sc-access-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.sc-access-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
}

.sc-access-table th,
.sc-access-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--sc-border);
  text-align: left;
  vertical-align: top;
  line-height: 1.8;
}

.sc-access-table th {
  width: 100px;
  color: var(--sc-teal);
  font-weight: 500;
  white-space: nowrap;
  font-family: var(--font-serif);
}

.sc-access-table td {
  color: var(--sc-text);
}

.sc-access-table td a {
  color: var(--sc-teal);
  text-decoration: none;
}

.sc-access-map iframe {
  display: block;
  width: 100%;
  border: 0;
}


/* ==================================================
   Footer
================================================== */
#footer {
  /* background-color: #f2f2f2; */
  padding: 80px 0 30px;
  text-align: center;
  font-size: 1.4rem;
}

.footer-logo {
  font-family: var(--font-en);
  font-size: 3rem;
  margin-bottom: 30px;
}

.footer-logo span {
  font-size: 1.4rem;
  font-family: var(--font-base);
  font-weight: 300;
  margin-left: 8px;
}

.footer-info {
  margin-bottom: 40px;
  line-height: 2;
  padding: 0 3vw;
}

.footer-nav {
  margin-bottom: 50px;
}

.footer-nav a {
  font-family: var(--font-en);
  margin: 0 15px;
  font-size: 1.4rem;
  display: inline-block;
}

.copy {
  display: block;
  font-size: 1.1rem;
  color: #3d3636;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
}


/* ==================================================
   Responsive
================================================== */
@media screen and (max-width: 768px) {
  .page-title {
    font-size: 3.6rem;
  }

 /* ============================================================
     CTA
     ============================================================ */
  .sc-cta {
    padding: 60px 0;
  }

  .sc-cta-title {
    font-size: 2.4rem;
  }

  body #sc-cta .sc-cta-lead {
    font-size: 3.1vw;
  }

  .sc-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .sc-btn {
    width: 90%;
    max-width: 320px;
    padding: 18px 30px;
    font-size: 1.5rem;
  }

  /* ============================================================
     ACCESS
     ============================================================ */
  .sc-access-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .sc-access-table th,
  .sc-access-table td {
    font-size: 1.35rem;
    padding: 12px 14px;
  }

  .sc-access-map iframe {
    height: 280px;
  }



}