/* リセットCSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body, .eyecatch-section {
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
  overflow-x: hidden;
}

body {
  font-family: 'Noto Sans JP', 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  background: #40d0db;
  background: linear-gradient(153deg, #01b39b 0%, #40d0db 10%);
  color: #222;
  line-height: 1.7;
  font-size: 1rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =====================
   グローバルヘッダー（global-header）
   ===================== */
.global-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #ff0000;
}
.global-header-inner {
  display: flex;
  width: 100%;
  max-width: 430px;
  min-height: 64px;
  margin: 0 auto;
  padding: 0;
  align-items: center;
  font-size: 1rem;
}
.global-header-logo-link {
  display: flex;
  width: 184px;
  height: auto;
  margin: 0 auto;
  align-items: center;
  font-size: 1rem;
}
.global-header-logo {
  display: block;
  width: 100%;
  height: auto;
}

/* =====================
   アイキャッチ（eyecatch-section）
   ===================== */
.eyecatch-section {
  display: flex;
  overflow: hidden;
  justify-content: center;
  width: 100%;
  max-width: 100vw;
  /* min-height: 60vw; */
  margin: 0;
  padding: 0;
  align-items: flex-start;
  /* background: linear-gradient(153deg, #01b39b 25%, #40d0db 56%); */
  box-sizing: border-box;
}
.eyecatch-inner {
  display: flex;
  z-index: 1;
  width: 100%;
  max-width: 660px;
  margin: 0 auto;
  padding: 0;
  flex-direction: column;
  align-items: center;
  background-image: url('../img/eyecatch-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* background-attachment: fixed; パララックス効果 */
}
.eyecatch-keyvisual {
  display: flex;
  width: 100%;
  max-width: 630px;
  margin: 40px auto 20px;
  padding: 0;
  align-items: flex-start;
  justify-content: center;
}
.eyecatch-keyvisual-img {
  display: block;
  width: 100%;
  max-width: 36px;
  height: auto;
  z-index: 1;
}
.eyecatch-overlay {
  justify-content: flex-end;
  pointer-events: none;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
}
.eyecatch-labelbox {
  display: flex;
  z-index: 3;
  width: auto;
  margin: 20px;
  padding: 12px 12px 16px;
  box-sizing: border-box;
  flex-direction: column;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  pointer-events: auto;
  background: #ff9500;
  background-image: url('../img/bg-lanthanum.svg');
  background-repeat: no-repeat;
  background-size: 35px auto;
  background-position: top right;
  border-radius: 8px;
  align-items: center;
}
.eyecatch-label {
  width: 100%;
  margin-bottom: 8px;
  padding: 0;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-align: left;
}
.eyecatch-period {
  width: 100%;
  margin-bottom: 0;
  padding: 0;
  font-size: 1.125rem;
  font-weight: bold;
  color: #fff;
  text-align: left;
}
.eyecatch-keyvisual-text {
  z-index: 3;
  max-width: 320px;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  font-family: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', Arial, sans-serif;
  text-align: center;
  line-height: 2.2;
  pointer-events: auto;
}

/* =====================
   キャンペーン（campaign-section）
   ===================== */
   
.campaign-section {
  width: 100%;
  padding: 0 8px 28px;
}
.campaign-section-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 40px auto 0;
  padding: 12px 10px;
  gap: 16px;
  background: #fff;
  border-radius: 12px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', Arial, sans-serif;
  color: #242424;
}
.campaign-section-inner::before {
  content: "";
  position: absolute;
  top: -16px;      /* 上にはみ出す量（調整可） */
  right: 3px;    /* 右にはみ出す量（調整可） */
  width: 80px;     /* 画像サイズ（調整可） */
  height: 80px;    /* 画像サイズ（調整可） */
  background: url('../img/cp-decoration.svg') no-repeat center/contain;
  z-index: 10;
  pointer-events: none; /* クリック透過したい場合 */
}
.campaign-header {
  display: flex;
  margin: 0 6px;
  gap: 16px;
  flex-direction: column;
  align-items: flex-start;
}
.campaign-label {
  display: inline-block;
  padding: 2px 12px;
  background: #f2472c;
  color: #fff;
  font-size: 0.875rem; /* 14px */
  font-weight: bold;
  border-radius: 20px;
}
.campaign-title {
  color: #f2472c;
  font-size: 1.5rem; /* 24px */
  font-weight: bold;
  line-height: 1.05;
}
/* 横並び（画像あり） */
.campaign-desc-area {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin: 0 6px;
}
.campaign-desc {
  flex: 1 1 0;
  min-width: 0;
  font-weight: bold;
  font-size: 0.875rem; /* 14px */
  line-height: 1.4;
}
.campaign-feature-img {
  display: block;
  width: 76px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}
/* 画像が無い場合用クラス */
.campaign-desc-area--noimg {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 6px;
}
.campaign-desc-area--noimg .campaign-desc {
  width: 100%;
  flex: 1 1 100%;
}
.campaign-features {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.campaign-feature {
  width: 28vw;
  max-width: 126px;
  min-width: 96px;
  aspect-ratio: 1 / 1;
  height: auto;
  display: flex;
  position: relative;
  gap: 8px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url('../img/CampaignPointBg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
}
.campaign-feature-maintext {
  color: #fff;
  font-size: 1rem; /* 16px */
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  white-space: pre-line;
}
.campaign-feature-subtext {
  color: #fff;
  font-size: 0.875rem; /* 14px */
  font-weight: 300;
  text-align: center;
  line-height: 1.2;
  white-space: pre-line;
}
.campaign-features dl, .campaign-features dt, .campaign-features dd {
  margin: 0;
  padding: 0;
}
.campaign-features dt, .campaign-features dd {
  display: block;
}
.campaign-period {
  margin: 0;
  color: #242424;
  font-size: 0.875rem; /* 14px */
  font-weight: normal;
  line-height: 1.4;
}
.campaign-period-limited {
  display: block;
}
.campaign-period-note {
  display: block;
  font-size: 0.8125rem; /* 13px */
  color: #888;
  margin-top: 2px;
}
.campaign-period-list {
  padding-left: 20px;
  margin: 0;
  color: #242424;
  font-size: 0.875rem; /* 14px */
  font-weight: normal;
  line-height: 1.4;
}
.campaign-period-item {
  margin-bottom: 8px;
}

/* =====================
ピックアッププラン（pickup-plan-component）
===================== */
.pickup-plan-list {
  width: 100%;
  padding: 0 16px;
}
.pickup-plan-component {
  display: block;
  max-width: 600px;
  margin: 0 auto 28px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 20px 0 rgba(0,0,0,0.15);
  overflow: hidden;
  font-family: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', Arial, sans-serif;
  color: #242424;
  font-size: 1rem;
}
.pickup-plan-image-area {
  position: relative;
  width: 100%;
  aspect-ratio: 398 / 236;
  background: #eee;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  overflow: hidden;
}
.pickup-plan-image-area .main-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.label-text {
  position: absolute;
  background-color: #ff0000;
  color: #fff;
  text-align: center;
  z-index: 1;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Hiragino Kaku Gothic ProN', sans-serif;
  font-weight: bold;
  left: 4px;
  top: 4px;
}
.label-large {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.2;
  font-family: 'Hiragino Kaku Gothic ProN', sans-serif;
}
.present-label-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  background-color: #ff0000;
  top: 4px;
  left: 4px;
  z-index: 1;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  font-family: 'Hiragino Kaku Gothic ProN', sans-serif;
  font-weight: bold;
  font-size: 0.8125rem;
  line-height: 1.1;
  color: #fff;
  text-align: center;
}
.present-label-large {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.1;
  font-family: 'Hiragino Kaku Gothic ProN', sans-serif;
}
.pickup-plan-content {
  padding: 12px;
  background: #fff;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.plan-title {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem; /* 16px */
  font-weight: bold;
  line-height: 1.4;
}
.plan-prices {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 16px;
  gap: 10px;
}
.plan-prices-left {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
}
.discount-tag {
  background: #ff0000;
  padding: 0 4px;
  margin-right: 4px;
  color: #fff;
  font-size: 1rem; /* 16px */
  font-weight: bold;
  border-radius: 4px;
}
.original-price {
  margin-right: 4px;
  color: #6e6e6e;
  font-size: 1rem; /* 16px */
  text-align: left;
  text-decoration: line-through;
}
.sale-price {
  margin-left: auto;
  color: #ff0000;
  font-size: 1.5rem; /* 24px */
  font-weight: bold;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}
.sale-price-num {
  font-size: 2.25rem; /* 36px */
  font-weight: bold;
  line-height: 1;
}
.plan-spots {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 8px;
} 
.spot-tag {
  display: inline-block;
  padding: 0 8px;
  background: #00789b;
  color: #fff;
  font-size: 0.75rem; /* 12px */
  font-weight: bold;
  border-radius: 10px;
}
.plan-languages {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.lang-tag {
  display: inline-block;
  padding: 0 4px;
  font-size: 0.75rem; /* 12px */
  font-weight: bold;
  border-radius: 4px;
}
.lang-tag.active {
  background: #ff9500;
  color: #fff;
}
.lang-tag.inactive {
  background: #f2f2f2;
  color: #c8c8c8;
}
.plan-genres {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.genre-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: auto;
  padding: 2px 10px;
  border: 1px solid #aeaeb2;
  border-radius: 6px;
  color: #000;
  font-size: 0.75rem; /* 12px */
  font-weight: 400;
}
.genre-icon {
  width: 14px;
  height: 14px;
  display: inline-block;
}
.pickup-plan-plan-points {
  margin-bottom: 12px;
}
.pickup-plan-points-title {
  margin-bottom: 8px;
  font-size: 1rem; /* 16px */
  font-weight: bold;
}
.pickup-plan-points-list {
  list-style: none;
  padding-left: 0;
}
.pickup-plan-points-point {
  position: relative;
  padding-left: 20px; /* アイコン分の余白 */
  margin-bottom: 8px;
}
.pickup-plan-points-point::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 12px;
  height: 12px;
  background: url('../img/icon-flower.svg') no-repeat center/contain;
  display: inline-block;
}
.pickup-plan-subimages {
  display: flex;
  gap: 8px;
  width: 100%;
  margin-bottom: 14px;
  box-sizing: border-box;
}
.pickup-plan-subimages img {
  width: calc((100% - 16px) / 3);
  aspect-ratio: 119 / 92;
  height: auto;
  object-fit: cover;
  background: #eee;
  border-radius: 4px;
  display: block;
}
.plan-subimages img {
  display: block;
  width: calc((100% - 16px) / 3);
  height: 92px;
  object-fit: cover;
  background: #eee;
  border-radius: 4px;
}
.reserve-btn {
  display: block;
  width: 100%;
  padding: 10px;
  background: #f44336;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.2s;
}
.reserve-btn:hover {
  background: #d32f2f;
}

/* =====================
   ミニプラン（mini-plan）
   ===================== */
  .mini-plan-list {
    margin: 0 auto;
    padding: 0 12px 40px;
  }
  .mini-plan-list-grid {
  display: grid;
  width: 100%;
  max-width: 598px;
  margin: 0 auto;
  padding: 0;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 16px 8px;
  justify-content: center;
  align-items: start;
  }
  .mini-plan {
  display: block;
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px 0 rgba(0,0,0,0.15);
  border: 1px solid #e5e5ea;
  color: #242424;
  font-family: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', Arial, sans-serif;
  text-decoration: none;
}
.mini-plan-img-area {
  position: relative;
  width: 100%;
  aspect-ratio: 195 / 130;
  background: #eee;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  overflow: hidden;
}
.mini-plan-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mini-plan-label {
  display: flex;
  position: absolute;
  top: 4px;
  left: 4px;
  width: 46px;
  height: 46px;
  align-items: center;
  background-color: #ff0000;
  border-radius: 50%;
  justify-content: center;
}
.mini-plan-label-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  width: 46px;
  height: 46px;
  font-family: 'Hiragino Kaku Gothic ProN', sans-serif;
  font-weight: bold;
  font-size: 0.625rem;
  color: #fff;
  text-align: center;
}
.mini-plan-label-large {
  font-size: 0.8125rem; /* 13px */
  font-weight: bold;
  line-height: 1.1;
}
.mini-plan-label-present {
  font-size: 0.6875rem; /* 11px */
}
.mini-plan-content {
  padding: 8px;
  background: #fff;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.mini-plan-title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 0.875rem; /* 14px */
  font-weight: normal;
  line-height: 1.4;
  margin-bottom: 6px;
  max-height: calc(1.4em * 3);
  min-height: calc(1.4em * 3);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.mini-plan-area {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 6px;
}
.mini-plan-area-icon {
  width: 16px;
  height: 16px;
  margin-right: 2px;
}
.mini-plan-area-txt {
  font-size: 0.75rem;
  color: #242424;
}
.mini-plan-area-bar {
  font-size: 0.6875rem;
  color: #242424;
  margin: 0 2px;
}
.mini-plan-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 6px;
}
.mini-plan-discount-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.mini-plan-discount {
  background: #f44336;
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 4px;
  padding: 0 6px;
}
.mini-plan-original {
  color: #6e6e6e;
  font-size: 0.875rem; /* 14px */
  text-decoration: line-through;
}
.mini-plan-sale {
  color: #ff0000;
  display: flex;
  align-items: flex-end;
  font-size: 0.875rem;
  font-weight: bold;
}
.mini-plan-sale-yen {
  font-size: 0.875rem;
  font-weight: bold;
  margin-right: 1px;
}
.mini-plan-sale-num {
  font-size: 1.5rem; /* 24px */
  font-weight: bold;
  line-height: 1;
}
.mini-plan-sale-tilde {
  font-size: 0.875rem;
  font-weight: bold;
  margin-left: 1px;
}
.mini-plan-genres {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}
.mini-plan-genre {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  border: 1px solid #aeaeb2;
  padding: 0 4px;
  color: #000;
  font-size: 0.75rem; /* 12px */
  font-weight: 400;
  border-radius: 4px;
}
.mini-plan-genre-icon {
  width: 0.75rem; /* 12px */
  height: 0.75rem;
  display: inline-block;
}
.mini-plan-section {
  margin: 48px 0 0 0;
}
.mini-plan-section-header {
  width: 100%;
  background: #40d0db;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mini-plan-section-header-text {
  color: #fff;
  font-size: 1.125rem;
  font-weight: bold;
  font-family: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', Arial, sans-serif;
  line-height: 1.4;
}


/* =====================
   補足コンテンツ（Figmaデザイン準拠）
   ===================== */
.supplement {
  background: #ebf8fc;
  padding: 48px 0;
}
.taiwan-info {
  max-width: 630px;
  margin: 0 auto 32px;
  /* padding: 0 16px; */
}
.taiwan-info-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.5rem; /* 24px */
  font-weight: bold;
  color: #242424;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', Arial, sans-serif;
  margin: 0 16px 16px;
  text-align: center;
}
.taiwan-info-title-icon {
  width: 30px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.caution {
  max-width: 630px;
  margin: 0 auto;
  padding: 0 16px;
}
.caution-title {
  font-size: 24px;
  font-weight: bold;
  color: #242424;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', Arial, sans-serif;
  margin-bottom: 16px;
  text-align: center;
}
.caution-list {
  list-style: disc inside;
  font-size: 0.875rem; /* 14px */
  color: #242424;
  font-family: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', Arial, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  padding-left: 0;
}
.caution-item {
  margin-bottom: 8px;
  margin-left: 21px;
}

/* =====================
   台湾の基本情報テーブル
   ===================== */
.taiwan-info-table {
  max-width: 630px;
  margin: 24px 16px 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-collapse: separate;
  border-spacing: 0;
  font-family: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', Arial, sans-serif;
  font-size: 0.875rem; /* 14px */
  color: #242424;
  overflow: hidden;
}
.taiwan-info-table th, .taiwan-info-table td {
  padding: 12px 16px;
  vertical-align: top;
  border-bottom: 1px dashed #c7c7cc;
  text-align: left;
}
.taiwan-info-table th {
  width: 110px;
  font-weight: bold;
  color: #000;
}
.taiwan-info-table td {
  font-weight: 300;
  background: #fff;
}
.taiwan-info-table tr:last-child th,
.taiwan-info-table tr:last-child td {
  border-bottom: none;
}
.taiwan-info-link {
  margin: 40px auto 60px;
  padding: 0 16px;
  text-align: center;
}
.taiwan-info-link-text {
  margin-bottom: 12px;
  font-size: 1.125rem; /* 18px */
  font-weight: bold;
}
.taiwan-info-link-btn {
  display: block;
  max-width: 430px;
  margin: 0 auto;
  padding: 16px 10px;
  background: #fff;
  border-radius: 30px;
  border: 1px solid #ff0000;
  color: #ff0000;
  text-decoration: none;
  font-size: 1.125rem; /* 18px */
  font-weight: bold;
  line-height: 1.4;
}
/* =====================
   おすすめ観光スポット（recommend-spot-section）
   ===================== */
   .recommend-spot-section {
    width: 100%;
    max-width: 600px;
    margin: 48px auto 0 auto;
    padding: 0 0 40px;
  }
  .recommend-spot-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #242424;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.3;
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', Arial, sans-serif;
  }
  .recommend-spot-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 16px;
  }
  .recommend-spot-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: none;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    box-shadow: 0 4px 16px 0 rgba(0,0,0,0.10);
  }
  .recommend-spot-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px);
    transition: background-image 0.3s;
  }
  .recommend-spot-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0,0,0,0.3);
    pointer-events: none;
  }
  .recommend-spot-card-content {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    text-decoration: none;
    padding: 0;
    transition: box-shadow 0.2s;
    position: relative;
    z-index: 2;
  }
  /* 各カードごとの背景画像指定 */
  .recommend-spot-card.bg-101::before {
    background-image: url('../img/spot-101.jpg');
  }
  .recommend-spot-card.bg-kyuhun::before {
    background-image: url('../img/spot-kyuhun.jpg');
  }
  .recommend-spot-card.bg-kokyu::before {
    background-image: url('../img/spot-kokyu.jpg');
  }
  .recommend-spot-card-content:hover {
    box-shadow: 0 8px 24px 0 rgba(0,0,0,0.18);
  }
  .recommend-spot-card-thumb {
    display: flex;
    flex: 0 0 130px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 130px;
    height: 136px;
    margin: 0;
    border-top-left-radius: 16px;
    background: #eee;
  }
  .recommend-spot-card-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .recommend-spot-card-main {
    flex: 1 1 0;
    padding: 8px 16px 8px 8px;
    /* display: flex; */
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    gap: 8px;
    background-image: url('../img/icon-arrow.svg');
    background-repeat: no-repeat;
    background-position: right 4px center;
    background-size: 12px 12px;
  }
  .recommend-spot-card-title {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    line-height: 1.2;
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', Arial, sans-serif;
  }
  .recommend-spot-card-desc {
    font-size: 0.75rem;
    color: #ffffff;
    line-height: 1.4;
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', Arial, sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
  }
  .recommend-spot-card-tag {
    display: inline-block;
    background: #af7700;
    padding: 0 12px;
    color: #fff;
    font-size: 0.65rem;
    font-weight: bold;
    border-radius: 10px;
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', Arial, sans-serif;
  }
  .recommend-spot-plan {
    display: flex;
    flex-direction: row;
    gap: 8px;
    position: relative;
    z-index: 2;
    padding: 0;
    margin: 12px;
    background: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
  }
  .recommend-spot-plan-img {
    width: 110px;
    height: auto;
    object-fit: cover;
    border-radius: 8px 0 0 8px;
    flex-shrink: 0;
  }
  .recommend-spot-plan-inner {
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 1 0;
    min-width: 0;
  }
  .recommend-spot-plan-title {
    margin-bottom: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    color: #242424;
    line-height: 1.4;
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', Arial, sans-serif;
  }
  .recommend-spot-plan-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
  }
  .recommend-spot-plan-genres {
    display: flex;
    gap: 4px;
    width: 100%;
  }
  .recommend-spot-plan-genre {
    display: inline-block;
    align-items: center;
    gap: 4px;
    background: #fff;
    border: 1px solid #aeaeb2;
    border-radius: 4px;
    color: #000;
    font-size: 0.75rem;
    padding: 0 8px;
    line-height: 1.1;
  }
  .recommend-spot-plan-genre-icon {
    width: 12px;
    height: 12px;
    display: inline-block;
  }
  .recommend-spot-plan-spots {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .recommend-spot-plan-spot {
    display: inline-block;
    padding: 0 10px;
    background: #00789b;
    color: #fff;
    font-size: 0.625rem;
    font-weight: bold;
    border-radius: 10px;
  }
  .recommend-spot-plan-price {
    font-size: 1rem;
    font-weight: bold;
    color: #242424;
    display: flex;
    align-items: flex-end;
    gap: 2px;
  }
  .recommend-spot-plan-price-yen {
    font-size: 0.75rem;
    font-weight: bold;
    margin-right: 1px;
    line-height: 1.2;
  }
  .recommend-spot-plan-price-num {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1;
  }
  .recommend-spot-plan-price-tilde {
    font-size: 0.75rem;
    font-weight: bold;
    margin-left: 1px;
    line-height: 1.2;
  }
/* =====================
   フッター（footer-min）
   ===================== */
.footer-min {
  width: 100%;
  background: #6e6e6e;
  min-height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-min-inner {
  width: 100%;
  padding: 6px 0;
  color: #fff;
  font-size: 0.625rem; /* 10px */
  font-family: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', Arial, sans-serif;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}

.heading-deco {
  position: relative;
  display: flex;
  margin: 0 auto 12px;
  align-items: center;
  justify-content: center;
  /* background: #2ed2e2; 必要に応じて調整 */
  font-size: 1.125rem; /* 18px */
  font-weight: bold;
  color: #fff;
  text-align: center;
  max-width: 600px;
}

.heading-deco::before,
.heading-deco::after {
  content: "";
  display: inline-block;
  height: 14px;
  flex: 1;
  min-width: 40px;
  max-width: 200px;
  background-repeat: no-repeat;
  background-size: 14px 14px, calc(100% - 24px) 2px;
}

.heading-deco::before {
  background-image:
    url('../img/icon-flower.svg'),
    linear-gradient(to right, #f50057 100%, transparent 100%);
  background-position: left center, 14px center;
  background-size: 14px 14px, calc(100% - 24px) 2px;
}

.heading-deco::after {
  background-image:
    url('../img/icon-flower.svg'),
    linear-gradient(to left, #f50057 100%, transparent 100%);
  background-position: right center, right 14px center;
  background-size: 14px 14px, calc(100% - 24px) 2px;
}
@media (max-width: 412px) {
  .plan-prices {
    /* flex-direction: column;
    align-items: flex-start; */
    gap: 4px;
  }
  .plan-prices-left,
  .sale-price {
    font-size: 0.95rem;
    min-width: 0;
    margin: 0;
  }
  .sale-price {
    text-align: left;
  }
}
@media (max-width: 380px) {
  .campaign-features {
    gap: 4px;
    justify-items: center;
  }
  .campaign-feature {
    width: 80%;
    /* max-width: 180px; */
    min-width: 0;
    text-align: center; /* ← これを追加 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .campaign-feature-maintext,
  .campaign-feature-subtext {
    text-align: center; /* 念のため */
  }
  .plan-prices {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

/* @media (max-width: 600px) {
  .recommend-spot-section {
    max-width: 100%;
    padding: 0 4px 32px;
  }
  .recommend-spot-card-content {
    flex-direction: column;
    align-items: stretch;
  }
  .recommend-spot-card-thumb {
    width: 100%;
    height: 180px;
    border-radius: 16px 16px 0 0;
  }
  .recommend-spot-card-main {
    padding: 16px 12px 12px 12px;
  }
  .recommend-spot-plan {
    padding: 12px 12px 12px 12px;
    border-radius: 0 0 16px 16px;
  }
}
@media (max-width: 430px) {
  .recommend-spot-title {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }
  .recommend-spot-card-title {
    font-size: 1rem;
  }
  .recommend-spot-card-desc {
    font-size: 0.85rem;
  }
  .recommend-spot-plan-title {
    font-size: 0.95rem;
  }
  .recommend-spot-plan-price {
    font-size: 1.1rem;
  }
} */