/* =============================================
   SP対応共通CSS（sp-responsive.css）
   デザインカンプ_SP版_compressed.pdf 準拠
   ============================================= */

/* =============================================
   ── ハンバーガーボタン ──
   ============================================= */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 52px;
  height: 52px;
  background-color: #ffffff;
  border: 2px solid #0051a3;
  border-radius: 50%;
  cursor: pointer;
  z-index: 200;
  flex-shrink: 0;
}
.hamburger__line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #0051a3;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.active .hamburger__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger.active .hamburger__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =============================================
   ── モバイルドロワーメニュー ──
   ============================================= */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu__header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0, 81, 163, 0.15);
}
.mobile-menu__logo {
  height: 44px;
  width: auto;
}
.mobile-menu__close {
  width: 52px;
  height: 52px;
  background-color: #ffffff;
  border: 2px solid #0051a3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  color: #0051a3;
  flex-shrink: 0;
}
.mobile-menu__nav {
  width: 100%;
  padding: 100px 0 80px;
  overflow-y: auto;
}
.mobile-menu__list {
  list-style: none;
  padding: 0 20px;
  margin: 0;
}
.mobile-menu__item {
  border-bottom: 1px dashed rgba(0, 81, 163, 0.25);
}
.mobile-menu__item:first-child {
  border-top: 1px dashed rgba(0, 81, 163, 0.25);
}
.mobile-menu__link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 8px;
  text-decoration: none;
  color: #0051a3;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  transition: opacity 0.2s;
}
.mobile-menu__link:hover {
  opacity: 0.7;
}
.mobile-menu__icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}
.mobile-menu__text {
  line-height: 1.4;
}
/* メニュー下部ボタン */
.mobile-menu__btns {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(0, 81, 163, 0.15);
}
.mobile-menu__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px 8px;
  text-decoration: none;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
}
.mobile-menu__btn--reserve {
  background-color: #285b9b;
  color: #ffffff;
}
.mobile-menu__btn--contact {
  background-color: #ffffff;
  color: #285b9b;
  border-left: 1px solid rgba(0, 81, 163, 0.15);
}
.mobile-menu__btn-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.snapwidget--sp { display: none; }
.snapwidget--pc { display: block; }



/* =============================================
   ── SP 共通ブレークポイント（768px以下）──
   ============================================= */
@media (max-width: 768px) {

  /* ── ヘッダー ── */
  .site-header {
    top: 12px;
    padding: 0 16px;
    align-items: center;
  }
  .header-left {
    padding: 8px 14px;
    border-radius: 40px;
  }
  .logo-img {
    height: 44px;
  }
  /* PC用ナビを非表示 */
  .header-right {
    display: none;
  }
  /* ハンバーガー表示 */
  .hamburger {
    display: flex;
  }
  /* モバイルメニュー表示 */
  .mobile-menu {
    display: flex;
  }

  /* ── サイドメニュー（デスクトップ）非表示 ── */
  .side-menu {
    display: none;
  }

  /* ── SP固定下部CTAバー ── */
  .sp-cta-bar {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
  }

  /* ── ファーストビュー ── */
  .first-view {
    height: 100svh;
    min-height: 500px;
  }
  .fv-catchcopy {
    font-size: 20px;
    line-height: 1.6;
  }
  .fv-text-box {
    bottom: 80px;
    left: 20px;
    right: 20px;
  }

  /* ── 天気バー ── */
  .weather-bar {
    padding: 10px 16px;
    justify-content: center;
  }
  .weather-btn {
    font-size: 12px;
    padding: 6px 16px;
  }
  .weather-text {
    font-size: 11px;
    margin: 0 8px;
  }

  /* ── NEWS エリア ── */
  .news-area {
    padding-bottom: 60px;
  }
  .inner-container {
    padding: 0 20px;
  }
  .news-item a {
    padding: 14px 16px;
    flex-wrap: wrap;
    gap: 6px;
  }
.news-date {
  font-family: 'Dela Gothic One', sans-serif;
  font-weight: normal;
  color: #285b9b;
  font-size: 14px;
  width: 5em;
  flex-shrink: 0;
  line-height: 1.5;
  white-space: normal;
  word-break: break-all;
}
  .news-title {
    font-size: 16px;
    width: 100%;
  }
  .news-icon {
    display: none;
  }
  .btn-news-list {
    padding: 12px 40px;
    font-size: 14px;
  }

  /* ── ABOUT US カード ── */
  .about-us__cards {
    grid-template-columns: 1fr;
    padding: 28px 20px;
    gap: 24px;
  }
  .about-us__title { font-size: 36px; }
  .about-us__inner { padding: 0 20px; }

  /* ── facility セクション ── */
  .facility__inner { padding: 0 20px; max-width: 100%; }
  .facility__title { font-size: 36px; }
  .facility__row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .facility__row--reverse .facility__img-wrap {
    order: -1;
  }
  .facility__deco-img { display: none; }
  .facility__btn {
    width: 100%;
    text-align: center;
    padding: 14px 0;
  }

  /* ── HOURS ── */
  .hours__title { font-size: 30px; }
  .hours__category-text { font-size: 20px; }
  .price-block { padding: 24px 16px; }
  .price-block__heading { font-size: 22px; }
  .price-table { min-width: 340px; }

  /* ── ACCESS ── */
  .access__info-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .access__item-label { font-size: 20px; }
  .access__phone { font-size: 22px; }
  .access__parking-block { padding: 24px 16px; }

  /* ── Q&A ── */
  .qa__tab-btn {
    font-size: 12px;
    padding: 10px 8px;
  }
  .qa__panel { padding: 20px 12px 28px; }
  .qa__q-text { font-size: 14px; }
  .qa__answer { padding: 0 12px 20px 48px; font-size: 14px; }

  /* ── Instagram ── */
  .instagram__heading { font-size: 36px; }
  .instagram__grid { overflow: hidden; }
  .instagram__grid iframe {
    width: 100% !important;
    height: 200px !important;
  }

  /* ── Footer ── */
  .footer {
    padding: 40px 0 0;
    padding-bottom: 80px; /* SP CTA bar 分 */
  }
  .footer__inner {
    flex-direction: column;
    padding: 0 20px 40px;
    gap: 28px;
  }
  .footer__divider {
    width: 100%;
    height: 1px;
  }
  .footer__logos {
    flex-direction: column;
    gap: 16px;
  }
  .footer__logo-wrap {
    height: auto;
    padding: 10px 16px;
  }
  .footer__logo-img { height: 60px; }
  .footer__address-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .footer__btns {
    flex-direction: column;
    gap: 12px;
  }
  .footer__btn-img-wrap {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
  .footer__btn-image { width: 100%; }
  .footer__right {
    width: 100%;
    padding-left: 0;
    gap: 32px;
  }
  .footer__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
  }
  .footer__nav-col {
    gap: 16px;
  }
  .footer__nav-link { font-size: 14px; }
  .footer__copy {
    transform: none;
    text-align: center;
    font-size: 12px;
  }

  /* ── スクロールトップボタン ── */
  .scroll-top {
    bottom: 88px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

    /* ── 料金テーブル SP対応 ── */
  .price-block {
    padding: 24px 0 20px;
    overflow-x: visible;
  }
  .price-table {
    display: none; /* テーブルを非表示にしてSP用に切り替え */
  }
  .price-sp {
    display: block !important;
  }

.access__map {
    border-radius: 0;
    margin-left: calc(-1 * var(--container-padding, 20px));
    margin-right: calc(-1 * var(--container-padding, 20px));
    width: 100vw;
    max-width: 100vw;
    border: none;
  }
  .access__map iframe {
    width: 100%;
    height: 250px;
    display: block;
  }


  /* ── Q&A ── */
  .qa__question {
    gap: 12px;
    padding: 16px;
    align-items: flex-start;
  }
  .qa__q-mark {
    font-size: 24px;
    width: 28px;
    flex-shrink: 0;
  }
  .qa__q-text {
    font-size: 14px;
    line-height: 1.6;
  }
  .qa__chevron {
    flex-shrink: 0;
    margin-top: 2px;
  }
  .qa__answer {
    padding: 0 16px 16px 56px;
    font-size: 14px;
  }

  .qa__q-mark {
    font-family: 'Dela Gothic One', sans-serif !important;
    font-size: 24px;
    width: 28px;
    flex-shrink: 0;
  }
  .qa__question {
    gap: 12px;
    padding: 16px;
    align-items: flex-start;
  }
  .qa__q-text {
    font-size: 14px;
    line-height: 1.6;
  }
  .qa__chevron {
    flex-shrink: 0;
    margin-top: 2px;
  }
  .qa__answer {
    padding: 0 16px 16px 56px;
    font-size: 14px;
  }

  /* ── Q&A タブ ── */
  .qa__tabs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4px;
    align-items: end;
  }
  .qa__tab-btn {
    font-size: 11px;
    padding: 10px 4px;
    border-radius: 10px 10px 0 0;
    line-height: 1.4;
    word-break: keep-all;
    text-align: center;
  }

  .qa__answer {
    padding: 0 16px 16px 16px;
  }
  .qa__answer-mark {
    font-size: 22px;
    margin-right: 8px;
    vertical-align: baseline;
  }

  /* ── Instagram グリッド 2×2 ── */
  .instagram__grid iframe {
    width: 100% !important;
    height: 510px !important;
  }

  .snapwidget--pc { display: none; }
  .snapwidget--sp { display: block; width: 100% !important; }

  .footer__logos {
    align-items: flex-start;
  }
  .footer__logo-wrap {
    justify-content: flex-start;
  }
  .footer__address-grid {
    text-align: left;
  }

  .footer__btn-image {
    width: 100%;
    max-width: 260px;
  }
  .footer__btn-img-wrap {
    display: flex;
    justify-content: flex-start;
  }

/* フッターナビリンクのみ非表示 */
  .footer__nav {
    display: none;
  }
  .footer__right {
    gap: 0;
  }

}/* end @media 768px */



/* =============================================
   ── SP固定下部CTAバー（共通）──
   PC時は非表示
   ============================================= */
.sp-cta-bar {
  display: none; /* PC時非表示、SP時は上のメディアクエリで表示 */
}
.sp-cta-bar__btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 8px;
  text-decoration: none;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  writing-mode: horizontal-tb; /* 横書きに戻す */
}
.sp-cta-bar__btn--reserve {
  background-color: #285b9b;
  color: #ffffff;
}
.sp-cta-bar__btn--contact {
  background-color: #ffffff;
  color: #285b9b;
  border-left: 1px solid rgba(0, 81, 163, 0.2);
}
.sp-cta-bar__icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* =============================================
   ── 480px以下の追加調整 ──
   ============================================= */
@media (max-width: 480px) {
  .logo-img { height: 38px; }
  .fv-catchcopy { font-size: 18px; }
  .about-us__title { font-size: 28px; }
  .facility__title { font-size: 28px; }
  .hours__title { font-size: 24px; }
  .footer__nav { grid-template-columns: 1fr; gap: 12px; }
  .footer__nav-col { gap: 12px; }
}

/* =============================================
   FVスライド SP用画像切り替え
   ============================================= */
@media (max-width: 768px) {
  /* 1枚目：宿泊 */
.fv-slide:nth-child(1) {
  background-image: url('../images/top_hotel_sp.jpg') !important;
}
.fv-slide:nth-child(2) {
  background-image: url('../images/top_onsen_sp.jpg') !important;
}
.fv-slide:nth-child(3) {
  background-image: url('../images/top_restaurant_sp.jpg') !important;
}
}


/* =============================================
   ホテルオープンバナー SP用画像切り替え
   ============================================= */
.banner-img--sp {
  display: none !important;
}
 
@media (max-width: 768px) {
  .banner-img--pc {
    display: none !important;
  }
  .banner-img--sp {
    display: block !important;
  }
}

/* ── SP料金カード スタイル ── */
  .price-sp__block {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    border: 2px solid #0051a3;
  }
  .price-sp__category {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.15em;
    color: #ffffff;
    padding: 12px 16px;
    text-align: center;
  }
  .price-sp__block--onsen .price-sp__category {
    background-color: #0051a3;
  }
  .price-sp__block--hotel .price-sp__category {
    background-color: #ab0000;
  }
  .price-sp__group {
    padding: 12px 16px;
    border-top: 1px solid #0051a3;
  }
  .price-sp__label {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #0051a3;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
  }
  .price-sp__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px dashed #c0d0e0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    color: #4f4f4f;
    letter-spacing: 0.05em;
  }
  .price-sp__row:last-of-type {
    border-bottom: none;
  }
  .price-sp__row--center {
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #0051a3;
  }
  .price-sp__note {
    font-size: 12px;
    color: #0051a3;
    margin-top: 6px;
    letter-spacing: 0.05em;
  }
