@charset "UTF-8";
@-webkit-keyframes loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  51% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.c-announce-bar {
  --gold-day-text-shadow-clr: color-mix(
    in srgb,
    var(--gold-day-base-clr),
    #000 90%
  );
  --gold-day-text-bright-clr: color-mix(
    in srgb,
    var(--gold-day-base-clr),
    #fff 70%
  );

  width: 100%;
  text-align: center;
  background-image: linear-gradient(
    90deg,
    rgb(223, 182, 47),
    rgb(255, 232, 148) 50%,
    rgb(223, 182, 47) 99%
  );
  display: none;
  overflow: hidden;
  height: 42px;

  span {
    font-family:
      "Noto Serif JP",
      Noto Serif JP,
      serif;
    font-weight: bold;
    color: #db0015;
    display: block;
    font-size: 20px;
    letter-spacing: 0.08em;
    padding: 7px 0;
  }

  em {
    color: var(--gold-day-base-clr, #000);

    font-weight: 900;
    font-style: normal;
  }
}
.c-announce-bar__inner {
  display: flex;
  aling-items: center;
  flex-wrap: nowrap;
}
.c-announce-bar[data-variant*="gold-day"] {
  --gold-day-base-clr: #2654ca;
}
.c-announce-bar[data-variant*="gold-day:大安"] {
  --gold-day-base-clr: #e92219;
}
.c-announce-bar[data-variant*="gold-day:一粒万倍日"] {
  --gold-day-base-clr: #fcc301;
  em {
    text-shadow:
      -1px -1px 2px var(--gold-day-text-shadow-clr),
      1px -1px 2px var(--gold-day-text-shadow-clr),
      -1px 1px 2px var(--gold-day-text-shadow-clr),
      1px 1px 2px var(--gold-day-text-shadow-clr),
      0 3px 6px var(--gold-day-text-bright-clr);
  }
}
.c-announce-bar[data-variant*="gold-day:大明日"] {
  --gold-day-base-clr: #6cbf20;
}
.c-announce-bar[data-position="top"].is-active {
  display: flex;
  align-items: center;
  justify-content: center;
  & span {
    animation: flash 3s linear 0s infinite;
  }
}
.c-announce-bar[data-position="bottom"].is-active {
  display: flex;
  align-items: center;
  & span {
    -webkit-animation: loop 5s linear infinite;
    animation: loop 5s linear infinite;
    white-space: nowrap;
  }
}
.c-announce-bar.is-fever {
  background: transparent url("../img/top/announce-bar-bg.jpg") repeat-x center
    center;
  background-size: 100%;

  span {
    font-family: "Hiragino Sans";
    font-size: 16px;
    letter-spacing: 0;
    font-weight: 700;
    background:
      linear-gradient(
        90deg,
        #ff0000 0%,
        #f6d100 15%,
        #abfb00 30%,
        #00d5d2 45%,
        #0400ff 60%,
        #ff00a6 100%
      ),
      linear-gradient(0deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6));

    background-clip: text;
    color: transparent;
    text-shadow:
      0 0 1px rgba(255, 255, 255, 0.4),
      0 0 1px rgba(255, 255, 255, 0.4);
  }
}

.c-anchor {
  display: flex;
  gap: 9px;
  padding-inline: 10px;
  padding-block: 16px;
}
.c-anchor .c-primary-btn {
  flex: 1;
  --h: 74px;
}
.c-anchor .c-primary-btn:nth-of-type(1) img {
  width: 90px;
}
.c-anchor .c-primary-btn:nth-of-type(1) a {
  background-color: #D5E6F0;
}
.c-anchor .c-primary-btn:nth-of-type(1)::before {
  content: "1試合・優勝予想";
}
.c-anchor .c-primary-btn:nth-of-type(2) img {
  width: 73px;
}
.c-anchor .c-primary-btn:nth-of-type(2) a {
  background-color: #FFD900;
}
.c-anchor .c-primary-btn:nth-of-type(2)::before {
  content: "複数試合予想";
}
.c-anchor .c-primary-btn a {
  --h: 48px;
}
.c-anchor .c-primary-btn::before {
  display: block;
  font-size: 13px;
  text-align: center;
  padding: 4px 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 4px 4px 0 0;
  margin: auto;
  background-color: #000;
  color: #fff;
  line-height: 1.4;
}

.c-breadcrumbs {
  color: #222222;
  font-size: 11px;
  display: flex;
  align-items: center;
  padding: 16px 10px;
  background-color: #fff;
}
.c-breadcrumbs span + span {
  padding-left: 16px;
  position: relative;
}
.c-breadcrumbs span + span::after {
  --size: 6px;
  position: absolute;
  content: "";
  display: block;
  border-bottom: solid 2px #222222;
  border-right: solid 2px #222222;
  width: var(--size);
  height: var(--size);
}
.c-breadcrumbs span + span::after {
  top: 50%;
  left: 5px;
  transform: rotate(-45deg) translateY(-50%);
  border-width: 1px;
}

.c-modal {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  border-radius: 4px;
  overflow: hidden;
  border: solid 1px;
  position: fixed;
  right: 10px;
  bottom: 16px;
  z-index: 10;
}
.c-modal::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #000;
  z-index: 1;
}
.c-modal__inner {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  z-index: 2;
  background-color: #fff;
}
.c-modal__title {
  border-bottom: solid 1px #000;
  display: flex;
  justify-content: space-between;
}
.c-modal__title a {
  font-size: 11px;
  font-weight: 700;
  white-space: pre-line;
  color: #fff;
  padding: 13px 8px;
  flex: 1;
}
.c-modal__title .close {
  position: relative;
  display: block;
  padding: 13px 8px;
  width: 35px;
  --bg: white;
}
.c-modal__title .close::before, .c-modal__title .close::after {
  content: "";
  position: absolute;
  display: block;
  width: var(--w, 16px);
  height: var(--h, 2px);
  right: 8px;
  top: 50%;
  background-color: var(--bg, #fff);
}
.c-modal__title .close::before {
  transform: rotate(90deg);
  top: 50%;
  transition: all 0.3s ease;
}
.c-modal__title .close::before {
  transform: rotate(45deg);
}
.c-modal__title .close::after {
  transform: rotate(-45deg);
}
.c-modal__body {
  text-align: center;
  font-size: 13px;
  padding: 8px;
  a {
    display: flex;
    align-items: center;
    gap: 12px;
  }
}
.c-modal__body-title {
  font-weight: 700;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: pre-line;
}
.c-modal__body-sub-title {
  font-size: 10px;
  margin-top: 6px;
  text-wrap: nowrap;
}

.c-modal__body-img:has(img[src=""]) {
  display: none;
}

.c-modal__body-img img {
  width: 60px;
}

.p-important-news {
  --header-h: 60px;
  padding-top: var(--header-h);
}
.p-important-news:has(.p-important-news__container) {
  padding: calc(var(--header-h) + 16px) 10px 16px;
}
.p-important-news li:not(:last-of-type) {
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}
.p-important-news__container {
  border: solid 1px #DDDDDD;
  border-radius: 4px;
  display: flex;
  padding: 8px 16px;
  gap: 8px;
  align-items: center;
  line-height: 1;
}
.p-important-news__list {
  font-size: 14px;
  color: #222222;
}

.p-mv {
  aspect-ratio: 375/333;
}
.p-mv + .p-feature-content {
  margin-top: 10px;
}
.p-mv .swiper-pagination-bullet {
  background-color: #000;
}
.p-mv .swiper-pagination {
  position: static;
  line-height: 1;
  padding-block: 8px 10px;
}

.p-carryover {
  background-image: url(../img/top/big/carryover-bg.jpg);
  background-size: cover;
  background-position: center;
}
.p-carryover__inner {
  padding: 16px 10px;
}
.p-carryover__sale-end-date {
  text-align: center;
  display: block;
  font-size: 12px;
  color: #fff;
  line-height: 1.4;
}
.p-carryover__price {
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: baseline;
  gap: 2px;
  text-align: center;
}
.p-carryover__price span {
  font-size: 24px;
  font-family: Barlow Semi Condensed, sans-serif;
  color: #222222;
  padding: 6px 0;
  line-height: 0.8;
  width: 19px;
  background: #F2F2F0;
}
.p-carryover__price span.gray {
  color: #DDDDDD;
}
.p-carryover__text {
  padding: 10px 0;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 8px;
}
.p-carryover__scale {
  padding: 8px 10px;
  border-radius: 4px;
  background: #fff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-carryover__icon {
  width: 46px;
}

.p-purchase-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 16px 10px 32px;
  -moz-column-gap: 8px;
       column-gap: 8px;
  row-gap: 16px;
}
.p-purchase-buttons .p-purchase-buttons__2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column: 1/4;
  gap: 8px;
}
.p-purchase-buttons .p-purchase-buttons__2col .c-primary-btn {
  --h: 64px;
  text-align: center;
}
.p-purchase-buttons .c-primary-btn {
  --h: 56px;
}
.p-purchase-buttons .c-primary-btn a {
  background-color: var(--btn-bg);
  color: var(--btn-clr);
}
.p-purchase-buttons .c-primary-btn img {
  width: var(--w);
}
.p-purchase-buttons--winner .c-primary-btn {
  grid-column: 1/4;
}
.p-purchase-buttons--winner .c-primary-btn:nth-of-type(1) a {
  background: linear-gradient(90deg, rgb(230, 1, 45), rgb(1, 71, 157));
  color: #fff;
}
.p-purchase-buttons--winner .c-primary-btn:nth-of-type(2) a {
  background-image: linear-gradient(90deg, rgb(230, 1, 45), rgb(1, 71, 157));
  border: none;
  padding: 1px;
}
.p-purchase-buttons--winner .c-primary-btn:nth-of-type(2) span {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 4px;
}

.p-feature-content {
  padding: 0px 10px 32px;
}
.p-feature-content .c-primary-title {
  margin-bottom: 8px;
}
.p-feature-content__cards li {
  background-color: #fff;
  padding: 10px 10px 18px;
  font-size: 13px;
  line-height: 1.4;
  border-radius: 4px;
}
.p-feature-content__cards li:not(:last-of-type) {
  margin-bottom: 8px;
}
.p-feature-content__cards img {
  margin-bottom: 16px;
  display: block;
}

.p-about-big {
  padding: 0 10px 32px;
}
.p-about-big__inner {
  padding: 16px 10px 32px;
  background-color: #fff;
  border-radius: 4px;
}
.p-about-big__items {
  display: grid;
  gap: 16px;
}
.p-about-big__item.is-active .p-about-big__item-wrap {
  grid-template-rows: 1fr;
}
.p-about-big__item.is-active .p-about-big__item-img::after {
  transform: translateX(-50%) rotate(180deg);
}
.p-about-big__item-img {
  position: relative;
  padding-bottom: 26px;
}
.p-about-big__item-img::after {
  content: "▼";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border-width: 1px;
  transition: transform 0.3s ease;
}
.p-about-big__item-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.4s grid-template-rows ease;
}
.p-about-big__item-hidden {
  overflow: hidden;
}
.p-about-big__item-detail {
  padding: 16px 0;
}
.p-about-big__item-table {
  width: 100%;
  font-size: 12px;
}
.p-about-big__item-table th {
  width: 35%;
  background: #F2F2F0;
}
.p-about-big__item-table th,
.p-about-big__item-table td {
  padding: 15px 12px 12px;
  border: solid 1px #DDDDDD;
  font-weight: normal;
}
.p-about-big__purchase-btn {
  margin-top: 32px;
}
.p-about-big__purchase-btn .p-purchase-buttons {
  padding: 0;
}
.p-about-big__detail-btn {
  margin-top: 16px;
}
.p-about-big__detail-btn .c-primary-btn {
  --h: 56px;
}
.p-about-big__detail-btn .c-primary-btn a {
  height: 100%;
  font-weight: 700;
  background-color: #fff;
}
.p-about-big .c-annotation {
  margin-top: 16px;
}
.p-about-big .c-primary-title {
  margin-bottom: 8px;
}

.p-merit {
  padding: 0 10px 32px;
}
.p-merit .c-primary-title {
  background-color: #EB5505;
}
.p-merit .c-primary-title h2 {
  color: #fff;
}
.p-merit__inner {
  border-radius: 4px;
  overflow: hidden;
  border: solid 4px #EB5505;
}
.p-merit__body {
  background-color: #fff;
  padding: 16px 0 32px;
}
.p-merit ul {
  padding: 0 20px;
}
.p-merit li:not(:last-of-type) {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: solid 1px #EB5505;
}
.p-merit li {
  color: #EB5505;
}
.p-merit p {
  font-weight: 700;
  color: #EB5505;
}
.p-merit p span {
  font-size: 10px;
}
.p-merit p small {
  font-size: 11px;
  font-weight: 400;
}
.p-merit img {
  width: 48px;
}
.p-merit li:last-of-type p:nth-of-type(1) {
  font-size: 13px;
}
.p-merit li:last-of-type p:nth-of-type(2) {
  font-size: 15px;
}
.p-merit .c-primary-btn {
  margin: 24px 20px 0;
  --h: 54px;
}
.p-merit .c-primary-btn a {
  background-color: #EB5505;
  color: #fff;
}

.p-merumaga {
  aspect-ratio: 375/663;
  --gap: 16px;
  padding: 0 10px 32px;
}
.p-merumaga__inner {
  padding: 16px 10px 32px;
  background-color: #fff;
}
.p-merumaga .c-primary-title img {
  --w: 48px;
}
.p-merumaga .c-primary-btn {
  margin-top: 24px;
  --h: 54px;
}
.p-merumaga .c-primary-btn a {
  color: #fff;
  background-color: #EB5505;
}
.p-merumaga ul {
  padding-top: 8px;
  counter-reset: li;
}
.p-merumaga li {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  gap: 14px;
  padding: 10px 10px 16px;
}
.p-merumaga li:nth-of-type(2n-1) {
  background-color: #F2F2F0;
}
.p-merumaga li::before {
  font-family: Barlow Semi Condensed, sans-serif;
  counter-increment: li;
  content: counter(li);
  font-size: 48px;
  color: #EB5505;
  display: flex;
  width: 36px;
  flex-shrink: 0;
  justify-content: center;
  line-height: 1.2;
}

.p-campaign-banner .c-primary-title {
  margin-bottom: 8px;
}
.p-campaign-banner__slider .swiper-pagination {
  position: static;
  line-height: 1;
  margin-top: 16px;
}
.p-campaign-banner__slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #000;
}

.p-news {
  padding: 32px 10px 64px;
}
.p-news__content {
  padding-inline: 10px;
}
.p-news .c-primary-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.p-news .c-primary-title a {
  color: #000;
  font-size: 14px;
  font-weight: 700;
  text-underline-offset: 2px;
  text-decoration: underline;
}
.p-news ul {
  border-top: solid 1px #DDDDDD;
}
.p-news li {
  border-bottom: solid 1px #DDDDDD;
  padding-block: 16px;
  line-height: 1.4;
}
.p-news li span {
  display: block;
  font-size: 11px;
  color: #888888;
  margin-bottom: 8px;
}
.p-news li a {
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  width: 100%;
  overflow: hidden;
}

.p-tab {
  padding: 0 10px;
  display: flex;
  gap: 5px;
  height: 76px;
  background-color: #fff;
}
.p-tab__item {
  padding: 8px;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 4px 4px 0 0;
}
.p-tab__item.is-current {
  background-color: #D5E6F0;
}
.p-tab__item:not(.is-current) {
  border: solid 1px #000;
  border-bottom: unset;
}
.p-tab__item img {
  width: 28px;
}

.p-winner-game-contents {
  padding-block: 16px;
}
.p-winner-game-contents .c-primary-title {
  margin-bottom: 8px;
}
.p-winner-game-contents .c-primary-title span {
  font-size: 13px;
  text-align: center;
  display: block;
  margin-top: 4px;
}
.p-winner-game-contents__content:not(:last-of-type) {
  margin-bottom: 32px;
}
.p-winner-game-contents__content .swiper {
  margin-inline: -10px;
}
.p-winner-game-contents__inner {
  padding-inline: 10px;
}
.p-winner-game-contents__body .c-primary-btn {
  --h: 56px;
}
.p-winner-game-contents__body .c-primary-btn a {
  background-image: linear-gradient(90deg, rgb(230, 1, 45), rgb(1, 71, 157));
  color: #fff;
}
.p-winner-game-contents__body[id=thisweek-competition-soccer] .c-primary-btn, .p-winner-game-contents__body[id=thisweek-competition-basketball] .c-primary-btn {
  width: 90%;
  margin: auto;
}
.p-winner-game-contents__slider .swiper-pagination {
  position: static;
  margin-top: 16px;
  padding: 0 5.5%;
  line-height: 0.8;
}

.p-game-card {
  border-radius: 4px;
  line-height: 1.4;
  background-color: #fff;
}
.p-game-card__header {
  padding: 16px 18px;
}
.p-game-card__title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}
.p-game-card__sub-title {
  font-size: 13px;
}
.p-game-card__sub-title strong {
  margin-left: 8px;
}
.p-game-card__body {
  padding: 16px 8px;
  border-block: solid 1px #DDDDDD;
}
.p-game-card__block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-game-card__block + .p-game-card__block {
  margin-top: 8px;
}
.p-game-card__block:nth-of-type(1) .p-game-card__base {
  background-color: #01479D;
  color: #fff;
}
.p-game-card__block:nth-of-type(2) .p-game-card__base {
  background-color: #fff;
  color: #01479D;
}
.p-game-card__block:nth-of-type(3) {
  justify-content: flex-end;
}
.p-game-card__block:nth-of-type(3) > div {
  padding: 4px 6px;
  background-color: #F2F2F0;
}
.p-game-card__left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-game-card__base {
  font-family: "Barlow Semi Condensed";
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 48px;
  border: solid 1px #01479D;
}
.p-game-card__logo {
  --size: 48px;
  width: var(--size);
  height: var(--size);
  &:not(:has(img)) {
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d9d9d9;
  }
}
.p-game-card__name {
  font-weight: 700;
  font-size: 12px;
}
.p-game-card__name span {
  font-weight: 400;
  display: block;
  font-size: 10px;
}
.p-game-card__right {
  font-size: 10px;
  width: 110px;
}
.p-game-card__right div:nth-of-type(1) {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-game-card__right div:nth-of-type(1) span {
  font-size: 12px;
  font-weight: 700;
}
.p-game-card__right div:nth-of-type(2) {
  width: 100%;
  height: 8px;
  background-color: #DDDDDD;
  position: relative;
  margin-top: 8px;
}
.p-game-card__right div:nth-of-type(2)::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--w);
  background-color: #01479D;
}
.p-game-card__entry {
  padding: 8px 10px 16px;
  text-align: center;
}
.p-game-card__entry-text {
  font-size: 10px;
  line-height: 1.6;
}
.p-game-card__entry .c-primary-btn {
  margin-top: 8px;
}
.p-game-card__entry-date {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 500;
  display: block;
}

.p-accordion__block {
  padding: 10px;
  border-radius: 4px;
  background-color: #fff;
}
.p-accordion__block:not(:last-of-type) {
  margin-bottom: 8px;
}
.p-accordion__block.is-active .p-accordion__block-contents-wrap {
  grid-template-rows: 1fr;
}
.p-accordion__block.is-active .p-accordion__title::before {
  transform: rotate(0);
}
.p-accordion__block-team {
  width: 48px;
}
.p-accordion__block-detail {
  width: 52px;
}
.p-accordion__block-detail div:nth-of-type(2) {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}
.p-accordion__block-contents-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.4s grid-template-rows ease;
}
.p-accordion__block-contents-detail {
  overflow: hidden;
}
.p-accordion__block-contents-teams {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding-bottom: 5px;
  overflow: hidden;
}
.p-accordion__block-contents-team {
  padding: 4px;
  font-size: 11px;
  text-align: center;
  border-radius: 4px;
  border: solid 1px #DDDDDD;
}
.p-accordion__block-content {
  padding: 16px;
  border-radius: 4px;
  background-color: #fff;
  margin-top: 8px;
}
.p-accordion__block-content-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
  gap: 42px;
}
.p-accordion__title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  padding-right: 25px;
  position: relative;
  --bg: var(--black-clr);
  position: relative;
}
.p-accordion__title::before, .p-accordion__title::after {
  content: "";
  position: absolute;
  display: block;
  width: var(--w, 16px);
  height: var(--h, 2px);
  right: 5px;
  top: 50%;
  background-color: var(--bg, #fff);
}
.p-accordion__title::before {
  transform: rotate(90deg);
  top: 50%;
  transition: all 0.3s ease;
}
.p-accordion__title-date {
  padding: 8px;
  background: #fff;
  border-radius: 4px;
  text-align: center;
  color: #222222;
}
.p-accordion--type-blue .p-accordion__block.is-active {
  background-color: #01479D;
}
.p-accordion--type-blue .p-accordion__block.is-active .p-accordion__title {
  --bg: var(--white-clr);
}
.p-accordion--type-white .p-accordion__title {
  padding: 16px 0;
}

.p-toto-content {
  margin-bottom: 32px;
}
.p-toto-content__inner {
  padding-inline: 10px;
}
.p-toto-content__container {
  padding: 16px 10px 32px;
  border-radius: 4px;
  background-color: #fff;
}
.p-toto-content .c-primary-title {
  margin-bottom: 8px;
}
.p-toto-content__tabs {
  display: flex;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
}
.p-toto-content__tabs div:not(.is-current) {
  color: #196ee5;
}
.p-toto-content__tabs div:not(:last-of-type) {
  padding-right: 8px;
  border-right: solid 1px #222222;
}
.p-toto-content__tabs div:not(:first-of-type) {
  padding-left: 8px;
}
.p-toto-content__tabs span {
  padding-right: 8px;
}
.p-toto-content__contents ul {
  content-visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s;
}
.p-toto-content__contents ul.is-current {
  content-visibility: visible;
  opacity: 1;
  transition: opacity 0.3s;
}
.p-toto-content li[data-type=basic] {
  --bg: var(--yellow-clr);
}
.p-toto-content li[data-type=mini] {
  --bg: var(--light-blue-clr);
}
.p-toto-content li[data-type=mini] .c-primary-btn a {
  color: #fff;
}
.p-toto-content li[data-type*=goal] {
  --bg: var(--green-clr);
}
.p-toto-content li[data-type*=goal] .c-primary-btn a {
  color: #fff;
}
.p-toto-content li + li {
  margin-top: 32px;
}
.p-toto-content .c-primary-btn {
  --h: 54px;
}
.p-toto-content .c-primary-btn a {
  background-color: var(--bg);
}
.p-toto-content .c-primary-btn + .c-primary-btn {
  margin-top: 16px;
}
.p-toto-content__body {
  margin-top: 8px;
}
.p-toto-content__column {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.p-toto-content__column-logo {
  width: 106px;
  flex-shrink: 0;
}
.p-toto-content__column-logo img {
  padding: 8px;
  border-radius: 4px;
  margin-bottom: 8px;
  aspect-ratio: 106/76;
  background-color: var(--bg);
}
.p-toto-content__column-logo span {
  width: 100%;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  display: block;
  text-align: center;
  padding: 4px 0;
  background-color: #F2F2F0;
}
.p-toto-content__column-detail p {
  font-size: 11px;
  line-height: 1.4;
}
.p-toto-content__column-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}
.p-toto-content__column-title strong {
  font-size: 20px;
}
.p-toto-content__btn {
  margin-top: 18px;
}
.p-toto-content__btn .c-primary-btn a {
  background-color: #fff;
  font-weight: 700;
}

.p-customer-comment {
  padding-bottom: 32px;
}
.p-customer-comment .p-purchase-buttons {
  padding-block: 0;
  padding-inline: 10px;
  margin-top: 16px;
}
.p-customer-comment__content {
  text-align: center;
  background-color: #E80000;
  position: relative;
  padding: 24px 0 48px;
}
.p-customer-comment__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/top/big/bg-02.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.p-customer-comment__title {
  margin-bottom: 16px;
  position: relative;
}
.p-customer-comment__title h2 {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
}
.p-customer-comment__title h2 span {
  font-size: 16px;
  font-family: initial;
}
.p-customer-comment__title h2 small {
  font-size: 16px;
}
.p-customer-comment__slider .swiper {
  padding-top: 30px;
}
.p-customer-comment__slider .swiper-slide {
  border-radius: 4px;
  background-color: #fff;
  position: relative;
  z-index: 1;
  padding: 35px 16px 24px;
  height: auto;
}
.p-customer-comment__slider .swiper-slide::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  background-image: url(../img/top/big/mato.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 60px;
  height: 50px;
  z-index: 3;
  transform: translate(-36%, -60%);
}
.p-customer-comment__slider .swiper-slide::before {
  position: absolute;
  --size: 56px;
  content: "";
  display: block;
  background-color: #fff;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  z-index: 2;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-customer-comment__slider .swiper-pagination {
  position: static;
  margin-top: 15px;
  line-height: 0.5;
}
.p-customer-comment__slider .swiper-pagination-bullet-active {
  background-color: #000;
}
.p-customer-comment p {
  background-image: linear-gradient(90deg, rgb(223, 182, 47), rgb(255, 232, 148) 50%, rgb(223, 182, 47) 99%);
  min-height: 82px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  border: solid 1px #C09B0F;
  padding: 16px;
  text-align: left;
  font-size: 13px;
}
.p-customer-comment__detail {
  margin-top: 16px;
}
.p-customer-comment__detail p:nth-of-type(1) {
  font-size: 14px;
  font-weight: bold;
  padding-bottom: 16px;
  border-bottom: solid 1px #000;
  margin-bottom: 12px;
}
.p-customer-comment__detail p:nth-of-type(2) {
  font-size: 12px;
  color: #000;
}
.p-customer-comment__annotation {
  text-align: right;
  margin-top: 16px;
  padding: 0 10px;
}

.p-regular-purchase {
  padding: 0 10px 32px;
}
.p-regular-purchase p {
  font-size: 13px;
  padding-inline: 10px;
}
.p-regular-purchase__inner {
  padding: 8px 10px 32px;
  border-radius: 4px;
}
.p-regular-purchase__img {
  margin-bottom: 16px;
}
.p-regular-purchase__title {
  margin-top: 20px;
}
.p-regular-purchase__title h3 {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 18px;
  align-items: center;
}
.p-regular-purchase__title h3::before {
  content: "";
  background-image: url(../img/guidance-toto/check.svg);
  width: 15px;
  height: 15px;
  background-size: contain;
}
.p-regular-purchase__btn {
  margin-top: 24px;
}
.p-regular-purchase__btn .c-primary-btn {
  --h: 64px;
}
.p-regular-purchase__btn .c-primary-btn a {
  background-color: white;
  --g: 8px;
}
.p-regular-purchase__btn .c-primary-btn img {
  width: 24px;
}

.p-tab-content .p-mv {
  padding-top: 8px;
}
.p-tab-content__item {
  display: none;
}
.p-tab-content__item.is-current {
  display: block;
}

.p-modal {
  position: absolute;
  bottom: 15px;
  right: 10px;
}
.p-modal .c-modal__title {
  background-color: #E80000;
}
.p-modal--winner .c-modal__title {
  background-color: var(--bg);
}
.p-modal--winner:not([style]) .c-modal__title {
  background-image: linear-gradient(90deg, rgb(230, 1, 45), rgb(1, 71, 157));
}
.p-modal.is-hide {
  display: none;
}
/*# sourceMappingURL=top.css.map */