@charset "UTF-8";
html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4vw;
  color-scheme: dark light;
  background: #fff;
}

body.blur {
  overflow: hidden !important;
}

main {
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
}

.wrap {
  min-height: 100vh;
  margin: 0 auto;
  font-weight: normal;
  line-height: 1.6;
  color: #000;
}

section {
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

img {
  display: block;
  width: 100%;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}

li {
  list-style: none;
}

a,
button {
  color: #333;
  cursor: pointer !important;
  transition: 0.3s;
}

input {
  color: #000;
}

em {
  font-style: normal;
}

.sp_only {
  display: block;
}

.pc_only {
  display: none;
}

.tab {
  display: block;
}

.inner {
  width: 100%;
  margin: 0 auto;
}

h1,
h2,
h3 {
  font-weight: bold;
}

.blk_ttl {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  padding: 0.2rem 1rem;
  margin: 1rem auto 2rem;
  font-size: 1.7rem;
  color: #fff;
  text-align: center;
  background: linear-gradient(-25deg, #000 50%, #484848 0);
  transform: translateY(2rem);
}
.blk_ttl::after {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  width: 1.8rem;
  height: 1.1rem;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  content: "";
  background: #000;
  transform: translateX(-50%);
}
.blk_ttl.active {
  transform: translateY(0);
}

.deco_ttl {
  padding: 0 1rem;
  margin: 2rem auto 1rem;
  transform: translateY(2rem);
}
.deco_ttl.active {
  transform: translateY(0);
}

.correct {
  position: relative;
  align-content: center;
  min-height: 7.5rem;
  margin: 1.5rem auto;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
.correct::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 7.5rem;
  content: "";
  background: url(../img/correct_bg.webp) no-repeat center/contain;
  opacity: 0;
  transform: translate(0, 0) scale(1.2);
}
.correct span {
  color: #e91b00;
}
.correct em {
  font-size: 1.6rem;
}
.correct.anime {
  opacity: 1;
}
.correct.active::after {
  z-index: 0;
  opacity: 1;
  transition-duration: 0.2s;
  transform: translate(0, 0) scale(1);
}

.question {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
  margin: 2rem auto;
}
.question img {
  width: 5.9rem;
  height: 5.9rem;
  margin: 0;
}
.question figcaption {
  position: relative;
  z-index: 0;
  min-width: 16rem;
  padding: 0.8rem;
  font-size: 1.33rem;
  font-weight: bold;
  color: #000;
  text-align: center;
  background: #f7f7f7;
  border-radius: 2rem;
}
.question figcaption::before {
  position: absolute;
  bottom: 0.5rem;
  left: -1rem;
  z-index: -1;
  width: 4rem;
  height: 1rem;
  clip-path: polygon(100% 40%, 40% 0, 0 100%);
  content: "";
  background: #f7f7f7;
}
.question figcaption::after {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: -1;
  width: 2rem;
  height: 4rem;
  content: "";
  background: url(../img/question_icon.webp) no-repeat center/contain;
  transform: rotate(12deg);
}

.marker {
  background: linear-gradient(#ffeb00 0 0) no-repeat;
  background-position: left bottom;
  background-size: 0% 40%;
  transition: background-size 0.4s ease;
}
.marker.anime {
  opacity: 1;
}
.marker.active {
  background-size: 100% 40%;
}

.cnt_txt {
  margin: 2rem auto;
  font-size: 1.1rem;
  text-align: center;
}
.cnt_txt span {
  font-weight: 500;
  color: #e91b00;
}

.mock {
  position: relative;
  overflow: hidden;
}
.mock img {
  width: 11rem;
}
.mock figcaption {
  position: relative;
  left: 1rem;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
}
.mock figcaption span {
  left: -1rem;
  font-size: 3rem;
  color: #e91b00;
}
.mock video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 37rem;
}

.reg {
  margin: 2rem auto;
}
.reg figure {
  position: relative;
  padding-bottom: 3rem;
}
.reg figure img {
  height: 7rem;
}
.reg figure::after {
  position: absolute;
  bottom: 0.7rem;
  left: 0;
  width: 100%;
  height: 2.4rem;
  content: "";
  background: url(../img/arrow.webp) no-repeat center/contain;
  animation: arrowDown 1.2s linear infinite;
}
@keyframes arrowDown {
  0% {
    opacity: 0;
    transform: translateY(-0.5rem);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(0.5rem);
  }
}
.reg a {
  display: block;
  margin: 1rem auto;
  animation: fuwafuwa 1s linear infinite;
}
.reg a img {
  height: 8rem;
}
@keyframes fuwafuwa {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

.hit01 h2 {
  position: relative;
  padding-bottom: 2.8rem;
  text-align: center;
}
.hit01 h2::after {
  position: absolute;
  bottom: 0.7rem;
  left: 0;
  width: 100%;
  height: 1.4rem;
  content: "";
  background: url(../img/arrow.webp) no-repeat center/contain;
  opacity: 0;
  transform: translateY(-10px);
  animation: arrowDown 1.2s linear infinite;
  will-change: transform, opacity;
}
.hit01 h2.anime {
  opacity: 1;
}
@keyframes arrowDown {
  0% {
    opacity: 0;
    transform: translateY(-0.5rem);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(0.5rem);
  }
}
.hit01 .swiper ul li {
  height: 16.2rem;
  background: url(../img/hit_result_bg.webp) no-repeat center/cover;
}
.hit01 .swiper ul li p {
  color: #fff;
  text-align: center;
}
.hit01 .swiper ul li dl dt {
  margin: 2rem auto;
  font-size: 1.3rem;
  color: #fff;
  text-align: center;
}
.hit01 .swiper ul li dl dt span {
  display: block;
}
.hit01 .swiper ul li dl dd {
  position: relative;
  font-size: 1.5rem;
  color: #c28c04;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}
.hit01 .swiper ul li dl dd::before, .hit01 .swiper ul li dl dd::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: attr(title);
}
.hit01 .swiper ul li dl dd::before {
  color: #f6dd05;
  -webkit-mask-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%);
          mask-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%);
}
.hit01 .swiper ul li dl dd::after {
  color: #fff;
  -webkit-mask-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.2) 36%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.6) 45%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
          mask-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.2) 36%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.6) 45%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
}
.hit01 .swiper ul li dl dd em {
  font-size: 1.7rem;
}
.hit01 > p {
  font-size: 1.3rem;
}
.hit01 > p span.marker {
  font-size: 2rem;
}
.hit01 > p span {
  font-size: 1.6rem;
}

.hit h2 {
  margin-bottom: 1rem;
  text-align: center;
}
.hit .swiper {
  padding-bottom: 2.1rem;
}
.hit .swiper ul li {
  position: relative;
  max-width: 15rem;
  color: #000;
  background: url(../img/hit_item_bg.webp) no-repeat center/cover;
}
.hit .swiper ul li figure {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  justify-content: flex-start;
  height: 2rem;
  padding-left: 0.35rem;
  font-size: 1rem;
  font-weight: bold;
}
.hit .swiper ul li figure img {
  width: auto;
  height: 1.5rem;
  margin: 0;
}
.hit .swiper ul li figure::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 3rem;
  height: 2rem;
  content: "";
  background: url(../img/hit_ttl-1.webp) no-repeat center/contain;
}
.hit .swiper ul li figure figcaption {
  width: 5rem;
  font-size: 0.7rem;
  line-height: 1.1;
}
.hit .swiper ul li .date {
  padding: 0.14rem 0;
  font-size: 0.8rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background-color: #000;
}
.hit .swiper ul li .item {
  text-align: center;
}
.hit .swiper ul li .race {
  display: flex;
  gap: 0.3rem;
  align-items: center;
  justify-content: center;
  padding: 0 0.35rem;
  margin-top: 0.3rem;
  font-size: 0.75rem;
}
.hit .swiper ul li .race span:nth-of-type(n+2)::before {
  content: "→ ";
}
.hit .swiper ul li > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 0.56rem;
}
.hit .swiper ul li > div .bet {
  position: relative;
  font-size: 0.8rem;
  text-align: center;
}
.hit .swiper ul li > div .bet::before {
  position: absolute;
  top: 0.28rem;
  right: -1rem;
  width: 0.84rem;
  height: 0.7rem;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  content: "";
  background-color: #000;
}
.hit .swiper ul li > div .get {
  margin-top: -0.5rem;
  font-family: "DM Serif Text", "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  color: #f00;
  text-shadow: 1px 1px 0 rgb(0, 0, 0);
}
.hit .swiper ul li > div .get em {
  font-size: 2rem;
}

.cnt1 {
  margin: 2rem auto;
}
.cnt1 dl {
  text-align: center;
}
.cnt1 dl dt {
  font-size: 1.3rem;
}
.cnt1 dl dd {
  font-size: 1.1rem;
}

.cnt2 {
  margin-bottom: 3.5rem;
}
.cnt2 dl {
  margin: 1rem auto;
}
.cnt2 dl dt {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
}
.cnt2 dl dd {
  font-size: 1.33rem;
  text-align: center;
}

.cnt3 {
  margin-bottom: 3.5rem;
}
.cnt3 figure {
  padding: 0 1rem;
}

.cnt4 figure {
  padding: 0 1rem;
}
.cnt4 dl {
  font-size: 1.33rem;
  font-weight: 600;
  text-align: center;
}
.cnt4 dl dt .marker {
  color: #e91b00;
}

.cnt6 h2 {
  margin: 2rem auto;
  font-size: 1.3rem;
  text-align: center;
}

.cnt7 h2 img {
  height: 11.5rem;
}
.cnt7 ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding: 0 1rem;
}
.cnt7 ul li {
  width: calc(50% - 1rem);
}

.cnt8 h2 {
  margin: 1rem auto;
}
.cnt8 h2 img {
  height: 6rem;
}
.cnt8 .slide {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: slideLoop 10s linear infinite;
}
.cnt8 .slide img {
  width: auto;
  height: 9.5rem;
}
@keyframes slideLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.cnt8 figure {
  padding: 0 1rem;
}

.cnt9 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 1rem;
}
.cnt9 ul li {
  width: 50%;
}

.cnt12 .lead {
  margin: 2rem auto;
  font-size: 1.1rem;
  line-height: 2;
  text-align: center;
}
.cnt12 .inner {
  padding: 2rem 1rem;
  background: url(../img/cnt12_bg.webp) no-repeat center/cover;
}
.cnt12 .inner h3 {
  font-size: 2rem;
  line-height: 1.4;
  color: #fff;
  text-align: center;
  background: #000;
}
.cnt12 .inner h3 em {
  font-size: 1.7rem;
}
.cnt12 .inner ul li {
  height: 13rem;
}
.cnt12 .inner ul li figure {
  position: relative;
  align-content: center;
  height: 100%;
}
.cnt12 .inner ul li figure figcaption {
  color: #fff;
}
.cnt12 .inner ul li figure figcaption span {
  display: block;
  font-size: 2rem;
  color: #ffeb00;
}
.cnt12 .inner ul li figure figcaption span em {
  font-size: 2.5rem;
}
.cnt12 .inner ul li figure img {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 15rem;
}
.cnt12 .inner ul li:nth-child(even) figure figcaption {
  text-align: right;
}
.cnt12 .inner ul li:nth-child(even) figure img {
  right: unset;
  left: 0;
}

.cnt13 figure {
  padding: 0 1rem;
  margin-bottom: 1rem;
}

.modal {
  position: relative;
  z-index: 100;
  display: none;
  overflow-y: auto;
}
.modal .overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  width: 100vw;
  height: 100vh;
  background: #000;
  opacity: 0.85;
}
.modal section {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 100;
  display: flex;
  flex-direction: column;
  width: 90vw;
  max-width: 730px;
  max-height: 70vh;
  background: #fff;
  transform: scale(1) translate(-50%, -50%);
}
.modal section .close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  display: block;
  width: 2rem;
  cursor: pointer;
}
.modal section .modal_inner {
  width: 100%;
  padding: 1rem;
  margin: auto;
  overflow-y: auto;
}
.modal section .modal_inner h2 {
  width: 100%;
  padding: 0.2rem 0;
  margin: 0 auto 1rem;
  font-size: 1.2rem;
  color: #f00;
  text-align: center;
}
.modal section .modal_inner p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}
.modal section .modal_inner ul li {
  font-size: 1rem;
  color: #333;
}
.modal section.inquiry .inquiry_mail a {
  text-decoration: underline;
}

footer {
  padding: 2rem 0;
  background: #d6d6d6;
}
footer .toTop {
  position: fixed;
  right: -5rem;
  bottom: 0.5rem;
  width: 3rem;
  cursor: pointer;
  transition-duration: 0.3s;
}
footer .toTop.active {
  right: 0.5rem;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  width: 18rem;
  margin: 0 auto;
}
footer nav a {
  font-size: 0.8rem;
  font-weight: 600;
}

.anime {
  opacity: 0;
}
.anime.active {
  opacity: 1;
  transition-duration: 0.3s;
  transform: translate(0, 0) scale(1);
}
.anime.zoom {
  transform: scale(0.8);
}
.anime.active.zoom {
  transform: scale(1);
}

.cnt7 ul.anime,
.cnt9 ul.anime,
.cnt12 ul.anime {
  opacity: 1;
}
.cnt7 ul.active li,
.cnt9 ul.active li,
.cnt12 ul.active li {
  opacity: 1;
  transform: scale(1);
}
.cnt7 ul li,
.cnt9 ul li,
.cnt12 ul li {
  opacity: 0;
  transition-duration: 0.5s;
  transform: scale(0.5);
}
.cnt7 ul li:nth-child(2),
.cnt9 ul li:nth-child(2),
.cnt12 ul li:nth-child(2) {
  transition-delay: 0.2s;
}
.cnt7 ul li:nth-child(3),
.cnt9 ul li:nth-child(3),
.cnt12 ul li:nth-child(3) {
  transition-delay: 0.4s;
}
.cnt7 ul li:nth-child(4),
.cnt9 ul li:nth-child(4),
.cnt12 ul li:nth-child(4) {
  transition-delay: 0.6s;
}

@media screen and (min-width: 744px) {
  html {
    font-size: 20px;
  }
  main {
    max-width: 620px;
  }
  .cnt12 .inner ul li {
    height: 15rem;
  }
  .cnt12 .inner ul li figure figcaption {
    font-size: 1.5rem;
  }
  .cnt12 .inner ul li figure figcaption span {
    font-size: 2.3rem;
  }
  .cnt12 .inner ul li figure figcaption span em {
    font-size: 2.8rem;
  }
  .cnt12 .inner ul li figure img {
    height: 17rem;
  }
}/*# sourceMappingURL=style.css.map */