/*
PC・SP 共通CSS
*/
@charset "UTF-8";


.l-contained{
  max-width:1280px;
  margin:0 auto;
  padding:0 16px;
}

/* =============================================================
   Nearby / Related Hotels（PC・SP 共通）
   - SP：.nearby-hotels / .nearhotel-list / .hotel-card ...
   - PC：.related-hotels / .related-hotels-list / .related-hotel ...
   ============================================================= */

/* --- セクション共通（余白だけ軽く合わせる） --- */
.nearby-hotels,
.related-hotels {
  margin: 30px auto;
  padding: 0 0 15px;
}

/* 見出し（もともと .section-title が各テーマにあるので被らないよう最低限） */
.nearby-hotels .section-title,
.related-hotels .section-title,
.nearby-title {
  margin: 0 0 20px;
}

/* リストのリセット */
.nearhotel-list,
.related-hotels-list {
  list-style: none;
  margin: 0;
  padding: 0;
}






/* =============================================================
   ▼ SP版：近隣ホテル（/mobile テーマ・スライダー仕様）
   ============================================================= */

/* セクション本体（余白はレイアウト側で好みで） */
.nearby-hotels {
  /* 必要ならここに margin/padding を追加 */
}

/* 見出し（元の .nearby-title 相当） */
.near-hotels-title,
.nearby-hotels .section-title {
  background: #5d422b;
  color: #fff;
  padding: 10px;
  font-size: 18px;
  margin: 0 0 20px;
  text-align: center;
}

/* ---------------------------
   スライダー全体＋背景ダミー
   --------------------------- */

/* ラッパーはそのまま（位置の基準用） */
.near-hotels-slider-wrapper {
  position: relative;
  padding: 12px 0 24px;
}

/* 背景：100vw */
.near-hotels-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  opacity: 1;
}

/* スライダー本体＆矢印は今まで通りコンテナ内 */
.near-hotels-swiper,
.near-hotels-nav {
  position: relative;
  z-index: 1;
}


/* ★ スライダー本体も 100vw に広げる */
.near-hotels-swiper {
  position: relative;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: 1;
  padding: 8px 8px 24px;
}

/* ---------------------------
   スライド1枚分レイアウト
   --------------------------- */

/* スライドは画面幅いっぱい */
.near-hotels-swiper .swiper-slide {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* カードはその中で 70% 幅・中央寄せ */
.nearby-hotels .near-hotel-card,
.nearby-hotels .hotel-card {
  display: block;
  width: 70%;
  max-width: 520px;
  margin: 0 auto;
  background: #fdfdfd;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* 画像部分 */
.nearby-hotels .near-hotel-img-wrap {
  position: relative;
  overflow: hidden;
}

.nearby-hotels .near-hotel-img-wrap img,
.nearby-hotels .hotel-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* テキスト部分（ベース背景は薄グレー） */
.nearby-hotels .near-hotel-body {
  padding: 12px 12px 14px;
  background: #f2f2f2;
  transition: background-color 0.15s ease;
}

/* ホテル名 */
.nearby-hotels .near-hotel-name,
.nearby-hotels .hotel-name {
  font-weight: bold;
  margin: 0 0 6px;
  font-size: 16px;
  text-align: center;
}

/* アクセス文 */
.nearby-hotels .near-hotel-access,
.nearby-hotels .hotel-access {
  font-size: 14px;
  margin: 8px 0 0;
  line-height: 1.5;
}

/* 「詳細を見る」などボタン風ラベル */
.nearby-hotels .near-hotel-label,
.nearby-hotels .see-all {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  padding: 4px 14px;
  border-radius: 999px;
  border: 1px solid #5d422b;
  color: #5d422b;
}

/* ---------------------------
   押し込み（タップ）時のフィードバック
   --------------------------- */

/* カード全体のボコッとアニメ */
.nearby-hotels .near-hotel-card:active,
.nearby-hotels .hotel-card:active {
  transform: translateY(3px) scale(0.97);
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
  opacity: 0.9;
}

/* 押したときにテキストエリアだけ薄オレンジに */
.nearby-hotels .near-hotel-card:active .near-hotel-body,
.nearby-hotels .hotel-card:active .near-hotel-body {
  background: #fbe3c3;
}

/* ---------------------------
   左右ナビボタン
   --------------------------- */

/* 矢印：画面幅基準で左右配置 */
.near-hotels-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: #5d422b;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

/* ここも 100vw 基準にあわせる */
.near-hotels-prev {
  left: calc(50% - 50vw + 8px);
}
.near-hotels-next {
  right: calc(50% - 50vw + 8px);
}

.near-hotels-nav-icon {
  font-size: 30px;
  line-height: 1;
  color: #ffffff;
}

/* 矢印押し込み */
.near-hotels-nav:active {
  transform: translateY(-50%) scale(0.95);
}

/* 念のため旧 .nearhotel-list が残っていても影響最小に */
.nearhotel-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nearhotel-list li {
  margin: 0;
  padding: 0;
}
/* 近隣ホテルカード内の文字色は常に黒に固定 */
.nearby-hotels .near-hotel-card,
.nearby-hotels .near-hotel-card:link,
.nearby-hotels .near-hotel-card:visited,
.nearby-hotels .near-hotel-card:hover,
.nearby-hotels .near-hotel-card:active {
  color: #000;
  text-decoration: none;
}

/* 念のためテキスト要素にも明示しておく */
.nearby-hotels .near-hotel-name,
.nearby-hotels .hotel-name,
.nearby-hotels .near-hotel-access,
.nearby-hotels .hotel-access,
.nearby-hotels .near-hotel-label,
.nearby-hotels .see-all {
  color: #000;
}









/* =============================================================
   ▼ PC版：Related Hotels（/pc テーマ）
   ============================================================= */

.related-hotels {
  max-width: 1280px;
  margin: 0 auto 36px;
  padding: 0;
}

.related-hotels-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 0 auto;
  padding: 0 15px;
}

.related-hotel {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 32px 18px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background .15s, box-shadow .15s;
}

.related-hotel:hover {
  background: #f2e5d4;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}

.related-hotel-title {
  font-size: 1rem;
  color: #765624;
  font-weight: normal;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.related-hotel img {
  width: 100%;
  max-width: 280px;
  height: auto;
  aspect-ratio: 280 / 260;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.related-hotel-desc {
  font-size: 1rem;
  color: #473410;
  margin-top: 16px;
  letter-spacing: 1px;
}

/* カード全面クリック用オーバーレイリンク */
.related-hotel-link {
  position: absolute;
  inset: 0;
  z-index: 3;  /* ★ 前面に持ち上げる */
  text-decoration: none !important;
  color: transparent;
  background: transparent;
}

/* 中身は背面＋見た目用 */
.related-hotel > *:not(.related-hotel-link):not(.related-hotel-external) {
  position: relative;
  z-index: 1;
}

/* ================================
   PC版 Related Hotels：右下アイコン＋ホバー説明
   ================================ */

/* 右下アイコン配置（PC版 Related Hotels 用） */
.related-hotel .related-hotel-external {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;           /* アイコンのサイズ */
  color: #5d422b;            /* 矢印色（お好みで） */
  pointer-events: none;      /* アイコン自体はクリック判定しない */
  z-index: 4;
  box-shadow: 0 2px 6px rgba(0,0,0,.18);
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

/* brand-footer 側の external-icon に影響しないように scope */
.related-hotel .related-hotel-external .fa-up-right-from-square {
  font-size: 0.9em;          /* 中のFAアイコン微調整 */
}

/* カードホバー時にアイコン少し強調 */
.related-hotel:hover .related-hotel-external {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,.22);
  opacity: 1;
}

/* ===== PC ホバー時だけ「クリックで～」メッセージを出す ===== */
@media (hover: hover) and (pointer: fine) {

  .related-hotel::before {
    content: "クリックで店舗ページに移動します";
    position: absolute;
    left: 50%;
    top: 30px;                    /* カード上端からの距離（調整可） */
    transform: translate(-50%, -110%); 
    max-width: 260px;
    padding: 4px 8px;
    font-size: 11px;
    line-height: 1.4;
    color: #fff;
    background: rgba(0,0,0,.8);
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,.25);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s ease, transform .15s ease;
  }

  .related-hotel:hover::before {
    opacity: 1;
    transform: translate(-50%, -100%);  /* ちょっとだけ下に寄せる */
  }
}



/* =============================================================
   朝食付きプランボタン（施設・サービス／朝食）
   ============================================================= */
.svc-breakfast-plan-btn{
  margin: 40px 0 30px;
  display: flex;
  justify-content: left;
}

/* ボタン本体 */
.svc-breakfast-plan-btn a{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 320px;
  max-width: 720px;
  padding: 18px 40px;  /* 上下の余白だけ調整してOK */

  border-radius: 8px;   /* 角丸大きめならこのまま */
  background: #ff8600;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;

  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

/* ホバー時（あれば好みで） */
.svc-breakfast-plan-btn a:hover,
.svc-breakfast-plan-btn a:focus-visible{
  background: #ff9930;
  text-decoration: none;
}




/* =========================
   案内ブロック（trend_notice 用）
   ========================= */

.trend-notice .tc-notice {
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: #ffffff;
  border: 1px solid #e5e2dd;
  border-radius: 4px;
  padding: 24px 24px 32px;
  margin: 24px 0;
  line-height: 1.8;
  font-size: 0.95rem;
}

/* タイトルバー共通 */
.trend-notice .tc-notice__title {
  text-align: center;
  padding: 10px 16px;
  margin: -24px -24px 24px;
  border-radius: 4px 4px 0 0;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* 通常のお知らせ */
.trend-notice .tc-notice--info .tc-notice__title {
  background: #f4be5d;   /* スクショっぽい落ち着いた黄色 */
  color: #4a3a2a;
}

/* 重要なお知らせ */
.trend-notice .tc-notice--alert .tc-notice__title {
  background: #d9534f;   /* 赤系 */
  color: #ffffff;
}

/* 本文 */
.trend-notice .tc-notice__body {
  text-align: center;
}
@media (max-width: 768px) {
  .trend-notice .tc-notice__body {
  text-align: left;
}
}

.trend-notice .tc-notice__body p {
  margin: 0 0 0.8em;
}

/* strong をしっかり太く */
.trend-notice .tc-notice__body strong {
  font-weight: 700;
}

/* 表（あれば） */
.trend-notice .tc-notice-table-wrap {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.trend-notice .tc-notice-table {
  width: 100%;
  max-width: 520px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.trend-notice .tc-notice-table th,
.trend-notice .tc-notice-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #ece8e2;
  text-align: center;
}

.trend-notice .tc-notice-table thead th {
  background: #f4f1ed;
  font-weight: 700;
}

.trend-notice .tc-notice-table tbody tr:nth-child(even) {
  background: #faf8f5;
}

/* 下部の注釈 */
.trend-notice .tc-notice__note {
  margin-top: 6px;
  font-size: 0.8rem;
  text-align: center;
}

/* スマホ調整 */
@media (max-width: 768px) {
  .trend-notice .tc-notice {
    padding: 18px 14px 24px;
  }
  .trend-notice .tc-notice__title {
    margin: -18px -14px 18px;
    font-size: 0.9rem;
  }
}
/* =========================
   案内ブロック（trend_notice 用）
   ========================= */

.trend-notice .tc-notice {
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: #ffffff;
  border: 1px solid #e5e2dd;
  border-radius: 4px;
  padding: 24px 24px 32px;
  margin: 24px 0;
  line-height: 1.8;
  font-size: 0.95rem;
}

/* タイトルバー共通 */
.trend-notice .tc-notice__title {
  text-align: center;
  padding: 10px 16px;
  margin: -24px -24px 24px;
  border-radius: 4px 4px 0 0;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* 通常のお知らせ */
.trend-notice .tc-notice--info .tc-notice__title {
  background: #f4be5d;   /* スクショっぽい落ち着いた黄色 */
  color: #4a3a2a;
}

/* 重要なお知らせ */
.trend-notice .tc-notice--alert .tc-notice__title {
  background: #d9534f;   /* 赤系 */
  color: #ffffff;
}

/* 本文 */
.trend-notice .tc-notice__body {
  text-align: center;
}

.trend-notice .tc-notice__body p {
  margin: 0 0 0.8em;
}

/* strong をしっかり太く */
.trend-notice .tc-notice__body strong {
  font-weight: 700;
}

/* 表（あれば） */
.trend-notice .tc-notice-table-wrap {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.trend-notice .tc-notice-table {
  width: 100%;
  max-width: 520px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.trend-notice .tc-notice-table th,
.trend-notice .tc-notice-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #ece8e2;
  text-align: center;
}

.trend-notice .tc-notice-table thead th {
  background: #f4f1ed;
  font-weight: 700;
}

.trend-notice .tc-notice-table tbody tr:nth-child(even) {
  background: #faf8f5;
}

/* 下部の注釈 */
.trend-notice .tc-notice__note {
  margin-top: 6px;
  font-size: 0.8rem;
  text-align: center;
}

/* スマホ調整 */
@media (max-width: 768px) {
  .trend-notice .tc-notice {
    padding: 18px 14px 24px;
  }
  .trend-notice .tc-notice__title {
    margin: -18px -14px 18px;
    font-size: 0.9rem;
  }
}


/* =========================
   パンフレットページ用ダウンロードボタン
   ========================= */

/* ダウンロードボタン＆プラン一覧ボタン 共通スタイル */
.pamphlet-cta-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 16px 0 20px;
  text-align: initial; /* 念のため */
}

/* ダウンロードボタン＆プラン一覧ボタン 共通スタイル */
.pamphlet-download-btn,
.pamphlet-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  min-width: 240px;
  max-width: 520px;
  border-radius: 12px;
  background: #ff7b15;
  border: 1px solid #ff7b15;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

/* ★ホバー時：ヘッダー／フッターのプラン一覧ボタンと同じ指定に */
.pamphlet-download-btn:hover,
.pamphlet-download-btn:focus-visible,
.pamphlet-cta:hover,
.pamphlet-cta:focus-visible {
  text-decoration: none;
  background: #F9C07D;
  border: 1px solid #F9C07D;
  color: #000;

  /* 以前の指定を打ち消しておく */
  transform: none;
  box-shadow: none;
  opacity: 1;
}

/* ダウンロード＆プラン一覧ボタンは下線ナシにする */
.pamphlet-download-btn,
.pamphlet-download-btn:hover,
.pamphlet-download-btn:focus-visible,
.pamphlet-cta,
.pamphlet-cta:hover,
.pamphlet-cta:focus-visible {
  text-decoration: none;
}



