body {
  /*padding: 2rem 0;*/
  background-color: white;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.vip-description {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 876px;
  margin: 0 auto;
}
.vip-description h2 {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #1c2536;
  white-space: nowrap;
}
.vip-description h2::after {
  content: "";
  flex: 1;
  height: 2px;
  background: #c0c1c2;
}

@media (max-width: 760px) {
  .vip-description {
    padding: 1rem;
    max-width: 100%;
  }

  .vip-description h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
}
/* ==========================================================================
   .vip-hero
   ========================================================================== */
.vip-description .vip-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
}
.vip-description .vip-hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}
.vip-description .vip-hero-title {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.35;
  color: #1c2536;
}
.vip-description .vip-hero-subtitle {
  font-size: 14px;
  line-height: 1.7;
  width: 100%;
}
.vip-description .vip-hero-stats {
  display: flex;
  border: 1px solid #dbe3ec;
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
}

.vip-hero-stats .vip-hero-stat {
  position: relative;
  flex: 1;
  padding: 8px 24px 14px;
  background: #ffffff;
  overflow: hidden;
}
.vip-hero-stat-highlight {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(
    180deg,
    #fff7ad 0%,
    #ffd700 45%,
    #ffa800 55%,
    #e69500 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0px 1px 0px rgba(180, 110, 0, 0.5));
  padding: 0 4px;
}
.vip-hero-stats .vip-hero-stat + .vip-hero-stat {
  border-left: 1px solid #dbe3ec;
}

.vip-hero-stats .vip-hero-stat::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 214, 143, 0.6) 0%,
    rgba(255, 214, 143, 0) 70%
  );
  filter: blur(10px);
  pointer-events: none;
}

.vip-hero-stats .vip-hero-stat::after {
  content: "";
  position: absolute;
  bottom: -130px;
  left: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(179, 199, 255, 0.5) 0%,
    rgba(179, 199, 255, 0) 70%
  );
  filter: blur(10px);
  pointer-events: none;
}

.vip-hero-stat-value {
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-weight: 600;
  color: #4a3b2a;
  margin-bottom: 6px;
}

.vip-hero-stat-label {
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #74664f;
  text-transform: uppercase;
}

/* .vip-description .vip-hero-stat {
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #dbe3ec;
  width: 100%;
}
.vip-description .vip-hero-stat:last-child {
  border-right: none;
}
.vip-description .vip-hero-stat-value {
  font-size: 14px;
  font-weight: 700;
  color: #1e32e9;
}
.vip-description .vip-hero-stat-label {
  font-size: 11px;
  color: #7d8aa0;
  margin-top: 2px;
} */
.vip-description .vip-hero-cta {
  padding: 12px 0;
  background: #1e32e9;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  width: 100%;
  text-align: center;
  border-radius: 4px;
}

.vip-description .vip-hero-media {
  display: flex;
  justify-content: center;
}
.vip-description .vip-hero-media img {
  max-width: 450px;
}

@media (max-width: 760px) {
  .vip-description .vip-hero {
    gap: 1.5rem;
  }
  .vip-description .vip-hero-title {
    font-size: 1.4rem;
    text-align: center;
    width: 100%;
  }
  .vip-hero {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .vip-hero-text {
    align-items: center;
    max-width: none;
  }
  .vip-description .vip-hero-stat {
    padding: 6px 0px 12px;
    width: 100%;
  }
  .vip-description .vip-hero-media img {
    max-width: 350px;
  }
  .vip-hero-stat-value {
    font-size: 16px;
    margin-bottom: 2px;
  }

  .vip-hero-stat-highlight {
    font-size: 1.6rem;
  }
  .vip-hero-stat-label {
    font-size: 12px;
  }
}

/* ==========================================================================
   .vip-table
   ========================================================================== */

.vip-description .vip-table-group {
  width: 100%;
  overflow-x: auto;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid #e0e0e0;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
  cursor: grab;
}
.vip-description .vip-table-group.is-dragging {
  cursor: grabbing;
  user-select: none;
}
.vip-description .vip-table-group + .vip-table-group {
  margin-top: 40px;
}

.vip-description .vip-compare-table {
  min-width: 760px;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  text-align: center;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #4a4a4a;
}
.vip-description .vip-compare-table .tier-col {
  min-width: 90px;
}
.vip-description .vip-compare-table th,
.vip-description .vip-compare-table td {
  padding: 9px 6px;
  vertical-align: middle;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #eaeaea;
}

.vip-description .vip-compare-table th:last-child,
.vip-description .vip-compare-table td:last-child {
  border-right: none;
}

.vip-description .vip-compare-table .feature-col {
  width: 120px;
  min-width: 108px;
  font-weight: 700;
  color: #555;
  font-size: 0.72rem;
  background: #fafafa;
}

.vip-description .vip-level-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.vip-description .vip-level-title .crown-icon {
  font-size: 0.9rem;
  color: #d4af37;
  margin-bottom: 1px;
}

.vip-description .vip-level-title .main-label {
  font-size: 1.1rem;
  font-weight: 900;
  color: #222;
  line-height: 1;
}

.vip-description .vip-level-title .sub-label {
  font-size: 0.62rem;
  color: #888;
}

.vip-description .chip-wrapper {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vip-description .chip-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 3px 4px rgba(0, 0, 0, 0.12));
}

.vip-description .tier-name {
  font-weight: 700;
  font-size: 0.66rem;
  color: #333;
  margin-top: 4px;
  margin-bottom: 4px;
  white-space: normal;
  overflow-wrap: break-word;
  line-height: 1.3;
}

.vip-description .vip-compare-table tbody tr {
  border-top: 1px solid #eaeaea;
}

.vip-description .vip-compare-table tbody td.label-cell {
  position: relative;
}

.vip-description .value-cell {
  font-weight: 600;
  font-size: 0.76rem;
  color: #333;
  overflow-wrap: break-word;
}

.vip-description .value-cell.is-check {
  color: #2d8a08;
  font-size: 1rem;
  font-weight: 700;
}

/* ==========================================================================
   .vip-detail
   ========================================================================== */
.vip-detail .vip-detail-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 9999px 0 0 9999px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-top: 2rem;
  padding-left: 1rem;
}

.vip-detail .vip-detail-card:first-child {
  margin-top: 0;
}

.vip-detail .vip-detail-card img {
  width: 100px;
  height: 100px;
  padding: 8px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.vip-detail .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 2rem 1rem 1.5rem;
}

.vip-detail .text strong {
  display: inline-block;
  align-self: flex-start;
  padding: 0.3rem 0.9rem;
  background: #000;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.vip-detail .text p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #333;
  padding-top: 8px;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 760px) {
  .vip-detail .vip-detail-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: #fff;
    overflow: hidden;
    margin-top: 2rem;
    padding: 1.5rem;
  }

  .vip-detail .vip-detail-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 0.5rem;
  }

  .vip-detail .text {
    align-items: center;
    width: 100%;
    background: transparent;
    box-shadow: none;
    padding: 0;
    text-align: left;
  }

  .vip-detail .text strong {
    align-self: center;
  }
}
/* ==========================================================================
   .vip-schedule
   ========================================================================== */
.vip-description .vip-schedule .table-scroll {
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.vip-description .vip-schedule table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  overflow: hidden;
}

/* th の修正 */
.vip-description .vip-schedule th {
  background: #1c2536;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 16px 12px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.vip-description .vip-schedule td {
  padding: 18px 16px;
  font-size: 0.88rem;
  color: #1c2536;
  text-align: center;
  border-bottom: 1px solid #e8ebf2;
  vertical-align: middle;
}

.vip-description .vip-schedule tr:last-child td {
  border-bottom: none;
}

.vip-description .vip-schedule td:first-child {
  font-weight: 700;
  color: #2f5fd6;
}

.vip-description .vip-schedule td:nth-child(2) {
  background: #eef3ff;
}

.vip-description .vip-schedule .card-view {
  display: none;
}

@media (max-width: 760px) {
  .vip-description .vip-schedule .table-view {
    display: none;
  }

  .vip-description .vip-schedule .card-view {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
}

.vip-description .vip-schedule .bonus-card {
  background: #fff;
  border: 1px solid #e8ebf2;
  border-radius: 8px;
  padding: 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vip-description .vip-schedule .bonus-card__title {
  font-weight: 700;
  font-size: 14px;
  color: #1c2536;
  margin: 0;
  order: 2;
}

.vip-description .vip-schedule .bonus-card__schedule {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #eef3ff;
  color: #2f5fd6;
  font-size: 12.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  width: fit-content;
  order: 1;
}

.vip-description .vip-schedule .bonus-card__note {
  font-size: 12.5px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  order: 3;
}

.vip-description .vip-schedule .bonus-card--photo {
  background-size: cover;
  background-position: center;
  border-color: transparent;
}

/* カードごとの背景画像を直接指定 */
.vip-description .vip-schedule .bonus-card--rebate {
  background-image: url("img/rebate-bg.webp");
}
.vip-description .vip-schedule .bonus-card--weekly {
  background-image: url("img/weekly-bg.webp");
}
.vip-description .vip-schedule .bonus-card--monthly {
  background-image: url("img/monthly-bg.webp");
}
.vip-description .vip-schedule .bonus-card--rank {
  background-image: url("img/rank-bg.webp");
}
.vip-description .vip-schedule .bonus-card--daily {
  background-image: url("img/daily-bg.webp");
}
.vip-description .vip-schedule .bonus-card--birthday {
  background-image: url("img/birthday-bg.webp");
}

.vip-description .vip-schedule .bonus-card--photo .bonus-card__title {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
  font-size: 1rem;
}

.vip-description .vip-schedule .bonus-card--photo .bonus-card__note {
  color: #fff;
}

.vip-description .vip-schedule .bonus-card--photo .bonus-card__schedule {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 12px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
