@charset "UTF-8";
* {
  margin: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  background-color: #F2F3F7;
  background-repeat: repeat-y;
  background-position: center top;
}
@media (min-width: 769px) {
  body {
    background-image: url(../img/bg_line_pc.png);
    background-size: 1440px;
  }
}
@media (max-width: 768px) {
  body {
    background-image: url(../img/bg_line_sp.png);
    background-size: 100%;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

html {
  scroll-behavior: smooth;
}

.lp {
  min-height: 100vh;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .sp {
    display: none !important;
  }
}

.lp-icon-arrow {
  display: inline-flex;
  flex-shrink: 0;
  overflow: hidden;
}
@media (min-width: 769px) {
  .lp-icon-arrow {
    width: 66px;
    height: 58px;
  }
}
@media (max-width: 768px) {
  .lp-icon-arrow {
    width: 16.5vw;
    height: 14.5vw;
  }
}
.lp-icon-arrow svg {
  width: 100%;
  height: 100%;
  display: block;
}
.lp-icon-arrow .lp-icon-arrow__circle {
  fill: var(--lp-icon-bg, #0100FE);
}
.lp-icon-arrow .lp-icon-arrow__arrow {
  fill: var(--lp-icon-fg, #fff);
}

[data-inview].clip-path {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.3s 0.5s ease-out;
}

[data-inview].clip-path.is-inview {
  clip-path: inset(0 0 0 0);
}

@media (min-width: 769px) {
  .mask-stroke1 svg {
    mask: url(#mask-stroke1);
    -webkit-mask: url(#mask-stroke1);
  }
}

svg #mask-stroke1 .mask-stroke1-path {
  stroke-dasharray: var(--mask-stroke1-length, 3.2);
  stroke-dashoffset: var(--mask-stroke1-length, 3.2);
  transition: stroke-dashoffset 0.6s 0.5s ease-in-out;
}

body.is-mask-stroke1-active svg #mask-stroke1 .mask-stroke1-path {
  stroke-dashoffset: 0;
}

@media (min-width: 769px) {
  .lp-story-card .mask-stroke2-path {
    stroke-dasharray: var(--mask-stroke2-length, 2);
    stroke-dashoffset: var(--mask-stroke2-length, 2);
    transition: stroke-dashoffset 0.3s ease-out;
  }
}

.lp-story-card:hover .mask-stroke2-path {
  stroke-dashoffset: 0;
}

.lp-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .lp-section__inner {
    padding-left: 4vw;
    padding-right: 4vw;
  }
}

@media (min-width: 769px) {
  .lp-section {
    padding: 100px 40px;
  }
}
@media (max-width: 768px) {
  .lp-section {
    padding: 12vw 0 0;
  }
}

.lp-header {
  position: fixed;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 100;
  transition: transform 0.3s ease-in-out;
  transform: translateY(0);
}
.lp-header.is-hidden {
  transform: translateY(calc(-100% - 38px));
}
@media (min-width: 769px) {
  .lp-header {
    padding: 0 40px;
    top: 38px;
  }
}
@media (max-width: 768px) {
  .lp-header {
    top: 5.5vw;
    height: 13.5vw;
  }
  .lp-header.is-hidden {
    transform: translateY(calc(-100% - 5.5vw));
  }
}

.lp-header__inner {
  margin: auto;
  width: 100%;
  padding: 0;
  max-width: 1354px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .lp-header__inner {
    padding-left: 5.5vw;
    padding-right: 3vw;
  }
}

@media (min-width: 769px) {
  .lp-header__logo {
    margin-right: 80px;
  }
  .lp-header__logo img {
    width: 185px;
  }
}
@media (max-width: 768px) {
  .lp-header__logo img {
    width: 31.75vw;
  }
}

.lp-header__nav {
  display: flex;
  align-items: center;
  gap: min(52px, 3.6vw);
  margin: 0 min(52px, 3.6vw) 0 auto;
}
@media (max-width: 920px) {
  .lp-header__nav {
    display: none;
  }
}

.lp-header__nav-link {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  color: #000000;
}
.lp-header__nav-link:hover {
  color: #FF5F4D;
}

.lp-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 44px;
  background: #0100FE;
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 2em;
  border-radius: 38px;
  transition: background 0.15s ease-in-out;
  white-space: nowrap;
}
.lp-header__cta:hover {
  background: #06C755;
}
@media (max-width: 768px) {
  .lp-header__cta {
    margin: 0 3vw 0 auto;
    padding: 0;
    width: 30vw;
    height: 11.5vw;
    font-size: 3.25vw;
  }
}

.lp-header__hamburger {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #FFFFFF;
  color: #FFFFFF;
  cursor: pointer;
  flex-shrink: 0;
}
@media (min-width: 769px) {
  .lp-header__hamburger {
    display: none;
  }
}
@media (max-width: 768px) {
  .lp-header__hamburger {
    width: 13.5vw;
    height: 13.5vw;
  }
}
@media (max-width: 768px) {
  .lp-header__hamburger .lp-header__hamburger-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4.5vw;
    height: 2px;
    background: #0100FE;
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .lp-header__hamburger .lp-header__hamburger-line:nth-child(1) {
    top: 5vw;
  }
  .lp-header__hamburger .lp-header__hamburger-line:nth-child(2) {
    top: 6.75vw;
  }
  .lp-header__hamburger .lp-header__hamburger-line:nth-child(3) {
    top: 8.5vw;
  }
}

@media (max-width: 768px) {
  .lp-header.is-open .lp-header__hamburger .lp-header__hamburger-line:nth-child(1) {
    top: 5.75vw;
    transform: translateX(-50%) rotate(45deg);
  }
  .lp-header.is-open .lp-header__hamburger .lp-header__hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .lp-header.is-open .lp-header__hamburger .lp-header__hamburger-line:nth-child(3) {
    top: 5.75vw;
    transform: translateX(-50%) rotate(-45deg);
  }
}

.lp-header__drawer {
  display: none;
}
@media (max-width: 768px) {
  .lp-header__drawer {
    position: fixed;
    inset: 0;
    z-index: 99;
    pointer-events: none;
  }
}

@media (max-width: 768px) {
  .lp-header.is-open {
    top: 0;
  }
}
@media (max-width: 768px) {
  .lp-header.is-open .lp-header__drawer {
    display: block;
    pointer-events: auto;
    height: 100vh;
  }
}

@media (max-width: 768px) {
  .lp-header__drawer-overlay {
    position: absolute;
    inset: 0;
    background: #000000;
    opacity: 0.8;
    cursor: pointer;
  }
}

@media (max-width: 768px) {
  .lp-header__drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 75vw;
    height: 100%;
    background: #0100FE;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 30vw 0 0 0;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  .lp-header__close {
    position: absolute;
    top: 5.5vw;
    right: 3vw;
    width: 13.5vw;
    height: 13.5vw;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #FFFFFF;
    color: #0100FE;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .lp-header__close .lp-header__close-icon {
    width: 6vw;
    height: 6vw;
  }
}

@media (max-width: 768px) {
  .lp-header__drawer-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 13vw;
  }
}

@media (max-width: 768px) {
  .lp-header__drawer-link {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 5vw;
    line-height: 2em;
    color: #FFFFFF;
    text-align: left;
  }
}

.lp-kv {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 769px) {
  .lp-kv {
    padding: 270px 40px 0;
  }
}
@media (max-width: 768px) {
  .lp-kv {
    padding-top: 20vw;
  }
}

.lp-kv__bg {
  position: absolute;
  inset: 0;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.6s ease-out;
}
@media (min-width: 769px) {
  .lp-kv__bg {
    background-image: url(../img/kv_bg_pc.png);
    background-size: 100% auto;
  }
}
@media (max-width: 768px) {
  .lp-kv__bg {
    background-image: url(../img/kv_bg_sp.png);
    background-size: 115% auto;
  }
}

.lp-kv__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  margin: auto;
  padding-bottom: 174px;
  width: 100%;
  max-width: 1278px;
}
@media (max-width: 768px) {
  .lp-kv__inner {
    padding: 6vw 4vw 12.5vw 5vw;
  }
}

.lp-kv__copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 768px) {
  .lp-kv__copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 2vw;
  }
}

.lp-kv__title {
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  font-size: clamp(80px, 12vw, 200px);
  line-height: 1.5em;
  letter-spacing: -0.16em;
  color: #000000;
  -webkit-text-stroke: 1px #000000;
}
@media (min-width: 769px) {
  .lp-kv__title {
    transform: translateX(-10px);
  }
}
@media (max-width: 768px) {
  .lp-kv__title {
    font-size: 20.5vw;
  }
}

.lp-kv__subtitle {
  font-feature-settings: "palt" on;
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #000000;
  position: relative;
}
@media (min-width: 769px) {
  .lp-kv__subtitle {
    font-size: clamp(20px, 2.2vw, 33px);
    transform: translate(4px, 14px);
  }
}
@media (max-width: 768px) {
  .lp-kv__subtitle {
    margin-top: 2.5vw;
    font-size: 6vw;
  }
}
.lp-kv__subtitle span {
  position: absolute;
}
@media (min-width: 769px) {
  .lp-kv__subtitle span {
    top: 20px;
    left: -4px;
  }
}
@media (max-width: 768px) {
  .lp-kv__subtitle span {
    top: 4vw;
    left: -1vw;
  }
}
@media (min-width: 769px) {
  .lp-kv__subtitle span svg {
    width: 221px;
  }
}
@media (max-width: 768px) {
  .lp-kv__subtitle span svg {
    width: 42vw;
  }
}

.lp-kv__statement {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (min-width: 769px) {
  .lp-kv__statement {
    margin-top: 298px;
  }
}
@media (max-width: 768px) {
  .lp-kv__statement {
    padding-top: 42vw;
  }
}
.lp-kv__statement .lp-kv__paragraph {
  max-width: 750px;
}
.lp-kv__statement .lp-kv__paragraph p {
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 1.8vw, 30px);
  line-height: 2em;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  white-space: pre-line;
}
.lp-kv__statement .lp-kv__paragraph .lp-kv__cta {
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 2em;
  letter-spacing: -0.07em;
  color: #FFFFFF;
}
@media (min-width: 769px) {
  .lp-kv__statement .lp-kv__paragraph .lp-kv__cta {
    margin-top: 68px;
  }
}
.lp-kv__statement picture {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}
@media (min-width: 769px) {
  .lp-kv__statement picture img {
    width: 448px;
  }
}
@media (max-width: 768px) {
  .lp-kv__statement {
    margin-top: 10vw;
    padding-bottom: 7.5vw;
    justify-content: space-between;
  }
  .lp-kv__statement .lp-kv__paragraph {
    max-width: none;
  }
  .lp-kv__statement .lp-kv__paragraph p {
    font-size: 4.5vw;
    line-height: 2em;
  }
  .lp-kv__statement .lp-kv__paragraph .lp-kv__cta {
    margin-top: 9vw;
    font-size: 7.5vw;
  }
  .lp-kv__statement .lp-kv__statement_copy {
    position: absolute;
    top: 78.5vw;
    right: 3vw;
    opacity: 0;
    transition: opacity 0.6s ease-out;
    mix-blend-mode: overlay;
  }
  .lp-kv__statement .lp-kv__statement_copy img {
    display: block;
    width: 27.75vw;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .lp-kv__statement .lp-kv__statement_copy img {
    opacity: 0.4;
  }
}

@media (min-width: 769px) {
  #kv .lp-text-carousel {
    margin-left: -40px;
    margin-right: -40px;
  }
}
@media (max-width: 768px) {
  #kv .lp-text-carousel {
    margin-left: -5vw;
    margin-right: -5vw;
  }
}

.lp-h2 {
  position: relative;
  text-align: center;
  overflow: visible;
  min-height: clamp(120px, 21.6vw, 288px);
}
@media (max-width: 768px) {
  .lp-h2 {
    min-height: 33vw;
  }
}

.lp-h2__en {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Albert Sans", "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: clamp(100px, 18vw, 240px);
  line-height: 1.2em;
  color: #FFFFFF;
  text-align: center;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .lp-h2__en {
    font-size: 27.5vw;
  }
}

.lp-h2__jp {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 90%;
  padding: 0 16px;
  white-space: nowrap;
}
@media (min-width: 769px) {
  .lp-h2__jp {
    gap: 4px 8px;
  }
}
@media (max-width: 768px) {
  .lp-h2__jp {
    padding: 0;
    gap: 0;
  }
}

.lp-h2__tag {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 2em;
  color: #000000;
}
@media (max-width: 768px) {
  .lp-h2__tag {
    font-size: 6.5vw;
  }
}

.lp-h2__sep {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 250;
  font-size: 30px;
  line-height: 2em;
  color: #000000;
}
@media (max-width: 768px) {
  .lp-h2__sep {
    font-size: 6.5vw;
  }
}

.lp-h2__title-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 2em;
  color: #000000;
  display: inline;
}
@media (max-width: 768px) {
  .lp-h2__title-ja {
    font-size: 5vw;
  }
}

.lp-h2__jp:not(:has(.lp-h2__tag)) .lp-h2__title-ja {
  display: block;
}

#story .lp-section__inner {
  max-width: 1312px;
}
#story .lp-h2__svg {
  position: absolute;
}
@media (min-width: 769px) {
  #story .lp-h2__svg {
    top: 58px;
    left: 50%;
    transform: translateX(-250px);
  }
}
@media (max-width: 768px) {
  #story .lp-h2__svg {
    top: 7vw;
    left: 2.5vw;
  }
}
@media (min-width: 769px) {
  #story .lp-h2__svg svg {
    width: 252px;
  }
}
@media (max-width: 768px) {
  #story .lp-h2__svg svg {
    width: 38.25vw;
  }
}

.lp-story__slider {
  margin-top: 32px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .lp-story__slider {
    margin-top: 6vw;
    padding: 0;
  }
}

.lp-card-swiper {
  overflow: visible !important;
}
@media (min-width: 769px) {
  .lp-card-swiper .swiper-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: min(100px, 7vw) 62px;
    width: 100%;
    height: auto !important;
    transition: none !important;
    transform: none !important;
  }
  .lp-card-swiper .swiper-slide {
    width: auto !important;
    height: auto !important;
    max-width: calc((100% - 124px) / 3);
    flex-shrink: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 769px) and (max-width: 1120px) {
  .lp-card-swiper .swiper-slide {
    max-width: calc((100% - 62px) / 2);
  }
}
.lp-card-swiper .swiper-wrapper {
  align-items: stretch;
}
.lp-card-swiper .swiper-slide {
  height: auto;
  box-sizing: border-box;
}
@media (min-width: 769px) and (min-width: 1121px) {
  .lp-card-swiper .swiper-slide:nth-child(2),
  .lp-card-swiper .swiper-slide:nth-child(5) {
    transform: translateY(63px);
  }
}
.lp-card-swiper .swiper-button-prev,
.lp-card-swiper .swiper-button-next,
.lp-card-swiper .swiper-pagination {
  display: none;
}
@media (max-width: 768px) {
  .lp-card-swiper .swiper-slide:nth-child(n+4) {
    margin-top: 0;
  }
  .lp-card-swiper .swiper-button-prev,
  .lp-card-swiper .swiper-button-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10vw;
    height: 10vw;
    margin-top: 0;
    top: 43vw;
    background: #FFFFFF url(../img/icon_arrow.png) no-repeat center center;
    background-size: 4.5vw;
    border-radius: 50%;
    opacity: 0.8;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
  }
  .lp-card-swiper .swiper-button-prev::after,
  .lp-card-swiper .swiper-button-next::after {
    display: none;
  }
  .lp-card-swiper .swiper-button-prev {
    left: -1vw;
    transform: scaleX(-1);
  }
  .lp-card-swiper .swiper-button-next {
    right: -1vw;
  }
  .lp-card-swiper .swiper-button-disabled {
    opacity: 0;
    cursor: default;
  }
  .lp-card-swiper .swiper-pagination {
    display: block;
    position: relative;
    margin-top: 6vw;
  }
  .lp-card-swiper .swiper-pagination-bullet {
    margin: 0 1.5vw !important;
    width: 2.5vw;
    height: 2.5vw;
    background: #E4E4E6;
    opacity: 1;
    transition: background 0.2s ease;
  }
  .lp-card-swiper .swiper-pagination-bullet-active {
    background: #0100FE;
  }
}

.lp-story-card-flip {
  perspective: 1200px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  width: auto;
  height: auto;
}

.lp-story-card-flip__inner {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
  display: inline-block;
  width: 100%;
  height: auto;
  min-height: 100%;
}

.lp-story-card-flip.is-flipped .lp-story-card-flip__inner {
  transform: rotateY(180deg);
}

.lp-story-card {
  position: relative;
  backface-visibility: hidden;
  filter: drop-shadow(5px 12px 0 rgba(0, 0, 0, 0.08));
  display: flex;
  flex-direction: column;
  z-index: 2;
  width: 100%;
}
@media (min-width: 769px) {
  .lp-story-card {
    padding: 30px;
    border-radius: 10px;
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .lp-story-card {
    padding: 5vw 6vw;
    min-height: 97.5vw;
    border-radius: 2.5vw;
    gap: 4.5vw;
  }
}
.lp-story-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: #fff;
  z-index: -2;
  transform: rotate(5.56deg);
}
.lp-story-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: #9BA8AD;
  z-index: -1;
  box-shadow: 5px 12px 0 0 rgba(0, 0, 0, 0.08);
}

.lp-story-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.lp-story-card__top .lp-story-card__label {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 4px 8px;
  padding-left: 4px;
  line-height: 2;
}
.lp-story-card__top .lp-story-card__label .lp-story-card__tag {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 33px;
  color: #FFFFFF;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .lp-story-card__top .lp-story-card__label .lp-story-card__tag {
    font-size: 6.25vw;
  }
}
.lp-story-card__top .lp-story-card__label .lp-story-card__story {
  font-family: "Albert Sans", "Noto Sans JP", sans-serif;
  font-weight: 800;
  color: #FFFFFF;
}
@media (min-width: 769px) {
  .lp-story-card__top .lp-story-card__label .lp-story-card__story {
    padding-top: 6px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .lp-story-card__top .lp-story-card__label .lp-story-card__story {
    padding-top: 1.5vw;
    font-size: 3.25vw;
  }
}
.lp-story-card__top .lp-story-card__label .lp-story-card__num {
  font-family: "Albert Sans", "Noto Sans JP", sans-serif;
  font-weight: 100;
  color: #FFFFFF;
}
@media (min-width: 769px) {
  .lp-story-card__top .lp-story-card__label .lp-story-card__num {
    padding-top: 6px;
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .lp-story-card__top .lp-story-card__label .lp-story-card__num {
    padding-top: 1.5vw;
    font-size: 5vw;
  }
}
.lp-story-card__top .lp-story-card__tap {
  font-family: "Albert Sans", "Noto Sans JP", sans-serif;
  font-weight: 800;
  line-height: 1.2em;
  color: #BFFF00;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  position: relative;
}
@media (min-width: 769px) {
  .lp-story-card__top .lp-story-card__tap {
    margin-right: 20px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .lp-story-card__top .lp-story-card__tap {
    margin-right: 3vw;
    font-size: 3.25vw;
  }
}
.lp-story-card__top .lp-story-card__tap svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 769px) {
  .lp-story-card__top .lp-story-card__tap svg {
    width: 110px;
    height: 63px;
  }
}
@media (max-width: 768px) {
  .lp-story-card__top .lp-story-card__tap svg {
    width: 19.75vw;
    height: 11.5vw;
  }
}
.lp-story-card__top .lp-story-card__tap .tap-char {
  display: inline-block;
  animation: none;
}
.lp-story-card__top .lp-story-card__tap.is-animating .tap-char {
  animation: tap-char-bounce 0.6s ease-out;
  animation-delay: var(--char-delay, 0s);
}
@media (max-width: 768px) {
  .lp-story-card__top .lp-story-card__tap {
    margin-right: 3vw;
    font-size: 3.25vw;
  }
  .lp-story-card__top .lp-story-card__tap svg {
    width: 20vw;
    height: 11.5vw;
  }
}

.lp-story-card__img {
  width: 100%;
  background: #D9D9D9;
  overflow: hidden;
  flex-shrink: 0;
}
@media (min-width: 769px) {
  .lp-story-card__img {
    aspect-ratio: 330/227;
  }
}
@media (max-width: 768px) {
  .lp-story-card__img {
    aspect-ratio: 236/162;
  }
}
.lp-story-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-story-card__body {
  flex: 1;
  min-height: 0;
}

.lp-story-card__title {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 23px;
  line-height: 1.46em;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .lp-story-card__title {
    font-size: 4.5vw;
  }
}

.lp-story-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 100%;
  backface-visibility: hidden;
  transform: rotateY(180deg);
  background: #0100FE;
  display: flex;
  flex-direction: column;
  overflow: visible;
  z-index: 1;
  box-shadow: 5px 12px 0 0 rgba(0, 0, 0, 0.08);
}
@media (min-width: 769px) {
  .lp-story-card-back {
    padding: 30px;
    border-radius: 10px;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .lp-story-card-back {
    padding: 5vw 6vw;
    border-radius: 2.5vw;
    gap: 4.5vw;
  }
}
.lp-story-card-back .lp-story-card-back__label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 8px;
  flex-shrink: 0;
}
.lp-story-card-back .lp-story-card-back__label .lp-story-card-back__tag {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 33px;
  line-height: 2em;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .lp-story-card-back .lp-story-card-back__label .lp-story-card-back__tag {
    font-size: 6vw;
  }
}
.lp-story-card-back .lp-story-card-back__label .lp-story-card-back__story {
  font-family: "Albert Sans", "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.2em;
  color: #FFFFFF;
  padding-top: 6px;
}
@media (max-width: 768px) {
  .lp-story-card-back .lp-story-card-back__label .lp-story-card-back__story {
    font-size: 3.5vw;
  }
}
.lp-story-card-back .lp-story-card-back__label .lp-story-card-back__num {
  font-family: "Albert Sans", "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-size: 26px;
  line-height: 1.2em;
  color: #FFFFFF;
  padding-top: 6px;
}
@media (max-width: 768px) {
  .lp-story-card-back .lp-story-card-back__label .lp-story-card-back__num {
    font-size: 3.5vw;
  }
}
.lp-story-card-back .lp-story-card-back__body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.7em;
  color: #FFFFFF;
  flex: 1;
  min-height: 0;
}
@media (max-width: 768px) {
  .lp-story-card-back .lp-story-card-back__body {
    font-size: 3.5vw;
  }
}
.lp-story-card-back .lp-story-card-back__tags {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0 16px;
  flex-shrink: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7em;
  color: #FFFFFF;
}
.lp-story-card-back .lp-story-card-back__tags li {
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .lp-story-card-back .lp-story-card-back__tags {
    font-size: 3vw;
  }
}

.lp-carousel {
  overflow: hidden;
  margin-top: 140px;
}
@media (max-width: 768px) {
  .lp-carousel {
    margin-top: 11vw;
  }
}

.lp-carousel__track-wrap {
  display: flex;
  overflow: hidden;
  width: 100%;
  user-select: none;
}
.lp-carousel__track-wrap:not(:last-child) {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .lp-carousel__track-wrap:not(:last-child) {
    margin-bottom: 5vw;
  }
}

.lp-carousel__track {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  padding-left: 20px;
  width: max-content;
}
.lp-carousel__track-wrap--row1 .lp-carousel__track {
  animation: lp-carousel-move-left 60s linear infinite;
}
.lp-carousel__track-wrap--row2 .lp-carousel__track {
  animation: lp-carousel-move-right 60s linear infinite;
}

@keyframes lp-carousel-move-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes lp-carousel-move-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.lp-carousel__item {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  width: auto;
}

.lp-carousel__thumb {
  width: 124px;
  height: 90px;
  flex-shrink: 0;
  border-radius: 50px;
  background-color: #9DA8A8;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .lp-carousel__thumb {
    width: 31vw;
    height: 22.5vw;
    border-radius: 12.5vw;
  }
}

.lp-carousel__title {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2vw, 30px);
  line-height: 1.3em;
  color: #9DA8A8;
  flex: 1;
  min-width: 0;
}
@media (max-width: 768px) {
  .lp-carousel__title {
    font-size: 5vw;
  }
}

.lp-connection {
  margin: 80px 31px 86px;
}
@media (max-width: 768px) {
  .lp-connection {
    margin: 7.5vw 3vw 12vw;
  }
}

.lp-connection__inner {
  margin: 0 auto;
  width: 100%;
  border-radius: 50px;
  background: #0100FE;
}
@media (min-width: 769px) {
  .lp-connection__inner {
    padding: 114px 90px 118px 90px;
    max-width: 1378px;
  }
}
@media (max-width: 768px) {
  .lp-connection__inner {
    padding: 12vw 8vw 15.5vw;
    width: 94vw;
    border-radius: 7.5vw;
  }
}

.lp-connection__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 769px) {
  .lp-connection__title {
    position: absolute;
  }
}
@media (max-width: 768px) {
  .lp-connection__title {
    margin-bottom: 9.5vw;
  }
}
.lp-connection__title .lp-connection__en {
  font-family: "Albert Sans", "Noto Sans JP", sans-serif;
  font-weight: 800;
  color: #FFFFFF;
}
@media (min-width: 769px) {
  .lp-connection__title .lp-connection__en {
    padding-left: 8px;
    font-size: 18px;
    line-height: 1.2;
  }
}
@media (max-width: 768px) {
  .lp-connection__title .lp-connection__en {
    font-size: 2.75vw;
  }
}
.lp-connection__title span {
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 80px);
  line-height: 1.2em;
  color: #FFFFFF;
}
.lp-connection__title span b {
  color: #BFFF00;
}
@media (max-width: 768px) {
  .lp-connection__title span {
    font-size: 9.5vw;
    line-height: 1.3;
  }
}

.lp-connection__diagram picture {
  display: block;
  text-align: center;
}
.lp-connection__diagram picture img {
  width: 100%;
}
@media (min-width: 769px) {
  .lp-connection__diagram picture img {
    max-width: 1189px;
  }
}
@media (max-width: 768px) {
  .lp-connection__diagram picture img {
    max-width: 80.75vw;
  }
}

@media (min-width: 769px) {
  .lp-catch {
    padding: 0 82px;
  }
  .lp-catch#catch2 {
    margin-top: 166px;
  }
}
@media (max-width: 768px) {
  .lp-catch {
    margin-top: 20vw;
    padding: 0 3vw;
  }
}

.lp-catch__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1276px;
  padding: 0;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .lp-catch__inner {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .lp-catch__inner {
    gap: 2.5vw;
  }
}

.lp-catch__line {
  --fill: 0;
  font-feature-settings: "palt" on;
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
}
@media (min-width: 769px) {
  .lp-catch__line {
    font-size: clamp(28px, 3vw, 50px);
    line-height: 1.05;
    letter-spacing: 0.07em;
  }
}
@media (max-width: 768px) {
  .lp-catch__line {
    font-size: 5vw;
    line-height: 1.2;
  }
}
@media (min-width: 769px) {
  .lp-catch__line small {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .lp-catch__line small {
    font-size: 2.5vw;
  }
}

.lp-catch__line-inner {
  position: relative;
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  padding: 0.25em 0.4em 0.3em;
}
.lp-catch__line-inner .lp-catch__line-bg {
  position: absolute;
  inset: 0;
  background-color: #9DA8A8;
  z-index: 0;
}
.lp-catch__line-inner .lp-catch__line-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: calc(var(--fill) * 1%);
  max-width: 100%;
  background: #FC412C;
  z-index: 1;
  transition: width 0.15s ease-out;
}
.lp-catch__line-inner .lp-catch__line-text {
  position: relative;
  z-index: 2;
  color: #fff;
  background: linear-gradient(90deg, #000000 0%, #000000 var(--fill), #FFFFFF var(--fill), #FFFFFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

@media (min-width: 769px) {
  #fact {
    margin-top: 184px;
    padding: 0 31px;
  }
}
@media (max-width: 768px) {
  #fact {
    margin-top: 20vw;
    padding: 0 3vw;
  }
}
#fact .lp-fact__inner {
  margin: 0 auto;
  max-width: 1378px;
  background: #FC412C;
}
@media (min-width: 769px) {
  #fact .lp-fact__inner {
    padding: 100px min(90px, 6.25vw) 120px min(90px, 6.25vw);
    border-radius: 50px;
  }
}
@media (max-width: 768px) {
  #fact .lp-fact__inner {
    padding: 13vw 6vw 18.5vw;
    border-radius: 7.5vw;
  }
}
#fact .lp-h2__en {
  color: #FF5F4D;
}
#fact .lp-h2__svg {
  position: absolute;
}
@media (min-width: 769px) {
  #fact .lp-h2__svg {
    top: 58px;
    left: 50%;
    transform: translateX(-220px);
  }
}
@media (max-width: 768px) {
  #fact .lp-h2__svg {
    top: 7vw;
    left: 1.5vw;
  }
}
@media (min-width: 769px) {
  #fact .lp-h2__svg svg {
    width: 252px;
  }
}
@media (max-width: 768px) {
  #fact .lp-h2__svg svg {
    width: 35.5vw;
  }
}

.lp-fact__list {
  display: flex;
  flex-direction: column;
  gap: 87px;
  max-width: 1198px;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .lp-fact__list {
    gap: 9vw;
    margin-top: 3.5vw;
  }
}

.lp-fact__item {
  display: flex;
  align-items: center;
  padding: 0;
  color: #000000;
}
@media (min-width: 769px) and (max-width: 1280px) {
  .lp-fact__item {
    align-items: flex-start;
  }
}
.lp-fact__item .lp-fact__item-wrap1 {
  display: flex;
  flex-direction: column;
  width: min(554px, 38.5vw);
  overflow: visible;
}
@media (max-width: 1280px) {
  .lp-fact__item .lp-fact__item-wrap1 {
    gap: 20px;
  }
}
.lp-fact__item .lp-fact__item-wrap2 {
  display: flex;
  flex-direction: column;
  width: calc(100% - min(554px, 38.5vw));
  height: 100%;
}
@media (max-width: 768px) {
  .lp-fact__item {
    flex-direction: column;
    align-items: stretch;
    gap: 4vw;
  }
  .lp-fact__item .lp-fact__item-wrap1,
  .lp-fact__item .lp-fact__item-wrap2 {
    width: 100%;
  }
}

.lp-fact__divider {
  height: 1px;
  background: #FFFFFF;
  flex-shrink: 0;
}
@media (min-width: 769px) {
  .lp-fact__divider {
    margin-bottom: -28px;
  }
}
.lp-fact__item-body {
  display: flex;
  flex-direction: column;
}
@media (min-width: 769px) {
  .lp-fact__item-body {
    gap: 17px;
    margin-right: 24px;
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .lp-fact__item-body {
    gap: 4vw;
    margin-bottom: 5vw;
  }
}

.lp-fact__item-label {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.5em;
  color: #000000;
}
@media (min-width: 769px) {
  .lp-fact__item-label {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .lp-fact__item-label {
    font-size: 5.75vw;
  }
}

.lp-fact__item-desc {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.7em;
  color: #000000;
}
@media (min-width: 769px) {
  .lp-fact__item-desc {
    font-size: 17px;
  }
}
@media (max-width: 768px) {
  .lp-fact__item-desc {
    font-size: 3.5vw;
  }
}

.lp-fact__item-tag {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: #FFFFFF;
}
@media (min-width: 769px) {
  .lp-fact__item-tag {
    margin-left: 32px;
    gap: 0 0.6em;
  }
}
@media (max-width: 768px) {
  .lp-fact__item-tag {
    margin-left: 0;
    gap: 0 1.5vw;
  }
}

.lp-fact__item-tag-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  line-height: 1;
}
@media (min-width: 769px) {
  .lp-fact__item-tag-label {
    font-size: clamp(28px, 3.5vw, 44px);
  }
}
@media (max-width: 768px) {
  .lp-fact__item-tag-label {
    font-size: 8.5vw;
  }
}

.lp-fact__item-tag-sep {
  margin: 0 -5px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 250;
  line-height: 2;
}
@media (min-width: 769px) {
  .lp-fact__item-tag-sep {
    font-size: clamp(22px, 2.5vw, 33px);
  }
}
@media (max-width: 768px) {
  .lp-fact__item-tag-sep {
    font-size: 8.25vw;
  }
}

.lp-fact__item-tag-text {
  font-family: "Albert Sans", "Noto Sans JP", sans-serif;
  font-weight: 800;
  line-height: 1.2;
}
@media (min-width: 769px) {
  .lp-fact__item-tag-text {
    font-size: 16px;
    margin-top: 8px;
  }
}
@media (max-width: 768px) {
  .lp-fact__item-tag-text {
    font-size: 3.75vw;
    margin-top: 1.5vw;
  }
}

.lp-fact__item-tag-num {
  font-family: "Albert Sans", "Noto Sans JP", sans-serif;
  font-weight: 200;
  line-height: 1.2;
}
@media (min-width: 769px) {
  .lp-fact__item-tag-num {
    font-size: 26px;
    margin-top: 8px;
  }
}
@media (max-width: 768px) {
  .lp-fact__item-tag-num {
    font-size: 6vw;
    margin-top: 0.75vw;
  }
}

.lp-fact__item-image {
  position: relative;
  text-align: center;
  margin: 0 auto;
  overflow: visible;
}
@media (min-width: 769px) {
  .lp-fact__item-image {
    max-width: min(433px, 30.5vw);
  }
}
@media (max-width: 768px) {
  .lp-fact__item-image {
    margin-top: 2vw;
    max-width: 65vw;
  }
}
.lp-fact__item-image {
  perspective: 1000px;
  -webkit-perspective: 1000px;
}

.lp-fact__item-image-inner {
  position: relative;
  width: 100%;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transition: transform 0.6s ease-in-out;
  transform: rotateY(0deg);
}
.lp-fact__item-image.is-flipped .lp-fact__item-image-inner {
  transform: rotateY(180deg);
}

.lp-fact__item-image-face {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-fact__item-image-face--front {
  transform: rotateY(0deg);
}
.lp-fact__item-image-face--back {
  position: absolute;
  inset: 0;
  transform: rotateY(180deg);
}
.lp-fact__item-image-face img {
  max-width: 100%;
  width: 100%;
  height: auto;
  transform: translateY(-6px);
  display: block;
  pointer-events: none;
}

.lp-fact__item-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
@media (min-width: 769px) {
  .lp-fact__item-links {
    gap: 0 40px;
    margin-top: 48px;
  }
}
@media (max-width: 768px) {
  .lp-fact__item-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-top: 0;
  }
}

.lp-fact__item-link {
  display: inline-flex;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 2em;
  color: #000000;
}
@media (min-width: 769px) {
  .lp-fact__item-link {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .lp-fact__item-link {
    font-size: 3.75vw;
  }
  .lp-fact__item-link img {
    width: auto;
    height: 3.75vw;
  }
}
.lp-fact__item-link,
.lp-fact__item-link .lp-icon-arrow {
  --lp-icon-bg: #fff;
  --lp-icon-fg: #FC412C;
}
.lp-fact__item-link span {
  line-height: 1.5;
}
.lp-fact__item-link:hover .lp-icon-arrow__arrow {
  animation: arrow-hover 0.5s ease-in-out;
}

.lp-fact__item-link__note {
  line-height: 2 !important;
}
@media (min-width: 769px) {
  .lp-fact__item-link__note {
    transform: translateY(-1em);
  }
}
@media (max-width: 768px) {
  .lp-fact__item-link__note {
    transform: translateY(-0.5em);
  }
}

.lp-fact__item-link__colab {
  display: inline-flex;
  align-items: center;
}
@media (min-width: 769px) {
  .lp-fact__item-link__colab {
    gap: 5px;
    margin-right: 5px;
  }
}
@media (max-width: 768px) {
  .lp-fact__item-link__colab {
    gap: 0.75vw;
    margin-right: 0.75vw;
  }
}
@media (max-width: 768px) {
  .lp-fact__item-link__colab img {
    width: 25vw;
    height: auto;
  }
}

.lp-text-carousel {
  overflow: hidden;
  z-index: 1;
}
.lp-text-carousel--kv {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
}
.lp-text-carousel--section {
  background: #FFFFFF;
  border-top: 2px solid #FE240B;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .lp-text-carousel--section {
    margin-top: 13vw;
  }
}

.lp-text-carousel__inner {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.lp-text-carousel__track-wrap {
  overflow: hidden;
  width: 100%;
  user-select: none;
}
.lp-text-carousel__track-wrap:not(:last-child) {
  margin-bottom: 0;
}

.lp-text-carousel__track {
  display: flex;
  flex-shrink: 0;
  width: max-content;
}
.lp-text-carousel__track-wrap--row1 .lp-text-carousel__track {
  animation: lp-carousel-move-left 50s linear infinite;
}
.lp-text-carousel__track-wrap--row2 .lp-text-carousel__track {
  animation: lp-carousel-move-right 50s linear infinite;
}

.lp-text-carousel__hashtags {
  padding: 7.5px 0;
  flex-shrink: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 2;
  color: #FC412C;
  white-space: nowrap;
}
.lp-text-carousel__track-wrap--row2 .lp-text-carousel__hashtags {
  border-top: 2px solid #FE240B;
  border-bottom: 2px solid #FE240B;
}
@media (max-width: 768px) {
  .lp-text-carousel__hashtags {
    font-size: 5vw;
    padding: 2vw 0;
  }
}

@media (min-width: 769px) {
  .lp-future {
    margin-top: 60px;
    padding: 100px 40px 80px;
  }
}
@media (max-width: 768px) {
  .lp-future {
    margin-top: 8vw;
    padding: 12vw 0 0;
  }
}

#future .lp-section__inner {
  max-width: 1312px;
}
#future .lp-h2__svg {
  position: absolute;
}
@media (min-width: 769px) {
  #future .lp-h2__svg {
    top: 5px;
    left: 50%;
    transform: translateX(50px);
  }
}
@media (max-width: 768px) {
  #future .lp-h2__svg {
    top: -3vw;
    left: 50vw;
  }
}
@media (min-width: 769px) {
  #future .lp-h2__svg svg {
    width: 158px;
  }
}
@media (max-width: 768px) {
  #future .lp-h2__svg svg {
    width: 22.75vw;
  }
}

@media (min-width: 769px) {
  #data {
    margin-top: 60px;
    padding: 80px 40px 60px;
  }
}
@media (max-width: 768px) {
  #data {
    margin-top: 10vw;
    padding: 10vw 0;
  }
}
#data .lp-data__inner {
  margin: auto;
}
@media (min-width: 769px) {
  #data .lp-data__inner {
    max-width: 1280px;
  }
}
@media (max-width: 768px) {
  #data .lp-data__inner {
    padding-left: 4vw;
    padding-right: 4vw;
  }
}
@media (max-width: 768px) {
  #data .lp-h2__tag {
    font-size: 5.5vw;
  }
}
#data .lp-h2__svg {
  position: absolute;
}
@media (min-width: 769px) {
  #data .lp-h2__svg {
    top: 58px;
    left: 50%;
    transform: translateX(148px);
  }
}
@media (max-width: 768px) {
  #data .lp-h2__svg {
    top: 5vw;
    left: 60vw;
  }
}
@media (min-width: 769px) {
  #data .lp-h2__svg svg {
    width: 204px;
  }
}
@media (max-width: 768px) {
  #data .lp-h2__svg svg {
    width: 28.5vw;
  }
}

.lp-data__stats {
  display: grid;
}
@media (min-width: 769px) {
  .lp-data__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 90px;
    margin-top: 14px;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .lp-data__stats {
    grid-template-columns: 1fr;
    gap: 10vw;
    margin-top: 5.25vw;
    padding: 0 2vw;
  }
}
.lp-data__stats .lp-data__stat {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.lp-data__stats .lp-data__stat .lp-data__label {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.55;
  color: #000000;
}
@media (min-width: 769px) {
  .lp-data__stats .lp-data__stat .lp-data__label {
    height: 85px;
  }
}
@media (max-width: 768px) {
  .lp-data__stats .lp-data__stat .lp-data__label {
    font-size: 5.5vw;
  }
}
@media (min-width: 769px) {
  .lp-data__stats .lp-data__stat .lp-data__label small {
    font-size: 22px;
    line-height: 1.6;
  }
}
@media (max-width: 768px) {
  .lp-data__stats .lp-data__stat .lp-data__label small {
    font-size: 4vw;
    line-height: 1.5;
  }
}
.lp-data__stats .lp-data__stat .lp-data__value {
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  color: #FC412C;
}
@media (min-width: 769px) {
  .lp-data__stats .lp-data__stat .lp-data__value {
    margin-top: -3px;
  }
}
@media (max-width: 768px) {
  .lp-data__stats .lp-data__stat .lp-data__value {
    margin-top: -0.25vw;
    margin-left: -1vw;
  }
}
.lp-data__stats .lp-data__stat .lp-data__value .lp-data__value-int {
  font-family: "Albert Sans", "Noto Sans JP", sans-serif;
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.03em;
}
@media (min-width: 769px) {
  .lp-data__stats .lp-data__stat .lp-data__value .lp-data__value-int {
    font-size: clamp(80px, 12vw, 200px);
  }
}
@media (max-width: 768px) {
  .lp-data__stats .lp-data__stat .lp-data__value .lp-data__value-int {
    font-size: 37.5vw;
  }
}
.lp-data__stats .lp-data__stat .lp-data__value .lp-data__value-dec {
  font-family: "Albert Sans", "Noto Sans JP", sans-serif;
  font-weight: 800;
  line-height: 1.2;
}
@media (min-width: 769px) {
  .lp-data__stats .lp-data__stat .lp-data__value .lp-data__value-dec {
    font-size: clamp(48px, 6vw, 90px);
  }
}
@media (max-width: 768px) {
  .lp-data__stats .lp-data__stat .lp-data__value .lp-data__value-dec {
    font-size: 17.5vw;
  }
}
.lp-data__stats .lp-data__stat .lp-data__body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 2;
  color: #000000;
}
@media (min-width: 769px) {
  .lp-data__stats .lp-data__stat .lp-data__body {
    margin-top: 30px;
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .lp-data__stats .lp-data__stat .lp-data__body {
    margin-top: 2.25vw;
    font-size: 3.75vw;
  }
}
.lp-data__stats .lp-data__stat .lp-data__note {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  color: #000000;
  white-space: pre-line;
}
@media (min-width: 769px) {
  .lp-data__stats .lp-data__stat .lp-data__note {
    margin-top: 15px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .lp-data__stats .lp-data__stat .lp-data__note {
    margin-top: 3.75vw;
    font-size: 3vw;
  }
}

.lp-data__links {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 769px) {
  .lp-data__links {
    margin-top: 60px;
    gap: 50px;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .lp-data__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1vw;
    margin-top: 10vw;
  }
}
.lp-data__links .lp-data__link {
  display: inline-flex;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 2em;
  color: #0100FE;
}
@media (min-width: 769px) {
  .lp-data__links .lp-data__link {
    gap: 8px;
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .lp-data__links .lp-data__link {
    gap: 2vw;
    font-size: 4.5vw;
  }
}
.lp-data__links .lp-data__link,
.lp-data__links .lp-data__link .lp-icon-arrow {
  --lp-icon-bg: #0100FE;
  --lp-icon-fg: #fff;
}
.lp-data__links .lp-data__link:hover .lp-icon-arrow__arrow {
  animation: arrow-hover 0.5s ease-in-out;
}

#movie {
  padding: 80px 0;
}
@media (max-width: 768px) {
  #movie {
    padding: 10vw 0;
  }
}
@media (max-width: 768px) {
  #movie .lp-h2__tag {
    font-size: 5.5vw;
  }
}
#movie .lp-h2__svg {
  position: absolute;
}
@media (min-width: 769px) {
  #movie .lp-h2__svg {
    top: 45px;
    left: 50%;
    transform: translateX(180px);
  }
}
@media (max-width: 768px) {
  #movie .lp-h2__svg {
    top: 4vw;
    left: 65.5vw;
  }
}
@media (min-width: 769px) {
  #movie .lp-h2__svg svg {
    width: 177px;
  }
}
@media (max-width: 768px) {
  #movie .lp-h2__svg svg {
    width: 21.5vw;
  }
}
#movie .lp-h2__svg[data-inview].clip-path {
  transition: clip-path 0.75s 0.5s ease-in-out;
}

.lp-movie__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 95px;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .lp-movie__content {
    flex-direction: column;
    align-items: center;
    gap: 10vw;
    margin-top: 3vw;
  }
}

.lp-movie__thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 769px) {
  .lp-movie__thumb {
    width: min(485px, 42vw);
  }
}
@media (max-width: 768px) {
  .lp-movie__thumb {
    width: 85.75vw;
  }
}
@media (min-width: 769px) {
  .lp-movie__thumb:nth-child(2) {
    margin-top: 73px;
  }
}
.lp-movie__thumb:hover img {
  filter: brightness(0.8);
}

.lp-movie__thumb-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 2;
  color: #000000;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 769px) {
  .lp-movie__thumb-label {
    margin-top: 18px;
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .lp-movie__thumb-label {
    margin-top: 4.5vw;
    font-size: 4vw;
  }
}

.lp-movie__more-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 280px;
  text-align: center;
}
@media (max-width: 768px) {
  .lp-movie__more-wrap {
    width: 50vw;
    height: 15vw;
  }
}

.lp-movie__more {
  display: inline-flex;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 2em;
  color: #0100FE;
  text-decoration: none;
}
@media (min-width: 769px) {
  .lp-movie__more {
    gap: 8px;
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .lp-movie__more {
    gap: 2vw;
    font-size: 4.5vw;
  }
}
.lp-movie__more,
.lp-movie__more .lp-icon-arrow {
  --lp-icon-bg: #0100FE;
  --lp-icon-fg: #fff;
}
@media (max-width: 768px) {
  .lp-movie__more {
    font-size: 4.5vw;
  }
}
.lp-movie__more:hover .lp-icon-arrow__arrow {
  animation: arrow-hover 0.5s ease-in-out;
}

.lp-links {
  padding: 80px 20px 0;
}
@media (max-width: 768px) {
  .lp-links {
    padding: 10vw 5vw 0;
  }
}

.lp-links__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
  background-color: #0100FE;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media (min-width: 769px) {
  .lp-links__inner {
    max-width: 1400px;
    height: 323px;
    border-radius: 40px;
  }
}
@media (max-width: 768px) {
  .lp-links__inner {
    width: 88.5vw;
    height: 80.75vw;
    border-radius: 10vw;
  }
}
.lp-links__inner .lp-links__bg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.lp-links__inner .lp-links__bg .lp-links__hashtags {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.8;
  color: #0100DC;
  white-space: nowrap;
  pointer-events: none;
  text-align: center;
}
.lp-links__inner .lp-links__bg .lp-links__hashtags--26 {
  font-size: 26px;
}
.lp-links__inner .lp-links__bg .lp-links__hashtags--32 {
  font-size: 32px;
}
@media (max-width: 768px) {
  .lp-links__inner .lp-links__bg .lp-links__hashtags--26 {
    font-size: 6.5vw;
  }
  .lp-links__inner .lp-links__bg .lp-links__hashtags--32 {
    font-size: 8vw;
  }
}

.lp-links__nav {
  display: flex;
  align-items: center;
  gap: 62px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}
@media (max-width: 768px) {
  .lp-links__nav {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5vw;
  }
}

.lp-links__link {
  display: inline-flex;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 2em;
  color: #FFFFFF;
  text-decoration: none;
}
@media (min-width: 769px) {
  .lp-links__link {
    gap: 8px;
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .lp-links__link {
    gap: 2vw;
    font-size: 5vw;
  }
}
.lp-links__link,
.lp-links__link .lp-icon-arrow {
  --lp-icon-bg: #fff;
  --lp-icon-fg: #0100FE;
}
.lp-links__link:hover .lp-icon-arrow__arrow {
  animation: arrow-hover 0.5s ease-in-out;
}

@keyframes arrow-hover {
  0% {
    transform: translate(0);
  }
  50% {
    transform: translate(150%, -150%);
  }
  51% {
    transform: translate(-150%, 150%);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes tap-char-bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@media (min-width: 769px) {
  .lp-footer {
    padding: 54px 40px 0 40px;
  }
}
@media (max-width: 768px) {
  .lp-footer {
    padding: 13.5vw 0 0;
  }
}

.lp-footer__inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .lp-footer__inner {
    gap: 4px;
    padding-bottom: 28px;
    max-width: 1278px;
  }
}
@media (max-width: 768px) {
  .lp-footer__inner {
    flex-direction: column;
    padding: 0 5vw 3.75vw;
  }
}

.lp-footer__copy {
  display: flex;
  width: 100%;
}
@media (min-width: 769px) {
  .lp-footer__copy {
    align-items: center;
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .lp-footer__copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 2vw;
  }
}
.lp-footer__copy .lp-footer__logo {
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  font-size: clamp(80px, 12vw, 200px);
  line-height: 1.5;
  letter-spacing: -0.16em;
  color: #000000;
  -webkit-text-stroke: 1px #000000;
}
@media (min-width: 769px) {
  .lp-footer__copy .lp-footer__logo {
    transform: translateX(-10px);
  }
}
@media (max-width: 768px) {
  .lp-footer__copy .lp-footer__logo {
    font-size: 20.5vw;
  }
}
.lp-footer__copy .lp-footer__tagline {
  margin: 0;
  font-feature-settings: "palt" on;
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #000000;
  position: relative;
}
@media (min-width: 769px) {
  .lp-footer__copy .lp-footer__tagline {
    transform: translate(4px, 14px);
    font-size: clamp(20px, 2.2vw, 33px);
  }
}
@media (max-width: 768px) {
  .lp-footer__copy .lp-footer__tagline {
    margin-top: 2.5vw;
    font-size: 6vw;
  }
}
.lp-footer__copy .lp-footer__tagline span {
  position: absolute;
}
@media (min-width: 769px) {
  .lp-footer__copy .lp-footer__tagline span {
    top: 20px;
    left: -4px;
  }
}
@media (max-width: 768px) {
  .lp-footer__copy .lp-footer__tagline span {
    top: 4vw;
    left: -1vw;
  }
}
@media (min-width: 769px) {
  .lp-footer__copy .lp-footer__tagline span svg {
    width: 221px;
  }
}
@media (max-width: 768px) {
  .lp-footer__copy .lp-footer__tagline span svg {
    width: 42vw;
  }
}

.lp-footer__logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 769px) {
  .lp-footer__logo-block {
    gap: 4px;
    width: 231px;
  }
}
@media (max-width: 768px) {
  .lp-footer__logo-block {
    gap: 0.5vw;
    width: 46.25vw;
  }
}
.lp-footer__logo-block .lp-footer__logo-text {
  margin: 0;
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  line-height: 1;
  color: #000000;
}
@media (min-width: 769px) {
  .lp-footer__logo-block .lp-footer__logo-text {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .lp-footer__logo-block .lp-footer__logo-text {
    font-size: 4vw;
  }
}
.lp-footer__logo-block .lp-footer__logo-img {
  width: 100%;
  height: auto;
  display: block;
}

.lp-footer__nav {
  display: flex;
  align-items: center;
}
@media (min-width: 769px) {
  .lp-footer__nav {
    gap: 86px;
    margin-top: 70px;
  }
}
@media (max-width: 768px) {
  .lp-footer__nav {
    flex-direction: column;
    gap: 8.5vw;
    margin-top: 17vw;
    width: 100%;
  }
}
.lp-footer__nav ul {
  display: flex;
  align-items: center;
  list-style: none;
}
@media (min-width: 769px) {
  .lp-footer__nav ul {
    gap: 52px;
    padding: 30px 0 0 0;
  }
}
@media (max-width: 768px) {
  .lp-footer__nav ul {
    justify-content: center;
    gap: 2.5vw;
    padding: 0;
    width: 100%;
  }
}
.lp-footer__nav .lp-footer__nav-link {
  display: inline-flex;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 2;
  color: #000000;
  text-decoration: none;
  white-space: nowrap;
}
@media (min-width: 769px) {
  .lp-footer__nav .lp-footer__nav-link {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .lp-footer__nav .lp-footer__nav-link {
    font-size: 3.75vw;
  }
}
.lp-footer__nav .lp-footer__nav-link,
.lp-footer__nav .lp-footer__nav-link .lp-icon-arrow {
  --lp-icon-bg: #0100FE;
  --lp-icon-fg: #fff;
}
@media (max-width: 768px) {
  .lp-footer__nav .lp-footer__nav-link .lp-icon-arrow {
    width: 9vw;
    height: 8vw;
  }
}
.lp-footer__nav .lp-footer__nav-link:hover .lp-icon-arrow__arrow {
  animation: arrow-hover 0.5s ease-in-out;
}

.lp-footer__copyline {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  color: #7B7B7B;
}
@media (min-width: 769px) {
  .lp-footer__copyline {
    margin: 0;
    text-align: right;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .lp-footer__copyline {
    margin-top: 7vw;
    text-align: center;
    font-size: 3vw;
  }
}

.lp-footer__recruit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FFFFFF;
}
@media (min-width: 769px) {
  .lp-footer__recruit {
    margin-left: -40px;
    margin-right: -40px;
    padding: 25px 37px 26px 41px;
  }
}
@media (max-width: 768px) {
  .lp-footer__recruit {
    flex-direction: column;
    align-items: flex-start;
    gap: 4vw;
    padding: 6.25vw;
  }
}
@media (min-width: 769px) {
  .lp-footer__recruit img {
    width: 258px;
  }
}
@media (max-width: 768px) {
  .lp-footer__recruit img {
    width: 64.5vw;
  }
}
.lp-footer__recruit ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
}
@media (min-width: 769px) {
  .lp-footer__recruit ul {
    justify-content: flex-end;
  }
}
@media (max-width: 768px) {
  .lp-footer__recruit ul {
    justify-content: flex-start;
  }
}
.lp-footer__recruit ul li {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 2em;
  color: #000000;
}
.lp-footer__recruit ul li + li::before {
  content: " ｜ ";
}
@media (max-width: 768px) {
  .lp-footer__recruit ul li {
    font-size: 3.25vw;
  }
}
