@charset "UTF-8";
/*reset css*/
body, h1, h2, h3, h4, p, ul, li, a, dl, dt, dd, table, tr, th, td, span {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  line-height: 1;
  outline: none;
  box-sizing: border-box;
  font-size: 1.5rem;
}

button, input, select, textarea {
  background-color: unset;
  border: none;
  outline: none;
  -webkit-appearance: none;
}

div, section, article, figure, picture {
  box-sizing: border-box;
  margin: 0;
  display: block;
  padding: 0;
}

@font-face {
  font-family: "noto-sans-jp";
  src: url("../fonts/NotoSans-Regular.ttf") format("truetype");
  font-weight: normal;
}
/* Noto Sans Medium */
@font-face {
  font-family: "noto-sans-jp";
  src: url("../fonts/NotoSans-Medium.ttf") format("truetype");
  font-weight: 500;
}
/* Noto Sans SemiBold */
@font-face {
  font-family: "noto-sans-jp";
  src: url("../fonts/NotoSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
}
/* Noto Sans Bold */
@font-face {
  font-family: "noto-sans-jp";
  src: url("../fonts/NotoSans-Bold.ttf") format("truetype");
  font-weight: bold;
}
/* Noto Sans ExtraBold */
@font-face {
  font-family: "noto-sans-jp";
  src: url("../fonts/NotoSans-ExtraBold.ttf") format("truetype");
  font-weight: 800;
}
/* Noto Sans Black (already provided) */
@font-face {
  font-family: "noto-sans-jp";
  src: url("../fonts/NotoSans-Black.ttf") format("truetype");
  font-weight: 900;
}
html, body {
  font-size: 62.5%;
  letter-spacing: 0;
  color: #fff;
  font-family: "noto-sans-jp", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

a {
  transition: all 0.2s;
}

img,
svg,
iframe {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

a:hover {
  opacity: 0.7;
}

main {
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .is_sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  html, body {
    font-size: 2.5641025641vw;
  }
  .is_pc {
    display: none;
  }
  .is_sp {
    display: block;
  }
}
/* common text size */
/* p{
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.02em;
}
span{
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.02em;
}
h2{
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}
.lead{
  font-size: 2.4rem;
  letter-spacing: 0.02em;
}
.txt{
  font-size: 1.8rem;
  letter-spacing: 0.02em;
} */
/* common animation ///////////////////////////////////////////////*/
.js-focus {
  opacity: 0;
}

.focus-in {
  animation: focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

@keyframes focus-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
.js-n-fade {
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.5, 1, 0.89, 1), transform 0.7s cubic-bezier(0.5, 1, 0.89, 1);
}

.js-u-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.5, 1, 0.89, 1), transform 0.7s cubic-bezier(0.5, 1, 0.89, 1);
}

.js-r-fade {
  transform: translateX(60px);
  opacity: 0;
  transition: opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1), transform 0.7s cubic-bezier(0.5, 1, 0.89, 1);
}

.js-l-fade {
  transform: translateX(-60px);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.5, 1, 0.89, 1), transform 0.7s cubic-bezier(0.5, 1, 0.89, 1);
}

.fade-in {
  opacity: 1;
  transform: translate(0);
}

.js-spin {
  transform: rotateY(-450deg);
  transition-duration: 0.8s;
  will-change: transform;
  opacity: 0;
}

.js-spin.spin {
  transform: rotateY(0deg);
  opacity: 1;
}

@keyframes anm_coin {
  0% {
    transform: rotateY(-450deg);
    opacity: 0;
  }
  100% {
    transform: rotateY(0deg);
    opacity: 1;
  }
}
/* txt overflow animation */
/* js-m-txt wrapping to maskElem */
.js-m-txt {
  overflow: auto;
}

.js-m-txt .maskElem-y {
  transform: translateY(120%);
  display: block;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

.js-m-txt .maskElem-x {
  transform: translateX(-120%);
  display: block;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

@keyframes mask {
  100% {
    transform: translate(0);
  }
}
.mask.animated .maskElement-y,
.mask.animated .maskElement-x {
  animation: mask cubic-bezier(0.86, 0, 0.07, 1) forwards;
  animation-duration: 1.5s;
  overflow: hidden;
}

/* images overflow animation */
.js-m-img {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  /* display: inline-block; */
  transition: 1.5s 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}

.js-m-img.center {
  -webkit-clip-path: inset(0 100% 100% 0);
          clip-path: inset(0 100% 100% 0);
}

.js-m-img.animated {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}

.js_tvAnimation {
  transform: scaleY(0);
  transition: transform 0.4s cubic-bezier(0.68, 0.03, 0.97, -0.03);
}
.js_tvAnimation.is_active {
  transform: scaleY(1);
}

.js_scaleAnimation {
  transform: scale(0);
  transition: transform 0.7s ease;
}
.js_scaleAnimation.is_active {
  transform: scale(1);
}

/* /////////////////////////////////////////////// */
body {
  background: #111111;
}

.l_wrapper {
  width: 39rem;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  background: #000000;
}

.l_sp_content {
  display: none;
}
@media (min-width: 1024px) {
  .l_sp_content {
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
  }
}
.l_sp_content .l_blk {
  position: absolute;
  top: 6.8rem;
  left: 6.8rem;
  z-index: 2;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .l_sp_content .l_blk {
    top: 3.2rem;
    left: 3.2rem;
  }
}
.l_sp_content .l_blk_logo {
  width: 16rem;
  display: block;
}
.l_sp_content .l_blk_menu {
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
  margin-top: 5rem;
}
.l_sp_content .l_blk_menu a {
  font-size: 2.2rem;
  color: #fff;
  font-weight: 900;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .l_sp_content .l_blk_menu a {
    font-size: 1.6rem;
  }
}
.l_sp_content .cta_btn_01 {
  position: absolute;
  bottom: 5.6rem;
  right: 7.4rem;
  z-index: 2;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .l_sp_content .cta_btn_01 {
    bottom: 2.4rem;
    right: 2rem;
    width: 24rem;
  }
}
.l_sp_content .sp_bg {
  position: absolute;
  width: 121rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.cta_btn_01 {
  width: 28rem;
  display: block;
}

.mv {
  position: relative;
}
.mv .cta_btn_01 {
  position: absolute;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.about {
  margin-top: 5.4rem;
}
.about_lead {
  padding: 0 3rem;
  margin-top: 2rem;
  line-height: 1.6;
}
.about_sliderArea {
  position: relative;
}
.about_slider {
  padding-top: 7.8rem;
}
.about_slider_wrapper {
  align-items: flex-end;
}
.about_slider_item_img {
  position: relative;
  z-index: 2;
  width: 25rem;
}
.about_slider_item_bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 25rem;
}
.about_slider_item_bg img {
  transition-duration: 0.4s;
  transition-delay: 0.4s;
}
.about_slider_item.swiper-slide-active .about_slider_item_bg img {
  filter: drop-shadow(0px -10px 50px #94F498);
}
.about_main {
  width: 31.6rem;
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  z-index: 5;
}

.reason {
  margin-top: 9rem;
}
.reason_main {
  width: 33rem;
  margin: 2.4rem auto 0;
}
.reason_bottom {
  margin: 2.85rem auto 0;
  width: 35rem;
}

.strengths {
  border-radius: 2rem;
  background: #EFEFEF;
  box-shadow: inset 10px 20px 40px rgba(0, 0, 0, 0.5), inset -10px -20px 40px rgba(0, 0, 0, 0.5);
  margin-top: 5.23rem;
  padding: 5.6rem 0 4.6rem;
}
.strengths_list {
  margin-top: 4.4rem;
  padding: 0 3rem;
}
.strengths_list li + li {
  margin-top: 5rem;
}
.strengths_list_point.__01 {
  width: 10.7rem;
}
.strengths_list_point.__02 {
  width: 12.1rem;
}
.strengths_list_point.__03 {
  width: 12.1rem;
}
.strengths_list h3 {
  font-size: 2.8rem;
  line-height: 1.3571428571;
  font-weight: 900;
  color: #000;
  margin-top: 1.3rem;
}
.strengths_list_lead {
  color: #000;
  line-height: 1.6;
  margin-top: 1.4rem;
}
.strengths_list_img {
  margin-top: 1.3rem;
}

.function {
  margin-top: 7.8rem;
}
.function_lead {
  padding: 0 3rem;
  margin-top: 2.7rem;
  line-height: 1.6;
}
.function_main {
  margin-top: 3.8rem;
}

.flow {
  margin-top: 6.8rem;
}
.flow_main {
  width: 33rem;
  margin: 2.2rem 0 0 1.8rem;
}

.qa {
  margin-top: 6.1rem;
}
.qa_list {
  margin-top: 3.1rem;
}
.qa_list li {
  padding: 1.4rem;
  border: 2px solid #777;
  background: #1D1D1D;
  width: 35rem;
  margin: 0 auto;
  border-radius: 1rem;
}
.qa_list li + li {
  margin-top: 1.6rem;
}
.qa_list_dt {
  display: flex;
  gap: 0 1rem;
  padding-right: 3rem;
  position: relative;
}
.qa_list_dt span {
  width: 2.2rem;
  flex: 0 0 2.2rem;
}
.qa_list_dt p {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
}
.qa_list_dt::before {
  content: "";
  width: 1.6rem;
  height: 1rem;
  background: url(../img/qa_arrow.svg) no-repeat center center/contain;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0.6rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.qa_list_dd {
  margin-top: 1.4rem;
  border-radius: 1rem;
  background: #4F4F4F;
  padding: 1.4rem 1.7rem;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
}

.close {
  margin-top: 9.1rem;
}
.close_main {
  position: relative;
}
.close_main .cta_btn_01 {
  position: absolute;
  top: 16.2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.footer {
  padding: 3.8rem 0 2.7rem;
  text-align: center;
}
.footer_head {
  font-size: 1.4rem;
}
.footer_brand {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 1rem;
}/*# sourceMappingURL=style.css.map */