/* ========================================================
   1. MASTER FONTS & GLOBAL RESET
   ======================================================== */
@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@300;400;700;800&family=Noto+Sans+JP:wght@300;400;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  background-color: #000000 !important;
  /* THE FIX: The "floor" of the browser is now black */
}

body {
  margin: 0;
  margin-left: 160px;
  width: calc(100% - 160px);
  background-color: #ffffff !important;
  /* THE FIX: Keeps your main page white */
  display: flex;
  flex-direction: column;
  min-height: 100vh;

  font-family: 'Kumbh Sans', 'Noto Sans JP', sans-serif !important;
  font-weight: 400;
  color: #000000;
  line-height: 1.8;
  letter-spacing: 0.05em;

  overflow: visible !important;
  -webkit-font-smoothing: antialiased;
}


/* ========================================================
   2. ZEN SELECTOR BAR (Sticky)
   ======================================================== */
.zen-selector-bar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  border-bottom: 0.5px solid #eeeeee;
  padding: 15px 0;
  z-index: 9999;
  /* Ensure it stays above images */
  display: block;
}

.selector-container {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.selector-btn {
  text-decoration: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  color: #767676;
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  transition: 0.3s ease;
  position: relative;
}

.selector-btn span {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  margin-top: 0.1px;
}

.selector-btn::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #eb5a0f;
  transition: 0.4s ease;
  transform: translateX(-50%);
}

.selector-btn:hover::after {
  width: 100%;
}

.selector-btn:hover {
  color: #000;
}


/* ========================================================
   3. UNIVERSAL CONTAINERS
   ======================================================== */
.inner-1920 {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto !important;
  padding: 0 5%;
}

.content-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.welcome-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 50px auto;
  gap: 10px;
  line-height: 1.1;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 800;
  font-size: 33px;
}

.en-main-title {
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #eb5a0f;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}


/* ========================================================
   4. WELCOME SECTION (Concept)
   ======================================================== */
/* --- WELCOME SECTION (Force Center Fix) --- */
.concept-label {
  /* CHANGE THIS LINE */
  font-size: 18px !important;

  /* Keep your other styles */
  font-weight: 800;
  color: #eb5a0f;
  letter-spacing: 0.25em;
  margin-bottom: 15px;
  text-align: center;
  text-transform: uppercase;
  /* Ensures it stays all caps */
}

/* --- THE MAIN JAPANESE HEADLINE --- */
.concept-title {
  /* Change this number to adjust the size */
  font-size: 33px !important;

  /* These keep the "Bold & Impactful" look */
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #000;
  text-align: center;
}

/* --- THE ENGLISH SUBTITLE UNDER THE MAIN TITLE --- */
.concept-title .en-subtitle {
  font-size: 12px !important;
  display: block;
  font-weight: 400;
  color: #555555;
  letter-spacing: 0.05em;

  /* 1. GAP BETWEEN JP AND EN (External Leading) */
  /* You had 0.5px—this is tiny! Try 10px to see the gap. */
  margin-top: 10px !important;

  /* 2. SPACING BETWEEN EN LINES (Internal Leading) */
  /* Use this if your English sentence wraps to 2 lines. */
  line-height: 1.6 !important;
}

/* --- THE MAIN JAPANESE DESCRIPTION PARAGRAPH --- */
.concept-text-block p {
  /* CHANGE THIS TO 15px */
  font-size: 15px !important;

  /* These ensure the text feels "Zen" and airy */
  line-height: 1.9 !important;
  color: #333;
  margin-bottom: 15px;
  text-align: center;
}

/* --- CONCEPT SECTION: GHOST ENGLISH DESIGN --- */
.en-concept-desc {
  /* CHANGE THIS TO 18px */
  font-size: 18px !important;

  /* Keep these for that "Ghost" minimalist look */
  color: #999999 !important;
  line-height: 1.8 !important;
  letter-spacing: 0.03em !important;

  /* These ensure it stays perfectly centered under the Japanese */
  display: block !important;
  max-width: 800px !important;
  margin: 25px auto 0 auto !important;
  text-align: center !important;
}



.welcome-section {
  display: flex !important;
  flex-direction: column !important;
  /* Stack text top to bottom */
  align-items: center !important;
  /* This centers everything horizontally */
  justify-content: center !important;

  text-align: center !important;
  width: 100% !important;
  padding: 80px 0;
  background-color: #ffffff;
}

/* ========================================================
   MOBILE SIDEBAR CLEANUP (Hide Booking & SNS)
   ======================================================== */
@media screen and (max-width: 768px) {

  /* 1. Hide the "Book Now" Pill Button in the mobile sidebar */
  .fixed-sidebar .sidebar-booking-btn {
    display: none !important;
  }

  /* 2. Hide the SNS (Social Media) Icons in the mobile sidebar */
  .fixed-sidebar .sidebar-footer {
    display: none !important;
  }

}

/* ========================================================
   5. PERMANENT SIDEBAR - CENTERED ACTION / LEFT MENU
   ======================================================== */

/* --- DESKTOP LAYOUT --- */
body {
  margin-left: 160px;
  width: calc(100% - 160px);
}

.fixed-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 160px;
  height: 100vh;
  background-color: #ffffff;
  border-right: 1px solid #eeeeee;
  display: flex;
  flex-direction: column;

  /* This centers the Logo, Button, and SNS horizontally */
  align-items: center;

  /* Vertical spacing: Top starts at 40px, bottom is auto-handled */
  padding: 40px 0;
  z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}


/* --- LOGO: CENTERED --- */
.sidebar-logo {
  /* ✅ これで下線を完全に消します */
  text-decoration: none !important;

  /* 以下、デザインを維持するための設定 */
  display: block;
  font-family: 'Kumbh Sans', sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  color: #eb5a0f;
  /* D旅館オレンジ */
  line-height: 1;
  text-align: center;
  width: 100%;
  margin-bottom: 50px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* ホバーした時も下線が出ないように念のため追加 */
.sidebar-logo:hover {
  text-decoration: none !important;
  transform: scale(1.1);
  color: #eb5a0f;
}

/* --- LINKS: LEFT ALIGNED --- */
.sidebar-links {
  list-style: none;
  width: 100%;
  padding: 0;
  /* This padding-left pushes the menu away from the edge while keeping it LEFT */
  padding-left: 35px !important;
}

.sidebar-links li {
  margin-bottom: 25px;
  text-align: left;
  /* Forces the text to stay left */
}

.sidebar-links a {
  text-decoration: none;
  color: #333;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-transform: uppercase;
}

.sidebar-links a span {
  font-size: 12px;
  font-weight: 400;
  color: #767676;
  margin-top: 2px;
}

/* --- THE BOLD LIQUID SIDEBAR PILL --- */

.sidebar-booking-btn {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 140px !important;
  height: auto;

  /* 1. The Pill Shape & Base Colors */
  background-color: transparent !important;
  border: 1.5px solid #eb5a0f !important;
  color: #eb5a0f !important;
  border-radius: 50px !important;

  /* 2. Positioning & Typography */
  padding: 12px 5px !important;
  text-decoration: none;
  font-weight: 900 !important;
  font-size: 0.85rem !important;
  line-height: 1.0 !important;
  text-transform: uppercase;
  letter-spacing: 0.02em;

  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: auto !important;
  margin-bottom: 25px !important;

  /* 3. The "Liquid" Prep */
  position: relative !important;
  overflow: hidden !important;
  /* Clips the orange liquid */
  z-index: 1;

  /* 4. SILKY TRANSITION (No Jutter) */
  will-change: transform;
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.3s ease,
    border-color 0.3s ease;
}

/* THE LIQUID LAYER (The sliding orange background) */
.sidebar-booking-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  /* Starts empty */
  height: 100%;
  background-color: #eb5a0f;
  z-index: -1;
  /* Sits behind text */
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 5. THE SUB-TEXT (Japanese) */
.sidebar-booking-btn span {
  display: block;
  font-size: 0.65rem !important;
  font-weight: 600 !important;
  margin-top: 3px !important;
  opacity: 0.95;
  transition: color 0.3s ease;
}

/* 6. THE HOVER EFFECT (Exactly like footer) */
.sidebar-booking-btn:hover {
  color: #000000 !important;
  /* Text turns black on orange background */
  transform: translateY(-4px);
  /* Smooth lift */
  box-shadow: none !important;
  /* Matte finish */
}

.sidebar-booking-btn:hover::before {
  width: 100%;
  /* Liquid fills the pill */
}

.sidebar-booking-btn:hover span {
  color: #000000 !important;
  /* Japanese text also turns black */
}

/* --- SNS FOOTER: CENTERED --- */
.sidebar-footer {
  display: flex !important;
  justify-content: center;
  /* Centers icons horizontally */
  gap: 15px;
  width: 100%;
  padding-bottom: 10px;
}

.side-social {
  font-size: 1.4rem;
  color: #767676;
  transition: 0.3s;
}

.side-social:hover {
  color: #eb5a0f;
}

/* --- SIDEBAR LINKS: LEFT ACCENT LINE --- */
.sidebar-links a {
  position: relative;
  padding-left: 15px;
  /* Creates space for the line to appear */
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: color 0.3s ease;
}

/* THE HIDDEN VERTICAL LINE */
.sidebar-links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  /* Thickness of the line */
  height: 0;
  /* Starts at zero height */
  background-color: #eb5a0f;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* THE HOVER ACTION */
.sidebar-links a:hover {
  color: #eb5a0f !important;
}

.sidebar-links a:hover::before {
  height: 100%;
  /* Line grows down to cover the text height */
}

/* ========================================================
   6. BLACK EDGE-TO-EDGE FOOTER
   ======================================================== */
.modern-footer-section {
  background-color: #000000 !important;
  padding: 100px 0 60px 0 !important;
  /* Clean padding */
  width: 100%;
  margin: 0 !important;
  display: block;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  margin-bottom: 60px;
}

.giant-logo {
  font-size: clamp(4rem, 8vw, 10rem);
  font-weight: 900;
  line-height: 0.85;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #eb5a0f;
}

.footer-upper-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

.tagline {
  font-family: 'Covered By Your Grace', cursive;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  color: #eb5a0f;
  margin: 0;
  line-height: 1;
  transform: rotate(-2deg);
}

.footer-book-btn {
  text-decoration: none;
  color: #eb5a0f;
  font-weight: 700;
  border-bottom: 2px solid #eb5a0f;
  padding-bottom: 5px;
  font-size: 1.1rem;
  white-space: nowrap;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.8fr 1.2fr 1fr;
  gap: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(235, 90, 15, 0.2);
  padding-top: 40px;
  text-align: left;
}

.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  font-weight: 800;
  color: #eb5a0f;
  opacity: 0.8;
}

.footer-col p,
.footer-col a {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 6px;
  text-decoration: none;
  color: #eb5a0f;
  display: block;
}

.hotel-name {
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 12px;
}

.footer-bottom-bar {
  margin-top: 80px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  border-top: 1px solid rgba(235, 90, 15, 0.2);
  color: #eb5a0f;
}

/* ========================================================
   THE FINAL OVERRIDE (PASTE AT VERY BOTTOM)
   ======================================================== */

/* 1. THE BULLETPROOF FOOTER GAP FIX */
/* This uses a shadow to paint the bottom black. Shadows DO NOT affect page length or cause scrolling! */
.modern-footer-section {
  background-color: #000000 !important;
  margin-bottom: 0 !important;
}


/* ========================================================
   7. MOBILE RESPONSIVE FIXES
   ======================================================== */
@media (max-width: 900px) {
  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .footer-layout {
    flex-direction: column;
    gap: 40px;
  }

  .footer-upper-right {
    align-items: flex-start;
  }

  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .access-info-grid {
    grid-template-columns: 1fr;
  }

  .map-container-centered {
    height: 300px;
  }
}

@media (max-width: 768px) {

  /* 1. Lift the sidebar above the selector bar */
  .fixed-sidebar {
    z-index: 10001 !important;
    /* One level higher than the bar */

    /* 2. Fix the position so it doesn't push content */
    left: 0 !important;
    width: 250px !important;
    /* Standard mobile drawer width */
    transform: translateX(-100%);
    /* Hide it off-screen by default */
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  }

  /* 3. When the menu is "Open" (You'll need a class for this) */
  .fixed-sidebar.active {
    transform: translateX(0);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
  }

  /* 4. Ensure the selector bar stays below the menu */
  .zen-selector-bar {
    z-index: 9999 !important;
    /* Keep this at the original level */
  }
}



/* --- THE TRENDY PILL BUTTON --- */

.footer-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  /* The "Pill" Shape */
  border: 2px solid #eb5a0f;
  background-color: transparent;
  color: #eb5a0f !important;

  padding: 12px 35px;
  border-radius: 50px;
  /* Perfect pill shape */

  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.15em;

  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* THE TRENDY HOVER: The button "fills up" with orange */
.footer-book-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #eb5a0f;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: -1;
}

.footer-book-btn:hover {
  color: #000000 !important;
  /* Text turns black on orange background */
  box-shadow: 0 0 25px rgba(235, 90, 15, 0.4);
  /* Neon-style orange glow */
}

.footer-book-btn:hover::before {
  width: 100%;
  /* The orange fill slides across */
}

/* THE ARROW ANIMATION */
.footer-book-btn .arrow {
  display: inline-block;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.footer-book-btn:hover .arrow {
  transform: translateX(5px);
  /* Arrow "hops" forward */
}

/* --- MOBILE TWEAKS --- */
@media (max-width: 768px) {
  .footer-book-btn {
    padding: 15px 30px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
  }
}

/* --- THE MATTE TRENDY PILL --- */

.footer-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  /* 1. The Pill Shape */
  border: 2px solid #eb5a0f;
  background-color: transparent;
  color: #eb5a0f !important;

  padding: 12px 35px;
  border-radius: 50px;

  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.15em;

  /* Smooth color fade instead of a sliding effect */
  transition: all 0.3s ease;
  position: relative;
}

/* 2. THE HOVER: Simple, flat color flip (No shining/glow) */
.footer-book-btn:hover {
  background-color: #eb5a0f;
  color: #000000 !important;
  /* Text turns black on the orange background */

  /* Removed box-shadow (the glow) */
  box-shadow: none !important;
}

/* 3. THE ARROW: Keeping the subtle movement */
.footer-book-btn .arrow {
  display: inline-block;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.footer-book-btn:hover .arrow {
  transform: translateX(5px);
}

/* --- MOBILE TWEAKS --- */
@media (max-width: 768px) {
  .footer-book-btn {
    padding: 14px 30px;
    font-size: 0.8rem;
  }
}



/* ========================================================
   8. MOBILE FIXED SNS BAR (ICON ONLY)
   ======================================================== */

@media (max-width: 1024px) {
  body {
    margin-left: 0;
    width: 100%;
  }

  .fixed-sidebar {
    transform: translateX(-100%);
    width: 240px;
  }

  /* The Brain: This slides the menu when clicked */
  .nav-trigger:checked~.fixed-sidebar {
    transform: translateX(0);
  }

  .mobile-menu-btn {
    display: flex !important;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 10000;
    /* ... keep your hamburger button styles from Section 12 ... */
  }
}

/* --- THE DEAD-CENTER CIRCLE BUTTON --- */

@media (max-width: 1024px) {

  .mobile-menu-btn {
    /* 1. Use GRID to force everything to the exact center */
    display: grid !important;
    place-items: center;

    position: fixed;
    top: 25px;
    left: 20px;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    background-color: #eb5a0f !important;

    /* Remove padding so it doesn't push the "X" off-center */
    padding: 0 !important;

    z-index: 20000 !important;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  /* 2. THE THREE LINES */
  .btn-bar {
    /* Stack them all on top of each other in the center */
    grid-area: 1 / 1;

    display: block;
    width: 22px !important;
    height: 2px !important;
    background-color: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* 3. THE HAMBURGER STATE (Spaced out) */
  /* Top bar up, bottom bar down */
  .btn-bar:nth-child(1) {
    transform: translateY(-7px);
  }

  .btn-bar:nth-child(2) {
    opacity: 1;
  }

  .btn-bar:nth-child(3) {
    transform: translateY(7px);
  }

  /* 4. THE "X" STATE (When Checked) */

  /* Top Bar rotates 45deg from the center */
  .nav-trigger:checked~.mobile-menu-btn .btn-bar:nth-child(1) {
    transform: rotate(45deg);
    background-color: #FFFFFF !important;
  }

  /* Middle Bar disappears */
  .nav-trigger:checked~.mobile-menu-btn .btn-bar:nth-child(2) {
    opacity: 0 !important;
  }

  /* Bottom Bar rotates -45deg from the center */
  .nav-trigger:checked~.mobile-menu-btn .btn-bar:nth-child(3) {
    transform: rotate(-45deg);
    background-color: #FFFFFF !important;
  }
}

/* ========================================================
   9.1 vertical title
   ======================================================== */
/* --- 1. 親要素の調整 --- */
.access-header {
  position: relative !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
  width: 100%;
}

/* --- 2. 縦書きタイトル：左側の「安全圏」に配置 --- */
/* THE SIDE TITLE: Sideways text that doesn't block the centering */
.access-vertical-title {
  position: absolute;
  left: -30px;
  top: 0;
  writing-mode: vertical-rl;
  font-size: 0.75rem;
  font-weight: 700;
  color: #eb5a0f;
  letter-spacing: 0.4em;
  opacity: 0.5;
}



/* --- 3. サイドバーとの衝突を防ぐレスポンシブ --- */
@media screen and (max-width: 1400px) {
  .access-vertical-title {
    left: 20px !important;
    /* 画面が狭くなったら左端ギリギリに寄せる */
  }
}

@media screen and (max-width: 1100px) {

  /* これ以上狭くなるとサイドバーと重なるので、潔く消す（禅スタイル） */
  .access-vertical-title {
    display: none !important;
  }
}

/* ========================================================
   9.2 FAQ MASTER (30px Q&A & Alignment Fixed)
   ======================================================== */


/* 全体の枠組み */
.faq-container {
  max-width: 900px;
  margin: 0 auto 100px auto;
}

.faq-category {
  margin-bottom: 80px;
}

.faq-cat-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  border-left: 3px solid #eb5a0f;
  padding-left: 20px;
}

.cat-num {
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 1rem;
  color: #eb5a0f;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}

.cat-en {
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #767676;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* 各質問のアイテム */
.faq-item {
  background-color: #ffffff !important;
  border-bottom: 1px solid #eeeeee;
}

/* --------------------------------------------------------
   質問部分 (Q.)
   -------------------------------------------------------- */
.faq-question {
  width: 100% !important;
  padding: 25px 0 !important;
  background: none !important;
  border: none !important;
  display: flex !important;
  justify-content: flex-start !important;
  /* 左寄せ */
  align-items: flex-start !important;
  /* 文章をQの頭に揃える */
  font-family: 'Noto Sans JP', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-align: left !important;
  line-height: 1.6 !important;
  cursor: pointer;
  color: #333;
  transition: color 0.3s ease;
}

/* 30pxの Q. */
.faq-question::before {
  content: 'Q.';
  font-size: 30px !important;
  line-height: 1 !important;
  margin-top: -3px;
  /* 本文と高さを合わせる微調整 */
  color: #eb5a0f;
  font-family: 'Kumbh Sans', sans-serif;
  font-weight: 800;
  margin-right: 15px;
  flex-shrink: 0;
}

.faq-question:hover {
  color: #eb5a0f;
}

/* 右側のプラスアイコン */
.icon-plus {
  margin-left: auto !important;
  /* これで右端に固定 */
  position: relative;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  top: 10px;
  /* 30pxのQに合わせて少し下げる */
}

/* --------------------------------------------------------
   回答部分 (A.)
   -------------------------------------------------------- */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
  padding: 0 0 25px 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin: 0;
  display: flex !important;
  align-items: flex-start !important;
  /* 文章をAの頭に揃える */
}

/* 30pxの A. */
.faq-answer p::before {
  content: 'A.';
  font-size: 30px !important;
  line-height: 1 !important;
  margin-top: -3px;
  /* 本文と高さを合わせる微調整 */
  color: #333333;
  font-family: 'Kumbh Sans', sans-serif;
  font-weight: 800;
  margin-right: 15px;
  flex-shrink: 0;
}

/* --------------------------------------------------------
   アイコンアニメーション
   -------------------------------------------------------- */
.icon-plus::before,
.icon-plus::after {
  content: '';
  position: absolute;
  background-color: #eb5a0f;
  transition: transform 0.3s ease;
}

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

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

.faq-item.open .icon-plus::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

/* --------------------------------------------------------
   スマホ対応
   -------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .faq-question {
    font-size: 14px !important;
    padding: 20px 0 !important;
  }

  .faq-question::before,
  .faq-answer p::before {
    font-size: 24px !important;
    /* スマホではQ&Aを少し小さくして見やすく */
    margin-right: 10px;
  }

  .icon-plus {
    top: 6px;
  }
}

/* ========================================================
   9.3 FAQ BILINGUAL & FONT CORRECTION
   ======================================================== */

/* --- 言語切り替えの基本設定 --- */
.lang-en {
  display: none !important;
}

/* 英語モード (#faq.en-mode) の時の表示スイッチ */
#faq.en-mode .lang-jp {
  display: none !important;
}

#faq.en-mode .lang-en {
  display: block !important;
}

/* --- 英語テキスト専用フォント指定 --- */
.lang-en {
  font-family: 'Kumbh Sans', sans-serif !important;
}

/* --- 1. カテゴリータイトルの英語 (ここを太く修正) --- */
#faq.en-mode .faq-cat-title .lang-en {
  font-weight: 800 !important;
  /* 最大の太さ */
  font-size: 1.6rem !important;
  /* 日本語より少し大きく */
  letter-spacing: 0.05em;
  margin-top: 5px;
}

/* 下にある小さな英語サブタイトル */
.cat-en {
  font-family: 'Kumbh Sans', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  opacity: 0.6;
}

/* --- 2. 質問 (Q.) 英語モード時の調整 --- */
#faq.en-mode .faq-question {
  font-family: 'Kumbh Sans', sans-serif !important;
  font-weight: 700 !important;
  /* 英語の質問を力強く */
  line-height: 1.4 !important;
}

/* 30pxの Q. (英語時も Kumbh Sans を維持) */
.faq-question::before {
  content: 'Q.';
  font-family: 'Kumbh Sans', sans-serif !important;
  font-weight: 800 !important;
}

/* --- 3. 回答 (A.) 英語モード時の調整 --- */
#faq.en-mode .faq-answer p {
  font-family: 'Kumbh Sans', sans-serif !important;
  font-weight: 400 !important;
  /* 本文は読みやすく400 */
  line-height: 1.7 !important;
  /* 英語は少し行間を広くすると綺麗です */
}

/* 30pxの A. */
.faq-answer p::before {
  content: 'A.';
  font-family: 'Kumbh Sans', sans-serif !important;
  font-weight: 800 !important;
}

/* --- 4. 言語切り替えボタン (Zen Style) --- */
.lang-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  gap: 10px;
}

.lang-btn {
  padding: 8px 20px;
  border: 1px solid #eb5a0f;
  background: transparent;
  color: #eb5a0f;
  font-family: 'Kumbh Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.lang-btn.active {
  background: #eb5a0f;
  color: #fff;
}

/* ========================================================
   15 TOP BAR - ZEN REFINED (DESKTOP)
   ======================================================== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

.zen-selector-bar {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom: 0.5px solid #eeeeee;
  padding: 15px 0;
  z-index: 9999;
  backdrop-filter: blur(10px);
}

.selector-container {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.selector-btn {
  text-decoration: none !important;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
  position: relative;
}

.selector-btn .nav-label {
  font-family: 'Noto Sans JP', sans-serif !important;
  font-size: 14px;
  font-weight: 800;
  color: #333;
  line-height: 1.2;
}

.selector-btn .nav-en {
  font-family: 'Kumbh Sans', sans-serif !important;
  font-size: 9px;
  font-weight: 700;
  color: #999;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
}

.selector-btn:hover .nav-label {
  color: #eb5a0f;
}

.selector-btn:hover .nav-en {
  color: #eb5a0f;
}

.selector-btn::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #eb5a0f;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(-50%);
}

.selector-btn:hover::after {
  width: 70%;
}

/* ========================================================
   🛡️ DESKTOP BARRIER (HIDES MOBILE STUFF ON PC)
   ======================================================== */
.zen-selector-bar-mobile {
  display: none !important;
}

.mobile-menu-btn {
  display: none !important;
}

/* ========================================================
   16 MOBILE RESPONSIVE VIEWS
   ======================================================== */

/* --- TABLET/MOBILE (Shows Hamburger Menu) --- */
@media screen and (max-width: 1024px) {
  .mobile-menu-btn {
    display: grid !important;
  }
}

/* --- SMARTPHONE ONLY (Swaps Top Bar for Orange Pill) --- */
@media screen and (max-width: 768px) {

  /* 1. FORCE HIDE THE DESKTOP TOP BAR */
  body .zen-selector-bar {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    height: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }

  /* 2. SHOW THE ORANGE MOBILE PILL */
  .zen-selector-bar-mobile {
    display: flex !important;
    justify-content: center !important;
    /* ✅ 追加：中身を強制的に「ど真ん中」にする */
    position: fixed !important;
    bottom: 25px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 90% !important;
    max-width: 380px !important;
    background: #eb5a0f !important;
    border-radius: 100px !important;
    padding: 5px 15px !important;
    z-index: 10005 !important;
    border: none !important;
  }

  /* 3. MOBILE PILL CONTAINER */
  .zen-selector-bar-mobile .selector-container {
    display: flex !important;
    justify-content: space-evenly !important;
    align-items: center !important;
    width: 100% !important;
    gap: 10px !important;

    /* 🔥 追加：目に見えない余白（Padding/Margin）を完全に消し去る！ */
    padding: 0 !important;
    margin: 0 !important;

    overflow: visible !important;
  }

  /* 4. MOBILE PILL BUTTONS */
  .zen-selector-bar-mobile .selector-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: background-color 0.3s ease, color 0.3s ease !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    flex-shrink: 0 !important;
    outline: none !important;
  }

  .zen-selector-bar-mobile .selector-btn i.material-icons {
    font-size: 22px !important;
  }

  .zen-selector-bar-mobile .selector-btn::after {
    display: none !important;
  }

  /* 5. MOBILE PILL ACTIVE STATE */
  .zen-selector-bar-mobile .selector-btn:active,
  .zen-selector-bar-mobile .selector-btn.active {
    background: #ffffff !important;
    color: #eb5a0f !important;
  }
}