/* ============================================================
   スムーススクロール
============================================================ */
html { scroll-behavior: smooth; }
@media (max-width: 767px) {
  html { scroll-padding-top: 142px; }
}


/* ============================================================
   スムーススクロール
============================================================ */
@font-face {
  font-family: "notosans";
  font-weight: 700;
  src: url("/static/css/fonts/notosans/NotoSans-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "notosans";
  font-weight: 900;
  src: url("/static/css/fonts/notosans/NotoSans-Bold.woff2") format("woff2");
  font-display: swap;
}

/* ============================================================
   共通
============================================================ */

.p-section-header {
  text-align: center;
  margin-bottom: 32px;
}
.p-section-header__title {
  font-size: 20px;
  font-weight: bold;
  color: #1A1A1A;
  line-height: 1.4;
  margin-bottom: 8px;
}
.p-section-header__title--light {
  color: #FFFFFF;
}
.p-section-header__text {
  font-size: 14px;
  color: #666666;
}
@media (min-width: 768px) {
  .p-section-header {
    margin-bottom: 48px;
  }
  .p-section-header__title {
    font-size: 28px;
    margin-bottom: 10px;
  }
}

/* ============================================================
   ヒーローセクション（KV）
============================================================ */
.p-hero-sale {
  background: url(/static/img/wex/20th/sale-sep/hero-bg-sp.webp) center / cover no-repeat;
  overflow: hidden;
}
.p-hero-sale__canvas {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 56px;
}
.p-hero-sale__title-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 28px;
  margin: 0;
}
.p-hero-sale__title-img {
  display: block;
  width: 100%;
  height: auto;
}
.p-hero-sale__schedule {
  display: none;
  height: auto;
}
.p-sale__period-text{
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  padding: 0 8px 24px;
}
@media (min-width: 768px) {
  .p-hero-sale {
    background-image: url(/static/img/wex/20th/sale-sep/hero-bg.webp);
  }
  .p-hero-sale__canvas {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1920 / 1037;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0;
    padding-bottom: 72px;
  }
  .p-hero-sale__title-wrap {
    width: 48.4375%; /* 930/1920 */
    padding: 0;
  }
}

/* ============================================================
   セールナビ（ローカルナビ）
============================================================ */
.p-sale-nav {
  background: #FF558F;
  z-index: 100;
}
.p-sale-nav__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (max-width: 767px) {
  article { overflow: visible; }
  .p-sale-nav { position: sticky; top: 0; }
  .p-sale-nav.is-sticky .p-sale-nav__list {
    padding: 8px 0;
  }
}

/* SP：円形ボタン */
.p-sale-nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 16px 0 26px;
  gap: 6px;
  justify-content: center;
}
.p-sale-nav__item {
  position: relative;
  flex: 1;
  max-width: 114px;
  aspect-ratio: 114 / 124;
}
/* 影円（後ろ） */
.p-sale-nav__item::before {
  content: '';
  position: absolute;
  top: 8.06%; /* 10/124 */
  left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  background: none;
  border: 3px solid #fff;
}
/* 白円（前面・クリック領域） */
.p-sale-nav__link {
  position: absolute;
  top: 0; left: 0; right: 0;
  bottom: 8.06%; /* 10/124 */
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  transition: transform 0.12s ease;
}
.p-sale-nav__link:hover,
.p-sale-nav__link:active { transform: translateY(8px); opacity: 1; text-decoration: none; }
.p-sale-nav__label {
  font-size: 14px;
  font-weight: bold;
  color: #FF5666;
  text-align: center;
  line-height: 1.4;
}
.p-sale-nav__arrow {
  font-size: 10px;
  color: #FF5666;
  line-height: 1;
}

/* PC：ピル型ボタン */
@media (min-width: 768px) {
  .p-sale-nav__list {
    gap: 24px;
    justify-content: center;
    padding: 20px 15px 101px;
    max-width: 1140px;
    margin: 0 auto;
  }
  .p-sale-nav__item {
    flex: 1;
    max-width: 364px;
    height: 86px;
    aspect-ratio: unset;
  }
  /* 影ピル（後ろ）：白ボーダーリング */
  .p-sale-nav__item::before {
    top: 11px; /* 12.79% of 86px */
    border-radius: 100px;
    background: transparent;
    border: 4px solid #fff;
  }
  /* 白ピル（前面） */
  .p-sale-nav__link {
    bottom: 11px;
    border-radius: 100px;
    flex-direction: row;
    justify-content: center;
    gap: 0;
    padding: 0 48px 0 24px;
  }
  .p-sale-nav__link:hover { transform: translateY(10px); }
  .p-sale-nav__label {
    font-size: 22px;
    line-height: 1;
    text-align: left;
  }
  .p-sale-nav__arrow {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
  }
}

/* ============================================================
   セールセクション（共通）
============================================================ */
.p-sale-section {
  padding: 56px 0;
}
.p-sale-section--gray {
  background: #F5F5F5;
}
.p-sale-section__num {
  text-align: center;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.2em;
  color: #FFFFFF;
  background: #444444;
  display: inline-block;
  padding: 3px 14px;
  margin-bottom: 12px;
}
.p-sale-section__num-wrap {
  text-align: center;
  margin-bottom: 4px;
}
.p-sale-section__title {
  font-size: 22px;
  font-weight: bold;
  color: #1A1A1A;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 8px;
}
.p-sale-section__subtitle {
  font-size: 14px;
  color: #666666;
  text-align: center;
  margin-bottom: 32px;
}
.p-sale-section__discount {
  text-align: center;
  margin-bottom: 32px;
}
.p-sale-section__discount-val {
  display: inline-block;
  font-size: 48px;
  font-weight: bold;
  color: #1A1A1A;
  line-height: 1;
}
.p-sale-section__discount-unit {
  font-size: 48px;
  font-weight: bold;
}
.p-sale-section__conditions {
  border: 1px solid #DDDDDD;
  border-radius: 4px;
  margin-bottom: 32px;
  overflow: hidden;
  background: #FFFFFF;
}
.p-sale-section__condition-row {
  display: flex;
  border-bottom: 1px solid #EBEBEB;
}
.p-sale-section__condition-row:last-child {
  border-bottom: none;
}
.p-sale-section__condition-dt {
  flex-shrink: 0;
  width: 96px;
  padding: 12px 14px;
  font-size: 12px;
  font-weight: bold;
  color: #444444;
  background: #F5F5F5;
}
.p-sale-section__condition-dd {
  flex: 1;
  padding: 12px 14px;
  font-size: 13px;
  color: #1A1A1A;
}
.p-sale-section__btn {
  text-align: center;
  margin-top: 8px;
}
.p-sale-section__routes {
  margin-bottom: 32px;
}
.p-sale-section__routes-title {
  font-size: 20px;
  font-weight: bold;
  color: #1A1A1A;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .p-sale-section {
    padding: 80px 0;
  }
  .p-sale-section__title {
    font-size: 32px;
  }
  .p-sale-section__subtitle {
    font-size: 16px;
  }
  .p-sale-section__discount-val {
    font-size: 72px;
  }
  .p-sale-section__discount-unit {
    font-size: 72px;
  }
  .p-sale-section__routes-title {
    font-size: 24px;
  }
  .p-sale-section__condition-dt {
    width: 120px;
    font-size: 13px;
  }
  .p-sale-section__condition-dd {
    font-size: 14px;
  }
}

/* ============================================================
   c-accordion
============================================================ */
.c-accordion { max-width: 900px; }
.c-accordion__item { border-bottom: 1px solid #D4D4D4; }
.c-accordion__item:first-of-type { border-top: 1px solid #D4D4D4; }
.c-accordion__summary { display: flex; align-items: center; gap: 8px; padding: 16px 48px 16px 8px; font-size: 14px; font-weight: bold; color: #2F242C; cursor: pointer; list-style: none; position: relative; line-height: 1.5; }
.c-accordion__summary::-webkit-details-marker { display: none; }
.c-accordion__summary::after { content: "\f067"; font-family: "Font Awesome 5 Free"; font-weight: 900; font-size: 14px; color: #999; position: absolute; top: 50%; right: 16px; transform: translateY(-50%); }
.c-accordion__item[open] .c-accordion__summary::after { content: "\f068"; }
.c-accordion__prefix { font-weight: bold; color: #9F9F9F; font-size: 1.1em; flex-shrink: 0; }
.c-accordion__body { padding: 0 8px 20px; font-size: 14px; line-height: 1.8; color: #2F242C; }
.c-accordion__body p + p { margin-top: 8px; }
@media (min-width: 768px) {
  .c-accordion__summary { padding: 20px 48px 20px 20px; font-size: 16px; }
  .c-accordion__body { padding: 0 20px 20px; font-size: 16px; }
}

/* ============================================================
   路線リスト
============================================================ */
.p-route-list { list-style: none; padding: 0; margin: 0; }
.p-route-list__item { padding-bottom: 16px; border-bottom: 2px dashed #707070; }
.p-route-list__item + .p-route-list__item { margin-top: 24px; }
.p-route-list__item:last-child { border-bottom: none; padding-bottom: 0; }
.c-route { display: flex; align-items: center; gap: 12px; }
.c-route__icons { display: flex; gap: 4px; flex-shrink: 0; }
.c-route__icon img { width: 28px; height: 28px; display: block; }
.c-route__name { font-size: 16px; font-weight: bold; display: flex; align-items: center; gap: 6px; flex: 1; margin: 0; }
.c-route__arrow { display: inline-block; width: 20px; height: 12px; background: url(/static/img/seat/common/ico_arw01.png) center / contain no-repeat; flex-shrink: 0; }
.c-route__price { font-size: 22px; font-weight: bold; color: #C01B68; white-space: nowrap; flex-shrink: 0; margin: 0; }
.c-route__price-unit { font-size: 14px; }
.c-route__btns { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.c-route__btn { display: block; text-align: center; color: #fff; padding: 10px 32px 10px 12px; font-size: 14px; text-decoration: none; border-radius: 4px; background: #7C6B62; position: relative; }
.c-route__btn--from { background: #392F2A; }
.c-route__btn:hover { opacity: 0.8; color: #fff; text-decoration: none; }
.c-route__btn::after { content: "›"; position: absolute; right: 10px; top: 50%; transform: translateY(-50%); font-size: 18px; }
@media (min-width: 768px) {
  .p-route-list__item { display: flex; align-items: center; gap: 24px; }
  .c-route { flex: 1; }
  .c-route__btns { flex-direction: row; margin-top: 0; flex-shrink: 0; }
  .c-route__btn { flex: 1; min-width: 160px; }
}

/* 打ち消し価格ラッパー（SALE 02・03用） */
.p-route-price {
  flex-shrink: 0;
  text-align: right;
}
.p-route-price__original {
  display: block;
  font-size: 11px;
  color: #999999;
  text-decoration: line-through;
  margin-bottom: 2px;
}
#sale-02 .p-route-price__original,
#sale-03 .p-route-price__original {
  font-size: 16px;
}
#sale-02 .c-route__price,
#sale-03 .c-route__price {
  font-size: 24px;
}

/* ============================================================
   バスカードグリッド（SALE 01用）
============================================================ */
.p-bus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-bus-card {
  border-radius: 8px;
  background: #CCCCCC;
  padding: 16px;
}
.p-bus-card__img-area {
  display: block;
  padding: 0;
  min-height: 0;
  border-radius: 4px;
}
.p-bus-card__distance {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 16px 0;
  background: #1A1A1A;
}
.p-bus-card__distance-formula {
  display: flex;
  align-items: baseline;
  color: #FFFFFF;
  line-height: 1;
  white-space: nowrap;
}
.p-bus-card__distance-yaku {
  font-size: 16px;
  font-weight: bold;
  margin-right: 2px;
}
.p-bus-card__distance-km {
  font-size: 48px;
  font-weight: bold;
  letter-spacing: -0.02em;
}
.p-bus-card__distance-x5 {
  font-size: 48px;
  font-weight: bold;
  margin-left: 4px;
  letter-spacing: 0.02em;
}
.p-bus-card__distance-bus {
  display: block;
  width: 120px;
  height: auto;
  position: relative;
  bottom: -16px;
  z-index: 2;
}
.p-bus-card__body {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 32px 16px 16px;
  position: relative;
  z-index: 1;
}
.p-bus-card__route {
  font-size: 18px;
  font-weight: bold;
  color: #1A1A1A;
  text-align: center;
  margin-bottom: 16px;
}
.p-bus-card__pricing {
  text-align: center;
  margin-bottom: 20px;
}
.p-bus-card__price-original {
  font-size: 12px;
  color: #999999;
  text-decoration: line-through;
  margin-right: 8px;
}
#sale-01 .p-bus-card__price-original {
  font-size: 16px;
}
.p-bus-card__price-sale {
  font-size: 12px;
  color: #1A1A1A;
}
.p-bus-card__price-sale strong {
  font-size: 26px;
  font-weight: bold;
  color: #1A1A1A;
}
.p-bus-card__btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.p-bus-card__btn {
  display: block;
  padding: 12px 8px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  border-radius: 4px;
  text-decoration: none;
  background: #DDDDDD;
  color: #1A1A1A;
}
.p-bus-card__btn--primary {
  background: #444444;
  color: #FFFFFF;
}
.p-bus-card__btn:hover { opacity: 0.8; text-decoration: none; }
@media (min-width: 768px) {
  .p-bus-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .p-bus-card__route { font-size: 20px; }
  .p-bus-card__price-sale strong { font-size: 28px; }
  .p-bus-card__distance-km { font-size: 56px; }
  .p-bus-card__distance-x5 { font-size: 56px; }
  .p-bus-card__distance-yaku { font-size: 18px; }
}

/* ============================================================
   注意事項
============================================================ */
.p-caution {
  padding: 56px 0;
  background: #F5F5F5;
}
.p-caution__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-caution__item {
  position: relative;
  padding-left: 1.4em;
  font-size: 13px;
  color: #444444;
  line-height: 1.8;
  margin-bottom: 8px;
}
.p-caution__item::before {
  content: '※';
  position: absolute;
  left: 0;
}
.p-caution__item:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .p-caution {
    padding: 80px 0;
  }
  .p-caution__item {
    font-size: 14px;
  }
}

/* ============================================================
   SALE 01 セクション
============================================================ */
.p-sale01 {
  background: linear-gradient(94deg, #80E39A 3.96%, #50C153 88.32%);
}

/* グリーンヘッダー（タイトルバッジエリア） */
.p-sale01__green {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.p-sale01__title-img {
  display: block;
  width: 260px;
  height: auto;
}

/* ホワイトボディ（#f3f7f4 淡緑白エリア） */
.p-sale01__body {
  background: #f3f7f4;
  border-radius: 30px 30px 0 0;
  margin-top: -70px;
  padding-top: 48px;
  position: relative;
  z-index: 1;
  padding-bottom: 48px;
}

/* セクションヘッダー */
.p-sale01__hd {
  text-align: center;
  padding: 40px 0 32px;
}
.p-sale01__main-heading {
  font-size: 20px;
  font-weight: bold;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 12px;
}
.p-sale01__main-heading strong {
  font-size: 28px;
}
.p-sale01__highlight {
  padding: 0 16px;
  background: linear-gradient(transparent 65%, #ffe102 65%);
}
.p-sale01__main-sub {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #1a1a1a;
}

/* 1km＝5円 グラフィック */
.p-sale01__catch {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 65%;
  margin: 0 auto 16px;
}
.p-sale01__catch-1km,
.p-sale01__catch-5yen {
  display: block;
  flex: 1;
  min-width: 0;
  height: auto;
  max-width: 100%;
}

.p-sale01__sub-heading {
  font-size: 16px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 20px;
}

/* 出発期間ボックス */
.p-sale01__period {
  display: inline-block;
  border: 2px solid #2aa64a;
  border-radius: 0;
  padding: 10px 20px;
}
.p-sale01__period-text {
  font-size: 18px;
  font-weight: bold;
  color: #2aa64a;
  margin: 0;
}
.p-sale01__period-date {
  display: block;
}

/* 対象路線 見出し（装飾ライン付き） */
.p-sale01__routes-hd {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  margin-bottom: 28px;
}
.p-sale01__routes-hd-line {
  flex: 1;
  height: 2px;
  background: #2aa64a;
}
.p-sale01__routes-hd-text {
  font-size: 20px;
  font-weight: bold;
  color: #2aa64a;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .p-sale01 {
    background: linear-gradient(100.59deg, #80E39A 3.96%, #50C153 88.32%);
  }
  .p-sale01__green {
    padding: 16px 0 0;
  }
  .p-sale01__title-img {
    width: 380px;
  }
  .p-sale01__body {
    border-radius: 100px 100px 0 0;
    margin-top: -100px;
    padding-bottom: 80px;
  }
  .p-sale01__hd {
    padding: 120px 0 40px;
    max-width: 860px;
    margin: 0 auto;
  }
  .p-sale01__main-heading {
    font-size: 30px;
    margin-bottom: 16px;
  }
  .p-sale01__main-heading strong {
    font-size: 36px;
  }
  .p-sale01__highlight {
    padding: 0 40px;
  }
  .p-sale01__main-sub {
    font-size: 30px;
  }
  .p-sale01__catch {
    width: auto;
  }
  .p-sale01__catch-1km,
  .p-sale01__catch-5yen {
    flex: none;
    height: auto;
  }
  .p-sale01__sub-heading {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .p-sale01__period {
    padding: 12px 32px;
  }
  .p-sale01__period-date {
    display: inline;
  }
  .p-sale01__routes-hd {
    gap: 70px;
    padding: 0 24px;
    margin-bottom: 36px;
  }
  .p-sale01__routes-hd-text {
    font-size: 26px;
  }
}

/* ============================================================
   SALE 01 ルートカード
============================================================ */
.p-sale01-cards {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.p-sale01-cards__item {
  position: relative;
  padding-top: 14px;
  min-width: 0;
}
.p-sale01-card__label {
  position: absolute;
  top: -5px;
  left: 24px;
  max-width: 100%;
  height: auto;
  z-index: 3;
  zoom: 0.8;
}
.p-sale01-card {
  background: #fff;
  border: 2px solid #2aa64a;
  border-radius: 15px;
  padding-top: 42px;
}
.p-sale01-card__banner {
  background: linear-gradient(to right, #2aa64a, #ffd83a);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 24px;
}
.p-sale01-card__km {
  display: block;
  max-width: 100%;
  height: auto;
}
.p-sale01-card__body {
  padding: 16px 16px 20px;
}
.p-sale01-card__main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
}
.p-sale01-card__badge {
  flex-shrink: 0;
  width: 63px;
  height: auto;
}
.p-sale01-card__pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.p-sale01-card__price-orig {
  font-size: 18px;
  color: #222;
  text-decoration: line-through;
  white-space: nowrap;
}
.p-sale01-card__arrow {
  font-size: 20px;
  color: #1a1a1a;
  font-weight: bold;
  flex-shrink: 0;
}
.p-sale01-card__price-sale {
  font-size: 30px;
  color: #f7292d;
  font-weight: bold;
  white-space: nowrap;
}
.p-sale01-card__price-sale strong {
  font-family: "Noto Sans", sans-serif;
  font-size: 50px;
  font-weight: 900;
  line-height: 1;
}
@media (max-width: 375px) {
  .p-sale01-card__price-sale strong {
    font-size: 40px;
  }
}
.p-sale01-card__btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  max-width: 420px;
  margin: 0 auto;
}
.p-sale01-card__btns.u-close {
  display: block;
}
.p-sale01-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 4px;
  background: #222;
  color: #fff;
  border-radius: 100px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
}
.p-sale01-card__btn:hover {
  opacity: 0.8;
  color: #fff;
  text-decoration: none;
}

@media (min-width: 992px) {
  .p-sale01-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (min-width: 768px) {
  .p-sale01-cards__item {
    padding-top: 18px;
  }
  .p-sale01-card__label {
    top: 0;
    left: 37px;
    zoom: 1;
  }
  .p-sale01-card {
    padding-top: 65px;
  }
  .p-sale01-card__banner {
    padding: 28px 24px;
  }
  .p-sale01-card__km {
    max-width: 100%;
  }
  .p-sale01-card__body {
    padding: 16px 24px 28px;
  }
  .p-sale01-card__main {
    gap: 8px;
  }
  .p-sale01-card__badge {
    width: 99px;
  }
  .p-sale01-card__price-orig {
    font-size: 26px;
  }
  .p-sale01-card__arrow {
    font-size: 26px;
  }
  .p-sale01-card__price-sale {
    font-size: 30px;
  }
  .p-sale01-card__price-sale strong {
    font-size: 60px;
  }
  .p-sale01-card__btns {
    gap: 12px;
  }
}

/* ============================================================
   SALE 02 セクション
============================================================ */
.p-sale02 {
  background: linear-gradient(92deg, #F8CD60 3.96%, #E1A720 88.32%);
}

/* ゴールドヘッダー（タイトルバッジエリア） */
.p-sale02__gold {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.p-sale02__title-img {
  display: block;
  width: 260px;
  height: auto;
}

/* クリームボディ */
.p-sale02__body {
  background: #faf5eb;
  border-radius: 30px 30px 0 0;
  margin-top: -70px;
  padding-top: 48px;
  position: relative;
  z-index: 1;
  padding-bottom: 48px;
}

/* セクションヘッダー */
.p-sale02__hd {
  text-align: center;
  padding: 40px 0 32px;
}
.p-sale02__main-heading {
  font-size: 20px;
  font-weight: bold;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 20px;
}
.p-sale02__highlight {
  padding: 0 16px;
  background: linear-gradient(transparent 65%, #ffe102 65%);
}
.p-sale02__main-heading strong {
  font-size: 28px;
}
.p-sale02__main-sub {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #1a1a1a;
}

/* economy-55off グラフィック */
.p-sale02__catch {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.p-sale02__catch-img {
  display: block;
  width: 280px;
  height: auto;
}
.p-sale02__catch .p-teaser-sales__card-55 {
  left: 20%;
}
.p-sale02__catch .p-teaser-sales__card-55 img {
  height: 70px;
  width: auto;
}

/* 出発期間ボックス */
.p-sale02__period {
  display: inline-block;
  border: 2px solid #ea9c08;
  border-radius: 0;
  padding: 10px 20px;
}
.p-sale02__period-text {
  font-size: 18px;
  font-weight: bold;
  color: #ea9c08;
  margin: 0;
}
.p-sale02__period-date {
  display: block;
}

/* 対象路線 見出し（装飾ライン付き） */
.p-sale02__routes-hd {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  margin-bottom: 28px;
}
.p-sale02__routes-hd-line {
  flex: 1;
  height: 2px;
  background: #ea9c08;
}
.p-sale02__routes-hd-text {
  font-size: 20px;
  font-weight: bold;
  color: #ea9c08;
  white-space: nowrap;
}

/* 路線リストコンテナ */
.p-sale02-routes {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ============================================================
   SALE 02 路線リスト行
============================================================ */
.p-sale02-route {
  padding-bottom: 20px;
  border-bottom: 1px solid #BBB;
}
.p-sale02-route + .p-sale02-route {
  margin-top: 20px;
}
.p-sale02-route:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* メイン行（アイコン + 路線名 + 価格） */
.p-sale02-route__main {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "icons name" "icons price";
  align-items: center;
  gap: 4px 10px;
  margin-bottom: 14px;
}
.p-sale02-route__icons { grid-area: icons; align-self: start; }
.p-sale02-route__name { grid-area: name; }
.p-sale02-route__price { grid-area: price; text-align: right; }
.p-sale02-route__icons {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}
.p-sale02-route__icon {
  display: block;
  width: 22px;
  height: 22px;
}
.p-sale02-route__name {
  font-size: 18px;
  font-weight: bold;
  color: #222;
  flex: 1;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.p-sale02-route__arrow {
  color: #999;
  font-size: 14px;
  font-style: normal;
}
.p-sale02-route__price {
  font-family: "Noto Sans", sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #f7292d;
  white-space: nowrap;
  flex-shrink: 0;
  margin: 0;
}
.p-sale02-route__price-num {
  font-size: 26px;
}

/* ボタン行 */
.p-sale02-route__btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.p-sale02-route__btns.u-close {
  display: block;
}
.p-sale02-route__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  background: #222;
  color: #fff;
  border-radius: 100px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}
.p-sale02-route__btn:hover {
  opacity: 0.8;
  color: #fff;
  text-decoration: none;
}

@media (min-width: 768px) {
  .p-sale02 {
    background: linear-gradient(100.59deg, #f8cd60 3.96%, #f9c64e 88.32%);
  }
  .p-sale02-route {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-bottom: 24px;
  }
  .p-sale02-route + .p-sale02-route {
    margin-top: 24px;
  }
  .p-sale02-route__main {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    margin-bottom: 0;
  }
  .p-sale02-route__icons { grid-area: unset; align-self: auto; }
  .p-sale02-route__icon { width: 26px; height: 26px; }
  .p-sale02-route__name { grid-area: unset; flex: 1; }
  .p-sale02-route__price { grid-area: unset; text-align: left; }
  .p-sale02-route__btns {
    flex-shrink: 0;
    grid-template-columns: repeat(2, 180px);
    gap: 12px;
  }
}

@media (min-width: 768px) {
  .p-sale02__gold {
    padding: 16px 0 0;
  }
  .p-sale02__title-img {
    width: 380px;
  }
  .p-sale02__body {
    border-radius: 100px 100px 0 0;
    margin-top: -100px;
    padding-bottom: 80px;
  }
  .p-sale02__hd {
    padding: 120px 0 40px;
    max-width: 860px;
    margin: 0 auto;
  }
  .p-sale02__main-heading {
    font-size: 30px;
    margin-bottom: 28px;
  }
  .p-sale02__main-heading strong {
    font-size: 36px;
  }
  .p-sale02__main-sub {
    font-size: 30px;
  }
  .p-sale02__highlight {
    padding: 0 40px;
  }
  .p-sale02__catch-img {
    width: 453px;
  }
  .p-sale02__catch .p-teaser-sales__card-55 img {
    height: 110px;
  }
  .p-sale02__period {
    padding: 12px 32px;
  }
  .p-sale02__period-date {
    display: inline;
  }
  .p-sale02__routes-hd {
    gap: 70px;
    padding: 0 24px;
    margin-bottom: 36px;
  }
  .p-sale02__routes-hd-text {
    font-size: 26px;
  }
}

/* ============================================================
   SALE 03 セクション
============================================================ */
.p-sale03 {
  background: linear-gradient(95.17deg, #fc83ae 3.96%, #ff6198 88.32%);
}

/* ピンクヘッダー（タイトルバッジエリア） */
.p-sale03__pink {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.p-sale03__title-img {
  display: block;
  width: 260px;
  height: auto;
}

/* 淡ピンクボディ */
.p-sale03__body {
  background: #fff1f6;
  border-radius: 30px 30px 0 0;
  margin-top: -70px;
  padding-top: 48px;
  position: relative;
  z-index: 1;
  padding-bottom: 48px;
}

/* セクションヘッダー */
.p-sale03__hd {
  text-align: center;
  padding: 40px 0 32px;
}
.p-sale03__main-heading {
  font-size: 20px;
  font-weight: bold;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 8px;
}
.p-sale03__highlight {
  padding: 0 16px;
  background: linear-gradient(transparent 65%, #ffe102 65%);
}
.p-sale03__main-heading strong {
  font-size: 28px;
}

/* サブテキスト */
.p-sale03__sub-heading {
  font-size: 16px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 20px;
}

/* グラフィック（62off + 20daysale 横並び） */
.p-sale03__catch {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.p-sale03__catch-62off {
  display: block;
  width: 122px;
  height: auto;
}
.p-sale03__catch-20day {
  display: block;
  width: 196px;
  height: auto;
}

/* 出発期間ボックス */
.p-sale03__period {
  display: inline-block;
  border: 2px solid #ff5591;
  border-radius: 0;
  padding: 10px 20px;
}
.p-sale03__period-text {
  font-size: 18px;
  font-weight: bold;
  color: #ff5591;
  margin: 0;
}
.p-sale03__period-date {
  display: block;
}

/* 対象路線 見出し（装飾ライン付き） */
.p-sale03__routes-hd {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  margin-bottom: 28px;
}
.p-sale03__routes-hd-line {
  flex: 1;
  height: 2px;
  background: #ff5591;
}
.p-sale03__routes-hd-text {
  font-size: 20px;
  font-weight: bold;
  color: #ff5591;
  white-space: nowrap;
}

/* 路線リストコンテナ */
.p-sale03-routes {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ============================================================
   SALE 03 路線リスト行
============================================================ */
.p-sale03-route {
  padding-bottom: 20px;
  border-bottom: 1px solid #BBB;
}
.p-sale03-route + .p-sale03-route {
  margin-top: 20px;
}
.p-sale03-route:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.p-sale03-route__main {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "icons name" "icons price";
  align-items: center;
  gap: 4px 10px;
  margin-bottom: 14px;
}
.p-sale03-route__icons {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
  grid-area: icons;
  align-self: start;
}
.p-sale03-route__icon {
  display: block;
  width: 22px;
  height: 22px;
}
.p-sale03-route__name { grid-area: name; }
.p-sale03-route__price { grid-area: price; text-align: right; }
.p-sale03-route__name {
  font-size: 18px;
  font-weight: bold;
  color: #222;
  flex: 1;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.p-sale03-route__arrow {
  color: #999;
  font-size: 14px;
  font-style: normal;
}
.p-sale03-route__price {
  font-family: "Noto Sans", sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #f7292d;
  white-space: nowrap;
  flex-shrink: 0;
  margin: 0;
}
.p-sale03-route__price-num {
  font-size: 26px;
}
.p-sale03-route__btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.p-sale03-route__btns.u-close {
  display: block;
}
.p-sale03-route__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  background: #222;
  color: #fff;
  border-radius: 100px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}
.p-sale03-route__btn:hover {
  opacity: 0.8;
  color: #fff;
  text-decoration: none;
}

@media (min-width: 768px) {
  .p-sale03-route {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-bottom: 24px;
  }
  .p-sale03-route + .p-sale03-route {
    margin-top: 24px;
  }
  .p-sale03-route__main {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    margin-bottom: 0;
  }
  .p-sale03-route__icons { grid-area: unset; align-self: auto; }
  .p-sale03-route__icon { width: 26px; height: 26px; }
  .p-sale03-route__name { grid-area: unset; flex: 1; }
  .p-sale03-route__price { grid-area: unset; text-align: left; }
  .p-sale03-route__btns {
    flex-shrink: 0;
    grid-template-columns: repeat(2, 180px);
    gap: 12px;
  }
}

@media (min-width: 768px) {
  .p-sale03__pink {
    padding: 16px 0 0;
  }
  .p-sale03__title-img {
    width: 380px;
  }
  .p-sale03__body {
    border-radius: 100px 100px 0 0;
    margin-top: -100px;
    padding-bottom: 80px;
  }
  .p-sale03__hd {
    padding: 120px 0 40px;
    max-width: 860px;
    margin: 0 auto;
  }
  .p-sale03__main-heading {
    font-size: 30px;
    margin-bottom: 14px;
  }
  .p-sale03__main-heading strong {
    font-size: 36px;
  }
  .p-sale03__highlight {
    padding: 0 40px;
  }
  .p-sale03__sub-heading {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .p-sale03__catch-62off {
    width: 208px;
  }
  .p-sale03__catch-20day {
    width: 334px;
  }
  .p-sale03__period {
    padding: 12px 32px;
  }
  .p-sale03__period-date {
    display: inline;
  }
  .p-sale03__routes-hd {
    gap: 70px;
    padding: 0 24px;
    margin-bottom: 36px;
  }
  .p-sale03__routes-hd-text {
    font-size: 26px;
  }
}

/* ============================================================
   アニメーション
============================================================ */

/* 5円コイン：水平2回転 → 止まる × 2 ループ */
@keyframes spin-y-twice {
  0%   { transform: rotateY(0deg); }
  25%  { transform: rotateY(720deg); }
  50%  { transform: rotateY(720deg); }
  75%  { transform: rotateY(1440deg); }
  100% { transform: rotateY(1440deg); }
}
.p-sale01__catch-5yen {
  animation: spin-y-twice 6s linear infinite;
}

/* 62off：ピョンピョン（スクワッシュ＆ストレッチ） → 3秒停止 ループ（計5秒） */
@keyframes bounce-pyon {
  0%   { transform: translateY(0) scale(1); }
  4%   { transform: translateY(0) scaleX(1.2) scaleY(0.8); }
  10%  { transform: translateY(-22px) scaleX(0.88) scaleY(1.12); }
  16%  { transform: translateY(0) scaleX(1.18) scaleY(0.82); }
  21%  { transform: translateY(-14px) scaleX(0.92) scaleY(1.08); }
  26%  { transform: translateY(0) scaleX(1.12) scaleY(0.88); }
  30%  { transform: translateY(-6px) scaleX(0.96) scaleY(1.04); }
  36%  { transform: translateY(0) scale(1); }
  100% { transform: translateY(0) scale(1); }
}
.p-sale03__catch-62off {
  animation: bounce-pyon 5s linear infinite;
}

/* ボタン：光が走る → 約3秒待機 ループ */
@keyframes btn-shine {
  0%   { transform: translateX(-200%) skewX(-20deg); }
  15%  { transform: translateX(350%) skewX(-20deg); }
  100% { transform: translateX(350%) skewX(-20deg); }
}
.p-sale01-card__btn,
.p-sale02-route__btn,
.p-sale03-route__btn {
  position: relative;
  overflow: hidden;
}
.p-sale01-card__btn::after,
.p-sale02-route__btn::after,
.p-sale03-route__btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-200%) skewX(-20deg);
  animation: btn-shine 4s ease-in-out infinite;
}
.p-sale02-route__btn::after { animation-delay: 1.3s; }
.p-sale03-route__btn::after { animation-delay: 2.6s; }



/* ============================================================
   SALE SEP：メインセクション (p-sale-main)
============================================================ */
.p-sale-main {
  background: linear-gradient(100.94deg, #7fe299 3.96%, #54c359 88.32%);
}

/* --- グリーンヘッダー --- */
.p-sale-main__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px 48px;
}

.p-sale-main__banner-wrap{
  margin-top: -30px;
}

.p-sale-main__banner-img {
  display: block;
  max-width: 100%;
  height: auto;
}

.p-sale-main__overview-label {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin: 0 0 14px;
}

/* --- Day カード一覧 --- */
.p-sale-main__days {
  list-style: none;
  padding: 0 8px 40px;
  margin: 0;
  width: 98%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-sale-main__day {
  border-radius: 14px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin:0 auto;
  width: 100%;
}

@keyframes day-active-pulse {
  0%   { transform: scaleX(1); }
  10%  { transform: scaleX(1.06); }
  22%  { transform: scaleX(0.96); }
  32%  { transform: scaleX(1.025); }
  40%  { transform: scaleX(0.99); }
  45%  { transform: scaleX(1.005); }
  50%  { transform: scaleX(1); }
  100% { transform: scaleX(1); }
}

.p-sale-main__day--active {
  background: #fff;
  border: 2px solid #ff5591;
  animation: day-active-pulse 2.8s ease-out infinite;
  transform-origin: center;
}

.p-sale-main__day--inactive {
  background: #ececec;
  border: 1px solid #9e9e9e;
  width: 96%;
}

.p-sale-main__day-img {
  display: block;
  height: 22px;
  width: auto;
  flex-shrink: 0;
  margin-bottom:-3px;
}

.p-sale-main__day-date {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  flex: 1;
  color: #ff5591;
}

.p-sale-main__day--inactive .p-sale-main__day-date {
  color: #7b7b7b;
}

.p-sale-main__day-badge {
  background: #ff5591;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  border-radius: 6px;
  padding: 3px 10px;
  flex-shrink: 0;
}
.p-sale-main__day-badge-end {
  background: #9e9e9e;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  border-radius: 6px;
  padding: 3px 10px;
  flex-shrink: 0;
}

/* --- ホワイトボディ --- */
.p-sale-main__body {
  background: #f3f7f4;
  border-radius: 30px 30px 0 0;
  position: relative;
  z-index: 1;
  padding-bottom: 48px;
}

/* --- 20時間限定セール タイトル --- */
.p-sale-main__sale-title {
  display: flex;
  justify-content: center;
}

.p-sale-main__sale-title-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-top: -56px;
}

/* --- セールヘッダー（Day見出し・プレミア・期間・カウントダウン） --- */
.p-sale-main__hd {
  text-align: center;
  padding: 28px 0 36px;
}

.p-sale-main__day-heading {
  font-size: 28px;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 18px;
}

.p-sale-main__day-highlight {
  padding: 2px 8px;
  background: linear-gradient(transparent 60%, #ffe102 60%);
}

.p-sale-main__premium-notice {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 22px;
}

.p-sale-main__premium-price {
  font-size: 24px;
  color: #f7292d;
  font-weight: 900;
}

.p-sale-main__period {
  display: inline-block;
  border: 2px solid #59c660;
  border-radius: 4px;
  padding: 10px 20px;
  margin-bottom: 20px;
}

.p-sale-main__period-text {
  font-size: 16px;
  font-weight: bold;
  color: #59c660;
  margin: 0;
  line-height: 1.5;
}

.p-sale-main__period-date {
  display: block;
}

/* --- カウントダウン --- */
.p-sale-main__countdown {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
}

.p-sale-main__countdown-label {
  font-size: 18px;
  font-weight: bold;
}

.p-sale-main__countdown-time {
  font-size: 30px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.p-sale-main__countdown-ended {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-top: 8px;
}
.p-sale-main__sale-ended {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-top: 8px;
  padding: 72px 0 40px;
  line-height: 1.8;
}
.p-sale-main__sale-next{
  display: block;
  font-size: 18px;
  color: #ff5591;
  font-weight: bold;
  border-radius: 6px;
  border:2px solid #ff5591;
  width: 100%;
  max-width: 540px;
  margin: 24px auto 0;
  background: #fff;
  padding: 16px;
  text-align: center;
}

/* --- 対象路線 見出し --- */
.p-sale-main__routes-hd {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  margin: 0 0 28px;
}

.p-sale-main__routes-hd-line {
  flex: 1;
  height: 2px;
  background: #5fcb6a;
}

.p-sale-main__routes-hd-text {
  font-size: 20px;
  font-weight: 900;
  color: #5fcb6a;
  white-space: nowrap;
}

/* --- 路線リスト --- */
.p-sale-main-routes {
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-sale-main-route {
  padding-bottom: 20px;
  border-bottom: 1px solid #c9c9c9;
}

.p-sale-main-route + .p-sale-main-route {
  margin-top: 20px;
}

.p-sale-main-route:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* SP: __info（アイコン＋名前）と __pricing（バッジ＋価格）を縦積み */
.p-sale-main-route__main {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 12px;
}

.p-sale-main-route__info {
  display: flex;
  align-items: center;
  gap: 6px;
}

.p-sale-main-route__icons {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

.p-sale-main-route__icon {
  display: block;
  width: 22px;
  height: 22px;
}

.p-sale-main-route__name {
  font-size: 20px;
  font-weight: bold;
  color: #222;
  margin: 0;
}

.p-sale-main-route__arrow {
  color: #aaa;
  font-weight: normal;
}

/* 価格エリア：バッジ＋打ち消し価格＋セール価格を横並び */
.p-sale-main-route__pricing {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: flex-end;
}

@keyframes badge-flip {
  0%   { transform: rotateY(0deg); }
  30%  { transform: rotateY(360deg); }
  100% { transform: rotateY(360deg); }
}

.p-sale-main-route__off-badge {
  width: 50px;
  height: 50px;
  background: #f7292d;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  line-height: 1.15;
  flex-shrink: 0;
  animation: badge-flip 2.4s ease-in-out infinite;
}

.p-sale-main-route__off-badge span {
  font-size: 16px;
}

.p-sale-main-route__price-orig {
  color: #222;
  margin: 0;
  white-space: nowrap;
  font-size: 20px;
  font-weight: 500;
  position: relative;
}
.p-sale-main-route__price-orig:after{
  content: "";
  width: 100%;
  height: 1px;
  background: #333;
  position: absolute;
  top: 50%;
  left: 0;
}
.p-sale-main-route__price-orig-unit {
  font-size: 14px;
}

.p-sale-main-route__price {
  font-weight: 900;
  color: #f7292d;
  margin: 0;
  white-space: nowrap;
}

.p-sale-main-route__price-num {
  font-size: 30px;
}

.p-sale-main-route__price-unit {
  font-size: 18px;
}
@media (max-width: 375px) {
.p-sale-main__day-date {
  font-size: 16px;
}
.p-sale-main__day{
  padding: 16px 16px;
}
}

/* --- PC --- */
@media (min-width: 768px) {
  .p-sale-main__header {
    padding: 0;
  }

  .p-sale-main__banner-wrap{
    margin-top: -40px;
  }
  .p-sale-main__banner-img {
    max-width: 560px;
  }

  .p-sale-main__overview-label {
    font-size: 26px;
    margin: 0 0 20px;
  }

  .p-sale-main__days {
    max-width: 740px;
    margin: 0 auto;
    padding-bottom: 56px;
  }

  .p-sale-main__day {
    padding: 32px 28px;
  }

  .p-sale-main__day--active {
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
  }

  .p-sale-main__day--inactive {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

  .p-sale-main__day-img {
    height: 33px;
  }

  .p-sale-main__day-date {
    font-size: 20px;
  }

  .p-sale-main__day-badge {
    font-size: 14px;
    padding: 4px 14px;
  }
  .p-sale-main__day-badge-end {
    font-size: 14px;
    padding: 4px 14px;
  }

  .p-sale-main__body {
    border-radius: 100px 100px 0 0;
    padding-bottom: 80px;
  }

  .p-sale-main__sale-title-img {
    max-width: 640px;
    margin-top: 0;
  }

  .p-sale-main__hd {
    padding: 36px 0 52px;
    max-width: 860px;
    margin: 0 auto;
  }

  .p-sale-main__day-heading {
    font-size: 40px;
    margin-bottom: 22px;
  }

  .p-sale-main__premium-notice {
    font-size: 22px;
    margin: 0 0 26px;
  }

  .p-sale-main__premium-price {
    font-size: 40px;
  }

  .p-sale-main__period {
    padding: 12px 36px;
  }

  .p-sale-main__period-text {
    font-size: 20px;
  }

  .p-sale-main__period-date {
    display: inline;
  }

  .p-sale-main__countdown-label {
    font-size: 22px;
  }

  .p-sale-main__countdown-time {
    font-size: 40px;
  }

  .p-sale-main__routes-hd {
    gap: 60px;
    padding: 0 24px;
    margin: 16px 0 40px;
  }

  .p-sale-main__routes-hd-text {
    font-size: 28px;
  }

  .p-sale-main-route {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 28px;
  }

  .p-sale-main-route + .p-sale-main-route {
    margin-top: 28px;
  }

  /* PC: __main を flex row にして __info と __pricing を横並び */
  .p-sale-main-route__main {
    flex: 1;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-bottom: 0;
  }

  .p-sale-main-route__info {
    gap: 8px;
  }

  .p-sale-main-route__icon {
    width: 26px;
    height: 26px;
  }

  .p-sale-main-route__name {
    font-size: 18px;
    white-space: nowrap;
  }

  .p-sale-main-route__pricing {
    gap: 16px;
  }

  .p-sale-main-route__price-orig {
    font-size: 20px;
  }

  .p-sale-main-route__price-orig-unit {
    font-size: 16px;
  }

  /* ボタンエリア（p-sale01-card__btns）PC幅固定 */
  .p-sale-main-route .p-sale01-card__btns {
    flex-shrink: 0;
    display: grid;
    grid-template-columns: repeat(2, 180px);
    gap: 12px;
    max-width: none;
    margin: 0;
  }
  .p-sale-main__sale-ended {
    font-size: 24px;
  }
  .p-sale-main__sale-next{
    font-size: 24px;
    border-radius: 14px;
    text-align: center;
    padding: 24px;
  }
}


#plannote{
  padding: 48px 0;
  background: #FF558F;
}
#plannote h2{
  text-align: center;
  font-size: 24px;
  color: #fff;
  font-weight: 900;
  margin-bottom: 32px;
}
.u-list-plannote{
  background: #fff;
  padding: 24px 32px;
  border-radius: 16px;
  width: 100%;
  max-width: 840px;
  margin:0 auto 0;
}
.u-list-plannote li{
  position: relative;
  padding-left: 24px;
  font-size: 14px;
}
.u-list-plannote li:before{
  content: "※";
  font-size: 80%;
  position: absolute;
  top: 2px;
  left: 0;
}
.u-list-plannote li + li{
  margin-top: 8px;
}