@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  overflow-x: hidden;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

img {
  width: 100%;
  height: auto;
  pointer-events: none;
}

* {
  box-sizing: border-box;
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
}

.mask__bar {
  width: fit-content;
  overflow: hidden;
  position: relative;
}
.mask__bar.start-animation::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: black;
  animation: secondaryImageOverlayIn 0.6s 0s cubic-bezier(0.77, 0, 0.175, 1), secondaryImageOverlayOut 0.6s 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  animation-fill-mode: both;
}
.mask__content.start-animation {
  animation: fadeIn 0.1s 0.5s;
  animation-fill-mode: both;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes secondaryImageOverlayIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes secondaryImageOverlayOut {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(102%);
  }
}

.content {
  color: #1f1f1f;
  font-weight: 700;
  font-size: 14px;
  line-height: 175%;
  padding: 0px 4vw;
  background-color: transparent;
}
.content__inner {
  padding-bottom: 80px;
  max-width: 400px;
  margin-inline: auto;
  background-color: white;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.content__wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.content__ttl {
  color: #1f1f1f;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.content__ttl span {
  font-size: 22px;
  background-color: #f6e720;
  display: inline-block;
  width: fit-content;
  border: 1px solid #1f1f1f;
  padding: 8px 12px;
}
.content__sub {
  color: #1f1f1f;
  font-weight: 700;
  font-size: 12px;
  line-height: 200%;
  height: 28px;
  background-color: white;
  border: 1px solid #1f1f1f;
  padding: 2px 8px;
  width: fit-content;
  display: flex;
  align-items: center;
}
.content__txt {
  color: #1f1f1f;
  font-weight: 700;
  font-size: 14px;
  line-height: 175%;
  padding: 0 2%;
}
.content__txt._top, .content__txt._story {
  text-align: center;
}

.main-visual .content__inner {
  padding-top: 80px;
}
.main-visual__ttl {
  width: 95%;
  margin-inline: auto;
  scale: 0.01;
  transition: 0.3s ease-in-out;
}
.main-visual__button {
  text-decoration: none;
}
.main-visual .coming-soon {
  margin-left: 4%;
}

.challengers__list {
  padding: 0 2%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.challengers__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.challengers__icon {
  width: 120px;
  height: 120px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  border-radius: 15px;
}
.challengers__icon img {
  height: 100%;
  width: auto;
}
.challengers__ttl {
  font-size: 16px;
}
.challengers__txt {
  font-size: 12px;
}
.challengers .dialog {
  width: 90%;
  max-width: 400px;
}
.challengers .dialog__img {
  width: 250px;
  border-radius: 15px;
  margin-inline: auto;
  display: block;
  margin-bottom: 20px;
}
.challengers .dialog__flex {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.challengers .dialog__wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
.challengers .dialog__name {
  font-size: 24px;
}
.challengers .dialog__ttl {
  font-size: 16px;
  background-color: #f6e720;
  display: inline-block;
  width: fit-content;
  border: 1px solid #1f1f1f;
  padding: 0px 12px;
}
.challengers .dialog__close {
  width: 50px;
  height: auto;
  margin-inline: auto;
  display: block;
}

.story__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.story__img {
  max-width: 300px;
  height: auto;
  margin: 0 auto;
  border-radius: 15px;
}
.story__sub {
  line-height: 1;
}
.story__ttl {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 0;
}
.story__ttl span {
  font-size: 1rem;
  color: rgb(5, 106, 56);
}
.story__txt {
  background-color: rgb(237, 241, 245);
  padding: 20px;
  border-radius: 14px;
  margin: 12px;
}
.story__txt span {
  font-size: 1.2rem;
  font-weight: bold;
  display: block;
  position: relative;
}
.story__txt span::before {
  content: "";
  background: rgb(5, 106, 56);
  border-radius: 12px;
  flex: none;
  height: 3px;
  width: 15px;
  display: block;
  position: absolute;
  left: -20px;
  top: 50%;
}
.story-btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: 700;
  line-height: 54px;
  width: 204px;
  height: 54px;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  background-color: white;
}
.story-btn:hover {
  background-color: #d9ebd2;
}
.story-btn:hover .story-btn__wrap rect {
  stroke-dashoffset: 284px;
}
.story-btn:hover .story-btn__arrow {
  transform: translateX(5px);
}
.story-btn:hover .story-btn__ttl {
  color: #056a38;
}
.story-btn rect {
  stroke: rgb(5, 106, 56);
  stroke-width: 2;
  stroke-dasharray: 200px, 16px;
  stroke-dashoffset: 70px;
  transition: 400ms;
}
.story-btn__wrap {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.story-btn__ttl {
  color: rgb(0, 0, 0);
  font-weight: normal;
  font-size: 1rem;
}
.story-btn__arrow {
  position: absolute;
  right: 18px;
  transition: transform 0.3s;
}

.news__button {
  width: fit-content;
  margin-inline: auto;
  background-color: #101010;
  color: white;
  padding: 8px 24px;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto;
  display: block;
}

.menu__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.menu__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.menu__wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.menu__ttl {
  color: #1f1f1f;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  padding: 8px 12px;
  text-align: center;
  background-color: #eb195a;
  color: white;
  width: fit-content;
}
.menu__sub {
  color: #1f1f1f;
  font-weight: 700;
  font-size: 12px;
  line-height: 200%;
  height: 28px;
  background-color: #eb195a;
  color: white;
  padding: 2px 8px;
  width: fit-content;
  display: flex;
  align-items: center;
}
.menu__txt {
  color: #1f1f1f;
  font-weight: 700;
  font-size: 14px;
  line-height: 175%;
  padding: 0 2%;
}

.support__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.support__item {
  border: 1px solid #1f1f1f;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.support__wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.support__ttl {
  color: #1f1f1f;
  font-weight: 700;
  font-size: 12px;
  line-height: 200%;
  line-height: 100%;
}
.support__price {
  font-size: 30px;
  border: 1px solid #1f1f1f;
  border-left: 8px solid #1f1f1f;
  position: relative;
  padding: 20px 8px;
  width: fit-content;
}
.support__price span {
  display: block;
  font-size: 12px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.support__txt {
  color: #1f1f1f;
  font-weight: 700;
  font-size: 14px;
  line-height: 175%;
  font-size: 13px;
  display: flex;
  gap: 2px;
  letter-spacing: -0.5px;
}
.support__txt img {
  width: 14px;
}
.support .link-button {
  margin-left: 0;
}

summary {
  width: fit-content;
  margin-inline: auto;
  background-color: #101010;
  color: white;
  padding: 8px 24px;
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 700;
}

.link-button {
  background-color: #f6e720;
  border: 1px solid #1f1f1f;
  position: relative;
  padding: 24px;
  margin-left: 4%;
  width: max(320px, 100%);
}
.link-button__inner {
  display: grid;
  grid-template-columns: 1fr 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.link-button__ttl {
  height: 36px;
  font-size: 20px;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
}
.link-button__icon {
  height: 18px;
  width: auto;
}
.link-button__txt {
  color: #1f1f1f;
  font-weight: 700;
  font-size: 12px;
  line-height: 200%;
  height: 28px;
  position: absolute;
  bottom: -14px;
  right: 14px;
  background-color: white;
  border: 1px solid #1f1f1f;
  padding: 2px 8px;
}
.link-button:hover {
  background-color: #e82189;
}
.link-button__link {
  pointer-events: none;
  position: relative;
}

footer .content__inner {
  color: #1f1f1f;
  font-weight: 700;
  font-size: 14px;
  line-height: 175%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
}
footer .content__inner a {
  text-decoration: none;
  color: #1f1f1f;
}

.coming-soon {
  position: absolute;
  background-color: black;
  opacity: 0.8;
  color: white;
  width: max(320px, 100%);
  text-align: center;
  padding: 30px 0;
  font-size: 24px;
  z-index: 10;
  line-height: 100%;
}

/* pc-背景 */
.pc-bg {
  background-color: #eb195a;
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.pc-bg::before {
  opacity: 0.7;
  content: "";
  background: url(../images/pc_bg.svg) no-repeat;
  position: fixed;
  left: 0;
  width: 100%;
  height: 100vh;
  background-position: center center;
  background-size: cover;
  z-index: -1;
}

.pc-bg__svg {
  position: absolute;
  opacity: 0.7;
}
.pc-bg__svg._circle1, .pc-bg__svg._circle2 {
  display: block;
  width: 220px;
  height: auto;
}
.pc-bg__svg._circle1 {
  top: 40%;
  left: -1%;
}
.pc-bg__svg._circle2 {
  top: 10%;
  right: 5%;
}
.pc-bg__svg._cross1, .pc-bg__svg._cross2, .pc-bg__svg._cross3, .pc-bg__svg._cross4 {
  width: 20px;
}
.pc-bg__svg._cross1 {
  top: 20%;
  left: 15%;
}
.pc-bg__svg._cross2 {
  top: 70%;
  left: 26%;
}
.pc-bg__svg._cross3 {
  top: 40%;
  right: 15%;
}
.pc-bg__svg._cross4 {
  top: 70%;
  right: 10%;
}
.pc-bg__svg._cross5, .pc-bg__svg._cross6, .pc-bg__svg._cross7, .pc-bg__svg._cross8, .pc-bg__svg._cross9, .pc-bg__svg._cross10 {
  width: 15px;
  transform: rotate(45deg);
}
.pc-bg__svg._cross5 {
  top: 10%;
  left: 17%;
}
.pc-bg__svg._cross6 {
  top: 80%;
  left: 10%;
}
.pc-bg__svg._cross7 {
  top: 10%;
  right: 20%;
}
.pc-bg__svg._cross8 {
  top: 60%;
  right: 13%;
}
.pc-bg__svg._cross9 {
  top: 83%;
  right: 5%;
}
.pc-bg__svg._cross10 {
  top: 40%;
  left: 6%;
}
.pc-bg__svg._dot1 {
  width: 300px;
  top: 22%;
  right: 14%;
}
.pc-bg__svg._dot2 {
  width: 180px;
  top: 75%;
  left: 20%;
}
.pc-bg__svg._dot3 {
  width: 180px;
  top: 50%;
  left: 7%;
}
.pc-bg__svg._shape1 {
  width: 300px;
  top: 70%;
  left: -5%;
}
.pc-bg__svg._shape2 {
  width: 300px;
  top: 80%;
  right: 20%;
}
.pc-bg__svg._shape3 {
  width: 300px;
  top: 10%;
  left: 20%;
}
.pc-bg__svg._wave1, .pc-bg__svg._wave2, .pc-bg__svg._wave3, .pc-bg__svg._wave4 {
  width: 170px;
  animation: slide 7s infinite ease-in-out;
}
.pc-bg__svg._wave1 {
  top: 30%;
  left: 6%;
}
.pc-bg__svg._wave2 {
  top: 63%;
  left: 20%;
}
.pc-bg__svg._wave3 {
  top: 40%;
  right: 18%;
}
.pc-bg__svg._wave4 {
  top: 70%;
  right: 20%;
}
.pc-bg__svg._tri1 {
  width: 60px;
  top: 55%;
  left: 19%;
}
.pc-bg__svg._tri2 {
  width: 120px;
  top: 55%;
  right: 19%;
}
.pc-bg__svg._tri3 {
  width: 120px;
  top: 5%;
  left: 5%;
  transform: rotate(-90deg);
}
.pc-bg__svg._tri4 {
  width: 150px;
  top: 70%;
  right: 5%;
  transform: rotate(90deg);
}
.pc-bg__svg._sp1 {
  width: 120px;
  top: 20%;
  left: 25%;
}
.pc-bg__svg._twinkle {
  animation: twinkle 2s infinite ease-in-out;
}
.pc-bg__svg._twinkle_rotate {
  animation: twinkle_rotate 2s infinite ease-in-out;
}
.pc-bg__svg._up_down_slide {
  animation: up_down_slide 10s infinite ease;
}
.pc-bg__svg._up_down_slide_reverse {
  animation: up_down_slide_reverse 10s infinite ease;
}
.pc-bg__svg._up_down {
  animation: up_down 10s infinite ease;
}
.pc-bg__svg._spin {
  transform-origin: center;
  animation: spin 10s linear infinite;
}
.pc-bg__svg._spin_reverse {
  transform-origin: center;
  animation: spin_reverse 10s linear infinite;
}
.pc-bg__svg._scale {
  animation: scale 5s linear infinite;
}

@keyframes twinkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  50% {
    opacity: 0.2;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
  }
}
@keyframes twinkle_rotate {
  0%, 100% {
    opacity: 1;
    transform: rotate(45deg) scale(1);
    -webkit-transform: rotate(45deg) scale(1);
  }
  50% {
    opacity: 0.2;
    transform: rotate(45deg) scale(1.1);
    -webkit-transform: rotate(45deg) scale(1.1);
  }
}
@keyframes slide {
  0%, 100% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }
  50% {
    transform: translateX(10%);
    -webkit-transform: translateX(10%);
  }
}
@keyframes up_down {
  0%, 100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
  }
  50% {
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
  }
}
@keyframes up_down_slide {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  25% {
    -webkit-transform: translateX(-15%);
    transform: translateX(-15%);
  }
  50% {
    -webkit-transform: translate(-15%, -20%);
    transform: translate(-15%, -20%);
  }
  75% {
    -webkit-transform: translate(0px, -20%);
    transform: translate(0px, -20%);
  }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes up_down_slide_reverse {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  25% {
    -webkit-transform: translateX(15%);
    transform: translateX(15%);
  }
  50% {
    -webkit-transform: translate(15%, 20%);
    transform: translate(15%, 20%);
  }
  75% {
    -webkit-transform: translate(0px, 20%);
    transform: translate(0px, 20%);
  }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin_reverse {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes scale {
  0%, 100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  50% {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
  }
}
