/* ===========================
   タイムセール終了状態
   =========================== */

/* 開催中/終了の出し分け */
.ts-kv__timer-box--closed {
  display: none;
}

.timesale-closed .ts-kv__timer-box--active,
.timesale-closed .ts-kv__timer-balloon {
  display: none;
}

.timesale-closed .ts-kv__timer-box--closed {
  display: block;
}

/* 終了メッセージ */
.ts-kv__timer-ended {
  padding: 16px 16px 20px;
  text-align: center;
}

.ts-kv__timer-ended p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: #f00e47;
}

@media (max-width: 960px) {
  .ts-kv__timer-ended {
    padding: 10px 16px 14px;
  }

  .ts-kv__timer-ended p {
    font-size: 18px;
  }
}

.timesale-closed .ts-kv__timer-wrap {
  padding-top: 0;
}

.timesale-closed .ts-card__price-note,
.timesale-closed .ts-plans__note {
  display: none;
}

/* タイムセール終了: プランセクション */
.ts-plans__closed-message {
  text-align: center;
  padding: 3em 1em;
  font-size: 1.2rem;
  color: #555;
}

.ts-plans__closed-message p:first-child {
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.5em;
}

/* ===========================
   スクロールアニメーション
   =========================== */
.js-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   ユーティリティ
   =========================== */
.sp-only {
  display: none;
}

@media (max-width: 960px) {
  .sp-only {
    display: inline;
  }
}

/* ===========================
   KV（キービジュアル）
   =========================== */
.ts-kv {
  background-color: #fdd23e;
  position: relative;
  overflow: hidden;
  margin-top: -36px;
  padding-top: 36px;
}

.ts-kv::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 2px, transparent 2px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

.ts-kv__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.ts-kv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ts-kv__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 16px 10%;
  z-index: 2;
}

.ts-kv__hero {
  width: 100%;
}

.ts-kv__hero img {
  width: 100%;
  height: auto;
}

/* タイマーエリア */
.ts-kv__timer-wrap {
  position: relative;
  width: 100%;
  max-width: 680px;
}

.ts-kv__timer-balloon {
  position: absolute;
  top: -76px;
  right: -54px;
  width: 310px;
  transform: rotate(8deg);
  z-index: 1;
  animation: balloon-bounce 3s ease-in-out infinite;
}

@keyframes balloon-bounce {
  0%, 20%, 100% { translate: 0 0; }
  7% { translate: 0 -10px; }
  13% { translate: 0 -6px; }
}

.ts-kv__timer-balloon img {
  width: 100%;
  height: auto;
}

.ts-kv__timer-box {
  background: #fff;
  border: 4px solid #f00e47;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 8px 24px 0px #d7b51f;
}

/* タイマー上部（カウントダウン） */
.ts-kv__timer-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 22px 0 18px;
}

.ts-kv__timer-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.2;
  color: #f00e47;
  text-align: center;
}

.ts-kv__timer-label span {
  font-size: 16px;
}

.ts-kv__countdown {
  display: flex;
  align-items: baseline;
  white-space: nowrap;
}

#_fs_popCDT.ts-kv__countdown {
  gap: 0;
}

.ts-kv__countdown .countdown-number {
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: bold;
  font-size: 60px;
  line-height: 1;
  color: #f00e47;
}

.ts-kv__countdown .countdown-unit {
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: bold;
  font-size: 26px;
  line-height: 1;
  color: #f00e47;
  margin-right: 6px;
}

.ts-kv__countdown .countdown-unit:last-child {
  margin-right: 0;
}

/* タイマー下部（開催期間） */
.ts-kv__timer-bottom {
  background: #f00e47;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ts-kv__period {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 455px;
  margin: 0 auto;
}

.ts-kv__period-date {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 38px;
  line-height: 1;
  color: #fff;
  letter-spacing: 1.14px;
}

.ts-kv__period-date-last {
  letter-spacing: 3.8px;
}

.ts-kv__period-day {
  font-size: 24px;
  letter-spacing: 0.72px;
}

.ts-kv__period-arrow {
  width: 36px;
  height: 16px;
}

/* KV レスポンシブ（タブレット） */
@media (min-width: 768px) and (max-width: 1200px) {
  .ts-kv__inner {
    padding-bottom: 126px;
  }
}

/* KV レスポンシブ（SP：ts-kv__inner） */
@media (max-width: 767px) {
  .ts-kv__inner {
    gap: 0;
    padding: 24px 16px 13%;
  }
}

/* KV レスポンシブ（SP） */
@media (max-width: 767px) {

  .ts-kv__hero {
    width: 116%;
    padding-bottom: 0;
  }

  .ts-kv__timer-wrap {
    max-width: 100%;
    padding-top: 74px;
  }

  .ts-kv__timer-balloon {
    top: 0;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
  }

  .ts-kv__timer-box {
    border-width: 2px;
    border-radius: 10px;
  }

  .ts-kv__timer-top {
    gap: 12px;
    align-items: flex-start;
    padding: 14px 0 10px;
  }

  .ts-kv__timer-label {
    font-size: 12px;
    color: #f00e47;
    white-space: nowrap;
    flex-shrink: 0;
    width: max-content;
  }

  .ts-kv__timer-label span {
    font-size: 10px;
  }

  #_fs_popCDT.ts-kv__countdown {
    gap: 0;
  }

  .ts-kv__countdown .countdown-number {
    font-size: 30px;
  }

  .ts-kv__countdown .countdown-unit {
    font-size: 13px;
  }

  .ts-kv__timer-bottom {
    padding: 8px 12px;
  }

  .ts-kv__period {
    gap: 9px;
    max-width: 280px;
  }

  .ts-kv__period-date {
    font-size: 23px;
    letter-spacing: 0.7px;
  }

  .ts-kv__period-date-last {
    letter-spacing: 2.3px;
  }

  .ts-kv__period-day {
    font-size: 15px;
    letter-spacing: 0.45px;
  }

  .ts-kv__period-arrow {
    width: 21px;
    height: 9px;
  }
}

@media (max-width: 374px) {
  .ts-kv__timer-top {
    gap: 8px;
  }

  .ts-kv__timer-label {
    font-size: 11px;
  }

  .ts-kv__timer-label span {
    font-size: 9px;
  }

  .ts-kv__countdown .countdown-number {
    font-size: 26px;
  }

  .ts-kv__countdown .countdown-unit {
    font-size: 12px;
  }
}

/* ===========================
   カード
   =========================== */

/*カード*/
.ts-card {
  width: 280px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 6px 6px 0px 0px #c8e3ff;
  transition: box-shadow 0.2s, opacity 0.2s, transform 0.2s;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}

.ts-card:hover {
  box-shadow: 2px 2px 0px 0px #c8e3ff;
  opacity: 0.8;
  transform: translate(4px, 4px);
}

.ts-card__image {
  max-width: 100%;
  width: 100%;
  overflow: hidden;
}

.ts-card__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 275 / 168;
  object-fit: cover;
}

.ts-card__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
}

.ts-card__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 17px;
  line-height: 1.4;
  color: #0f294d;
}

.ts-card__price-area {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.ts-card__discount-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: #f00e47;
  border-radius: 4px;
  padding: 4px 8px;
}

.ts-card__discount-label {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 13px;
  color: #fff;
  line-height: 1;
}

.ts-card__discount-label::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 7px solid #fff;
  position: relative;
  top: -1px;
}

.ts-card__discount-value {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 14px;
  color: #fff;
  line-height: 1;
}

.ts-card__price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}

.ts-card__price-caption {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  line-height: 1.5;
  color: #455873;
}

.ts-card__price-values {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
  line-height: 1;
}

.ts-card__price-original {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 13px;
  color: #0f294d;
  text-decoration: line-through;
}

.ts-card__price-current {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 26px;
  color: #f00e47;
}

/* スケルトン */
@keyframes skeleton-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.ts-skeleton {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
}

.ts-skeleton__card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.ts-skeleton__bone {
  background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite ease-in-out;
  border-radius: 4px;
}

.ts-skeleton__image {
  width: 100%;
  aspect-ratio: 275 / 168;
}

.ts-skeleton__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.ts-skeleton__title {
  height: 18px;
  width: 80%;
}

.ts-skeleton__badge {
  height: 28px;
  width: 120px;
  align-self: flex-end;
  border-radius: 4px;
}

.ts-skeleton__price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.ts-skeleton__caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ts-skeleton__caption-line {
  height: 12px;
  width: 70px;
}

.ts-skeleton__prices {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}

.ts-skeleton__price-old {
  height: 13px;
  width: 80px;
}

.ts-skeleton__price-new {
  height: 26px;
  width: 110px;
}

/* ===========================
   KV→プランセクション境目の波
   =========================== */

.ts-plans-wave {
  position: relative;
  z-index: 5;
  width: 100%;
  line-height: 0;
  margin-top: -6.25vw;
  margin-bottom: -1px;
}

.ts-plans-wave::after {
  content: "";
  background-color: #183f98;
  display: block;
  position: absolute;
  z-index: -1;
  bottom: -5px;
  width: 100vw;
  height: 10px;
}

.ts-plans-wave img {
  width: 102vw;
  margin-left: -1vw;
  height: auto;
  display: block;
  max-width: none;
}

@media (max-width: 960px) {
  .ts-plans-wave {
    margin-top: -8.21vw;
    margin-bottom: -1px;
  }
}

/* ===========================
   FAQ波（プラン→FAQ境目）
   =========================== */
.ts-faq-wave {
  position: relative;
  z-index: 5;
  width: 100%;
  line-height: 0;
  margin-top: -6.25vw;
  margin-bottom: -1px;
}

.ts-faq-wave img {
  width: 102vw;
  margin-left: -1vw;
  height: auto;
  display: block;
  max-width: none;
}

@media (max-width: 960px) {
  .ts-faq-wave {
    margin-top: -8.21vw;
    margin-bottom: -1px;
  }
}

/* ===========================
   特別プライスセクション
   =========================== */

.ts-plans {
  background: #183f98;
  position: relative;
}

.ts-plans__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 0 calc(80px + 6.25vw);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* セクションタイトル */
.ts-plans__header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}

.ts-plans__header-deco {
  position: absolute;
  z-index: 1;
  filter: drop-shadow(4px 6px 0px #102f75);
}

.ts-plans__header-deco--left {
  width: 128px;
  height: 90px;
  left: calc(50% - 400px);
  top: 126px;
}

.ts-plans__header-deco--right {
  width: 114px;
  height: 114px;
  left: calc(50% + 272px);
  top: 118px;
}

.ts-plans__head {
  position: relative;
  width: 540px;
  max-width: 100%;
  margin-bottom: 32px;
}


.ts-plans__title {
  width: 100%;
  height: auto;
  display: block;
}

/* サブタイトル */
.ts-plans__subtitle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 24px;
  margin-bottom: 40px;
}

.ts-plans__subtitle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.6;
  color: #fff;
  text-align: center;
}

.ts-plans__subtitle-accent {
  color: #fef103;
}

.ts-plans__note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  color: #fff;
  text-align: center;
}

/* カードコンテナ */
.ts-plans__container {
  width: 100%;
  background: #e7f2fd;
  border-radius: 40px;
  padding: 40px 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}




/* 出発地セレクター */
.ts-plans__departure {
  background: #d3e6f9;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.ts-plans__departure-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #183f98;
}

.ts-plans__departure-pulldown {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 999px;
  padding: 16px 40px 16px 24px;
  width: 320px;
  box-shadow: 4px 4px 0px 0px #b6d9fb;
  position: relative;
  cursor: pointer;
}

.ts-plans__departure-content {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.ts-plans__departure-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  position: relative;
  top: -3px;
}

.ts-plans__departure-icon img {
  width: 100%;
  height: 100%;
}

.ts-plans__departure-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 24px;
  color: #a4b2c8;
}

.ts-plans__departure-text.is-selected {
  color: #183f98;
}

.ts-plans__departure-select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}

.ts-plans__departure-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 7px;
}

.ts-plans__departure-arrow img {
  width: 100%;
  height: 100%;
  display: block;
}

/* プラン内プレースホルダー */
.ts-plans__plan-placeholder {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 48px 24px;
  width: 100%;
}

.ts-plans__plan-placeholder p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: #61728d;
  text-align: center;
  margin: 0;
}

/* プラン一覧ラッパー */
.ts-plans__plan-group {
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
  max-width: 1120px;
  width: 100%;
}

/* プランセクション */
.ts-plans__plan {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

/* プランヘッダー */
.ts-plans__plan-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 16px;
}

.ts-plans__plan-head-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.ts-plans__plan-mascot {
  width: 76px;
  height: 76px;
  object-fit: contain;
  flex-shrink: 0;
}

.ts-plans__plan-desc {
  padding-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ts-plans__plan-desc img {
  height: 49px;
  width: auto;
  display: block;
}

/* リボン */
.ts-plans__ribbon {
  display: inline-flex;
  align-items: stretch;
  margin-bottom: -16px;
}

.ts-plans__ribbon-cap {
  width: 17px;
  flex-shrink: 0;
}

.ts-plans__ribbon-cap img {
  width: 100%;
  height: 100%;
  display: block;
}

.ts-plans__ribbon-body {
  width: 300px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ts-plans__ribbon-body--blue {
  background: #183f98;
}

.ts-plans__ribbon-body--orange {
  background: #f15913;
}

.ts-plans__ribbon-body--emerald {
  background: #0d8f9a;
}

.ts-plans__ribbon-body img {
  height: 32px;
  width: auto;
  display: block;
}

/* カードグリッド */
.ts-plans__plan-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
}

.ts-plans__plan-cards .ts-card {
  width: 100%;
}

@media (max-width: 768px) {
  .ts-plans__container {
    width: calc(100% + 40px);
  }
  .ts-plans__plan-head {
    right: -10px;
    width: calc(100% + 20px) !important;

  }
}

@media (max-width: 992px) {
.ts-plans__container {
    width: calc(100% + 40px);
  }

  .ts-plans__plan-head {
    position: relative;
    right: -20px;
    width: calc(100% + 40px) !important;
    align-items: flex-start;
    padding-bottom: 0;
    gap: 8px;
  }

  .ts-plans__plan-head-top {
    margin-bottom: 0;
    gap: 0;
    position: static;
    justify-content: flex-start;
  }

  .ts-plans__plan-mascot {
    position: absolute;
    bottom: 0;
    right: 40px;
    width: 72px;
    height: 72px;
    object-fit: cover;
    object-position: center top;
    z-index: 2;
  }

  .ts-plans__plan-desc {
    padding-top: 0;
    justify-content: flex-start;
  }

  .ts-plans__plan-desc img {
    height: 18px;
    width: auto;
  }

  .ts-plans__ribbon {
    display: flex;
    width: 100%;
    margin-bottom: 0;
  }

  .ts-plans__ribbon-cap {
    max-height: 42px;
    width: 14px;
  }

  .ts-plans__ribbon-cap:last-child {
    display: none;
  }

  .ts-plans__ribbon-body {
    flex: 1;
    width: auto;
    max-height: 42px;
    padding: 10px 16px 10px 10px;
    justify-content: flex-start;
  }

  .ts-plans__ribbon-body img {
    height: 23px;
  }

  .ts-plans__plan-group {
    gap: 64px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .ts-plans__plan-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 0;
  }

  .ts-plans__header {
    gap: 16px;
    padding: 0;
  }

  .ts-plans__header-deco {
    display: block;
  }

  .ts-plans__header-deco--left {
    width: 85px;
    height: 60px;
    left: -85px;
    top: 90px;
  }

  .ts-plans__header-deco--right {
    width: 76px;
    height: 76px;
    left: auto;
    right: -71px;
    top: 85px;
  }

  .ts-plans__head {
    width: 400px;
    max-width: 100%;
    margin-bottom: 16px;
  }

  .ts-plans__subtitle-wrap {
    max-width: 470px;
    gap: 20px;
    padding: 0;
    margin-bottom: 32px;
  }

  .ts-plans__subtitle-wrap::before,
  .ts-plans__subtitle-wrap::after {
    display: none;
  }

  .ts-plans__subtitle {
    font-size: 16px;
    gap: 8px;
  }

  .ts-plans__note {
    font-size: 13px;
  }
}

/* シェアセクション */
.ts-plans__share {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 64px 0 0;
}

.ts-plans__share-title {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ts-plans__share-title img {
  width: 381px;
  max-width: 100%;
  height: auto;
}

.ts-plans__share-icons {
  display: flex;
  gap: 16px;
}

.ts-plans__share-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.ts-plans__share-icon:hover {
  opacity: 0.8;
}

.ts-plans__share-icon img {
  width: 40px;
  height: 40px;
}

/* 特別プライス レスポンシブ（SP） */
@media (max-width: 960px) {
  .ts-plans__inner {
    padding: 32px 16px calc(48px + 8.21vw);
  }


  .ts-plans__container {
    border-radius: 24px;
    padding: 24px 40px 48px;
    gap: 32px;
  }

  .ts-plans__departure {
    padding: 16px;
    gap: 10px;
    border-radius: 16px;
  }

  .ts-plans__departure-label {
    font-size: 15px;
  }

  .ts-plans__departure-pulldown {
    width: 100%;
    max-width: 270px;
    padding: 12px 40px 12px 24px;
  }

  .ts-plans__departure-icon {
    width: 22px;
    height: 22px;
  }

  .ts-plans__departure-text {
    font-size: 20px;
  }

  .ts-plans__departure-arrow {
    right: 16px;
  }

  .ts-plans__plan-placeholder {
    border-radius: 8px;
    padding: 24px;
  }

  .ts-plans__plan-placeholder p {
    font-size: 15px;
  }

  .ts-plans__plan-group {
    gap: 48px;
    /* width: calc(100% + 20px); */
  }

  .ts-plans__plan {
    gap: 16px;
  }

  .ts-skeleton {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .ts-plans__share {
    gap: 16px;
    padding-top: 48px;
  }

  .ts-plans__share-title img {
    width: 272px;
  }

  .ts-plans__share-icons {
    gap: 16px;
  }

  .ts-plans__share-icon {
    width: 64px;
    height: 64px;
  }

  .ts-plans__share-icon img {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 767px) {
  .ts-plans__plan-cards {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 0 0 12px;
    scroll-padding-left: 20px;
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }

  .ts-plans__plan-cards .ts-card {
    width: 280px;
    min-width: 280px;
  }

  .ts-plans__plan-cards .ts-card:first-child {
    margin-left: 20px;
  }

  .ts-plans__plan-cards .ts-card:last-child {
    margin-right: 20px;
  }

  .ts-plans__container {
    padding: 24px 20px 48px;
  }

  .ts-skeleton {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: hidden;
    gap: 20px;
    width: calc(100% + 20px);
    margin-right: -20px;
  }

  .ts-skeleton__card {
    width: 280px;
    min-width: 280px;
  }

  .ts-plans__header-deco {
    display: none;
  }

  .ts-plans__header {
    padding: 0;
  }

  .ts-plans__head {
    width: 100%;
    max-width: 320px;
    margin-bottom: 16px;
  }

  .ts-plans__subtitle-wrap {
    position: relative;
    gap: 20px;
    padding: 0;
    max-width: 340px;
    width: 100%;
    margin-bottom: 32px;
  }

  .ts-plans__subtitle-wrap::before {
    content: "";
    position: absolute;
    width: 71px;
    height: 50px;
    left: -3px;
    top: 4px;
    background: url("../img/plan/img_ei.png") no-repeat center / contain;
    filter: drop-shadow(4px 6px 0px #102f75);
    z-index: 1;
    pointer-events: none;
  }

  .ts-plans__subtitle-wrap::after {
    content: "";
    position: absolute;
    width: 64px;
    height: 64px;
    right: -7px;
    top: 0;
    background: url("../img/plan/img_hibiscus.png") no-repeat center / contain;
    filter: drop-shadow(4px 6px 0px #102f75);
    z-index: 1;
    pointer-events: none;
  }

  .ts-plans__subtitle {
    font-size: 16px;
    gap: 8px;
  }

  .ts-plans__note {
    font-size: 13px;
  }
}



/* 一旦非表示用*/
.ts-card__discount-badge {
  display: none;
}
.ts-card__price-original {
  display: none;
}
