@charset "UTF-8";
.main-logo {
  width: calc(25vw + 200px);
}

.parallax-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100svh;
  color: white;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.parallax-section.bg-solid {
  background-attachment: scroll;
}
@supports (-webkit-overflow-scrolling: touch) {
  .parallax-section {
    background-attachment: scroll;
  }
}

.ios .parallax-section {
  background-attachment: scroll;
}

.section-content {
  position: relative;
  z-index: 2;
  padding: 0;
  border-radius: 0.625rem;
}
.section-content p {
  font-family: "M Plus 1";
  font-size: 1.8rem;
  line-height: 1.6;
}
@media (max-width: 576px) {
  .section-content p {
    font-size: 1.6rem;
  }
}

#section-1 {
  background-image: url(/img/top/main_visual.webp);
}
#section-1 span {
  font-family: "M Plus 1";
  font-size: 2.4rem;
  font-weight: 900;
  font-style: italic;
  position: relative;
  bottom: -25vh;
  z-index: 1;
}
#section-1 span:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: -0.25em;
  right: -0.25em;
  background-color: #ad0000;
  transform-origin: center right;
  transform: scaleX(0);
  transition: transform 0.2s ease-in-out;
}
#section-1 span:hover {
  cursor: pointer;
}
#section-1 span:hover::before {
  transform: scaleX(1);
  transform-origin: center left;
}

#section-2 {
  overflow-x: clip;
  background-image: url(/img/top/main_section_back.webp);
}
#section-2 .inner {
  max-width: 100%;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
#section-2 .section-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25em;
  padding: min(2em, 2.5vw) max(2em, 2.5vw);
}
@media (max-width: 820px) {
  #section-2 .section-content {
    margin: 0 auto;
    flex-direction: column-reverse;
    padding-top: 0;
    padding-bottom: max(2em, 2.5vw);
  }
}
#section-2 .section-content .txt {
  min-width: 50%;
}
#section-2 .section-content img {
  max-width: 100%;
}
@media (min-width: 1201px) {
  #section-2 .section-content img {
    max-width: 600px;
  }
}
#section-2 p {
  font-family: "M Plus 1";
  font-size: clamp(1.4rem, 1vw, 1.8rem);
    color:#fff;
}
#section-2 h2 {
  font-family: "M Plus 1";
  font-size: clamp(3.2rem, 3vw, 4.8rem);
  font-style: italic;
  vertical-align: middle;
  padding: 2rem;
}
#section-2 h3 {
  font-family: "M Plus 1";
  font-size: clamp(1.8rem, 2vw, 3.6rem);
  font-style: italic;
  padding-bottom: 1em;
    color:#fff;
}
#section-2 #image-slider {
  width: 100%;
  background: #000;
  padding-bottom: 1vh;
}
#section-2 #image-slider .slider {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
#section-2 #image-slider .splide__list {
  display: flex;
  animation: scroll-left 30s linear infinite;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
#section-2 #image-slider .splide__slide {
  flex: 0 0 auto; /* 横並びで縮まないように */
  width: 320px; /* 好きな幅に調整 */
}
#section-2 #image-slider .splide__slide img {
  width: 100%;
  height: auto;
}
#section-2 #image-slider .splide__arrows,
#section-2 #image-slider .splide__pagination {
  display: none;
}
@media (max-width: 820px) {
  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-200vw);
    }
  }
  #section-2 #image-slider .splide__slide {
    width: 50vw !important; /* スマホでは1枚に近くなる */
  }
}
#section-2 .caption-sec {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex: 1;
}
#section-2 .caption-sec .caption {
  flex-basis: 50%;
  padding: min(2em, 2.5vw);
}
#section-2 .caption-sec img {
  margin: 0 auto;
}
@media (max-width: 820px) {
  #section-2 .caption-sec {
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
  }
  #section-2 .caption-sec .caption {
    text-align: start;
  }
}
#section-2 .feature {
  line-height: 1.25;
  overflow: hidden;
}

#section-3,
#section-5 {
  min-height: 50svh;
}

#section-3 {
  background-image: url("/img/top/main_visual_2.webp");
}

#section-4 {
  background: #000;
}
#section-4 p {
  font-family: "M plus 1";
  font-size: 2rem;
  max-width: 90%;
  margin: 0 auto 1em;
  line-height: 2em;
    color:#FFF;
}
@media (max-width: 820px) {
  #section-4 p {
    font-size: 1.6rem;
    text-align: left;
  }
}
#section-4 span {
  font-family: "Noto serif Jp";
  font-size: 2rem;
  font-weight: 900;
}
@media (max-width: 820px) {
  #section-4 span {
    font-size: 1.8rem;
  }
}
#section-4 .philosophy p {
  font-style: italic;
}
@media (min-width: 1200px) {
  #section-4 .philosophy p {
    letter-spacing: 0.25em;
  }
}
#section-4 .flex-sec {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  max-width: 1200px;
  margin: 2rem auto;
}
#section-4 .flex-sec h2 {
  font-family: "Libre Franklin";
  font-style: italic;
  font-size: 4em;
  letter-spacing: 0.15em;
  margin: 0;
  color: #000000;
  -webkit-text-stroke: 1.5px #fff;
}
#section-4 .flex-sec p {
  font-size: 3rem;
}
@media (max-width: 1200px) {
  #section-4 .flex-sec {
    max-width: 90vw;
    gap: 1em;
  }
}
#section-4 .glitch {
  color: white;
  font-size: 10rem;
  position: relative;
  width: 100%;
  margin: 1em 0;
  font-family: "Libre Franklin";
  font-style: italic;
  font-weight: 900;
}
@media (max-width: 820px) {
  #section-4 .glitch {
    font-size: 6.4rem;
  }
}
@keyframes noise-anim {
  0% {
    clip: rect(99px, 9999px, 34px, 0);
  }
  5% {
    clip: rect(19px, 9999px, 29px, 0);
  }
  10% {
    clip: rect(45px, 9999px, 86px, 0);
  }
  15% {
    clip: rect(85px, 9999px, 98px, 0);
  }
  20% {
    clip: rect(3px, 9999px, 16px, 0);
  }
  25% {
    clip: rect(56px, 9999px, 16px, 0);
  }
  30% {
    clip: rect(96px, 9999px, 45px, 0);
  }
  35% {
    clip: rect(78px, 9999px, 33px, 0);
  }
  40% {
    clip: rect(54px, 9999px, 97px, 0);
  }
  45% {
    clip: rect(44px, 9999px, 50px, 0);
  }
  50% {
    clip: rect(70px, 9999px, 17px, 0);
  }
  55% {
    clip: rect(79px, 9999px, 28px, 0);
  }
  60% {
    clip: rect(12px, 9999px, 86px, 0);
  }
  65% {
    clip: rect(30px, 9999px, 60px, 0);
  }
  70% {
    clip: rect(100px, 9999px, 95px, 0);
  }
  75% {
    clip: rect(9px, 9999px, 94px, 0);
  }
  80% {
    clip: rect(89px, 9999px, 66px, 0);
  }
  85% {
    clip: rect(13px, 9999px, 63px, 0);
  }
  90% {
    clip: rect(15px, 9999px, 86px, 0);
  }
  95% {
    clip: rect(14px, 9999px, 27px, 0);
  }
  100% {
    clip: rect(97px, 9999px, 68px, 0);
  }
}
#section-4 .glitch:after {
  content: attr(data-text);
  position: absolute;
  left: 2px;
  text-shadow: -1px 0 red;
  top: 0;
  color: white;
  background: black;
  overflow: hidden;
  clip: rect(0, 900px, 0, 0);
  animation: noise-anim 2s infinite linear alternate-reverse;
  width: 100%;
}
@keyframes noise-anim-2 {
  0% {
    clip: rect(3px, 9999px, 83px, 0);
  }
  5% {
    clip: rect(51px, 9999px, 51px, 0);
  }
  10% {
    clip: rect(52px, 9999px, 94px, 0);
  }
  15% {
    clip: rect(76px, 9999px, 8px, 0);
  }
  20% {
    clip: rect(7px, 9999px, 45px, 0);
  }
  25% {
    clip: rect(67px, 9999px, 11px, 0);
  }
  30% {
    clip: rect(45px, 9999px, 4px, 0);
  }
  35% {
    clip: rect(33px, 9999px, 34px, 0);
  }
  40% {
    clip: rect(97px, 9999px, 8px, 0);
  }
  45% {
    clip: rect(81px, 9999px, 95px, 0);
  }
  50% {
    clip: rect(57px, 9999px, 99px, 0);
  }
  55% {
    clip: rect(13px, 9999px, 30px, 0);
  }
  60% {
    clip: rect(26px, 9999px, 89px, 0);
  }
  65% {
    clip: rect(44px, 9999px, 90px, 0);
  }
  70% {
    clip: rect(15px, 9999px, 3px, 0);
  }
  75% {
    clip: rect(25px, 9999px, 31px, 0);
  }
  80% {
    clip: rect(65px, 9999px, 10px, 0);
  }
  85% {
    clip: rect(13px, 9999px, 35px, 0);
  }
  90% {
    clip: rect(81px, 9999px, 49px, 0);
  }
  95% {
    clip: rect(26px, 9999px, 95px, 0);
  }
  100% {
    clip: rect(86px, 9999px, 89px, 0);
  }
}
#section-4 .glitch:before {
  content: attr(data-text);
  position: absolute;
  left: -2px;
  text-shadow: 1px 0 blue;
  top: 0;
  color: white;
  background: black;
  overflow: hidden;
  clip: rect(0, 900px, 0, 0);
  animation: noise-anim-2 3s infinite linear alternate-reverse;
  width: 100%;
}

#section-5 {
  background-image: url("/img/top/main_visual_3.webp");
}

#section-6 {
  background-image: url("/img/top/sample_trainer.webp");
}
@media (max-width: 820px) {
  #section-6 {
    background-image: none;
  }
}
#section-6 .trainer-box p {
  line-height: 2;
  padding: 10vh 1em;
  text-shadow: 0.5px 0.5px 1.5px black;
}
#section-6 .trainer-box p span {
  font-size: 2.4rem;
  font-weight: 900;
}
@media (max-width: 820px) {
  #section-6 .trainer-box p span {
    line-height: 1.25;
  }
}
@media (max-width: 820px) {
  #section-6 .trainer-box {
    background-image: url("/img/top/sample_trainer_sp.webp");
    background-size: cover;
  }
  #section-6 .trainer-box p {
    padding: 10vh 1em 5vh;
  }
}
#section-6 .title {
  display: flex;
  align-items: center;
  gap: min(2em, 2.5vw);
}
@media (max-width: 820px) {
  #section-6 .title {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }
}
#section-6 .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-column-gap: max(2em, 2.5vw);
  grid-row-gap: 0px;
}
@media (max-width: 820px) {
  #section-6 .grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
#section-6 .div1 {
  grid-area: 1/1/2/3;
  margin-bottom: 2.5vh;
}
@media (max-width: 820px) {
  #section-6 .div1 {
    grid-area: 1/1;
  }
}
#section-6 .div1 .title {
  background: #ad0000;
}
#section-6 .div1 .flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: min(2em, 2.5vw) 0;
  background-image: url(/img/top/trial.webp);
  background-position: center;
  min-height: 40vh;
}
@media (max-width: 820px) {
  #section-6 .div1 .flex {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding-bottom: 0;
  }
}
#section-6 .div1 .flex .price {
  color: #111;
  background: #fff;
  padding: 0 0.5em;
  margin-bottom: 1.5vh;
  margin-left: min(2em, 2.5vw);
}
#section-6 .div1 .flex .txt {
  padding: 2em;
}
@media (min-width: 821px) {
  #section-6 .div1 .flex .txt {
    background: #111;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }
}
@media (max-width: 576px) {
  #section-6 .div1 .flex .txt {
    background: #000;
  }
}
#section-6 .div2 {
  grid-area: 2/1/3/2;
}
@media (max-width: 820px) {
  #section-6 .div2 {
    grid-area: 2/1;
  }
}
#section-6 .div2 .title {
  background: #00ada2;
}
#section-6 .div2 .purchase img {
  max-width: 200px;
}
#section-6 .div3 {
  grid-area: 2/2/3/3;
}
@media (max-width: 820px) {
  #section-6 .div3 {
    grid-area: 3/1;
  }
}
#section-6 .div3 .title {
  background: #00ada2;
}
#section-6 .div3 .purchase img {
  max-width: 200px;
}
@media (max-width: 820px) {
  #section-6 .div3 .purchase img{
    max-width: 45vw;
  }
}
#section-6 .div2 .box,
#section-6 .div3 .box {
  padding: min(2em, 2.5vw) max(2em, 2.5vw);
}
#section-6 .title {
  padding: 2em;
}
#section-6 h2 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-family: "Libre Franklin";
  font-weight: 900;
  font-style: italic;
    color:#FFF;
}
#section-6 h3, #section-6 h4 {
  font-size: clamp(2rem, 1vw, 3rem);
  font-family: "M Plus 1";
    color:#FFF;
}
#section-6 h3 span, #section-6 h4 span {
  font-size: clamp(1rem, 1vw, 1.4rem);
  padding-left: 1em;
}
#section-6 p, #section-6 li {
  font-family: "Libre Franklin", "M Plus 1";
    color:#FFF;
}
#section-6 li {
  padding: 1em 0;
  font-size: clamp(2rem, 1vw, 3rem);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
    color:#FFF;
}
#section-6 li:not(:first-child) {
  border-top: 1px solid;
}
#section-6 .price {
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 900;
  font-style: italic;
}
#section-6 .purchase {
  display: flex;
  justify-content: space-around;
  margin: 2.5vh 0;
}
#section-6 .purchase a {
  display: inline-block;
}
#section-6 .purchase img {
  transition: 1s, color 0.1s;
  -webkit-transition: 1s, color 0.1s;
  -moz-transition: 1s, color 0.1s;
}
#section-6 .purchase img:hover {
  transform: rotateY(360deg);
  -webkit-transform: rotateY(360deg);
  -moz-transform: rotateY(360deg);
}