/* ============================================
   REWARDS INTRO
============================================ */
.prize-intro {
  padding: 4rem 1rem 3rem;
  text-align: center;
}
.prize-intro__sub {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  padding: 0 2.5rem;
  letter-spacing: 0.05rem;
  display: inline-block;
}
.prize-intro__sub::before, 
.prize-intro__sub::after {
  content: '';
  background-image: url(../img/2026/lower-title-lines.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 0;
  display: block; 
}
.prize-intro__sub::before {
  transform: scale(-1, 1);
  left: 0;
}
.prize-intro__sub::after {
  right: 0;
}
.prize-intro__lead {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 0.05rem;
  line-height: 1.2;
}
.prize-intro__title {
  display: inline-block;
  font-size: 4rem;
  font-weight: 900;
  background: var(--gradient02);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  line-height: 1.3;
}

/* ============================================
   REWARDS LIST
============================================ */
.prize-list {
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
  padding-bottom: 3rem;
}
.prize-card {
  background: var(--color-white);
  border-radius: 1rem;
  padding: 2rem;
  border: 3px solid var(--color-black);
  text-align: center;
}
.prize-card.pink {
  border-color: var(--color-pink);
}
.prize-card__provider {
  display: block;
  background: var(--color-black);
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  padding: .5rem 1rem;
  margin: 0 0 1rem;
  border-radius: .5rem;
  color: var(--color-white);
}
.prize-card__head {
  text-align: center;
  margin: .5rem auto 2rem;
}
.prize-card__head img {
  height: 2.8rem;
}
.prize-card__head img.double {
  height: 5rem;
}
.prize-card__imgs img {
  width: 100%;
}
.prize-card__body {
  margin-top: 2rem;
  text-align: left;
}

/* --- 対象種目リスト --- */
.prize-targets {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.prize-targets__item {
  font-size: 1.8rem;
  line-height: 1.5;
}
.prize-targets__note {
  font-size: 1.2rem;
  line-height: 1.6;
}
.prize-targets__note .bold-eng {
  font-size: 1.2rem;
}

/* --- 区切り線 --- */
.prize-divider {
  border: none;
  border-top: 1px solid var(--color-darkgray);
  margin: 1rem 0;
}

/* --- 参加賞セクション --- */
.prize-participation {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.prize-participation p {
  flex: 1;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.7;
}
.prize-participation img {
  width: 11rem;
  height: auto;
  flex-shrink: 0;
  border-radius: 0.4rem;
}

/* --- 企業説明 --- */
.prize-company {
  background: var(--color-lightgray);
  border-radius: 0.8rem;
  padding: 1.5rem;
  margin-top: 1.5rem;
}
.prize-company__text {
  font-size: 1.4rem;
  line-height: 1.8;
}
.prize-company__logo {
  display: block;
  margin: 0 auto 1rem;
  width: 14rem;
  height: auto;
}
.prize-company__name {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}
.prize-company__hp {
  margin-top: 1rem;
  word-break: break-all;
}
.prize-company__hp a {
  color: var(--color-black);
  text-decoration: underline;
}

/* --- 追加画像（prize-card__body内） --- */
.prize-sub-img {
  display: block;
  width: 100%;
  max-width: 24.5rem;
  margin: 2rem auto;
}

/* --- セクション見出し（ルーフトップバーなど） --- */
.prize-section {
  text-align: left;
}
.prize-section__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.prize-section__text {
  font-size: 1.2rem;
}
.prize-card__desc {
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.1rem;
  font-weight: 700;
  text-align: left;
}
.prize-card__note {
  padding: 1rem;
  border: 0.2rem solid var(--color-black);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6;
  margin: 2rem 0;
}
.prize-card__footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background-color: var(--color-gray);
}
.prize-card__logo {
  width: 5.8rem;
  height: auto;
  flex-shrink: 0;
}
.prize-card__link {
  word-break: break-all;
  text-align: left;
}

/* ============================================
   PRIZE LISTS
============================================ */
.prize-lists {
  display: flex;
  flex-direction: column;
  row-gap: 4rem;
  padding-bottom: 3rem;
}
.prize-event {
  display: flex;
  flex-direction: column;
  row-gap: 0.8rem;
}
.prize-event__title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}
.prize-event__title .bold-eng {
  font-size: 1.6rem;
}
.prize-event__note {
  padding: 0 0.5rem;
}

/* --- テーブル共通 --- */
.prize-table {
  overflow: hidden;
}
.prize-table + .prize-table {
  margin-top: 0.5rem;
}
.prize-table__head {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-white);
  padding: 0.8rem;
  margin-bottom: 1rem;
}
.prize-table__row {
  display: grid;
  grid-template-columns: 8rem 1fr;
  margin-bottom: .5rem;
}
.prize-table__rank {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 1rem 0.5rem;
}
.prize-table__items {
  list-style: disc;
  padding: 1rem 1rem 1rem 2.5rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7;
  background-color: rgba(255, 255, 255, 0.5);
}

/* --- カラーバリアント --- */
.prize-table--pink .prize-table__head { background: var(--color-pink); }
.prize-table--pink .prize-table__row { background: var(--color-light-pink); }

.prize-table--orange .prize-table__head { background: var(--color-orange); }
.prize-table--orange .prize-table__row { background: var(--color-light-orange); }

.prize-table--blue .prize-table__head { background: var(--color-blue); }
.prize-table--blue .prize-table__row { background: var(--color-light-blue); }

.prize-table--green .prize-table__head { background: var(--color-green); }
.prize-table--green .prize-table__row { background: var(--color-light-green); }

/* --- SORANO HOTEL カード専用 --- */
.prize-sorano-hotel {
  background: var(--color-pink);
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  padding: 0.6rem 2rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}
.prize-sorano-num {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0.4rem 1.8rem;
  color: var(--color-pink);
  border: 2px solid var(--color-pink);
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.prize-sorano-num span {
  font-size: 1.6rem;
}
.prize-sorano-num span.bold-eng {
  font-size: 2rem;
  font-weight: 900;
}
.prize-hotel__logo {
  display: block;
  margin: 0 auto 1rem;
  width: 28rem;
}
