*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
a,
button {
  cursor: revert;
}
ol,
ul,
menu {
  list-style: none;
}
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}
table {
  border-collapse: collapse;
}
input,
textarea {
  -webkit-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
textarea {
  white-space: revert;
}
meter {
  -webkit-appearance: revert;
  appearance: revert;
}
pre {
  all: revert;
}
::-webkit-input-placeholder {
  color: unset;
}
::-ms-input-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}
::marker {
  content: initial;
}
:where([hidden]) {
  display: none;
}
:where([contenteditable]:not([contenteditable='false'])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  line-break: after-white-space;
  -webkit-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
:where([draggable='true']) {
  -webkit-user-drag: element;
}
:where(dialog:modal) {
  all: revert;
}
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  font-weight: inherit;
}
html {
  font-size: 62.5%;
}
body {
  background-color: #fff;
  color: #2f3a49;
  font-family: 'M PLUS 1', sans-serif;
  font-size: 1.3em;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.005em;
  overflow-x: hidden;
  overflow-y: scroll;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width: 1024px) {
  body {
    line-height: 2;
  }
}
body.is_fixed {
  overflow: hidden;
}
* {
  min-height: 0vw;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
a:focus-visible,
button:focus-visible {
  outline: 0;
  outline-offset: 2px;
  box-shadow: 0 0 0 2px #3976cc;
}
a:focus,
button:focus {
  opacity: 0.8;
}
a {
  color: #2f3a49;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
button {
  display: inline-block;
  line-height: 1;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
button:focus {
  outline: 0;
}
button:not(:disabled) {
  cursor: pointer;
}
.lp_loading {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #3976cc;
  opacity: 1;
  visibility: visible;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp_loading .loading_inner {
  width: min(53.333vw, 32rem);
  text-align: center;
  -webkit-animation: loading_img 1s ease-in-out infinite;
  animation: loading_img 1s ease-in-out infinite;
}
@-webkit-keyframes loading_img {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(1rem);
    transform: translateY(1rem);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes loading_img {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(1rem);
    transform: translateY(1rem);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.lp_loading .loading_inner img {
  width: 70%;
}
body.is_loaded .lp_loading {
  -webkit-animation: loading_end 2s ease-in-out forwards;
  animation: loading_end 2s ease-in-out forwards;
}
@-webkit-keyframes loading_end {
  0%,
  80% {
    opacity: 1;
    visibility: visible;
  }
  99% {
    opacity: 0;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    z-index: -200;
  }
}
@keyframes loading_end {
  0%,
  80% {
    opacity: 1;
    visibility: visible;
  }
  99% {
    opacity: 0;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    z-index: -200;
  }
}
.visible_xxs {
  display: none;
}
@media screen and (max-width: 374px) {
  .visible_xxs {
    display: inline-block !important;
  }
}
.hidden_xxs {
  display: inline-block;
}
@media screen and (max-width: 374px) {
  .hidden_xxs {
    display: none !important;
  }
}
.visible_xs {
  display: none;
}
@media screen and (max-width: 767px) {
  .visible_xs {
    display: inline-block !important;
  }
}
.hidden_xs {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .hidden_xs {
    display: none !important;
  }
}
.visible_sm {
  display: none;
}
@media screen and (min-width: 768px) {
  .visible_sm {
    display: inline-block !important;
  }
}
.hidden_sm {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .hidden_sm {
    display: none !important;
  }
}
.visible_md {
  display: none;
}
@media screen and (min-width: 1024px) {
  .visible_md {
    display: inline-block !important;
  }
}
.hidden_md {
  display: inline-block;
}
@media screen and (min-width: 1024px) {
  .hidden_md {
    display: none !important;
  }
}
.visible_lg {
  display: none;
}
@media screen and (min-width: 1366px) {
  .visible_lg {
    display: inline-block !important;
  }
}
.hidden_lg {
  display: inline-block;
}
@media screen and (min-width: 1366px) {
  .hidden_lg {
    display: none !important;
  }
}
.visible_xl {
  display: none;
}
@media screen and (min-width: 1920px) {
  .visible_xl {
    display: inline-block !important;
  }
}
.hidden_xl {
  display: inline-block;
}
@media screen and (min-width: 1920px) {
  .hidden_xl {
    display: none !important;
  }
}
.visible_all {
  display: inline-block !important;
}
.hidden_all {
  display: none !important;
}
.lp_menu .menu {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff url(../img/bg-line.png) no-repeat center top/cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  min-height: 100vh;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: 0.2s ease-in-out;
}
@media screen and (min-width: 1024px) {
  .lp_menu .menu {
    background: #fff;
    flex-direction: row;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-height: -webkit-fit-content;
    min-height: -moz-fit-content;
    min-height: fit-content;
    opacity: 1;
    visibility: visible;
    z-index: 1000;
    border-radius: 0 50rem 50rem 0;
    margin-top: min(2.083vw, 4rem);
  }
}
.lp_menu .menu.is_active {
  opacity: 1;
  visibility: visible;
  z-index: 1000;
}
.lp_menu .menu_btn {
  position: fixed;
  top: 2%;
  left: 2%;
  z-index: 1001;
  width: min(10.667vw, 4rem);
  height: min(10.667vw, 4rem);
}
@media screen and (min-width: 1024px) {
  .lp_menu .menu_btn {
    display: none;
  }
}
.lp_menu .menu_btn span {
  display: inline-block;
  position: absolute;
  right: 0;
  background-color: #3976cc;
  width: min(10.667vw, 4rem);
  height: min(1.067vw, 0.4rem);
  border-radius: 2rem;
  transition: 0.2s ease-in-out;
}
.lp_menu .menu_btn span:nth-of-type(1) {
  top: 0;
}
.lp_menu .menu_btn span:nth-of-type(2) {
  top: min(3.2vw, 1.2rem);
}
.lp_menu .menu_btn span:nth-of-type(3) {
  top: min(6.4vw, 2.4rem);
}
.lp_menu .menu_btn.is_active span:nth-of-type(1) {
  -webkit-transform: translateY(min(3.2vw, 1.2rem)) rotate(-45deg);
  transform: translateY(min(3.2vw, 1.2rem)) rotate(-45deg);
}
.lp_menu .menu_btn.is_active span:nth-of-type(2) {
  opacity: 0;
}
.lp_menu .menu_btn.is_active span:nth-of-type(3) {
  -webkit-transform: translateY(max(-3.2vw, -1.2rem)) rotate(45deg);
  transform: translateY(max(-3.2vw, -1.2rem)) rotate(45deg);
}
.lp_menu .menu_inner {
  padding: min(37.333vw, 14rem) 1.6rem 4rem 1.6rem;
  width: 100%;
  height: 100dvh;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .lp_menu .menu_inner {
    padding: 1.4rem min(5.208vw, 10rem) 1.4rem min(2.083vw, 4rem);
    height: 100%;
    overflow-y: visible;
    overscroll-behavior-y: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: min(5.208vw, 10rem);
  }
}
@media screen and (min-width: 1024px) {
  .lp_menu .menu_nav {
    order: 2;
  }
}
.lp_menu .menu_nav_list {
  display: flex;
  flex-direction: column;
  gap: min(6.4vw, 2.4rem);
}
@media screen and (min-width: 1024px) {
  .lp_menu .menu_nav_list {
    flex-direction: row;
    gap: 4rem;
  }
}
.lp_menu .menu_nav_list li {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: min(7.467vw, 2.8rem);
  letter-spacing: 0.01rem;
  -webkit-text-stroke: 1px #3976cc;
  text-shadow: 4px 4px 0px #2cbedb;
  line-height: 1.4;
  transition: 0.2s ease-in-out;
}
@media screen and (min-width: 1024px) {
  .lp_menu .menu_nav_list li {
    font-size: min(1.25vw, 2.4rem);
    -webkit-text-stroke: 0px;
    text-shadow: none;
    line-height: 1;
  }
}
.lp_menu .menu_nav_list li a {
  color: #fff;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .lp_menu .menu_nav_list li strong {
    display: none;
  }
}
.lp_menu .menu_nav_list li span {
  display: block;
  font-family: 'M PLUS 1', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0;
  -webkit-text-stroke: 0;
  text-shadow: none;
  color: #3976cc;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .lp_menu .menu_nav_list li span {
    font-size: min(1.771vw, 3.4rem);
    font-family: 'Dela Gothic One', sans-serif;
    color: #2f3a49;
    font-weight: 200;
    transition: 0.2s ease-in-out;
  }
  .lp_menu .menu_nav_list li span::before {
    content: '';
    position: absolute;
    bottom: -16%;
    left: 0;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: center top;
    transform-origin: center top;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .lp_menu .menu_nav_list li span:hover {
    color: #3976cc;
  }
  .lp_menu .menu_nav_list li span:hover::before {
    display: block;
    width: 100%;
    height: 0.3rem;
    border-radius: 2rem;
    background-color: #3976cc;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.lp_menu .menu_link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}
@media screen and (min-width: 1024px) {
  .lp_menu .menu_link {
    margin-top: 0;
    position: relative;
    order: 1;
    width: min(8.333vw, 16rem);
    height: min(3.75vw, 7.2rem);
  }
  .lp_menu .menu_link img {
    width: 100%;
  }
}
.entry_btn {
  position: fixed;
  top: -6rem;
  right: -4rem;
  z-index: 1001;
  display: block;
  transition: all 0.2s ease;
}
@media screen and (max-width: 374px) {
  .entry_btn {
    top: 0;
    right: 0;
  }
}
@media screen and (min-width: 768px) {
  .entry_btn {
    top: min(-5.333vw, -2rem);
    right: min(-3.2vw, -1.2rem);
  }
}
@media screen and (min-width: 1024px) {
  .entry_btn {
    top: min(-4.688vw, -9rem);
    right: min(-3.333vw, -6.4rem);
  }
}
.entry_btn_bg {
  width: min(53.333vw, 20rem);
  height: min(53.333vw, 20rem);
  background-color: #3976cc;
  color: #2f3a49;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 374px) {
  .entry_btn_bg {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .entry_btn_bg {
    width: min(18.75vw, 36rem);
    height: min(18.75vw, 36rem);
  }
}
.entry_btn_bgtxt {
  -webkit-animation: rotate 40s linear infinite;
  animation: rotate 40s linear infinite;
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.entry_btn_bgtxt::before {
  content: '';
  background: url(../img/ornament-entry-btn.svg) no-repeat center/contain;
  display: block;
  width: min(66.667vw, 25rem);
  height: min(66.667vw, 25rem);
}
@media screen and (min-width: 1024px) {
  .entry_btn_bgtxt::before {
    width: min(23.438vw, 45rem);
    height: min(23.438vw, 45rem);
  }
}
.entry_btn_link {
  width: min(53.333vw, 20rem);
  height: min(53.333vw, 20rem);
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 374px) {
  .entry_btn_link {
    display: block;
    width: min(64vw, 24rem);
    height: min(17.067vw, 6.4rem);
    background-color: #3976cc;
    border-radius: 0 0 0 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .entry_btn_link {
    width: min(20.833vw, 40rem);
    height: min(20.833vw, 40rem);
  }
}
@media screen and (min-width: 1024px) {
  .entry_btn_link {
    width: min(18.75vw, 36rem);
    height: min(18.75vw, 36rem);
  }
}
.entry_btn_txt {
  position: absolute;
  top: min(21.333vw, 8rem);
  right: min(12.8vw, 4.8rem);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-family: 'Dela Gothic One', sans-serif;
  font-size: min(6.4vw, 2.4rem);
  text-align: right;
  line-height: 1.5;
}
@media screen and (max-width: 374px) {
  .entry_btn_txt {
    position: relative;
    top: 0;
    right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .entry_btn_txt {
    top: min(9.375vw, 18rem);
    right: min(6.771vw, 13rem);
    font-size: min(2.083vw, 4rem);
  }
}
@media screen and (min-width: 1366px) {
  .entry_btn_txt {
    top: min(7.292vw, 14rem);
    right: min(5.208vw, 10rem);
  }
}
.entry_btn:hover {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
.lp_main .sec {
  padding: min(16vw, 10rem) 0;
}
@media screen and (min-width: 1024px) {
  .lp_main .sec {
    padding: min(9.375vw, 18rem) 0;
    margin-top: min(-2.083vw, -4rem);
  }
}
.lp_main .sec_header {
  margin-bottom: min(6.4vw, 2.4rem);
}
@media screen and (min-width: 1024px) {
  .lp_main .sec_header {
    margin-bottom: min(2.083vw, 4rem);
  }
}
.lp_main .sec_heading {
  position: relative;
  font-family: 'Dela Gothic One', sans-serif;
  font-size: min(8vw, 3rem);
  letter-spacing: 0.01rem;
  -webkit-text-stroke: 1px #3976cc;
  text-shadow: 4px 4px 0px #2cbedb;
  line-height: 1.4;
  color: #fff;
  margin-left: 1.6rem;
  z-index: 10;
}
.lp_main .sec_heading span {
  display: block;
  font-family: 'M PLUS 1', sans-serif;
  font-size: clamp(1.6rem, 3.1vw + -0.7777rem, 2.4rem);
  letter-spacing: 0;
  -webkit-text-stroke: 0;
  text-shadow: none;
  color: #3976cc;
  font-weight: 600;
}
.lp_main .sec_heading::after {
  content: '';
  position: absolute;
  background: url(../img/ornament-kirakira-yellow.svg) no-repeat 0 0 / contain;
  width: 5rem;
  height: 5rem;
  top: -50%;
  left: -4%;
  z-index: -10;
}
@media screen and (min-width: 1024px) {
  .lp_main .sec_heading {
    max-width: 114rem;
    padding: 0 2rem;
    margin: 0 auto min(2.083vw, 4rem) auto;
    -webkit-text-stroke: 2px #3976cc;
    text-shadow: 6px 6px 0px #2cbedb;
    font-size: min(2.917vw, 5.6rem);
  }
  .lp_main .sec_heading::after {
    width: 8rem;
    height: 8rem;
    top: -20%;
  }
}
.lp_main .sec .deep {
  text-shadow: 4px 4px 0px #3976cc;
}
.lp_main .sec .deep span {
  color: #2f3a49;
}
@media screen and (min-width: 1024px) {
  .lp_main .sec .deep {
    text-shadow: 6px 6px 0px #3976cc;
  }
}
.lp_main .sec_body {
  padding: 0 4.267vw;
}
@media screen and (min-width: 1024px) {
  .lp_main .sec_body {
    padding: 0 2rem;
    max-width: 114rem;
    margin: auto;
  }
}
.lp_footer {
  position: relative;
}
.lp_footer .footer_inner {
  width: 100%;
  background-color: #3976cc;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8rem 0 1.6rem 0;
}
.lp_footer .footer_inner small {
  font-size: clamp(1.2rem, 2.3vw + -0.5641rem, 1.8rem);
  display: block;
  padding-top: 12rem;
}
@media screen and (min-width: 1024px) {
  .lp_footer .footer_inner {
    padding: 10rem 0 2rem 0;
  }
  .lp_footer .footer_inner small {
    padding-top: 8rem;
  }
}
.lp_footer .footer_hp-link {
  display: block;
  width: 50%;
}
@media screen and (min-width: 1024px) {
  .lp_footer .footer_hp-link {
    width: 20rem;
  }
}
.lp_footer .footer_list {
  margin-top: 5.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
}
.lp_footer .footer_list .btn {
  color: #fff;
  font-size: clamp(1.6rem, 0.8vw + 0.9864rem, 1.8rem);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.lp_footer .footer_list .btn::after {
  content: '';
  background: url(../img/icon-external.svg) no-repeat 0 0 / contain;
  display: block;
  width: 1.4rem;
  height: 1.4rem;
}
.lp_footer .footer_list .btn_x {
  padding: 0.8rem 2.4rem;
  background-color: #fff;
  color: #000;
  border-radius: 4rem;
  font-size: clamp(1.8rem, 0vw + 1.8rem, 1.8rem);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.lp_footer .footer_list a:hover {
  opacity: 0.8;
}
@media screen and (min-width: 1024px) {
  .lp_footer .footer_list {
    margin-top: 8rem;
    gap: 3rem;
    flex-direction: row;
  }
}
.page-top {
  position: absolute;
  top: -10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #3976cc url(../img/icon-arrow-dot.svg) center 3.2rem/20% no-repeat;
  display: block;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
}
.fv {
  position: relative;
  height: min(216.533vw, 81.2rem);
}
@media screen and (min-width: 1024px) {
  .fv {
    height: min(56.25vw, 108rem);
  }
}
.fv_bg_1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 400rem;
  height: min(216.533vw, 81.2rem);
  overflow: hidden;
  display: flex;
  background: url(../img/bg-fv-pc-animation.webp) no-repeat left top/cover;
  -webkit-animation: slide-animation1 80s ease-in-out infinite;
  animation: slide-animation1 80s ease-in-out infinite;
  opacity: 0;
  z-index: -10;
}
@media screen and (min-width: 1024px) {
  .fv_bg_1 {
    height: min(56.25vw, 108rem);
  }
}
@-webkit-keyframes slide-animation1 {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 0;
    z-index: -10;
  }
  1% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
    z-index: -20;
  }
}
@keyframes slide-animation1 {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 0;
    z-index: -10;
  }
  1% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
    z-index: -20;
  }
}
.fv_bg_2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 400rem;
  height: min(216.533vw, 81.2rem);
  overflow: hidden;
  display: flex;
  background: url(../img/bg-fv-pc-animation.webp) no-repeat left top/cover;
  -webkit-animation: slide-animation2 80s ease-in-out infinite;
  animation: slide-animation2 80s ease-in-out infinite;
  -webkit-animation-delay: 40s;
  animation-delay: 40s;
  opacity: 0;
  z-index: -10;
}
@media screen and (min-width: 1024px) {
  .fv_bg_2 {
    height: min(56.25vw, 108rem);
  }
}
@-webkit-keyframes slide-animation2 {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 0;
    z-index: -10;
  }
  25% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
    z-index: -20;
  }
}
@keyframes slide-animation2 {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 0;
    z-index: -10;
  }
  25% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
    z-index: -20;
  }
}
.fv::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/bg-fv-pc.webp) no-repeat left top/cover;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  z-index: 10;
}
.fv_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-height: 205.867vw;
  text-align: center;
  z-index: 100;
}
@media screen and (min-width: 1024px) {
  .fv_inner {
    min-height: 56.25vw;
  }
}
.fv_title {
  width: 100%;
  padding-top: min(39.467vw, 14.8rem);
  opacity: 0;
}
body.is_loaded .fv_title {
  -webkit-animation: fv_title 0.7s forwards 1.9s;
  animation: fv_title 0.7s forwards 1.9s;
}
@media screen and (min-width: 1024px) {
  .fv_title {
    padding-top: min(12.812vw, 24.6rem);
  }
}
.fv_img {
  width: min(72vw, 27rem);
  margin: auto;
}
@media screen and (min-width: 1024px) {
  .fv_img {
    width: min(76.563vw, 147rem);
  }
}
.fv_txt {
  align-items: center;
  background-color: #3976cc;
  display: flex;
  height: 54px;
  line-height: 1;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  margin-top: 9.6vw;
  z-index: 1;
  font-size: clamp(2rem, 7.8vw + -3.9826rem, 4rem);
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .fv_txt {
    margin-top: 5.729vw;
    height: 100px;
  }
}
.fv_txt ul {
  -webkit-animation: flowing1 80s linear infinite;
  animation: flowing1 80s linear infinite;
  margin: 0;
  padding: 0;
}
.fv_txt ul li {
  display: inline-block;
  padding-right: 8px;
}
.fv_txt ul .planes {
  color: #fff;
}
.fv_txt ul .lines {
  text-shadow: 0px 1px 0px #fff, 1px 0px 0px #fff, -1px 0px 0px #fff, 0px -1px 0px #fff;
  color: #3976cc;
}
@-webkit-keyframes flowing1 {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes flowing1 {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes fv_title {
  0% {
    opacity: 0;
    -webkit-filter: blur(1rem) brightness(150%);
    filter: blur(1rem) brightness(150%);
    -webkit-transform: translateY(-3rem);
    transform: translateY(-3rem);
  }
  20% {
    opacity: 0.2;
    -webkit-filter: blur(0) brightness(100%);
    filter: blur(0) brightness(100%);
    -webkit-transform: translateY(-3rem);
    transform: translateY(-3rem);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0) brightness(100%);
    filter: blur(0) brightness(100%);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fv_title {
  0% {
    opacity: 0;
    -webkit-filter: blur(1rem) brightness(150%);
    filter: blur(1rem) brightness(150%);
    -webkit-transform: translateY(-3rem);
    transform: translateY(-3rem);
  }
  20% {
    opacity: 0.2;
    -webkit-filter: blur(0) brightness(100%);
    filter: blur(0) brightness(100%);
    -webkit-transform: translateY(-3rem);
    transform: translateY(-3rem);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0) brightness(100%);
    filter: blur(0) brightness(100%);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.close {
  width: 90%;
  max-width: 90rem;
  padding: 2.4rem;
  margin: 0 auto 6rem;
  text-align: center;
  background: #fff;
  border-radius: 1.6rem;
  border: solid 0.2rem #2cbedb;
  box-shadow: 0.6rem 0.6rem 0px 0px #2cbedb;
}
.close img {
  display: block;
  margin: 0 auto 2rem;
  max-width: 4.8rem;
  aspect-ratio: 1/1;
}
.close a {
  color: #3976cc;
  text-decoration: underline;
}
@media screen and (min-width: 1024px) {
  .close {
    width: 100%;
    padding: 3.2rem;
    box-shadow: 1.2rem 1.2rem 0px 0px #2cbedb;
  }
}
.about {
  background: url(../img/bg-line.png) left 80px / cover no-repeat;
  font-size: clamp(1.6rem, 0.8vw + 0.9864rem, 1.8rem);
  position: relative;
}
@media screen and (min-width: 1024px) {
  .about {
    padding: min(6.25vw, 12rem) 0;
  }
}
@media screen and (min-width: 1024px) {
  .about .sec_inner {
    max-width: 114rem;
    padding: min(2.083vw, 4rem) 2rem;
    margin: 0 auto 6rem auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .about .sec_header {
    padding: 0;
    margin: 0;
  }
}
.about .sec_heading::after {
  left: -14%;
}
@media screen and (min-width: 1024px) {
  .about .sec_body {
    padding: 0;
    max-width: 62rem;
  }
}
.about .sec_bgtxt {
  display: none;
}
@media screen and (min-width: 1024px) {
  .about .sec_bgtxt {
    display: block;
    position: absolute;
    bottom: 5%;
    left: 0;
    align-items: center;
    font-size: 13rem;
    display: flex;
    height: 9.792vw;
    line-height: 1;
    width: 100%;
    white-space: nowrap;
    z-index: 1;
    font-family: 'M PLUS 1p', sans-serif;
    font-weight: 700;
    color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 1px #3976cc;
    opacity: 0.4;
    -webkit-animation: aboutflowing 40s linear infinite;
    animation: aboutflowing 40s linear infinite;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  .about .sec_bgtxt li {
    display: inline-block;
    padding-right: 8px;
  }
}
.about .sub_heading {
  font-size: clamp(1.8rem, 2.3vw + 0.0359rem, 2.4rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1.6rem;
}
@-webkit-keyframes aboutflowing {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes aboutflowing {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.support {
  background-color: #2cbedb;
  position: relative;
  z-index: 100;
}
.support::after {
  content: '';
  background: url(../img/bg-wave.svg) repeat 0 0 / contain;
  display: block;
  width: 100%;
  height: 1.4rem;
  position: absolute;
  left: 0;
  bottom: -1.4rem;
}
@media screen and (min-width: 1024px) {
  .support::after {
    height: 2.4rem;
    bottom: -2.4rem;
  }
}
.support .sec_body {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .support .sec_body {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.support .sec_body ul {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  align-items: center;
  text-align: center;
  z-index: 10;
}
@media screen and (min-width: 1024px) {
  .support .sec_body ul {
    width: 100%;
    gap: 5.4rem;
  }
}
.support .sec_body ul li {
  background-color: #fff;
  position: relative;
  width: min(91.467vw, 34.3rem);
}
.support .sec_body ul li::after {
  display: none;
}
@media screen and (min-width: 1024px) {
  .support .sec_body ul li::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    right: -1.6rem;
    bottom: -1.6rem;
    border: solid 0.2rem #fff;
    z-index: -10;
  }
}
.support .sec_body ul li img {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .support .sec_body ul li img {
    width: 60%;
  }
}
@media screen and (min-width: 1024px) {
  .support .sec_body ul li {
    display: flex;
    width: 100%;
  }
}
.support .sec_body ul li .text {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding: 2.4rem;
}
@media screen and (min-width: 1024px) {
  .support .sec_body ul li .text {
    width: 100%;
    justify-content: center;
  }
}
.support .sec_body ul li .text h3 {
  font-size: clamp(2.4rem, 3.1vw + 0.0223rem, 3.2rem);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}
.support .sec_body ul li .text p {
  font-size: clamp(1.4rem, 1.6vw + 0.1728rem, 1.8rem);
}
.support .sec_body ul li .text .youtube-logo::before {
  content: '';
  background: url(../img/logo-youtube.svg) no-repeat 0 0 / contain;
  display: block;
  width: 3.8rem;
  height: 2.6rem;
}
.support .sec_body ul li .text .dlsite-logo::before {
  content: '';
  background: url(../img/logo-dlsite.svg) no-repeat 0 0 / contain;
  display: block;
  width: 2.6rem;
  height: 2.6rem;
}
.support .sec_body .ornament_figure-1::before {
  content: '';
  background: url(../img/ornament-kirakria-white.svg) no-repeat 0 0 / contain;
  display: block;
  width: 6.4rem;
  height: 8rem;
  position: absolute;
  top: 4%;
  right: -18%;
  -webkit-animation: rotate1 3s linear infinite;
  animation: rotate1 3s linear infinite;
}
.support .sec_body .ornament_figure-1::after {
  content: '';
  background: url(../img/ornament-kirakria-white.svg) no-repeat 0 0 / contain;
  display: block;
  width: 3.8rem;
  height: 4.8rem;
  position: absolute;
  top: -6%;
  right: -10%;
  -webkit-animation: rotate2 3.5s linear infinite;
  animation: rotate2 3.5s linear infinite;
}
.support .sec_body .ornament_figure-2::before {
  content: '';
  background: url(../img/ornament-kirakria-white.svg) no-repeat 0 0 / contain;
  display: block;
  width: 6.4rem;
  height: 8rem;
  position: absolute;
  top: 14%;
  left: -20%;
  -webkit-animation: rotate3 4s linear infinite;
  animation: rotate3 4s linear infinite;
}
.support .sec_body .ornament_figure-2::after {
  content: '';
  background: url(../img/ornament-kirakria-white.svg) no-repeat 0 0 / contain;
  display: block;
  width: 3.8rem;
  height: 4.8rem;
  position: absolute;
  top: 28%;
  left: -12%;
  -webkit-animation: rotate4 2s linear infinite;
  animation: rotate4 2s linear infinite;
}
.support .sec_body .ornament_figure-3::before {
  content: '';
  background: url(../img/ornament-kirakria-white.svg) no-repeat 0 0 / contain;
  display: block;
  width: 6.4rem;
  height: 8rem;
  position: absolute;
  bottom: 10%;
  right: -18%;
  -webkit-animation: rotate5 4s linear infinite;
  animation: rotate5 4s linear infinite;
}
.support .sec_body .ornament_figure-3::after {
  content: '';
  background: url(../img/ornament-kirakria-white.svg) no-repeat 0 0 / contain;
  display: block;
  width: 3.8rem;
  height: 4.8rem;
  position: absolute;
  bottom: -4%;
  left: -16%;
  -webkit-animation: rotate6 2s linear infinite;
  animation: rotate6 2s linear infinite;
}
@-webkit-keyframes rotate1 {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  80% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}
@keyframes rotate1 {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  80% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}
@-webkit-keyframes rotate2 {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  90% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}
@keyframes rotate2 {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  90% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}
@-webkit-keyframes rotate3 {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  80% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}
@keyframes rotate3 {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  80% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}
@-webkit-keyframes rotate4 {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  80% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}
@keyframes rotate4 {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  80% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}
@-webkit-keyframes rotate5 {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  70% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}
@keyframes rotate5 {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  70% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}
@-webkit-keyframes rotate6 {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  50% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}
@keyframes rotate6 {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  50% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}
.flow {
  position: relative;
  z-index: 10;
}
.flow::before {
  content: '';
  background: url(../img/bg-dot-circle.png) 0 0 / contain no-repeat;
  display: block;
  width: 80vw;
  height: 146.667vw;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
  position: absolute;
  top: -10%;
  left: 0;
  z-index: -10;
}
@media screen and (min-width: 1024px) {
  .flow::before {
    width: 66.667vw;
    height: 67.708vw;
    top: -60%;
    left: -30%;
  }
}
.flow::after {
  content: '';
  background: url(../img/bg-dot-circle.png) 0 0 / contain no-repeat;
  display: block;
  width: 93.333vw;
  height: 160vw;
  position: absolute;
  bottom: -10%;
  right: -10%;
  z-index: -10;
}
@media screen and (min-width: 1024px) {
  .flow::after {
    width: 66.667vw;
    height: 67.708vw;
    bottom: -60%;
    right: -30%;
  }
}
.flow .sec_lead {
  text-align: center;
  font-size: 1.6rem;
  margin: 4rem 0;
}
@media screen and (min-width: 1024px) {
  .flow .sec_lead {
    display: none;
  }
}
.flow .sec_tabs {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  justify-content: space-between;
}
.flow .sec_tabs .tab_item {
  position: relative;
  z-index: 0;
  width: 48%;
  background-color: #d9d9d9;
  padding: 2.133vw 5.867vw;
  border-radius: 1.8rem 1.8rem 0 0;
  font-size: clamp(1.6rem, 5.4vw + -2.5418rem, 3rem);
  text-align: center;
  line-height: 1.5;
  transition: all 0.2s ease;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .flow .sec_tabs .tab_item {
    padding: 0.625vw 2.083vw;
    border-radius: 4.8rem 4.8rem 0 0;
  }
}
.flow .sec_tabs .tab_item span {
  font-size: clamp(1.6rem, 7vw + -3.769rem, 3.4rem);
  font-weight: 700;
  color: #2f3a49;
}
.flow .sec_tabs .tab_item:hover {
  opacity: 0.75;
}
.flow .sec_tabs .tab_content {
  display: none;
  clear: both;
  overflow: hidden;
  position: relative;
  background-color: #3976cc;
  width: 100%;
}
.flow .sec_tabs .tab_content_description {
  margin: auto;
  padding: 5.4rem min(3.2vw, 1.2rem) 1.6rem min(3.2vw, 1.2rem);
}
@media screen and (min-width: 1024px) {
  .flow .sec_tabs .tab_content_description {
    padding: 14.4rem min(2.5vw, 4.8rem) 3.2rem min(2.5vw, 4.8rem);
  }
}
.flow .sec_tabs .tab_content_description ul {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  align-items: center;
  margin: auto;
  width: min(64vw, 24rem);
}
@media screen and (min-width: 1024px) {
  .flow .sec_tabs .tab_content_description ul {
    flex-direction: row;
    justify-content: center;
    gap: 5.2rem;
    margin: auto;
    width: auto;
  }
}
.flow .sec_tabs .tab_content_description ul li {
  position: relative;
  width: min(64vw, 24rem);
  height: min(64vw, 24rem);
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .flow .sec_tabs .tab_content_description ul li {
    width: 28%;
    height: auto;
    aspect-ratio: 1/1;
  }
}
.flow .sec_tabs .tab_content_description ul li::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -18%;
  left: calc(50% - min(4.267vw, 1.6rem));
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  background: url(../img/icon-arrow-blue.svg) 0 0 / contain no-repeat;
  width: min(8.533vw, 3.2rem);
  height: min(8.533vw, 3.2rem);
}
@media screen and (min-width: 1024px) {
  .flow .sec_tabs .tab_content_description ul li::after {
    bottom: calc(50% - min(1.042vw, 2rem));
    left: auto;
    right: -16%;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    width: 3.2rem;
    height: 3.2rem;
  }
}
.flow .sec_tabs .tab_content_description ul li:last-child::after {
  display: none;
}
.flow .sec_tabs .tab_content_description ul li .flag {
  width: min(11.733vw, 4.4rem);
  height: auto;
  position: absolute;
  top: -6%;
  left: 0;
}
@media screen and (min-width: 1024px) {
  .flow .sec_tabs .tab_content_description ul li .flag {
    top: -7.2rem;
    left: 45%;
    width: 5.4rem;
  }
}
.flow .sec_tabs .tab_content_description ul li .li-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .flow .sec_tabs .tab_content_description ul li .li-content {
    gap: 2.4rem;
  }
}
.flow .sec_tabs .tab_content_description ul li .li-content p {
  font-size: min(5.333vw, 2rem);
  color: #2f3a49;
  text-align: center;
  line-height: 1.5;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .flow .sec_tabs .tab_content_description ul li .li-content p {
    font-size: 2.4rem;
  }
}
.flow .sec_tabs .tab_content_description ul li .li-content img {
  width: min(32vw, 12rem);
}
@media screen and (min-width: 1024px) {
  .flow .sec_tabs .tab_content_description ul li .li-content img {
    width: 90%;
  }
}
.flow .sec_tabs .tab_content_description p {
  margin-top: 4rem;
  color: #fff;
}
.flow .sec_tabs #have-not:checked ~ #have-not_content,
.flow .sec_tabs #have:checked ~ #have_content {
  display: block;
}
.flow .sec_tabs input:checked + .tab_item {
  color: #fff;
  background-color: #3976cc;
}
.flow .sec_tabs input:checked + .tab_item span {
  font-size: clamp(1.6rem, 7vw + -3.769rem, 3.4rem);
  font-weight: 700;
  color: #fd0;
}
.flow .sec_tabs input:checked + .tab_item::before {
  content: '';
  position: absolute;
  top: -2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
  background: url(../img/ornament-accent.svg) 0 0 / contain no-repeat;
  width: min(9.6vw, 3.6rem);
  height: min(3.2vw, 1.2rem);
}
@media screen and (min-width: 1024px) {
  .flow .sec_tabs input:checked + .tab_item::before {
    width: min(2.917vw, 5.6rem);
    height: min(1.042vw, 2rem);
    top: min(-1.563vw, -3rem);
  }
}
.flow .sec_tabs input[name='tab_item'] {
  display: none;
}
.requirements {
  background-color: rgba(44, 190, 219, 0.4);
  z-index: 100;
  position: relative;
}
.requirements::after {
  content: '';
  background: url(../img/bg-wave.svg) repeat 0 0 / contain;
  opacity: 0.4;
  display: block;
  width: 100%;
  height: 2.4rem;
  position: absolute;
  left: 0;
  bottom: -2.4rem;
}
.requirements .sec_body {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (min-width: 1024px) {
  .requirements .sec_body {
    gap: 5.6rem;
  }
}
.requirements .sec_content h3 {
  font-size: clamp(2.4rem, 1.6vw + 1.1728rem, 2.8rem);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
}
.requirements .sec_content h3::before {
  content: '';
  display: block;
  width: 1rem;
  height: 2.4rem;
  background-color: #2f3a49;
}
@media screen and (min-width: 1024px) {
  .requirements .sec_content h3 {
    gap: 1.2rem;
  }
  .requirements .sec_content h3::before {
    width: 1.4rem;
    height: 2.8rem;
  }
}
.requirements .sec_content .light {
  gap: 0;
}
.requirements .sec_content .light::before {
  content: '';
  display: block;
  width: 1.4em;
  height: 1.4em;
  background: url(../img/ornament-light-bulb.svg) no-repeat 0 0 / contain;
}
.requirements .sec_content .qualifications {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media screen and (min-width: 1024px) {
  .requirements .sec_content .qualifications {
    gap: 1.6rem;
  }
}
.requirements .sec_content .qualifications_li {
  background-color: #fff;
  padding: 1rem;
  font-size: clamp(1.8rem, 2.3vw + 0.0359rem, 2.4rem);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 1rem;
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .requirements .sec_content .qualifications_li {
    padding: 1.6rem 3.2rem;
    gap: 2.4rem;
  }
}
.requirements .sec_content .qualifications_li strong {
  font-size: clamp(2.4rem, 6.2vw + -2.3554rem, 4rem);
  font-weight: 900;
  color: #3976cc;
}
.requirements .sec_content .qualifications_li::before {
  display: none;
}
.requirements .sec_content li {
  display: flex;
  font-size: clamp(1.8rem, -1.6vw + 3.0272rem, 1.4rem);
}
.requirements .sec_content li::before {
  display: block;
  content: '・';
}
.precautions {
  position: relative;
}
.precautions::before {
  display: none;
}
@media screen and (min-width: 1024px) {
  .precautions::before {
    content: '';
    background: url(../img/bg-dot-circle.png) 0 0 / contain no-repeat;
    display: block;
    width: 57.292vw;
    height: 62.5vw;
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
    position: absolute;
    top: -110%;
    left: -30%;
    z-index: -10;
  }
}
.precautions .sec_body {
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
}
.precautions .sec_body li {
  display: flex;
  font-size: clamp(1.8rem, -1.6vw + 3.0272rem, 1.4rem);
}
.precautions .sec_body li::before {
  display: block;
  content: '・';
}
.entry {
  background-color: #fd0;
  background: linear-gradient(
    -45deg,
    #ffdd00 25%,
    #ffe800 25%,
    #ffe800 50%,
    #ffdd00 50%,
    #ffdd00 75%,
    #ffe800 75%,
    #ffe800
  );
  background-size: 12rem 12rem;
  -webkit-animation: anime_stripe_1 2s infinite linear;
  animation: anime_stripe_1 2s infinite linear;
}
@-webkit-keyframes anime_stripe_1 {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -12rem;
  }
}
@keyframes anime_stripe_1 {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -12rem;
  }
}
.entry .sec_body {
  text-align: center;
  padding-bottom: 4rem;
}
.entry .sec_txt {
  position: relative;
  background: url(../img/ornament-speech-bubble.svg) center/contain no-repeat;
  padding: min(3.2vw, 1.2rem) min(9.6vw, 3.6rem) min(8.533vw, 3.2rem) min(9.6vw, 3.6rem);
  margin-bottom: -2rem;
  color: #fff;
  font-size: clamp(2.4rem, 6.2vw + -2.3554rem, 4rem);
  font-weight: 700;
  z-index: 100;
  -webkit-animation: updown1 3s ease-in-out 0s infinite;
  animation: updown1 3s ease-in-out 0s infinite;
}
@media screen and (min-width: 1024px) {
  .entry .sec_txt {
    padding: min(1.042vw, 2rem) min(2.917vw, 5.6rem) min(3.333vw, 6.4rem) min(2.917vw, 5.6rem);
  }
}
@-webkit-keyframes updown1 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(1rem);
    transform: translateY(1rem);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes updown1 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(1rem);
    transform: translateY(1rem);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.entry .sec_link {
  position: relative;
  display: block;
  background-color: #3976cc;
  color: #fff;
  font-family: 'Dela Gothic One', sans-serif;
  font-size: clamp(3.2rem, 10.9vw + -5.1603rem, 6rem);
  padding: min(9.067vw, 3.4rem) 0;
  border-radius: 1.6rem;
  z-index: 10;
}
.entry .sec_link:hover {
  scale: 1.1 1.1;
}
@media screen and (min-width: 1024px) {
  .entry .sec_link {
    padding: min(2.5vw, 4.8rem) 0;
  }
} /*# sourceMappingURL=lp.min.css.map */
