.accordion__box,
.accordion__content {
  display: inline-flex;
  align-items: center;
}
.accordion__box img,
.accordion__content img {
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .accordion__box img,
  .accordion__content img {
    width: 20px;
  }
}
.accordion__box {
  cursor: pointer;
  padding: 8px 40px 8px 0;
  position: relative;
  z-index: 1;
  font-weight: 600;
  text-decoration: underline;
}
.accordion__box:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  margin: auto;
  width: 20px;
  height: 20px;
  background: url("../img/icon_arrow_line.svg") center center no-repeat;
  background-size: cover;
  transform: rotate(0deg);
  transition: all 0.3s ease;
}
.accordion__box:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.accordion__box.open:after {
  transform: rotate(-180deg);
  transition: all 0.3s ease;
}
.accordion__box span {
  flex-grow: 1;
}
.accordion__box img,
.accordion__box b {
  margin-right: 4px;
}
.accordion__content {
  display: none;
  width: 100%;
  overflow: hidden;
  background: #f2f2f2;
  padding: 16px;
  position: relative;
  z-index: 2;
  border-radius: 4px;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .accordion__content {
    padding: 16px 24px;
  }
}
.toggle {
  display: none;
}
.annotion {
  margin-top: 2px;
}
b {
  font-size: 1.5rem;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}
ol {
  display: block;
  position: relative;
  z-index: 2;
}
ol > li {
  position: relative;
  list-style-type: none;
  counter-increment: cnt;
  padding-left: 24px;
  padding-bottom: 2px;
}
ol > li:before {
  position: absolute;
  left: 0;
  content: counter(cnt) ". ";
  width: 20px;
  text-align: right;
}
.btn {
  width: 100%;
  border-radius: 6px;
  border: 2px solid #fff;
  background: linear-gradient(90deg, #e31e31 0%, #1a469c 100%);
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.4), 0 0 6px 0 rgba(255,255,255,0.8);
  position: relative;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  padding: 14px 40px 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 480px) {
  .btn {
    transition: all 0.2s ease;
  }
}
@media (min-width: 768px) {
  .btn {
    font-size: 2.8rem;
    padding: 20px 40px 18px 16px;
    max-width: 640px;
    margin-right: auto;
    margin-left: auto;
  }
}
.btn:after {
  content: "";
  position: absolute;
  right: min((16/375)*100vw, 32px);
  width: min((18/375)*100vw, 28px);
  height: min((18/375)*100vw, 28px);
  background: url("../img/icon_arrow_btn.svg") center center no-repeat;
  background-size: contain;
}
.btn span,
.btn img {
  flex-shrink: 0;
}
.btn img {
  height: min((22/375)*100vw, 32px);
  width: auto;
}
.btn,
.btn:link,
.btn:visited {
  text-decoration: none;
  color: #fff;
}
.btn:hover,
.btn:link:hover,
.btn:visited:hover,
.btn:focus,
.btn:link:focus,
.btn:visited:focus,
.btn:active,
.btn:link:active,
.btn:visited:active {
  opacity: 0.7;
  text-decoration: none;
}
.btn__registration,
.btn__entry {
  padding: 14px 40px 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  background: #cc0933;
}
@media (min-width: 768px) {
  .btn__registration,
  .btn__entry {
    padding: 20px 40px 18px 16px;
  }
}
.btn__entry {
  border: 3px solid #f6ed93;
  box-shadow: 0 4px 6px 0 rgba(158,126,9,0.6);
}
.btn__registration {
  border: none;
  box-shadow: none;
}
@media (min-width: 768px) {
  .btn__mini {
    font-size: 2rem;
    padding: 14px 24px 12px 16px;
  }
}
.btn__mini:after {
  width: min((18/375)*100vw, 18px);
  height: min((18/375)*100vw, 18px);
  right: min((16/375)*100vw, 16px);
}
.btn__underline {
  width: fit-content;
  display: flex;
  margin: 20px auto 0;
  border-radius: 0;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  box-shadow: none;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .btn__underline {
    font-size: 2.4rem;
    padding: 20px 52px 18px 16px;
    margin: 40px auto 0;
  }
}
.btn__underline:after {
  right: 12px;
  width: 18px;
  height: 18px;
}
@media (min-width: 768px) {
  .btn__underline:after {
    right: 16px;
    width: 22px;
    height: 22px;
  }
}
.btn__other {
  border-radius: 0;
  background: #fff;
  color: #1a1c21;
  padding: 12px 48px 12px 12px;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.4rem;
  box-shadow: none;
}
@media (min-width: 768px) {
  .btn__other {
    max-width: 690px;
    font-size: 1.8rem;
    margin: auto;
    padding: 18px 48px 18px 16px;
  }
}
.btn__other:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  margin: auto;
  width: 20px;
  height: 20px;
  background: url("../img/icon_arrow_line.svg") center center no-repeat;
  background-size: cover;
  transform: rotate(-90deg);
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .btn__other:after {
    right: 24px;
    width: 24px;
    height: 24px;
  }
}
.btn__other,
.btn__other:link,
.btn__other:visited {
  color: #1a1c21;
}
.btn__other:hover {
  opacity: 0.8;
  background: rgba(204,204,204,0.4);
  transition: all 0.3s ease;
  color: #1a1c21;
}
.btn__label-ended-outside {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  color: #666;
  background: #d6d6d6;
  padding: 8px 0;
  margin: 4px auto 0;
}
@media (min-width: 768px) {
  .btn__label-ended-outside {
    font-size: 1.8rem;
    max-width: 620px;
  }
}
.l-body {
  background: #daebf0;
  position: relative;
}
.l-body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url("../img/img_bg_blur_sp.png") center/cover no-repeat;
  z-index: -1;
  pointer-events: none;
}
@media (min-width: 768px) {
  .l-body::before {
    background: url("../img/img_bg_blur_pc.png") center/cover no-repeat;
  }
}
.l-wrap {
  overflow-x: hidden;
}
.container {
  max-width: 1080px;
  margin: 0 auto;
}
section {
  padding: 32px 4.266666666666667vw;
}
@media (min-width: 768px) {
  section {
    padding: 48px 16px 64px;
  }
}
.title-box {
  text-align: center;
  margin: 0 auto 24px;
}
@media (min-width: 768px) {
  .title-box {
    margin: 0 auto 40px;
  }
}
.title-box p {
  font-weight: 400;
  margin-top: 4px;
}
@media (min-width: 768px) {
  .title-box p {
    font-size: 1.8rem;
  }
}
.title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .title {
    font-size: 4rem;
  }
}
.title__label {
  display: inline-block;
  background: #000;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 4px 16px;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .title__label {
    font-size: 2.2rem;
    padding: 6px 24px;
    margin-bottom: 12px;
  }
}
.match-schedule .title,
.last-worldcup .title,
.match-schedule .title-box p,
.last-worldcup .title-box p {
  color: #fff;
  text-shadow: 0 0 8px rgba(0,0,0,0.5);
}
.title-campaign {
  color: #fff;
  font-size: 2.4rem;
}
@media (min-width: 768px) {
  .title-campaign {
    font-size: 3.2rem;
  }
}
.title-img {
  flex-direction: row;
  justify-content: center;
}
.title-img img {
  width: 184px;
}
.entry {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 100;
  background: linear-gradient(0deg, #fff 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
}
.entry__container {
  padding: 8px 6.4vw 24px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .entry__container {
    padding: 16px 40px 24px;
  }
}
.entry p {
  font-size: min((12/375)*100vw, 1.6rem);
  text-align: center;
  margin-top: 12px;
}
@media (min-width: 768px) {
  .entry p {
    margin-top: 20px;
  }
}
.entry p a {
  display: inline-block;
  font-weight: 600;
  text-decoration: underline;
}
.entry .btn {
  margin: 0 auto;
  max-width: 640px;
}
@media (min-width: 768px) {
  .entry .btn {
    padding: 18px 40px 16px 16px;
  }
}
.entry .btn img {
  height: min((22/375)*100vw, 28px);
}
.entry .btn:hover,
.entry .btn:focus,
.entry .btn:active {
  opacity: 0.8;
}
@media (min-width: 768px) {
  .entry .btn:hover,
  .entry .btn:focus,
  .entry .btn:active {
    margin: 6px auto -6px;
  }
}
.kv {
  background: #000;
  text-align: center;
  position: relative;
  padding: 0;
}
.kv__main {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 768px) {
  .kv__main {
    background: url("../img/img_kv_bg.jpg") center center no-repeat;
    background-size: cover;
  }
}
.kv__main img {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .kv__main img {
    max-width: 820px;
  }
}
.kv__sub {
  background: #000;
  position: relative;
}
@media (min-width: 768px) {
  .kv__sub::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, #e31e31 0%, #1a469c 100%);
  }
}
.kv__sub img {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .kv__sub img {
    max-width: 480px;
    position: relative;
    z-index: 1;
  }
}
.campaign {
  padding: 24px 4.266666666666667vw;
  background: #000;
  color: #f6ed93;
}
@media (min-width: 768px) {
  .campaign {
    padding: 32px 16px 48px;
  }
}
.campaign .title-box {
  margin-bottom: 24px;
}
.campaign__box {
  background: #0f2031;
  border: 1px solid #f6ed93;
  border-radius: 4px;
  padding: 16px 2.933333333333333vw;
  text-align: center;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .campaign__box {
    padding: 24px 40px 32px;
    max-width: 864px;
  }
}
.campaign__box img {
  width: 100%;
  height: auto;
}
.campaign__text {
  font-size: 4.8vw;
  font-weight: bold;
  margin-bottom: 6px;
}
@media (min-width: 768px) {
  .campaign__text {
    font-size: 2.4rem;
    margin-bottom: 16px;
  }
}
.campaign__chance {
  padding: 0 1.333333333333333vw;
}
.campaign__schedule {
  display: block;
  margin: 16px auto;
}
@media (min-width: 768px) {
  .campaign__schedule {
    margin: 12px auto 24px;
  }
}
.campaign__coupon {
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .campaign__coupon {
    font-size: 2.2rem;
  }
}
.match-schedule {
  padding-left: 0;
  padding-right: 0;
  position: relative;
}
@media (min-width: 768px) {
  .match-schedule {
    padding: 64px 0;
  }
}
.match-schedule__cards-wrapper {
  position: relative;
  max-width: 1880px;
  margin: 0 auto;
}
.match-schedule__cards-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 40px;
  background: linear-gradient(to right, #daebf0, transparent);
  z-index: 10;
  pointer-events: none;
  display: none;
}
@media (min-width: 768px) {
  .match-schedule__cards-wrapper::before {
    display: block;
  }
}
.match-schedule__cards-wrapper::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40px;
  background: linear-gradient(to left, #daebf0, transparent);
  z-index: 10;
  pointer-events: none;
  display: none;
}
@media (min-width: 768px) {
  .match-schedule__cards-wrapper::after {
    display: block;
  }
}
.match-schedule__cards {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 calc((100vw - 303px) / 2);
}
@media (min-width: 768px) {
  .match-schedule__cards {
    padding: 0 calc((100% - 340px) / 2);
  }
}
.match-schedule__cards::-webkit-scrollbar {
  display: none;
}
@supports (-webkit-mask-image: linear-gradient(#000, #000)) or (mask-image: linear-gradient(#000, #000)) {
  .match-schedule__cards-wrapper::before,
  .match-schedule__cards-wrapper::after {
    display: none !important;
  }
  .match-schedule__cards {
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
  }
@media (max-width: 375px) {
    .match-schedule__cards {
      -webkit-mask-image: linear-gradient(to right, transparent 0, #000 20px, #000 calc(100% - 20px), transparent 100%);
      mask-image: linear-gradient(to right, transparent 0, #000 20px, #000 calc(100% - 20px), transparent 100%);
    }
}
}
.match-schedule__indicator-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .match-schedule__indicator-wrapper {
    margin-top: 24px;
    gap: 32px;
  }
}
.match-schedule__indicator {
  display: flex;
  justify-content: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .match-schedule__indicator {
    gap: 12px;
  }
}
.match-schedule__indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  box-shadow: 0 0 8px rgba(0,0,0,0.5);
  transition: background 0.3s ease;
  cursor: pointer;
}
@media (min-width: 768px) {
  .match-schedule__indicator-dot {
    width: 12px;
    height: 12px;
  }
}
.match-schedule__indicator-dot.active {
  background: #fff;
}
.match-schedule__arrow {
  display: none;
}
@media (min-width: 768px) {
  .match-schedule__arrow {
    display: block;
    width: 28px;
    height: 28px;
    border: none;
    background: url("../img/icon_arrow_btn.svg") center center no-repeat;
    background-size: contain;
    filter: drop-shadow(0 0 8px rgba(0,0,0,0.5));
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .match-schedule__arrow:hover {
    opacity: 0.8;
  }
  .match-schedule__arrow--prev {
    transform: rotate(180deg);
  }
}
.match-schedule__no-cards {
  background: rgba(255,255,255,0.6);
  border: 1px solid #fff;
  border-radius: 8px;
  padding: 16px 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  width: 303px;
  flex-shrink: 0;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .match-schedule__no-cards {
    width: 340px;
    font-size: 2rem;
    padding: 80px 20px;
  }
}
.match-container {
  max-width: 1874px;
  margin: 0 auto;
  padding: 0 clamp(0px, (100vw - 1800px) / 2, 40px);
}
.match-player {
  text-align: center;
  margin: -12px 0;
}
@media (min-width: 768px) {
  .match-player {
    margin: -28px 0 -12px;
  }
}
.match-player img {
  width: 275px;
}
.match-card {
  contain: layout style paint;
  background: rgba(255,255,255,0.6);
  border: 1px solid #fff;
  border-radius: 8px;
  padding: 16px 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  width: 303px;
  flex-shrink: 0;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  margin-right: 12px;
}
@media (min-width: 768px) {
  .match-card {
    padding: 20px;
    margin-right: 20px;
    width: 340px;
  }
}
.match-card:last-child {
  margin-right: 0;
}
.match-card__teams {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .match-card__teams {
    gap: 6px;
  }
}
.match-card__team {
  background: #000;
  color: #fff;
  font-size: 3.2rem;
  font-weight: bold;
  padding: 2px 12px;
}
@media (min-width: 768px) {
  .match-card__team {
    font-size: 3.4rem;
    padding: 4px 16px;
  }
}
.match-card__vs {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .match-card__vs {
    font-size: 2.4rem;
  }
}
.match-card__sale-date {
  background: #fff;
  border-radius: 2px;
  padding: 16px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .match-card__sale-date {
    padding: 20px;
  }
}
.match-card__sale-label {
  font-size: 1.4rem;
  font-weight: bold;
  color: #999;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .match-card__sale-label {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
}
.match-card__sale-text {
  color: #1a469c;
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px;
}
.match-card__sale-small {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .match-card__sale-small {
    font-size: 2rem;
  }
}
.match-card__sale-big {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-size: 3.6rem;
}
@media (min-width: 768px) {
  .match-card__sale-big {
    font-size: 4.8rem;
  }
}
.match-card__time {
  text-align: center;
  margin-bottom: 4px;
}
.match-card__time-label {
  font-size: 1.4rem;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .match-card__time-label {
    font-size: 1.6rem;
    margin-bottom: 4px;
  }
}
.match-card__countdown {
  display: flex;
  justify-content: center;
  gap: 8px;
  line-height: 1;
}
@media (min-width: 768px) {
  .match-card__countdown {
    gap: 12px;
  }
}
.match-card__countdown-item {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.match-card__countdown-number {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-size: 3.6rem;
}
@media (min-width: 768px) {
  .match-card__countdown-number {
    font-size: 4.8rem;
  }
}
.match-card__countdown-unit {
  font-size: 1.6rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .match-card__countdown-unit {
    font-size: 2rem;
  }
}
.match-card__kickoff {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 8px;
  padding-top: 6px;
  border-top: 1px solid rgba(0,0,0,0.5);
}
@media (min-width: 768px) {
  .match-card__kickoff {
    font-size: 1.6rem;
    margin-bottom: 12px;
    padding-top: 12px;
  }
}
.match-card__sales-end {
  display: block;
  font-size: 1.4rem;
  font-weight: normal;
  margin-top: 2px;
}
@media (min-width: 768px) {
  .match-card__sales-end {
    font-size: 1.5rem;
    margin-top: 4px;
  }
}
.match-card__btn {
  display: block;
  background: linear-gradient(90deg, #e31e31 0%, #1a469c 100%);
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  padding: 14px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  position: relative;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .match-card__btn {
    font-size: 2.4rem;
    padding: 16px 24px;
  }
}
.match-card__btn:after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
@media (min-width: 768px) {
  .match-card__btn:after {
    right: 24px;
    border-left: 10px solid #fff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
  }
}
.match-card__btn:hover {
  opacity: 0.8;
}
.match-schedule__cards {
/* スクロール位置の変更が頻繁に起きることをブラウザに伝える */
  will-change: scroll-position;
/* iOS Safari の慣性スクロールを明示的に有効化 */
  -webkit-overflow-scrolling: touch;
}
.style {
  background: #daebf0;
}
.style__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1080px) {
  .style__cards {
    flex-direction: row;
  }
}
.style__lead {
  color: #000;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin: 20px auto;
}
@media (min-width: 768px) {
  .style__lead {
    font-size: 2.4rem;
    margin: 40px auto 32px;
  }
}
.style__text {
  color: #000;
  text-align: center;
  margin: 8px auto;
}
@media (min-width: 768px) {
  .style__text {
    font-size: 2rem;
    margin: 12px auto;
  }
}
.style-card {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  padding: 16px 4.266666666666667vw;
  text-align: center;
}
@media (min-width: 768px) {
  .style-card {
    padding: 24px 12px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.style-card__label {
  display: inline-block;
  background: #000;
  color: #fff;
  font-weight: bold;
  padding: 2px 8px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .style-card__label {
    font-size: 1.8rem;
    margin-bottom: 18px;
  }
}
.style-card__head {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .style-card__head {
    margin-bottom: 12px;
  }
}
@media (min-width: 768px) {
  .style-card__head-bottom {
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.style-card__head-bottom .annotion {
  text-align: center;
}
.style-card__title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .style-card__title {
    font-size: 2.6rem;
  }
}
@media (min-width: 768px) {
  .style-card__subtitle {
    font-size: 1.8rem;
  }
}
.style-card__content {
  background: #ecf5f7;
  border-radius: 4px;
  padding: 12px 0 0;
}
@media (min-width: 768px) {
  .style-card__content {
    padding: 14px 0 0;
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
}
.style-card__catch {
  color: #e31e31;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .style-card__catch {
    font-size: 2.2rem;
    min-height: 48px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.style-card__text {
  font-size: 1.4rem;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .style-card__text {
    font-size: 1.6rem;
  }
}
.style-card__image img {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.last-worldcup {
  padding: 32px 4.266666666666667vw;
}
@media (min-width: 768px) {
  .last-worldcup {
    padding: 64px 16px;
  }
}
@media (min-width: 768px) {
  .last-worldcup .container {
    max-width: 900px;
  }
}
.last-worldcup .container > .annotion {
  color: #fff;
  text-shadow: 0 0 8px rgba(0,0,0,0.5);
  margin-top: 16px;
}
@media (min-width: 768px) {
  .last-worldcup .container > .annotion {
    text-align: center;
    margin-top: 24px;
  }
}
.last-worldcup__header {
  margin: 20px 0 12px;
}
@media (min-width: 768px) {
  .last-worldcup__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 48px 0 32px;
  }
}
.last-worldcup__icon {
  text-align: center;
}
.last-worldcup__icon img {
  height: 48px;
}
.last-worldcup__section-title {
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  text-shadow: 0 0 8px rgba(0,0,0,0.5);
}
@media (min-width: 768px) {
  .last-worldcup__section-title {
    font-size: 3.2rem;
  }
}
.last-worldcup__cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .last-worldcup__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.last-worldcup-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  margin: 0;
}
@media (min-width: 768px) {
  .last-worldcup-card {
    max-width: none;
  }
}
.last-worldcup-card__title {
  background: linear-gradient(90deg, #f8c50f 0%, #fff799 50%, #f8c50f 100%);
  color: #000;
  font-weight: bold;
  padding: 10px 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .last-worldcup-card__title {
    font-size: 2rem;
    padding: 12px 24px;
  }
}
.last-worldcup-card__number {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-size: 4.8rem;
  line-height: 1;
  color: #e31e31;
  margin-bottom: 8px;
  text-align: center;
}
@media (min-width: 768px) {
  .last-worldcup-card__number {
    font-size: 7.2rem;
  }
}
.last-worldcup-card__number span {
  font-size: 2.4rem;
}
@media (min-width: 768px) {
  .last-worldcup-card__number span {
    font-size: 3.2rem;
  }
}
.last-worldcup-card__prize {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  background: linear-gradient(90deg, #f8c50f 0%, #fff799 50%, #f8c50f 100%);
  color: #000;
  padding: 12px;
  text-align: center;
  line-height: 1;
}
@media (min-width: 768px) {
  .last-worldcup-card__prize {
    font-size: 1.8rem;
  }
}
@media (min-width: 1080px) {
  .last-worldcup-card__prize {
    font-size: 1.9rem;
  }
}
.last-worldcup-card__prize span {
  font-size: 2.3rem;
  padding: 0 1px;
}
@media (min-width: 768px) {
  .last-worldcup-card__prize span {
    font-size: 2.6rem;
  }
}
@media (min-width: 1080px) {
  .last-worldcup-card__prize span {
    font-size: 3rem;
    padding: 0 2px;
  }
}
.last-worldcup-card__content {
  padding: 16px 8px;
}
.last-worldcup-card__content .annotion {
  font-size: 1.3rem;
  text-align: center;
}
@media (min-width: 768px) {
  .last-worldcup-card__content .annotion {
    font-size: 1.4rem;
    padding-bottom: 4px;
  }
}
.last-worldcup-card__match {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .last-worldcup-card__match {
    justify-content: space-between;
    padding: 0 24px;
  }
}
.last-worldcup-card__team {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
@media (min-width: 768px) {
  .last-worldcup-card__team {
    min-width: 90px;
  }
}
.last-worldcup-card__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  padding-top: 2px;
}
@media (min-width: 768px) {
  .last-worldcup-card__center {
    padding-top: 4px;
  }
}
.last-worldcup-card__label {
  font-size: 1.3rem;
  font-weight: normal;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .last-worldcup-card__label {
    font-size: 1.4rem;
  }
}
.last-worldcup-card__label--home {
  color: #e31e31;
}
.last-worldcup-card__label--away {
  color: #1a469c;
}
.last-worldcup-card__name {
  font-size: 1.8rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .last-worldcup-card__name {
    font-size: 2.2rem;
  }
}
.last-worldcup-card__score {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  color: #000;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.last-worldcup-card__odds {
  font-size: 1.4rem;
  font-weight: bold;
  color: #e31e31;
}
@media (min-width: 768px) {
  .last-worldcup-card__odds {
    font-size: 1.6rem;
  }
}
.last-worldcup-card__odds span {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  padding: 0 1px;
}
@media (min-width: 768px) {
  .last-worldcup-card__odds span {
    font-size: 2.4rem;
  }
}
.last-worldcup-card__comment {
  position: relative;
  background: #efefef;
  border-radius: 8px;
  padding: 8px;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.6;
  margin: 0 8px;
}
@media (min-width: 768px) {
  .last-worldcup-card__comment {
    font-size: 1.6rem;
    padding: 12px;
  }
}
.last-worldcup-card__comment::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 16px;
  background: url("../img/icon_fukidashi.svg") center center no-repeat;
  background-size: contain;
}
.about {
  background: #daebf0;
}
.about__icon {
  text-align: center;
  margin: 20px 0 12px;
}
@media (min-width: 768px) {
  .about__icon {
    margin: 24px 0 12px;
  }
}
.about__icon img {
  height: 36px;
}
@media (min-width: 768px) {
  .about__icon img {
    height: 48px;
  }
}
.about__catch {
  font-weight: bold;
  text-align: center;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .about__catch {
    font-size: 2.4rem;
  }
}
.about__desc {
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .about__desc {
    font-size: 1.6rem;
    margin-bottom: 32px;
  }
}
.about__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
@media (min-width: 1080px) {
  .about__items {
    flex-direction: row;
    gap: 20px;
    margin-bottom: 16px;
  }
}
.about__item {
  background: #fff;
  border-radius: 8px;
  padding: 20px 4.266666666666667vw;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .about__item {
    padding: 24px 32px;
    flex: 1;
  }
}
.about__item-title {
  font-weight: bold;
}
@media (min-width: 768px) {
  .about__item-title {
    font-size: 2rem;
    margin-bottom: 8px;
  }
}
.about__item-text {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .about__item-text {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.about__item-note {
  font-size: 1.2rem;
  color: #666;
  margin-top: 8px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .about__item-note {
    font-size: 1.3rem;
    margin-top: 12px;
    margin-bottom: 16px;
  }
}
.buy {
  background: #daebf0;
}
@media (min-width: 768px) {
  .buy {
    padding-top: 48px;
    padding-bottom: 80px;
  }
}
@media (min-width: 1080px) {
  .buy .container {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
  }
}
@media (min-width: 1080px) {
  .buy .title-box {
    flex-shrink: 0;
    width: 368px;
    margin-bottom: 0;
  }
}
.buy__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 768px) {
  .buy__steps {
    flex: 1;
  }
}
@media (min-width: 768px) {
  .buy .btn {
    width: 100%;
    margin-top: 0;
  }
}
.buy__step {
  display: flex;
  gap: 16px;
  padding-bottom: 32px;
}
@media (min-width: 768px) {
  .buy__step {
    gap: 24px;
  }
}
.buy__step:not(:last-child) .buy__step-number:after {
  content: '';
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 40px);
  background: #000;
}
.buy__step-number {
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
}
.buy__step-content {
  flex-grow: 1;
  padding: 6px 0 0;
}
@media (min-width: 768px) {
  .buy__step-content {
    padding: 2px 0 0;
  }
}
.buy__step-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .buy__step-title {
    font-size: 2.4rem;
    margin-bottom: 6px;
  }
}
.buy__step-text {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .buy__step-text {
    font-size: 1.6rem;
  }
}
.banner {
  background: #000;
  padding: 16px 4.266666666666667vw;
}
@media (min-width: 768px) {
  .banner {
    padding: 40px 16px;
  }
}
.banner a {
  display: block;
  transition: all 0.3s ease;
  max-width: 640px;
  margin: 0 auto;
}
.banner a:hover {
  opacity: 0.8;
}
.banner img {
  width: 100%;
  height: auto;
}
.campaign-end-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}
.campaign-end-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}
.campaign-end-popup__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  padding: 40px 16px;
  width: 90%;
  max-width: 640px;
}
@media (min-width: 768px) {
  .campaign-end-popup__content {
    padding: 60px 40px;
  }
}
.campaign-end-popup__close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 40px;
  height: 40px;
  background: #fff url("../img/icon_close.svg") center center no-repeat;
  background-size: 20px 20px;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .campaign-end-popup__close {
    top: -20px;
    right: -20px;
    width: 48px;
    height: 48px;
    background-size: 24px 24px;
  }
}
.campaign-end-popup__close:hover {
  opacity: 0.6;
}
.campaign-end-popup__message {
  text-align: center;
}
.campaign-end-popup__title {
  font-size: 2rem;
  color: #1a1c21;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .campaign-end-popup__title {
    font-size: 2.4rem;
    margin-bottom: 32px;
  }
}
.campaign-end-popup__button {
  max-width: 100%;
  margin: 0 auto;
}
