/* ========================================================
   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) - FINAL CONFIRMED
   ======================================================== */
.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;
  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;
  transition: 0.3s ease;
  position: relative;
}

/* 英語部分（nav-enクラスを狙い撃ち） */
.selector-btn .nav-en {
  font-family: 'Kumbh Sans', sans-serif !important;
  /* 強制適用 */
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

/* 日本語部分（nav-labelクラスを狙い撃ち） */
.selector-btn .nav-label {
  font-family: 'Noto Sans JP', sans-serif !important;
  /* 強制適用 */
  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;
}

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

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

/* ========================================================
   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;
  }

}

/* ========================================================
   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: 18px !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;
}


/* ========================================================
   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;
  box-shadow: 0 500px 0 0 #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. CONTACT - HIGH READABILITY & FUN
   ======================================================== */

.inquiry-container {
  max-width: 750px;
  margin: 0 auto;
  padding: 100px 20px;
}

/* タイトル：パキッと見やすく、かつ優雅に */
.inquiry-title {
  text-align: center;
  margin-bottom: 70px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #1a1a1a;
  /* ✅ 字間をわずかに広げて、太い文字でも圧迫感を与えないようにします */
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.inquiry-title span.lang-en {
  display: block;
  font-family: 'Kumbh Sans', sans-serif;
  /* ✅ 0.9remから0.8remへ微調整。日本語との対比でより「洗練」された印象に */
  font-size: 18px;
  color: #eb5a0f;
  /* ✅ 英語はさらに広めのレタースペーシングで「エディトリアル感」を強調 */
  letter-spacing: 0.2em;
  margin-top: 12px;
  /* ✅ 日本語との間にしっかりとした空気感（余白）を作ります */
  font-weight: 800;
  text-transform: uppercase;
}

/* フォームグループ：間隔を広げて「情報の混雑」を防ぐ */
.form-group {
  position: relative;
  margin-bottom: 60px;
}

/* ラベル：日本語と英語の役割をはっきりさせる */
.form-group label {
  display: flex;
  flex-direction: row;
  /* 横並びにし、ベースラインを揃える */
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}

.form-group label span.lang-jp {
  font-size: 16px;
  font-weight: 800;
  /* 太くして読みやすく */
  color: #1a1a1a;
}

.form-group label span.lang-en {
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #888;
  /* 補助的な情報は少し薄く */
  text-transform: uppercase;
}

/* ✅ 入力フィールド：読みやすさの核心 */
.zen-form input,
.zen-form select,
.zen-form textarea {
  width: 100%;
  padding: 15px 0;
  border: none;
  border-bottom: 2px solid #ddd;
  /* 線を少しだけ濃く */
  background-color: transparent !important;
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 17px;
  /* 14pxから拡大：スマホでもズームせず読めるサイズ */
  color: #000;
  /* 入力文字は絶対的な黒 */
  transition: all 0.3s ease;
  outline: none;
  border-radius: 0;
}

/* フォーカス時に線が太くなり、オレンジに変わる（どこを入力中か明確にする） */
.zen-form input:focus,
.zen-form textarea:focus {
  border-bottom: 2px solid #eb5a0f;
  transform: translateY(-2px);
  /* 少しだけ浮いて「入力中」をアピール */
}

/* 未入力時のプレースホルダーを読みやすく */
::placeholder {
  color: #bbb;
  font-size: 14px;
}

/* 送信ボタン：確実に「押せる」とわからせるデザイン */
.form-submit {
  text-align: center;
  margin-top: 60px;
}

.submit-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 80px;
  min-width: 320px;
  border-radius: 100px;
  background-color: #eb5a0f;
  /* 最初から色を付けて「ボタン」と認識させる */
  color: #ffffff;
  border: 2px solid #eb5a0f;
  font-family: 'Kumbh Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.submit-btn:hover {
  background-color: #1a1a1a;
  /* 黒に変わって「締まった」印象に */
  border-color: #1a1a1a;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* スマホ対応：文字サイズを落としすぎない */
@media screen and (max-width: 480px) {
  .inquiry-title {
    font-size: 1.8rem;
  }

  .zen-form input,
  .zen-form textarea {
    font-size: 16px;
  }

  .submit-btn {
    width: 100%;
    min-width: auto;
  }
}

/* ========================================================
   🤖 AI Bug mobile bar
   ======================================================== */
#ryokan-bot-container {
  pointer-events: none !important;
}

#ryokan-bot-toggle,
#ryokan-bot-window,
#ryokan-bot-bubble-hint {
  pointer-events: auto !important;
}

.zen-selector-bar-mobile {
  z-index: 10005 !important;
}