/* =====================================================
   ドライブ記事ページ — index.css
   Figma: 施策1 ドライブ記事見直し UI (SP_close / 1980:16635)
============================= */

/* ===== CSS Variables ===== */
:root {
  --color-primary: #eb0a1e;
  --color-surface: #ffffff;
  --color-bg-beige: #f7f6f4;
  --color-bg-border: #e0e0e0;
  --color-bg-brown: #a0968b;
  --color-bg-brown-light: #f7f6f4;
  --color-line-beige: #e2e0dc;
  --color-accent-yellow: #f9e76b;
  --color-text: #000000;
  --color-text-caption: #666666;
  --color-text-link: #286cd8;
  --color-bg-red: #fcdadd;
  --color-movilink-text: #6092d1;
  --color-movilink-bg: #fffbf2;
  --color-floating-banner-bg: rgba(50, 51, 51, 0.65);
  --tl-content-width-sp: 87%;
  --tl-content-width-pc: 988px;
  --tl-card-content-width-pc: 948px;
  --tl-line-left: 18px;

  /* layout */
  --page-max-width: 1080px;
  --content-padding: 10px;

  /* shadow */
  --shadow-card: 0 0 12px rgba(0, 0, 0, 0.12);
  --shadow-card-sm: 0 0 8px rgba(0, 0, 0, 0.12);
}

/* ===== Reset / Base ===== */
.section_inner {
  width: 94.667%;
  margin-inline: auto;
}

.breadcrumbs li {
  display: none;
}
.breadcrumbs li:nth-of-type(2) {
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .section_inner {
    max-width: var(--page-max-width);
  }
  .breadcrumbs li {
    display: inline-block;
  }
  :root {
    --tl-line-left: 30px;
  }
}

/* ===================================================
   LAYER: Object（再利用レイアウト）— o-* プレフィックス
   NOTE: 未使用の o-cluster 系と o-box modifier を整理済み。
=================================================== */

.o-box {
  padding: 1.5em;
}

/* --- 円形ナビゲーションボタン共通 ---
   使用箇所: c-hotels__nav-btn, c-recommend-drive__nav-btn
   差分（背景色・border・shadow）はコンポーネント側で上書きする */
.o-nav-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: opacity 0.2s;
}

.o-nav-btn[aria-disabled="true"],
.o-nav-btn.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}

.o-nav-btn::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--color-text);
  border-right: 2px solid var(--color-text);
}

.o-nav-btn--prev::after {
  transform: rotate(-135deg);
  margin-left: 3px;
}

.o-nav-btn--next::after {
  transform: rotate(45deg);
  margin-right: 3px;
}

/* --- タイムライン要素の共通骨格 ---
   使用箇所: c-tl-spot, c-tl-pickup, c-tl-stopover, c-tl-transit */
.o-tl-section {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* --- タイムライン body の幅制限 ---
   使用箇所: c-tl-spot__body, c-pickup-card__body, c-tl-pickup__heading
             c-tl-stopover__body, c-hotel__body, c-tl-transit__body */
.o-tl-body {
  max-width: var(--tl-content-width-sp);
  width: 100%;
}

@media screen and (min-width: 768px) {
  .o-tl-body {
    max-width: var(--tl-content-width-pc);
  }
}

/* ===================================================
   LAYER: Utility（ユーティリティ）— u-* プレフィックス
=================================================== */

.u-hidden {
  display: none;
}

.u-tl-pd-bm {
  padding-bottom: 12px;
}

@media screen and (min-width: 768px) {
  .u-tl-pd-bm {
    padding-bottom: 24px;
  }
}

/* ===================================================
   LAYER: Skin（見た目）— s-* プレフィックス
=================================================== */

.s-surface {
  background-color: var(--color-surface);
}
.s-bg-beige {
  background-color: var(--color-bg-brown-light);
}
.s-bg-brown {
  background-color: var(--color-bg-brown);
}
.s-bg-red {
  background-color: var(--color-bg-red);
}
.s-text-primary {
  color: var(--color-primary);
}
.s-text-caption {
  color: var(--color-text-caption);
}

.s-border-beige {
  border: 1px solid var(--color-line-beige);
}
.s-border-beige-top {
  border-top: 1px solid var(--color-line-beige);
}

/* ===================================================
   LAYER: State（状態）— is-* プレフィックス
=================================================== */

/* ===================================================
   SECTION: MV ヒーロー
=================================================== */
.c-mv {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.c-mv__bg {
  position: absolute;
  inset: 0;
  line-height: 0;
}

.c-mv__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-mv__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(255, 255, 255, 0) 30.92%
  );
}

.c-mv__region {
  position: absolute;
  top: 12px;
  left: var(--content-padding);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.c-mv__tag {
  position: absolute;
  bottom: 12px;
  left: var(--content-padding);
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 4px;
  padding: 4px 8px;
  z-index: 1;
}

.c-mv__tag-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 300;
}

.c-mv__tag-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.c-mv__tag-icon--time {
  width: 12px;
  height: 12px;
}

.c-mv__tag-num {
  font-size: 12px;
  font-weight: 300;
  line-height: 12px;
  color: var(--color-text);
}

.c-mv__tag-value--large {
  font-size: 14px;
  line-height: 14px;
}

.c-mv__tag-prefix,
.c-mv__tag-unit {
  font-size: 12px;
  font-weight: 300;
  color: var(--color-text);
}

@media screen and (min-width: 768px) {
  .c-mv {
    max-width: var(--page-max-width);
    margin-inline: auto;
    height: 256px;
    margin-top: 24px;
  }
  .c-mv__region {
    font-size: 24px;
    left: 40px;
    top: 20px;
  }
  .c-mv__tag {
    left: 40px;
    bottom: 12px;
  }
}

/* ===================================================
   SECTION: 全体レイアウト
=================================================== */

.o-route-wrap {
  max-width: var(--page-max-width);
  margin-inline: auto;
  padding: 0 var(--content-padding) 40px;
}

/* ===================================================
   SECTION: DESC（記事ヘッダー）
=================================================== */
.c-desc {
  padding: 16px var(--content-padding);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-desc__tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.c-desc__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background: var(--color-surface);
  border-radius: 32px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-text);
  white-space: nowrap;
}

.c-desc__date-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  margin-top: -8px;
}

.c-desc__date-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  padding-bottom: 2px;
  align-self: center;
}

.c-desc__date {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--color-text);
}

.c-desc__title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
  text-align: left;
}

.c-desc__lead {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-text);
  text-align: left;
}

.c-desc__anchors {
  display: flex;
  gap: 8px;
  align-items: center;
}

.c-desc__anchor-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px;
  background: var(--color-surface);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s;
}

.c-desc__anchor-btn:hover {
  opacity: 0.7;
}

.c-desc__anchor-btn::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: url("/-/media/tfc/ts3travel/file/common/img/ico/arrow_btm_g_b.svg")
    no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}

.c-desc__anchor-icon {
  display: none;
}

@media screen and (min-width: 768px) {
  .c-desc {
    max-width: var(--page-max-width);
    margin-inline: auto;
    padding-block: 24px;
    padding-inline: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 16px;
    column-gap: 0;
  }
  .c-desc__tag-row {
    grid-column: 1;
    grid-row: 1;
    gap: 12px;
    align-self: center;
  }
  .c-desc__date-row {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-end;
    align-self: center;
    margin-top: 0;
  }
  .c-desc__title {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 36px;
  }
  .c-desc__lead {
    grid-column: 1 / -1;
    grid-row: 3;
    font-size: 16px;
  }
  .c-desc__anchors {
    margin-top: 8px;
    grid-column: 1 / -1;
    grid-row: 4;
    gap: 16px;
  }
  .c-desc__anchor-btn {
    padding: 12px 0 8px;
    font-size: 14px;
  }
}

/* ===================================================
   SECTION: ドライブルートカード
=================================================== */
.c-route-card {
  background: var(--color-surface);
  border-radius: 8px;
  padding: 16px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  width: var(--tl-content-width-sp);
  margin-inline: auto;
}

.c-route-card__heading {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
  text-align: center;
  white-space: nowrap;
}

.c-route-card__heading-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding-bottom: 16px;
}

.c-route-card__japan-map,
.c-route-card__connector {
  display: none;
}

.c-route-card__map-icon {
  display: none;
}

.c-route-card__name-wrap {
  align-self: center;
}

.c-route-card__name {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
  background: linear-gradient(transparent 60%, var(--color-accent-yellow) 60%);
}

.c-route-card__map-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.c-route-card__map {
  position: relative;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 295 / 222;
}

.c-route-card__map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.c-route-card__map-btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--color-bg-brown);
  border-radius: 30px;
  padding: 4px 8px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.c-route-card__map-btn:hover {
  opacity: 0.8;
}

.c-route-card__map-btn-icon {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  background: url(/-/media/tfc/ts3travel/file/common/img/ico/ico_pin_w.svg)
    center no-repeat;
  background-size: contain;
}

.c-route-card__map-btn__text {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.6;
  color: #fff;
  white-space: nowrap;
}

.c-route-card__caption {
  display: flex;
  align-items: flex-start;
  gap: 0;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--color-primary);
  text-align: left;
}

.c-route-card__right-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  order: 1;
}

.c-route-card__caption--pc {
  display: none;
}

.c-route-card__caption--sp {
  order: 2;
  width: 100%;
}

.c-route-card__caption-symbol {
  white-space: nowrap;
}

.c-route-card__list {
  list-style: none;
  padding-top: 20px;
  padding-bottom: 20px;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  order: 3;
}

.c-route-card__list-item {
  padding-bottom: 4px;
  border-bottom: 2px solid var(--color-line-beige);
}

.c-route-card__list-item--last {
  border-bottom: none;
}

.c-route-card__list-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}

.c-route-card__list-link:hover {
  opacity: 0.7;
}

/* キーボード操作時：フォーカスリングを表示 */
.c-route-card__list-link:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: 2px;
  border-radius: 4px;
}

.c-route-card__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  flex-shrink: 0;
}

.c-route-card__spot-name {
  flex: 1;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--color-text);
  text-align: left;
}

.c-route-card__arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: url(/-/media/tfc/ts3travel/file/common/img/ico/arrow_btm_g_b.svg)
    no-repeat center;
  background-size: contain;
}

/* ===================================================
   moviLink — SP版（Figma新デザイン：カード＋ピルボタン）
=================================================== */

.c-route-card__movilink--sp {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  order: 4;
}

.c-route-card__movilink-card {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px;
  background-color: var(--color-movilink-bg);
  border: 1px solid var(--color-movilink-text);
  border-radius: 4px;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

.c-route-card__movilink-card:hover {
  opacity: 0.8;
}

.c-route-card__movilink-card:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: 2px;
  border-radius: 4px;
}

.c-route-card__movilink-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.c-route-card__movilink-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.c-route-card__movilink-card-title {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.33;
  color: var(--color-movilink-text);
  text-align: center;
  margin: 0;
}

.c-route-card__movilink-card-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 144px;
  padding: 2px 0;
  background-color: var(--color-movilink-text);
  border-radius: 33px;
}

.c-route-card__movilink-card-btn-text {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.33;
  color: #ffffff;
  white-space: nowrap;
}

.c-route-card__movilink-card-btn-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  width: 12px;
  height: 12px;
}

.c-route-card__movilink-sp-note {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  font-size: 10px;
  font-weight: 300;
  line-height: 1.3;
  color: var(--color-text-caption);
  text-align: left;
}

/* ===================================================
   moviLink — PC版（既存デザイン：アイコン＋QR＋タイトル横並び）
=================================================== */

.c-route-card__movilink--pc {
  display: none;
}

.c-route-card__movilink-pc-card {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 6px;
  background-color: var(--color-movilink-bg);
  border: 1px solid var(--color-movilink-text);
  border-radius: 4px;
  box-sizing: border-box;
}

.c-route-card__movilink-pc-icon {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.c-route-card__movilink-pc-qr {
  width: 65px;
  height: 65px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

.c-route-card__movilink-pc-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.c-route-card__movilink-pc-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-movilink-text);
  text-align: left;
  margin: 0;
}

.c-route-card__movilink-pc-note {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  font-size: 10px;
  font-weight: 300;
  line-height: 1.3;
  color: var(--color-text-caption);
  text-align: left;
}

/* ===================================================
   3点ドット区切り
=================================================== */
.u-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  margin-top: -20px;
}

.u-dots__dot {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-bg-brown);
}

.u-dots__pc-only {
  display: none;
}

@media screen and (min-width: 768px) {
  .u-dots__pc-only {
    display: block;
  }
  .u-hidden-pc {
    display: none;
  }
}

/* ===================================================
   PC対応 — ルートカード (768px〜)
=================================================== */
@media screen and (min-width: 768px) {
  .c-route-card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 400px));
    grid-template-rows: auto auto auto;
    column-gap: 48px;
    row-gap: 0;
    align-items: start;
    padding: 32px 40px;
    background: var(--color-surface);
    border-radius: 8px;
    margin-top: 16px;
    justify-content: center;
    box-sizing: border-box;
    max-width: 1000px;
  }
  .c-route-card__heading-area {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    height: 172px;
    width: 100%;
    overflow: visible;
    display: block;
  }
  .c-route-card__japan-map {
    display: block;
    position: absolute;
    width: 240px;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    z-index: 0;
  }
  .c-route-card__map-icon {
    display: block;
    position: absolute;
    width: 60px;
    height: 60px;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    z-index: 1;
  }
  .c-route-card__heading {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 68px;
    font-size: 28px;
    text-align: center;
    white-space: nowrap;
    background: none;
    padding: 0;
    margin: 0;
    z-index: 2;
  }
  .c-route-card__connector {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 104px;
    width: 2px;
    height: 31px;
    background: var(--color-bg-brown);
    z-index: 2;
  }
  .c-route-card__name-wrap {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 138px;
    text-align: center;
    z-index: 2;
  }
  .c-route-card__name {
    font-size: 24px;
    background: linear-gradient(
      transparent 60%,
      var(--color-accent-yellow) 60%
    );
    display: inline-block;
    white-space: nowrap;
  }
  .c-route-card__caption--sp {
    display: none;
  }
  .c-route-card__caption--pc {
    display: flex;
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    text-align: left;
    padding-top: 16px;
  }
  .c-route-card__right-col {
    grid-column: 2;
    grid-row: 1 / span 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    align-self: stretch;
    order: 0;
  }
  .c-route-card__map-wrap {
    width: 400px;
    display: flex;
    flex-direction: column;
    order: 0;
  }
  .c-route-card__map {
    width: 400px;
    aspect-ratio: 400 / 300;
  }
  .c-route-card__map-btn {
    padding: 6px 10px;
    gap: 4px;
  }
  .c-route-card__map-btn-icon {
    width: 11px;
    height: 11px;
    background: url(/-/media/tfc/ts3travel/file/common/img/ico/ico_pin_w.svg)
      center no-repeat;
    background-size: contain;
  }
  .c-route-card__map-btn__text {
    font-size: 12px;
  }
  .c-route-card__list {
    grid-column: 1;
    grid-row: 3;
    width: 100%;
    gap: 16px;
    padding-bottom: 0;
    max-width: var(--page-max-width);
  }
  .c-route-card__list-item {
    padding-bottom: 6px;
  }
  .c-route-card__num {
    width: 22px;
    height: 22px;
  }
  .c-route-card__arrow {
    width: 20px;
    height: 20px;
    background: url(/-/media/tfc/ts3travel/file/common/img/ico/arrow_btm_g_b.svg)
      no-repeat center;
    background-size: contain;
  }
  /* SP版: 非表示 */
  .c-route-card__movilink--sp {
    display: none;
  }
  /* PC版: 表示 */
  .c-route-card__movilink--pc {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
  }
}

/* ===================================================
   SECTION: 記事タイムライン (c-tl-*)
=================================================== */
.c-content-bg {
  background: var(--color-surface);
}

.c-article-body {
  padding: 0 10px;
  margin-inline: auto;
}

.c-tl-start {
  padding: 40px 0 8px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.c-tl-start__label,
.c-tl-goal__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  line-height: 1.4;
}

/* タイムライン骨格 */
.c-tl {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 60px;
  width: 100%;
}
.c-tl::before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 0;
  left: calc(var(--tl-line-left) - 2px);
  width: 4px;
  background-image: radial-gradient(
    circle,
    var(--color-primary) 1px,
    transparent 1px
  );
  background-size: 4px 4px;
  background-repeat: repeat-y;
  background-position: center top;
  z-index: 0;
}

/* 区切り線SP: width: 303px 固定 → 100% で親幅に追従し横スクロールを防止 */
.c-tl__divider {
  max-width: var(--tl-content-width-sp);
  width: 100%;
  height: 1px;
  background: var(--color-line-beige);
  position: relative;
  z-index: 1;
}

/* スポット */
.c-tl-spot {
  gap: 16px;
}
.c-tl-spot__heading {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
}
.c-tl-spot__badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.c-tl-spot__name-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.c-tl-spot__area {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--color-text-caption);
}
.c-tl-spot__name {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
  display: inline-block;
  background: linear-gradient(transparent 60%, var(--color-accent-yellow) 60%);
}

/* 差分のみ（基盤: o-tl-body） */
.c-tl-spot__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.c-tl-spot__section,
.c-tl-spot__text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c-tl-section-title {
  border-left: 4px solid var(--color-primary);
  padding-left: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
  margin: 0;
  text-align: left;
}

/* ギャラリー */
.c-tl-gallery {
  position: relative;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 303 / 202;
}
.c-tl-gallery__scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  height: 100%;
  gap: 16px;
}
.c-tl-gallery__scroll::-webkit-scrollbar {
  display: none;
}
.c-tl-gallery__img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  scroll-snap-align: start;
  border-radius: 4px;
  pointer-events: none;
}
.c-tl-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  padding: 0;
}
.c-tl-gallery__nav--prev {
  left: 12px;
}
.c-tl-gallery__nav--next {
  right: 12px;
}
.c-tl-gallery__nav[aria-disabled="true"],
.c-tl-gallery__nav:disabled {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}
.c-tl-gallery__nav-icon {
  width: 14px;
  height: 14px;
  display: block;
  flex-shrink: 0;
  background: url(/-/media/tfc/ts3travel/file/common/img/ico/arrow_btm_g_b.svg)
    no-repeat center;
  background-size: contain;
}
.c-tl-gallery__nav--prev .c-tl-gallery__nav-icon {
  transform: rotate(90deg);
}
.c-tl-gallery__nav--next .c-tl-gallery__nav-icon {
  transform: rotate(-90deg);
}

/* テキスト展開 */
.c-tl-text {
  --_tl-lh: 1.6;
  font-size: 16px;
  font-weight: 300;
  line-height: var(--_tl-lh);
  color: var(--color-text);
  width: 100%;
  margin: 0;
  text-align: left;
}
.c-tl-text--collapsed {
  --_clamp-lines: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--_clamp-lines);
  max-height: calc(var(--_tl-lh) * var(--_clamp-lines) * 1em);
  overflow: hidden;
}
/*テキスト展開内注記*/
.c-tl-caption {
  display: grid;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--color-text-caption);
  grid-template-columns: auto 1fr;
}
.c-tl-expand {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text-caption);
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.c-tl-expand__icon {
  width: 14px;
  height: 14px;
  background: url(/-/media/tfc/ts3travel/file/common/img/ico/arrow_btm_g_b.svg)
    center no-repeat;
  background-size: contain;
  display: block;
  transition: transform 0.2s;
}

.is-icon-flipped {
  transform: rotate(180deg);
}
.c-tl-info-value {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
  white-space: nowrap;
}
.c-tl-info-value .sm {
  font-size: 12px;
}
.c-tl-info-divider {
  width: 1px;
  height: 38px;
  background: var(--color-line-beige);
  flex-shrink: 0;
}

/* 情報カード（滞在のめやす・見どころ） */
.c-info-card {
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  gap: 8px;
  padding: 12px;
}

.c-info-card__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.c-info-card__label-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.c-info-card__label {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text-caption);
}

.c-info-card__value {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
  margin: 0;
  text-align: left;
}

.c-info-card__time-value {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
  margin: 0;
}

.c-info-card__divider {
  display: block;
  align-self: stretch;
  height: 1px;
  width: auto;
  background: var(--color-line-beige);
}

.c-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

/* メモテキスト */
.c-tl-memo {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-text);
  width: 100%;
  margin: 0;
  text-align: left;
}

/* 基本情報アコーディオン */
.c-tl-accordion-btn {
  width: 100%;
  background: var(--color-surface);
  border: 1px solid var(--color-line-beige);
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: border-radius 0.15s;
}

.c-tl-accordion-btn[aria-expanded="true"] {
  border-radius: 8px 8px 0 0;
  border-bottom: 1px solid var(--color-line-beige);
}

.c-tl-accordion-btn__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
}

.c-tl-accordion-btn__icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: none;
  border: none;
  border-radius: 0;
}
.c-tl-accordion-btn__icon::before,
.c-tl-accordion-btn__icon::after {
  content: "";
  position: absolute;
  background: var(--color-text);
  top: 50%;
  left: 50%;
}
.c-tl-accordion-btn__icon::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.c-tl-accordion-btn__icon::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s;
}
.c-tl-accordion-btn[aria-expanded="true"] .c-tl-accordion-btn__icon::after {
  opacity: 0;
}

.c-tl-accordion-panel {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.c-tl-accordion-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.c-tl-basic-table {
  width: 100%;
  border: 1px solid var(--color-line-beige);
  border-top: none;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  background: var(--color-surface);
}
.c-tl-basic-row {
  display: flex;
  border-bottom: 1px solid var(--color-line-beige);
}

.c-tl-basic-row--last {
  border-bottom: none;
}

.c-tl-basic-th {
  width: 80px;
  min-width: 80px;
  padding: 8px 4px;
  background: var(--color-bg-beige);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  flex-shrink: 0;
}
.c-tl-basic-td {
  flex: 1;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
}

.c-tl-basic-td__text {
  margin: 0;
  text-align: left;
}

.c-tl-basic-td--location {
  padding: 8px 12px;
  gap: 8px;
  flex-direction: column;
}

.c-tl-basic-td__main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.c-tl-basic-td--labels {
  padding: 8px 12px;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 4px;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 44px;
}

.c-tl-basic-td--links {
  padding: 8px 12px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 4px;
}

.c-tl-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--color-bg-brown);
  border-radius: 30px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  align-self: flex-start;
  transition: opacity 0.2s;
}
.c-tl-map-btn:hover {
  opacity: 0.8;
}
.c-tl-map-btn__icon {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}

.c-tl-movilink-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--color-movilink-bg);
  border: 1px solid var(--color-movilink-text);
  border-radius: 30px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-movilink-text);
  text-decoration: none;
  white-space: nowrap;
  align-self: flex-start;
  transition: opacity 0.2s;
}
.c-tl-movilink-btn:hover {
  opacity: 0.8;
}
.c-tl-movilink-btn__icon {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}

.c-tl-movilink-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: flex-start;
}

.c-tl-movilink-qr {
  display: none;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  object-fit: cover;
}

.c-tl-service-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--color-bg-beige);
  padding: 2px 8px 2px 6px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text-caption);
  white-space: nowrap;
  min-height: 20px;
}

.c-tl-service-label__icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  display: block;
}

.c-tl-ref-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text-link);
  text-decoration: underline;
  text-decoration-skip-ink: none;
  white-space: nowrap;
}
.c-tl-ref-link-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.c-tl-basic-note {
  font-size: 10px;
  font-weight: 300;
  color: var(--color-text-caption);
  margin: 0;
  text-align: left;
}

/* ===================================================
   SECTION: ピックアップカード (c-pickup-card)
   役割: 道中ピックアップ内の個別コンテンツを表示するカード
=================================================== */

/* カード全体のコンテナ（子要素を右寄せにしてタイムラインを避ける基盤） */
.c-pickup-card {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* c-pickup-card__body を右側に寄せる */
  gap: 12px;
  width: 100%;
}

/* ヘッダー（アイコンとタイトル：100%幅で左端からスタートさせる） */
.c-pickup-card__heading {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.c-pickup-card__badge {
  width: 28px;
  height: 28px;
  margin-left: 4px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

/* アイコン画像本体 */
.c-pickup-card__icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* タイトルエリア */
.c-pickup-card__title-area {
  flex: 1;
  display: flex;
  align-items: center;
}

/* カードタイトル */
.c-pickup-card__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text-caption);
  margin: 0;
}

/* コンテンツ本体（SP: 縦積み・角丸） */
.c-pickup-card__content {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
}

/* 画像コンテナ（SP: 上辺のみ角丸・クリップをここで管理） */
.c-pickup-card__media {
  width: 100%;
  aspect-ratio: 134/75;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
}

/* 画像本体 */
.c-pickup-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* テキストラッパー（余白管理） */
.c-pickup-card__desc {
  padding: 12px;
  display: flex;
  flex-direction: column;
}

/* 説明テキスト */
.c-pickup-card__text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0;
  text-align: left;
}

/* ピックアップセクション全体（スポットと同じく右側に寄せる基本設定） */
.c-tl-pickup {
  gap: 12px;
  padding-right: 14px;
}

.c-tl-pickup__heading {
  display: flex;
  align-items: center;
}

/* 「道中ピックアップ」タイトル */
.c-tl-pickup__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text);
  margin: 0;
}

/* ===================================================
   SECTION: 立ち寄りスポット (c-tl-stopover)
=================================================== */

/* コンポーネント大枠 */
.c-tl-stopover {
  gap: 12px;
  padding-top: 20px;
}

/* ヘッダー */
.c-tl-stopover__heading {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* バッジ */
.c-tl-stopover__badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-left: 6px;
}

/* ピンアイコン本体 */
.c-tl-stopover__icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* タイトルテキスト */
.c-tl-stopover__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text-caption);
  margin: 0;
}

/* テーブルコンテナ */
.c-tl-stopover__table {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  max-width: var(--tl-card-content-width-pc);
}

/* ===================================================
   SECTION: スポット間の移動 (c-tl-transit)
=================================================== */

.c-tl-transit {
  gap: 12px;
  padding-top: 20px;
}

.c-tl-transit__heading {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
}

.c-tl-transit__badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-left: 2px;
}

.c-tl-transit__icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.c-tl-transit__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
  margin: 0;
}

/* ===================================================
   SECTION: 宿泊施設カード　共通スタイル　(c-hotel-)
=================================================== */
.c-hotel-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-card-sm);
  background-color: var(--color-surface);
  text-decoration: none;
  color: var(--color-text);
  transition: opacity 0.3s;
  overflow: hidden;
  text-align: left;
  padding-bottom: 8px;
}

.c-hotel-card:hover {
  opacity: 0.8;
}
.c-hotel-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.2);
}
.c-hotel-card__name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.428;
  height: 40px;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-align: left;
}

.c-hotel-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 8px 8px 0;
  gap: 8px;
}

.c-hotel-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.c-hotel-card__img-wrap {
  width: 100%;
  height: 96px;
  overflow: hidden;
  background-color: var(--color-bg-beige);
}

.c-hotel-card__tags {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--color-bg-brown-light);
}

.c-hotel-card__tag-pref {
  background-color: var(--color-bg-brown-light);
  padding: 2px 5px;
  font-size: 12px;
  line-height: 1.33;
  font-weight: 300;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.c-hotel-card__tag-area {
  flex: 1;
  min-width: 0;
  background-color: transparent;
  padding: 4px 0 4px 4px;
  font-size: 12px;
  line-height: 1.33;
  font-weight: 300;
  color: var(--color-text);
  display: flex;
  align-items: center;
  overflow-wrap: anywhere;
}

.c-hotel-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 4px 8px;
  border: 1.5px solid var(--color-bg-border);
  border-radius: 60px;
  background-color: var(--color-surface);
  font-size: 14px;
  font-weight: normal;
  line-height: 1.428;
  color: var(--color-text);
  margin-top: auto;
}

/* ===================================================
   SECTION: タイムライン内おすすめ宿泊施設 (c-hotel-section--tl)
=================================================== */

.c-hotel {
  height: auto;
  width: 100%;
}
.c-hotel-section {
  gap: 12px;
  padding-top: 20px;
}

.c-hotel__heading {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.c-hotel__badge {
  width: 28px;
  height: 28px;
  margin-left: 4px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.c-hotel__icon {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.c-hotel__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text-caption);
  margin: 0;
}

.c-hotel-card__body--tl {
  padding: 16px 12px 0;
  gap: 12px;
}

.c-hotel-card__info--tl {
  gap: 8px;
}

.c-hotel-card__img-wrap--tl {
  height: 164px;
}

.c-hotel-card__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
}

.c-hotel-card__name--tl {
  font-size: 16px;
  line-height: 1.35;
  height: fit-content;
}

.c-hotel-card__btn--tl {
  display: flex;
  align-items: center;
  align-self: flex-end;
  padding: 4px 12px;
  border: 1px solid var(--color-primary);
  border-radius: 60px;
  background-color: var(--color-surface);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-primary);
  margin-top: 0;
}

.c-hotel-card__tag-pref--tl {
  padding: 4px 5px;
  line-height: 1.4;
}

.c-hotel-card__tag-area--tl {
  line-height: 1.3;
}

.c-tl-service-labels {
  display: flex;
  gap: 4px;
}

/* ===================================================
   COMPONENT: 移動情報カード (c-transit-card)
=================================================== */

.c-transit-card {
  background-color: var(--color-surface);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 16px;
  padding: 12px;
  width: 100%;
  box-shadow: var(--shadow-card);
}

.c-transit-card__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.c-transit-card__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.c-transit-card__label {
  display: flex;
  align-items: center;
  gap: 4px;
}

.c-transit-card__label-icon {
  width: 10px;
  height: 10px;
  object-fit: contain;
}

.c-transit-card__label-text {
  font-size: 10px;
  font-weight: 300;
  color: var(--color-text-caption);
  line-height: 1.2;
}

.c-transit-card__value {
  display: flex;
  align-items: baseline;
}

.c-transit-card__value-prefix {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-caption);
  line-height: 1.33;
}

.c-transit-card__value-num {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-caption);
  line-height: 1.42;
}

.c-transit-card__value-unit {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-caption);
  line-height: 1.33;
}

.c-transit-card__divider {
  width: 1px;
  height: 32px;
  background-color: var(--color-line-beige);
  flex-shrink: 0;
}

.c-transit-card__app-img {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  object-fit: cover;
}

.c-transit-card__link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.c-transit-card__link-text {
  font-size: 12px;
  font-weight: 300;
  color: var(--color-text-link);
  text-decoration: underline;
  line-height: 1.33;
}

.c-transit-card__link-icon {
  width: 12px;
  height: 12px;
}

.c-transit-card__action--pc {
  display: none;
}

.c-transit-card__link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.c-transit-card:hover {
  opacity: 0.8;
}

.c-transit-card:focus-within {
  outline: 2px solid var(--color-text);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ===================================================
   SECTION: ゴール (c-tl-goal)
=================================================== */

/* ゴール大枠：ドットとテキストを縦積みで配置 */
.c-tl-goal {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

/* ドットラッパー */
.c-tl-goal__dot-wrap {
  width: calc(var(--tl-line-left) * 2);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ゴール地点の赤いドット */
.c-tl-goal__dot {
  width: 11px;
  height: 11px;
  background-color: var(--color-primary);
  border-radius: 50%;
}

/* ===================================================
   PC対応 — タイムライン (768px〜)
=================================================== */
@media screen and (min-width: 768px) {
  .c-article-body {
    max-width: var(--page-max-width);
    padding: 0;
  }

  .c-tl-start {
    padding: 48px 0 8px;
  }

  .c-tl-start__label {
    font-size: 16px;
  }

  .c-tl-goal__label {
    font-size: 20px;
  }

  .c-tl-pickup {
    gap: 20px;
  }

  .c-tl__divider {
    width: 100%;
    max-width: var(--tl-content-width-pc);
  }

  .c-tl-spot__area {
    font-size: 14px;
  }

  .c-tl-spot__heading {
    gap: 32px;
  }
  .c-tl-spot__badge {
    width: 60px;
    height: 60px;
    font-size: 32px;
  }
  .c-tl-spot__name {
    font-size: 24px;
  }

  .c-tl-spot {
    gap: 20px;
  }

  .c-tl-spot__body {
    gap: 32px;
  }

  .c-tl-spot__text-section {
    flex-direction: row;
    gap: 32px;
    align-items: center;
  }

  .c-tl-gallery {
    flex: 0 0 366px;
    width: 366px;
    height: 244px;
    aspect-ratio: auto;
  }

  .c-tl-gallery__nav {
    width: 44px;
    height: 44px;
  }
  .c-tl-gallery__nav-icon {
    width: 25px;
    height: 25px;
  }

  .c-tl-text--collapsed {
    display: block;
    max-height: none;
    overflow: visible;
  }
  .c-tl-expand {
    display: none;
  }

  .c-tl-info-box {
    justify-content: flex-start;
    gap: 24px;
    padding: 16px 24px;
  }
  .c-tl-info-item {
    align-items: flex-start;
    padding: 0 12px;
  }
  .c-tl-info-divider {
    height: 40px;
  }

  .c-info-card {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    align-self: flex-start;
    gap: 24px;
    padding: 16px 24px;
  }

  .c-info-card__label {
    font-size: 12px;
  }

  .c-info-card__item {
    height: 41px;
    justify-content: space-between;
  }
  .c-info-card__divider {
    align-self: auto;
    width: 1px;
    height: 40px;
  }

  .c-tl-accordion-btn {
    width: 100%;
    padding: 8px 16px;
  }

  .c-tl-basic-th {
    width: 163px;
    min-width: 163px;
    padding: 12px;
    text-align: center;
  }
  .c-tl-basic-td--location {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 12px 20px;
  }
  .c-tl-basic-td--location .c-tl-basic-td__main {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
  }

  .c-tl-basic-note {
    font-size: 12px;
  }

  .c-tl-movilink-wrap {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    align-self: auto;
    flex-shrink: 0;
    background: var(--color-movilink-bg);
    border: 1px solid var(--color-movilink-text);
    border-radius: 4px;
    padding: 5px 8px;
  }
  .c-tl-movilink-wrap .c-tl-movilink-btn {
    border: none;
    border-radius: 0;
    padding: 0;
    background: transparent;
    align-self: center;
  }
  .c-tl-movilink-qr {
    display: block;
  }
  .c-tl-basic-td:not(.c-tl-basic-td--location):not(.c-tl-basic-td--labels):not(
      .c-tl-basic-td--links
    ) {
    padding: 12px 20px;
  }
  .c-tl-basic-td--labels {
    padding: 12px 20px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px 8px;
    align-items: center;
  }
  .c-tl-basic-td--links {
    padding: 12px 20px;
    flex-direction: row;
    align-items: center;
    gap: 8px 16px;
    flex-wrap: wrap;
  }

  /* ===================================================
   PC対応 — ピックアップカード (768px〜)
=================================================== */
  .c-pickup-card__heading {
    gap: 42px;
  }

  .c-pickup-card__badge {
    width: 40px;
    height: 40px;
    margin-left: 10px;
  }

  .c-pickup-card__icon {
    width: 28px;
    height: 28px;
  }

  .c-pickup-card__title {
    font-size: 16px;
  }

  /* コンテンツ本体を横並びに変更 */
  .c-pickup-card__content {
    flex-direction: row;
    align-items: stretch;
    max-width: var(--tl-card-content-width-pc);
  }

  /* PC版: 左辺のみ角丸・固定幅をアスペクト比で高さ算出 */
  .c-pickup-card__media {
    width: 366px;
    aspect-ratio: 183/103;
    flex-shrink: 0;
    border-radius: 4px 0 0 4px;
  }

  /* テキストラッパーが残り領域を埋め、PC用の余白を設定 */
  .c-pickup-card__desc {
    flex: 1;
    padding: 16px 32px;
    justify-content: center;
  }

  /* ===================================================
   PC対応 — 立ち寄りスポット (768px〜)
=================================================== */
  .c-tl-stopover {
    padding-top: 28px;
  }

  .c-tl-stopover__heading {
    gap: 42px;
    justify-content: flex-start;
  }

  .c-tl-stopover__badge {
    width: 40px;
    height: 40px;
    margin-left: 10px;
  }

  .c-tl-stopover__icon {
    width: 28px;
    height: 28px;
  }

  .c-tl-stopover__title {
    font-size: 16px;
  }

  /* ===================================================
   PC対応 — スポット間の移動 (768px〜)
=================================================== */

  .c-tl-transit {
    padding-top: 28px;
  }

  .c-tl-transit__heading {
    gap: 36px;
  }

  .c-tl-transit__badge {
    width: 48px;
    height: 48px;
    margin-left: 6px;
  }

  .c-tl-transit__icon {
    width: 36px;
    height: 36px;
  }

  .c-tl-transit__title {
    font-size: 16px;
  }

  .c-tl-transit__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .c-transit-card {
    justify-content: flex-start;
    padding: 15px 24px;
    gap: 20px;
    width: auto;
    max-width: fit-content;
    display: inline-flex;
    box-shadow: none;
    border: 1px solid var(--color-line-beige);
    border-radius: 4px;
  }

  .c-transit-card__item {
    align-items: flex-start;
  }

  .c-transit-card__label-icon {
    width: 12px;
    height: 12px;
  }

  .c-transit-card__label-text {
    font-size: 12px;
  }

  .c-transit-card__value-num {
    font-size: 16px;
  }

  .c-transit-card__divider {
    height: 40px;
  }

  .c-transit-card__divider--sp-only,
  .c-transit-card__action--sp {
    display: none;
  }

  /* PC: stretched-linkを無効化（QRバナーが操作可能になるよう） */
  .c-transit-card:hover {
    opacity: 1;
  }

  .c-transit-card:focus-within {
    outline: none;
  }

  .c-transit-card__link::after {
    content: none;
  }

  .c-transit-card__action--pc {
    display: flex;
    margin-left: 8px;
  }

  .c-transit-card__banner {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-movilink-bg);
    border: 1px solid var(--color-movilink-text);
    border-radius: 4px;
    padding: 6px 8px;
  }

  .c-transit-card__banner-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
  }

  .c-transit-card__banner-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-movilink-text);
    text-align: left;
  }

  .c-transit-card__banner-qr {
    width: 56px;
    height: 56px;
    object-fit: cover;
  }

  /* ===================================================
   PC対応 — おすすめ宿泊施設 (c-hotel-section)
  =================================================== */

  .c-hotel-section {
    padding-top: 28px;
  }

  .c-hotel-card--tl {
    display: flex;
    flex-direction: row;
    padding: 0;
    gap: 16px;
  }

  .c-hotel__heading {
    gap: 42px;
    justify-content: flex-start;
  }

  .c-hotel__badge {
    width: 40px;
    height: 40px;
    margin-left: 10px;
  }

  .c-hotel__icon {
    width: 28px;
    height: 28px;
  }

  .c-hotel__title {
    font-size: 16px;
  }

  .c-hotel-card__body--tl {
    padding: 16px 16px;
    gap: 8px;
  }

  .c-hotel-card__img-wrap--tl {
    height: 217px;
    width: 366px;
  }

  .c-hotel-card__name {
    margin-bottom: 4px;
  }

  .c-hotel-card__btn--tl {
    padding: 6px 12px;
    line-height: 1;
  }

  .c-hotel-card__tags--tl {
    align-self: flex-start;
  }

  .c-hotel-card__tag-pref--tl {
    padding: 2px 5px;
  }

  .c-hotel-card__tag-area--tl {
    padding: 4px;
  }

  /* ===================================================
   PC対応 — ゴール (768px〜)
=================================================== */
  .c-tl-goal {
    gap: 8px;
  }

  .c-tl-goal__dot {
    width: 12px;
    height: 12px;
  }
}

/* ===================================================
   SECTION: ドライブの注意点 (c-drive-caution)
=================================================== */

/* セクション全体：子要素を確実に左寄せベースにする */
.c-drive-caution {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-top: 13px;
  width: 100%;
}

/* --- 注意点ボックス（枠線エリア） --- */
.c-caution-box {
  position: relative;
  width: 100%;
  margin-top: 12px;
  border: 2px solid var(--color-line-beige);
  padding: 32px 16px 20px;
  box-sizing: border-box;
}

/* 枠線上に重なるタイトル */
.c-caution-box__title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 16px;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-caption);
  white-space: nowrap;
  text-align: center;
  margin: 0;
  line-height: 1.4;
}

/* 内部ボディ */
.c-caution-box__body {
  width: 100%;
}

/* --- リスト部分 --- */
.c-caution-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* 各リスト項目 */
.c-caution-list__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

/* ドットと小見出しのラッパー */
.c-caution-list__header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
}

/* 装飾用ドット */
.c-caution-list__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* 小見出し */
.c-caution-list__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
  line-height: 1.5;
  text-align: left;
}

/* 説明テキスト */
.c-caution-list__text {
  font-size: 16px;
  font-weight: 300;
  color: var(--color-text);
  margin: 0;
  line-height: 1.6;
  text-align: left;
  width: 100%;
}

/* --- 免責事項テキスト --- */
.c-drive-caution__note {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
  text-align: left;
  width: 100%;
}

/* --- アプリ保存ボタン --- */
.c-drive-caution__action {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* ボタン本体 */
.c-app-save-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  text-decoration: none;
  background-color: transparent;
  transition:
    opacity 0.2s,
    outline 0.2s;
  max-width: 100%;
  box-sizing: border-box;
  margin: 4px 0;
}

.c-app-save-btn:hover,
.c-app-save-btn:focus {
  opacity: 0.7;
}

.c-app-save-btn:focus {
  outline: 2px solid var(--color-text-link);
  outline-offset: 2px;
}

.c-app-save-btn:focus:not(:focus-visible) {
  outline: none;
}

/* ロゴ画像（左側） */
.c-app-save-btn__logo {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

/* テキストと右側アイコンのラッパー */
.c-app-save-btn__content {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

/* ボタンテキスト */
.c-app-save-btn__text {
  font-size: 16px;
  font-weight: 300;
  color: var(--color-text-link);
  text-decoration: underline;
  line-height: 1.5;
  overflow-wrap: break-word;
}

/* リボンアイコン画像（右側） */
.c-app-save-btn__ribbon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ===================================================
   PC対応 — ドライブの注意点 (768px〜)
=================================================== */
@media screen and (min-width: 768px) {
  /* PC版のセクション間隔と余白調整 */
  .c-drive-caution {
    gap: 24px;
    padding-top: 0;
  }

  /* PC版の枠内の広いパディング（Figma指定に準拠） */
  .c-caution-box {
    padding: 48px 72px 40px;
  }

  /* PC版のタイトル左右余白（枠線の切れ目を広げる） */
  .c-caution-box__title {
    padding: 0 20px;
  }
}

/* ===================================================
   COMPONENT: 宿泊施設まとめ (c-hotel-card--summary)
=================================================== */

.c-hotels {
  padding-top: 56px;
  padding-bottom: 56px;
  max-width: var(--page-max-width, 1080px);
  margin-inline: auto;
}
.c-hotels__header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 10px;
}
.c-hotels__title {
  display: inline-block;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
  margin: 0;
  text-align: center;
}
.c-hotels__nav {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  gap: 10px;
}
.c-hotels.is-swiper-active .c-hotels__nav {
  display: flex;
}

.c-hotels__nav-btn {
  background-color: var(--color-bg-brown-light);
  border: none;
}
.c-hotels__slider {
  margin-top: 16px;
  padding-inline: 10px;
  padding-bottom: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.c-hotels__slider::-webkit-scrollbar {
  display: none;
}
.c-hotels__slider.swiper-container-initialized {
  overflow: hidden;
}

.c-hotels__wrapper {
  display: flex;
  gap: 10px;
}

.c-hotels__slider.swiper-container-initialized .c-hotels__wrapper {
  gap: 0;
}

.c-hotels__slide {
  height: auto;
  width: 35%;
  flex-shrink: 0;
}
.c-hotel-card__tag-pref--summary {
  font-weight: 400;
}
.c-hotel-card__tag-area--summary {
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .c-hotels__nav {
    display: none;
  }
  .c-hotels {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .c-hotels__header {
    margin-bottom: 24px;
    padding-inline: 0;
  }
  .c-hotels__title {
    font-size: 28px;
    display: block;
  }
  .c-hotels__slider {
    margin-top: 0;
    padding-inline: 0;
    overflow: visible;
  }
  .c-hotels__wrapper {
    gap: 20px;
    justify-content: flex-start;
  }

  .c-hotels__slider.swiper-container-initialized .c-hotels__wrapper {
    gap: 20px;
  }

  .c-hotels__slide.swiper-slide {
    flex: 1;
    flex-shrink: 1;
    width: auto;
    min-width: 0;
  }
  .c-hotel-card--summary {
    padding-bottom: 12px;
    box-shadow: var(--shadow-card);
  }
  .c-hotel-card__img-wrap--summary {
    height: 144px;
  }
  .c-hotel-card__body--summary {
    padding: 8px 8px 0;
  }
  .c-hotel-card__btn--summary {
    padding: 3px 8px;
  }
}

/* ===================================================
   SECTION: よくある質問 (FAQ)
=================================================== */
.c-faq-area {
  padding-top: 40px;
  padding-bottom: 40px;
}

.c-faq-area__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
  text-align: center;
  margin: 0 0 16px;
}

.c-faq {
  background-color: var(--color-surface);
  border-radius: 8px;
  padding: 4px 12px 12px;
  display: flex;
  flex-direction: column;
}

.c-faq__item {
  border-bottom: 1px solid var(--color-line-beige);
}

.c-faq__item--last {
  border-bottom: none;
}

.c-faq__btn {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.c-faq__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  flex-shrink: 0;
}

.c-faq__q-text {
  flex: 1;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0;
  text-align: left;
  padding-top: 2px;
}

.c-faq__arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background: url(/-/media/tfc/ts3travel/file/common/img/ico/arrow_btm_g_b.svg)
    no-repeat center;
  background-size: contain;
  transition: transform 0.3s ease;
  margin-top: 7px;
}

.c-faq__arrow.is-faq-open {
  transform: rotate(180deg);
}

.c-faq__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.c-faq__panel-inner {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 0 0 12px;
}

.c-faq__a-text {
  flex: 1;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0;
  text-align: left;
  padding-top: 2px;
}

.c-faq__link {
  color: var(--color-text);
  text-decoration: underline;
  transition: opacity 0.2s;
}

.c-faq__link:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  .c-faq-area {
    padding-bottom: 0;
    padding-inline: 0;
  }
  .c-faq-area__title {
    font-size: 28px;
    margin-bottom: 24px;
  }
  .c-faq {
    padding: 12px 40px;
  }
  .c-faq__btn {
    gap: 12px;
  }
  .c-faq__panel-inner {
    gap: 12px;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .c-faq__panel,
  .c-tl-accordion-panel,
  .c-faq__arrow {
    transition: none;
  }
}

/* ===================================================
   SECTION: 導線カードセクション (c-guide-section)
=================================================== */

.c-guide-section {
  padding-top: 40px;
  padding-bottom: 64px;
}

.c-guide-section__inner {
  width: 100%;
}

/* グリッドレイアウト（SP時は縦積み） */
.c-guide-section__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0;
  padding: 0;
  width: var(--tl-content-width-sp);
  margin-inline: auto;
  list-style: none;
}

.c-guide-section__item {
  display: block;
}

/* カード本体 */
.c-guide-card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-surface);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  text-decoration: none;
  height: 100%;
  transition: opacity 0.2s;
  /* focus-visible非対応ブラウザへのフォールバックとして、ブラウザ標準のアウトラインを許容する */
}

/* ホバーおよびキーボードフォーカス時の視覚フィードバック */
.c-guide-card:hover,
.c-guide-card:focus-visible {
  opacity: 0.8;
}

/* キーボードフォーカス時のカスタムアウトライン（対応ブラウザ用） */
.c-guide-card:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* サムネイル画像エリア */
.c-guide-card__media {
  width: 100%;
  height: 104px;
  background-color: var(--color-line-beige);
  overflow: hidden;
}

.c-guide-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* テキスト格納エリア */
.c-guide-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 4px;
  padding: 16px 12px;
  flex: 1;
}

.c-guide-card__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text);
  margin: 0;
}

.c-guide-card__desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--color-text);
  margin: 0;
}

/* 注釈エリア */
.c-guide-card__note {
  display: flex;
  align-items: flex-start;
  margin-top: 4px;
}

.c-guide-card__note-mark {
  font-size: 10px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--color-text-caption);
  flex-shrink: 0;
}

.c-guide-card__note-text {
  font-size: 10px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--color-text-caption);
  margin: 0;
}

/* ===================================================
   PC対応 — 導線カードセクション (768px〜)
=================================================== */
@media screen and (min-width: 768px) {
  .c-guide-section {
    padding-top: 48px;
    padding-bottom: 80px;
  }

  .c-guide-section__inner {
    width: 94.667%;
    max-width: var(--page-max-width);
    margin-inline: auto;
  }

  .c-guide-section__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
  }

  .c-guide-card__media {
    height: 120px;
  }

  .c-guide-card__body {
    gap: 8px;
  }
}

/* ===================================================

   COMPONENT: 追従バナー (c-floating-banner)
   
=================================================== */
.c-floating-banner {
  position: fixed;
  bottom: 24px;
  left: 0;
  z-index: 90;
  background-color: var(--color-floating-banner-bg);
  border-radius: 0 8px 8px 0;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
  .c-floating-banner {
    transition: none;
  }
}

.c-floating-banner.is-dismissed {
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
}

.c-floating-banner__link {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 6px 10px;
  text-decoration: none;
}

.c-floating-banner__app-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  background-color: #fff;
  margin-right: 6px;
}

.c-floating-banner__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-surface);
  text-decoration: underline;
  text-align: left;
}

.c-floating-banner__ribbon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  object-fit: contain;
}

.c-floating-banner__close {
  position: absolute;
  top: -12px;
  right: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  background-color: var(--color-text-caption);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
  z-index: 2;
}

.c-floating-banner__close:hover {
  opacity: 0.8;
}

.c-floating-banner__close-icon {
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
}

.c-floating-banner__close-icon::before,
.c-floating-banner__close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  background-color: #fff;
  border-radius: 2px;
}

.c-floating-banner__close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.c-floating-banner__close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ===================================================
   PC対応 — 追従バナー (768px〜)
=================================================== */
@media screen and (min-width: 768px) {
  .c-floating-banner__link {
    padding: 16px;
    gap: 10px;
  }

  .c-floating-banner__app-icon {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    margin-right: 0;
  }

  .c-floating-banner__close {
    width: 32px;
    height: 32px;
    top: -14px;
    right: -14px;
  }

  .c-floating-banner__close-icon {
    width: 14px;
    height: 14px;
  }

  .c-floating-banner__close-icon::before,
  .c-floating-banner__close-icon::after {
    width: 14px;
  }
}

/* ===================================================
   COMPONENT: おすすめドライブ記事 (c-recommend-drive)
=================================================== */
.c-recommend-drive {
  padding-top: 24px;
  padding-bottom: 24px;
}

.c-recommend-drive__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* --- ヘッダー --- */
.c-recommend-drive__header {
  position: relative;
  text-align: center;
  padding: 0 40px;
}

.c-recommend-drive__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
  margin: 0;
  display: inline-block;
}

/* --- ナビゲーション矢印 --- */
.c-recommend-drive__nav {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  gap: 8px;
}

.c-recommend-drive.is-swiper-active .c-recommend-drive__nav {
  display: flex;
}

.c-recommend-drive__nav-btn {
  background-color: var(--color-surface);
}

/* --- スライダー --- */
.c-recommend-drive__slider {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
  width: 100%;
  padding-inline: 10px;
}

.c-recommend-drive__slider::-webkit-scrollbar {
  display: none;
}

.c-recommend-drive__slider.swiper-container-initialized {
  overflow: hidden;
}

.c-recommend-drive__wrapper {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.c-recommend-drive__slider.swiper-container-initialized
  .c-recommend-drive__wrapper {
  gap: 0;
}

.c-recommend-drive__slide {
  height: auto;
  flex-shrink: 0;
  width: 62%;
}

/* --- アクションエリア --- */
.c-recommend-drive__action,
.c-hotels__action {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* --- セクション専用ボタン --- */
.c-recommend-drive__btn,
.c-hotels__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  max-width: 280px;
  height: 40px;
  background-color: var(--color-surface);
  border: 1px solid var(--color-primary);
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s ease;
}

.c-recommend-drive__btn:hover,
.c-hotels__btn:hover {
  opacity: 0.7;
}

/* キーボード操作時：フォーカスリングを表示 */
.c-recommend-drive__btn:focus,
.c-recommend-drive__btn:focus-visible,
.c-hotels__btn:focus,
.c-hotels__btn:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: 2px;
}

/* ===================================================
   COMPONENT: おすすめ記事カード (c-recommend-card)
=================================================== */
.c-recommend-card {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  height: 100%;
  background-color: var(--color-surface);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: opacity 0.3s ease;
  padding: 16px 12px;
  gap: 16px;
}

.c-recommend-card:hover {
  opacity: 0.8;
}

.c-recommend-card__img-wrap {
  width: 100%;
  aspect-ratio: 231 / 144;
  overflow: hidden;
}

.c-recommend-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.c-recommend-card__body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 4px;
  padding: 0;
  flex: 1;
  text-align: left;
}

.c-recommend-card__date {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text-caption);
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  overflow-wrap: break-word;
}

.c-recommend-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
  margin: 0;
}

/* ===================================================
   PC対応 — おすすめドライブ記事 (768px〜)
=================================================== */
@media screen and (min-width: 768px) {
  .c-recommend-drive {
    padding-top: 64px;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .c-recommend-drive__inner {
    gap: 24px;
  }

  .c-recommend-drive__header {
    padding-left: 0;
    padding-right: 0;
  }

  .c-recommend-drive__title {
    font-size: 28px;
  }

  .c-recommend-drive__nav {
    display: none;
  }

  .c-recommend-drive__slider {
    overflow: visible;
    padding-bottom: 0;
  }

  .c-recommend-drive__wrapper {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 16px;
  }

  .c-recommend-drive__slide {
    width: calc((100% - 64px) / 5);
    max-width: 203.2px;
    flex-shrink: 1;
  }

  .c-recommend-card {
    min-height: 280px;
  }

  .c-recommend-card__img-wrap {
    height: 120px;
    aspect-ratio: auto;
  }

  .c-recommend-drive__action,
  .c-hotels__action {
    padding-top: 16px;
  }

  .c-recommend-drive__btn,
  .c-hotels__btn {
    max-width: 320px;
    height: 56px;
  }
}

/* =====================================================
   COMPONENT: おすすめ情報 (c-recommend-info)
========================================================= */
.c-recommend-info {
  padding-top: 40px;
  padding-bottom: 64px;
  display: flex;
  flex-direction: column;
}

/* --- ヘッダー --- */
.c-recommend-info__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 16px;
}

.c-recommend-info__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
  margin: 0;
  text-align: center;
}

/* --- ナビゲーション矢印 --- */
.c-recommend-info__nav {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  gap: 10px;
}

.c-recommend-info.is-swiper-active .c-recommend-info__nav {
  display: flex;
}

.c-recommend-info__nav-btn {
  background-color: var(--color-surface);
  border: none;
}

/* --- スライダー --- */
.c-recommend-info__slider {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-inline: 10px;
}

.c-recommend-info__slider::-webkit-scrollbar {
  display: none;
}

.c-recommend-info__slider.swiper-container-initialized {
  overflow: hidden;
}

.c-recommend-info__wrapper {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.c-recommend-info__slider.swiper-container-initialized
  .c-recommend-info__wrapper {
  gap: 0;
}

.c-recommend-info__slide {
  height: auto;
  flex-shrink: 0;
  width: 65%;
}

/* --- 情報カード --- */
.c-recommend-info-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
  height: 100%;
}

.c-recommend-info-card:hover {
  opacity: 0.8;
}

.c-recommend-info-card__img-wrap {
  width: 100%;
  aspect-ratio: 248 / 153;
  border-radius: 12px;
  border: 4px solid var(--color-surface);
  box-sizing: border-box;
  overflow: hidden;
  background-color: var(--color-bg-beige);
}

.c-recommend-info-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.c-recommend-info-card__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
  margin: 0;
  text-align: left;
}

/* =========================================================
   PC対応 — おすすめ情報 (768px〜)
=========================================================== */
@media screen and (min-width: 768px) {
  .c-recommend-info {
    padding-top: 64px;
    padding-bottom: 64px;
    max-width: var(--page-max-width);
    margin-inline: auto;
    padding-inline: 0;
  }

  .c-recommend-info__header {
    margin-bottom: 24px;
  }

  .c-recommend-info__title {
    font-size: 28px;
  }

  .c-recommend-info__nav {
    display: none;
  }

  .c-recommend-info__slider {
    overflow: visible;
    padding-inline: 0;
  }

  .c-recommend-info__wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .c-recommend-info__slider.swiper-container-initialized
    .c-recommend-info__wrapper {
    gap: 16px;
  }

  .c-recommend-info__slide {
    width: auto;
    max-width: none;
  }

  .c-recommend-info-card__img-wrap {
    aspect-ratio: 258 / 160;
    border-width: 6px;
  }

  .c-recommend-info-card__title {
    font-size: 16px;
  }
}

/* ===================================================
   COMPONENT: 追従型ナビゲーション (c-sticky-nav)
=================================================== */
.c-sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-surface);
  border-bottom: 1px solid var(--color-line-beige);
  z-index: 100;
  transform: translateY(-100%);
  transition:
    transform 0.3s ease,
    visibility 0.3s ease;
  visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .c-sticky-nav {
    transition: none;
  }
}

.c-sticky-nav.is-visible {
  transform: translateY(0);
  visibility: visible;
}

/* --- SP: 横スクロール領域 --- */
.c-sticky-nav__inner {
  width: 100%;
  margin-inline: auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.c-sticky-nav__inner::-webkit-scrollbar {
  display: none;
}

.c-sticky-nav__list {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-sticky-nav__item {
  display: flex;
  flex: 1;
  border-right: 1px solid var(--color-line-beige);
}

.c-sticky-nav__item:last-child {
  border-right: none;
}

/* --- リンクエリア --- */
.c-sticky-nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px 10px 0;
  gap: 2px;
  text-decoration: none;
  min-width: 60px;
  min-height: 44px;
  width: 100%;
  transition: opacity 0.2s ease;
}

.c-sticky-nav__link:hover {
  opacity: 0.7;
}

.c-sticky-nav__link:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: -2px;
}

/* --- テキスト --- */
.c-sticky-nav__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.c-sticky-nav__text {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
  white-space: nowrap;
}

.c-sticky-nav__arrow {
  width: 13px;
  height: 13px;
  background: url(/-/media/tfc/ts3travel/file/common/img/ico/arrow_btm_g_b.svg)
    no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}

/* ===================================================
   PC対応 — 追従型ナビゲーション (768px〜)
=================================================== */
@media screen and (min-width: 768px) {
  .c-sticky-nav__inner {
    max-width: var(--page-max-width);
    overflow-x: visible;
  }

  .c-sticky-nav__list {
    width: 100%;
  }

  .c-sticky-nav__link {
    padding: 12px 5px 6px;
    min-height: auto;
  }

  .c-sticky-nav__text {
    font-size: 14px;
  }
}
