:root {
  --color-primary: #eb0a1e;
  --color-secondary: #e5e2db;
  --color-surface: #fff;
  --color-text: #000;
  --font-family-base: sans-serif;
}

/* ========== ページごとの設定 ========== */
.section_inner {
  /* .sec_innerから変更 */
  width: 94.667%;
  margin-left: auto;
  margin-right: auto;
}

.breadcrumbs li {
  display: none;
}

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

@media screen and (min-width: 768px) {
  .mv_sec_inner {
    max-width: 1080px;
  }

  .section_inner {
    max-width: 1080px;
  }

  .breadcrumbs li {
    display: inline-block;
  }
}

/* ========== Objects (再利用レイアウト) ========== */
/* 縦積み */
.o-stack {
  margin-top: 16px;
}

/* 中央寄せ */
.o-center {
  max-width: var(--center-width, 1080px);
  margin-inline: auto;
}

.o-switcher {
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--switcher-gap, 1em);
  grid-template-columns: repeat(var(--switcher-columns, 1), 1fr);
}

.o-last-block {
  margin-bottom: 64px;
}

@media screen and (min-width: 768px) {
  .o-stack {
    margin-top: 24px;
  }

  .o-switcher {
    gap: var(--switcher-gap-pc, var(--switcher-gap));
    grid-template-columns: repeat(
      var(--switcher-columns-pc, var(--switcher-columns, 1)),
      1fr
    );
  }
  .o-last-block {
    margin-bottom: 80px;
  }
}

/* ========== Components (意味を持つ塊) ========== */

/* --- ヒーローエリア --- */
.c-hero__image {
  line-height: 0;
  aspect-ratio: auto;
}

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

.c-hero__content {
  padding: 12px 10px 0;
  text-align: left;
}

.c-hero__title {
  font-size: 13px;
  line-height: 1.6;
  font-weight: 600;
}

.c-hero__text {
  font-size: 13px;
  line-height: 19.5px;
  font-weight: 300;
}

.c-hero__nav {
  padding: 16px 10px;
}

.c-hero-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 10px;
  column-gap: 8px;
}

/* --- ナビゲーションボタン --- */
.c-nav-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 4px 10px;
  background-color: var(--color-surface);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  text-align: center;
  line-height: 1.4;
  height: 100%;
  max-height: 65px;
  transition: opacity 0.3s;
}

.c-nav-button > span {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-nav-button:hover {
  opacity: 0.8;
}

.c-nav-button::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-style: solid;
  border-color: var(--color-text);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: 0;
  flex-shrink: 0;
}

/* --- 特集カード (Component) --- */

.c-special-feature {
  padding-top: 40px;
}

.c-special-feature__list {
  --switcher-columns: 2;
  --switcher-gap: 10px;
}

.c-feature-card {
  display: block;
  text-decoration: none;
  color: #000;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

/* グラデーションオーバーレイ */
.c-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 40%) 0%,
    rgba(0, 0, 0, 0%) 50%
  );
  transition: background 0.3s;
  pointer-events: none; /* ホバーが画像やテキストに反応するように */
}

.c-feature-card:hover::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 60%) 0%,
    rgba(0, 0, 0, 10%) 50%
  );
}

.c-feature-card__image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}

.c-feature-card:hover .c-feature-card__image {
  transform: scale(1.05);
}

.c-feature-card__label {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  width: calc(100% - 25px);
  z-index: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 50%);
}

/* 矢印アイコン */
.c-feature-card::before {
  content: "";
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 26px;
  height: 26px;
  background-color: #fff;
  border-radius: 50%;
  background-image: url("/-/media/tfc/ts3travel/file/common/img/ico/arw_link.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  z-index: 2;
  transition: transform 0.3s;
}

.c-feature-card:hover::before {
  transform: scale(1.1);
}

.c-special-area {
  padding-top: 50px;
  padding-bottom: 20px;
}

/* IDによるスタイル分岐をModifierクラスで代替 */
.c-special-area--pickup {
  padding-bottom: 0;
}

.c-special-area--arealist {
  padding-bottom: 50px;
}

.c-special-title-area {
  padding-top: 64px;
}

.c-special-title__header {
  text-align: center;
}

.c-special-title__title {
  position: relative;
  display: inline-block;
  padding-left: 34px;
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text);
}

.c-special-title__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background-image: url("/-/media/tfc/ts3travel/file/special_list/winter2025/img/icon_snow.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

/* --- 特集：エリア (Component) --- */

.c-special-title__text {
  margin-top: 16px;
  font-size: 13px;
  color: var(--color-text);
  text-align: left;
  line-height: 19.5px;
}

.c-special-area__area-block {
  margin-top: 64px;
  text-align: center;
}

.c-first-block {
  margin-top: 40px;
}

.c-special-area__area-title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  position: relative;
  display: inline-block;
  padding: 0 10px;
}

.c-special-area__area-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8px;
  background-color: #f9e76b;
  z-index: -1;
}

/* --- pickupカードリスト --- */
.c-pickup-card-list {
  margin-top: 24px;
  display: grid;
  gap: 40px;
}

/* --- pickupカード (Component) --- */
.c-pickup-card {
  background: var(--color-surface);
  box-shadow: 0 0 12px rgba(0, 0, 0, 12%);
  border-radius: 12px;
  overflow: hidden;
}

.c-pickup-card__header {
  position: relative;
  line-height: 0;
}

.c-pickup-card__header img {
  width: 100%;
  max-height: 152px;
  object-fit: cover;
}

.c-pickup-card__header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 30%) 0%,
    rgba(255, 255, 255, 0%) 100%
  );
}

.c-pickup-card__title-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 12px 12px 12px;
  align-items: flex-start;
  pointer-events: none;
}

/* onsen_card_title はPCでしか指定がなかったので、デフォルトフォントサイズを仮で指定 */
.c-pickup-card__title {
  font-size: 20px;
  line-height: 1.4;
  color: #fff;
  /* 元のデザインに合わせて白文字に */
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  pointer-events: auto;
}

.c-pickup-card__access {
  display: inline-block;
  background-color: var(--color-surface);
  border-radius: 40px;
  padding: 4px 8px 4px 30px;
  background-image: url("/-/media/tfc/ts3travel/file/common/img/ico/icon_car.svg");
  background-repeat: no-repeat;
  background-position: 8px center;
  background-size: 16px 16px;
}

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

.c-pickup-card__body {
  padding: 12px 10px;
}

.c-pickup-card__desc {
  text-align: center;
  margin-inline: 4px;
}

.c-pickup-card__desc-txt {
  color: var(--color-text);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-align: left;
}

.c-pickup-card__desc.--open .c-pickup-card__desc-txt {
  -webkit-line-clamp: unset;
}

.c-pickup-card__desc-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  font-size: 13px;
  font-weight: 300;
  text-decoration: underline;
  line-height: 1.4;
}

.c-pickup-card__desc-btn::after {
  content: "もっと見る";
}

.c-pickup-card__desc-btn::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-style: solid;
  border-color: #666;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  transition: transform 0.3s;
  margin-top: -4px;
}

.c-pickup-card__desc.--open .c-pickup-card__desc-btn::after {
  content: "閉じる";
}

.c-pickup-card__desc.--open .c-pickup-card__desc-btn::before {
  transform: rotate(-135deg);
  margin-top: 1px;
}

.c-pickup-card__hotel {
  margin-top: 24px;
}

.c-pickup-card__subtitle-wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-inline: 4px;
}

.c-pickup-card__subtitle {
  color: var(--color-text);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.c-pickup-card__subtitle-wrap .c-pickup-card__subtitle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  width: 100%;
}

.c-pickup-card__hotel-swiper {
  margin-top: 12px;
  padding: 0 4px 4px;
  overflow: hidden;
}

.c-pickup-card__search {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.c-pickup-card__drive {
  margin-top: 24px;
  margin-inline: 4px;
}

/* --- ホテルカード (Component) --- */
.c-hotel-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--color-surface);
  box-shadow: 0 0 8px rgba(0, 0, 0, 12%);
  border-radius: 8px;
  height: 167px;
  width: 100%;
  overflow: hidden;
}

.c-hotel-card__image-wrap {
  width: 100%;
  height: 87px;
  overflow: hidden;
  flex-shrink: 0;
}

.c-hotel-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
}

.c-hotel-card__name {
  color: var(--color-text);
  font-size: 13px;
  font-weight: bold;
  line-height: 1.5;
  margin: 4px 0;
  padding: 0 8px;
  flex-grow: 1;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-all;
  min-width: 0;
  max-height: 40px;
}

.c-hotel-card__button {
  display: block;
  text-decoration: none;
  text-align: center;
  color: var(--color-text);
  font-size: 13px;
  font-weight: normal;
  line-height: 1.5;
  margin: 0 8px 8px;
  padding: 3px 8px;
  border: 1.5px solid #e0e0e0;
  border-radius: 60px;
  flex-shrink: 0;
}

/* --- 検索ボタン (Component) --- */
.c-search-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 8px;
  padding: 8px 5px;
  text-align: center;
}

.c-search-button--primary {
  background: var(--color-primary);
  color: var(--color-surface);
  font-size: 13px;
  font-weight: 600;
  line-height: 18.2px;
}

.c-search-button--secondary {
  background: var(--color-secondary);
  color: var(--color-text);
  font-size: 11px;
  font-weight: 600;
  line-height: 15.4px;
  padding-right: 17px;
}

.c-search-button--secondary::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-left: 0;
  background-image: url("/-/media/tfc/ts3travel/file/common/img/ico/link_external_black.png");
  background-size: contain;
}

/* --- ドライブカード (Component) --- */
.c-drive-card {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 12px 0 0;
  text-decoration: none;
  color: var(--color-text);
  background: #efede9;
  border-radius: 12px;
  overflow: hidden;
}

.c-drive-card__image {
  width: 120px;
  height: 80px;
  object-fit: cover;
  flex-shrink: 0;
}

.c-drive-card__info {
  padding-right: 8px;
  text-align: left;
}

.c-drive-card__date {
  color: #666;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
}

.c-drive-card__title {
  color: var(--color-text);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 4px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* --- Swiper ナビゲーション (ライブラリクラスの上書き) --- */
.swiper-navigation {
  display: flex;
  gap: 8px;
}

.swiper-button-prev,
.swiper-button-next {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: 0;
  background-color: #efede9;
  border-radius: 50%;
  color: #000;
  background-image: url("/-/media/tfc/ts3travel/file/common/img/ico/arw_next_nobg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px;
  --swiper-navigation-size: 28px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.swiper-button-prev {
  transform: rotate(-180deg);
}

.swiper-button-disabled {
  opacity: 0.3;
  cursor: auto;
}

/* --- テーマ別宿ブロック (Component) --- */
.c-theme-block {
  margin-top: 24px;
  background: #fff;
  border-radius: 12px;
  padding: 16px 0;
  overflow: hidden;
}

.c-theme-block__header {
  position: relative;
  height: 56px;
  padding: 0 16px;
}

.c-theme-block__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.c-theme-block__nav {
  display: flex;
  gap: 8px;
  position: absolute;
  top: 70%;
  right: 8px;
  transform: translateY(-50%);
}

.c-theme-block__slider {
  margin-top: 12px;
  padding: 0 12px;
  overflow: hidden; /* Swiper利用時に必要 */
}

/* --- テーマ別宿カード (Component) --- */
.c-theme-card {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 118px; /* SP版のカード幅 */
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

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

.c-theme-card__image-wrapper {
  width: 100%;
  height: 87px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 8px;
}

.c-theme-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
}

.c-theme-card__tags {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  color: #000;
  border: 1px solid #efede9;
  overflow: hidden;
  margin-bottom: 4px;
  min-height: 44px;
}

.c-theme-card_sm__tags {
  min-height: 25px;
}

.c-theme-card__tag {
  min-width: 47px;
  height: 100%;
  padding: 2px 5px;
  background: #efede9;
  display: flex;
  align-items: center;
}

.c-theme-card__tag-area {
  padding: 2px 4px;
}

.c-theme-card__name {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4; /* 19.6px */
  color: #000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 39.2px; /* 2行分の高さを確保 */
  margin-bottom: 8px;
}

.c-theme-card__button {
  display: block;
  text-align: center;
  color: #000;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.5; /* 19.5px */
  padding: 3px 8px;
  border: 1.5px solid #e0e0e0;
  border-radius: 60px;
  margin-top: auto; /* 下端に配置 */
}

.swiper-wrapper {
  align-items: stretch;
}

.swiper-slide {
  height: auto;
}

.c-coupon-area {
  margin-top: 16px;
}

.c-coupon-image {
  height: 162px;
  border-radius: 12px;
}

/* --- FAQ (Component) --- */
.c-faq {
  margin-top: 24px;
  border-radius: 12px;
  background-color: #fff;
  overflow: hidden;
  padding: 16px 12px;
}

.c-faq__item {
  border-bottom: 2px solid #efede9;
}

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

.c-faq__question {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 4px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  position: relative;
}

/* 質問の右端にある矢印アイコン */
.c-faq__question::after {
  content: "";
  position: absolute;
  right: 1px;
  top: 50%;
  width: 13px;
  height: 13px;
  background-image: url("/-/media/tfc/ts3travel/file/common/img/ico/arw_next_nobg.svg");
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.4s ease;
}

/* --open状態の時の矢印の向き */
.c-faq__item.--open .c-faq__question::after {
  transform: translateY(-50%) rotate(-90deg);
}

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

.c-faq__icon--question {
  background-color: #efede9;
  color: #000;
}

.c-faq__icon--answer {
  background-color: #fcdadd;
  color: #ec0a1e;
}

.c-faq__question-text {
  color: #000;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
  max-width: 260px;
}

/* 回答部分の開閉アニメーション */
.c-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.c-faq__item.--open .c-faq__answer {
  /* 十分な高さを確保 */
  max-height: 20rem;
}

.c-faq__answer-inner {
  display: flex;
  gap: 8px;
  padding: 4px 16px 4px 4px;
  align-items: center;
}

.c-faq__answer-text {
  padding-top: 4px;
  color: #000;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5; /* 19.5px */
  text-align: left;
}

/* 回答文中のリンクスタイル */
.c-faq__answer-text a {
  color: #000;
  text-decoration: underline;
  transition: opacity 0.3s;
}

.c-faq__answer-text a:hover {
  opacity: 0.7;
}

/* ========== Skins (見た目) ========== */
.s-hero-bg {
  background-color: var(--color-secondary);
}

/* ========== Utilities (小ワザ) ========== */
.u-no-space {
  letter-spacing: -0.09em;
}

.u-hidden-pc {
  display: block;
}

.u-hidden-sp {
  display: none;
}

/* ========== レスポンシブ設定 ========== */
@media screen and (min-width: 768px) {
  .u-hidden-pc {
    display: none;
  }

  .u-hidden-sp {
    display: block;
  }

  .o-center {
    padding-inline: 0;
  }

  .c-hero {
    padding-top: 30px;
  }

  .c-hero__content {
    padding: 24px 0 0;
  }

  .c-hero__title {
    font-size: 14px;
  }

  .c-hero__text {
    font-size: 14px;
  }

  .c-hero__nav {
    padding: 24px 0;
  }

  .c-hero-nav-grid {
    display: flex;
    justify-content: space-between;
    gap: 16px;
  }

  .c-hero-nav-grid > li {
    flex: 1;
  }

  .c-nav-button {
    min-height: 54px;
    font-size: 14px;
    padding: 12px 5px;
  }

  .c-nav-button::after {
    margin-top: 0;
    margin-left: 8px;
  }

  .c-special-feature__list {
    --switcher-columns-pc: 4;
    --switcher-gap-pc: 16px;
  }

  .c-feature-card__label {
    font-size: 18px;
    width: calc(100% - 35px);
  }

  .c-feature-card::before {
    bottom: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
  }

  .c-special-area {
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .c-special-area--pickup {
    padding-bottom: 30px;
  }

  .c-special-area--arealist {
    padding-bottom: 90px;
  }

  .c-special-title__title {
    padding-left: 42px;
    font-size: 26px;
    line-height: 1.4;
  }

  .c-special-title__title::before {
    width: 32px;
    height: 32px;
    background-image: url("/-/media/tfc/ts3travel/file/special_list/winter2025/img/icon_snow.svg");
  }

  .c-special-title__text {
    font-size: 14px;
    text-align: center;
  }

  .c-special-area__area-block {
    margin-top: 64px;
  }

  .c-first-block {
    margin-top: 24px;
  }

  .c-special-area__area-title {
    font-size: 24px;
    line-height: 1.4;
  }

  .c-special-area__area-title::after {
    height: 10px;
    bottom: 5px;
  }

  .c-pickup-card-list {
    max-width: 1080px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
    align-items: start;
    margin-left: auto;
    margin-right: auto;
  }

  /* --- pickupカード (PC) --- */

  .c-pickup-card__inner {
    padding: 16px;
  }

  .c-pickup-card__header {
    margin: -16px -16px 0;
  }

  .c-pickup-card__header img {
    max-height: 227px;
  }

  .c-pickup-card__title {
    text-shadow: 0 0 16px rgba(0, 0, 0, 0.5);
    font-size: 24px;
    line-height: 1.4;
  }

  .c-pickup-card__title-wrap {
    padding: 16px;
  }

  .c-pickup-card__body {
    padding: 16px 0 0;
  }

  .c-pickup-card__desc-txt {
    font-size: 14px;
    line-height: 1.4;
  }

  .c-pickup-card__desc-btn {
    font-size: 14px;
    text-align: left;
  }

  .c-pickup-card__subtitle {
    font-size: 18px;
    line-height: 1.4;
  }

  .c-pickup-card__hotel-swiper {
    overflow: hidden;
  }

  .c-pickup-card__search {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .c-pickup-card__drive {
    position: relative;
  }

  /* --- ホテルカード (PC) --- */
  .c-hotel-card {
    height: 204px;
  }

  .c-hotel-card__image-wrap {
    height: 120px;
  }

  .c-hotel-card__name {
    font-size: 14px;
    line-height: 1.4;
    max-height: 42px;
  }

  .c-hotel-card__button {
    font-size: 14px;
  }

  /* --- 検索ボタン (PC) --- */
  .c-search-button {
    font-size: 14px;
    line-height: 1.5;
    padding: 8px 12px;
  }

  .c-search-button--secondary::after {
    right: 12px;
  }

  /* --- ドライブカード (PC) --- */
  .c-drive-card__image {
    width: 152px;
    height: 97px;
  }

  .c-drive-card__date {
    font-size: 14px;
    line-height: 1.4;
  }

  .c-drive-card__title {
    font-size: 14px;
  }

  /* --- テーマ別宿ブロック (PC) --- */
  .c-theme-block {
    padding: 24px;
  }

  .c-theme-block__header {
    padding: 0 16px;
    height: 34px;
  }

  .c-theme-block__title {
    font-size: 24px;
    line-height: 1.4; /* 33.6px */
  }

  .c-theme-block__nav {
    display: none; /* PCではナビゲーション非表示 */
  }

  .c-theme-block__slider {
    margin-top: 16px;
    padding: 0;
    overflow: visible; /* PCでは表示 */
  }

  /* PCではSwiperを無効化しflexでレイアウトするため、swiper-wrapperに直接スタイルを当てる */
  .c-theme-block__slider .swiper-wrapper {
    display: flex;
    justify-content: center;
    gap: 16px;
  }

  /* PCではスライドの幅を自動調整させない */
  .c-theme-block__slider .swiper-slide {
    width: auto;
  }

  /* --- テーマ別宿カード (PC) --- */
  .c-theme-card {
    width: 167px; /* PC版のカード幅 */
  }

  .c-theme-card__image-wrapper {
    height: 126px;
  }

  .c-theme-card__tags {
    line-height: 1.4; /* 16.8px */
    min-height: 25px;
  }

  .c-theme-card__name {
    font-size: 14px;
    line-height: 1.4; /* 19.6px */
    min-height: 39.2px;
  }

  .c-theme-card__button {
    font-size: 14px;
  }

  .c-coupon-area {
    margin-top: 24px;
  }

  .c-coupon-image {
    height: 242px;
  }

  .c-faq {
    margin-top: 32px;
    padding: 20px 40px;
  }

  .c-faq__question {
    padding: 4px 0;
  }

  .c-faq__question-text {
    font-size: 14px;
    line-height: 1.4;
    max-width: 930px;
  }

  .c-faq__answer-inner {
    padding: 0 30px 20px 0;
  }

  .c-faq__answer-text {
    font-size: 14px;
    line-height: 1.4;
  }

  /* --- Swiper ナビゲーション (PC) --- */
  .swiper-navigation {
    justify-content: flex-end;
    width: auto;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #efede9;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    color: #000;
    background-image: url("/-/media/tfc/ts3travel/file/common/img/ico/arw_next_nobg.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 28px;
    --swiper-navigation-size: 28px;
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
    display: none;
  }

  .swiper-button-prev {
    left: -16px;
    transform: rotate(-180deg);
  }

  .swiper-button-next {
    right: -16px;
  }
}
