@charset "UTF-8";

* {
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
  background-repeat: no-repeat;
}

html,
body {
  overflow: visible;
}

html {
  font-weight: 400;
  font-size: 62.5%;
}

@supports (-webkit-touch-callout: none) {
  html {
    height: -webkit-fill-available;
  }
}

body {
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.6rem;
  background-color: var(--color-bg);
  color: var(--color-white);
}

@supports (-webkit-touch-callout: none) {
  body {
    min-height: 100vh;
    min-height: -webkit-fill-available;
  }
}

ol,
ul {
  list-style: none;
}

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

select::-ms-expand {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

a,
button {
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-decoration: none;
  color: inherit;
}

.l-header {
  position: sticky;
  transition: transform 200ms ease-out, opacity 200ms ease-out;
}

.l-header.is-fixed {
  position: static;
}

.t-br {
  display: block;
}

.t-ib {
  display: inline-block;
}

.t-hidden {
  display: none;
}

.t-hiddenSp {
  display: none;
}

.t-taL {
  text-align: left !important;
}

.t-taR {
  text-align: right !important;
}

.t-taC {
  text-align: center !important;
}

.t-bold {
  font-weight: 600 !important;
}

.t-italic {
  font-style: italic !important;
}

.t-ttU {
  text-transform: uppercase !important;
}

.t-ttL {
  text-transform: lowercase !important;
}

.t-caution-color {
  color: var(--caution-color);
}

.t-mt0 {
  margin-top: 0 !important;
}

.t-mt125 {
  margin-top: 125px !important;
}

.t-visuallyHidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
}

:root {
  --color-main: #004cbd;
  --color-black: #272b2c;
  --color-white: #fff;
  --color-bg: #242424;
  --color-gray: #b1b1b1;
  --color-light-gray: #dedede;
  --color-border: #707070;
  --color-black-dark: #0f0f0f;
  --font-jp: "Noto Sans", sans-serif;
}

.m-wrapper {
  width: 100%;
  max-width: 1050px;
  padding: 0 30px;
  margin-left: auto;
  margin-right: auto;
}

.c-btn {
  max-width: 414px;
  margin-left: auto;
  margin-right: auto;
}

.c-btn__inner {
  font-size: 1.7rem;
  height: 60px;
  font-weight: 700;
  line-height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg);
  border: 1.5px solid var(--color-white);
  border-radius: 40px;
  position: relative;
  transition: background-color 0.3s ease;
}

.c-btn__inner .-arrow {
  width: 14px;
  height: 14px;
  display: block;
  position: absolute;
  right: 39px;
  top: 23px;
  overflow: hidden;
}

.c-btn__inner .-arrow::before, .c-btn__inner .-arrow::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../../assets/img/common/icon-arrow-right.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
}

.c-btn__inner .-arrow::before {
  left: 0;
}

.c-btn__inner .-arrow::after {
  left: -100%;
}

@keyframes leftToRight {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}

.c-bgLayer {
  position: relative;
}

.c-bgLayer::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 375px;
  background-image: url(../../assets/img/common/bg-section-bottom_pc.webp);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: -10;
}

.c-loading {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 55px);
  height: calc(100lvh - 55px);
  background-color: var(--color-bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.7s ease-in-out, visibility 0.7s ease-in-out;
}

.c-loading::before {
  content: "";
  display: block;
  width: 149.8666666667vw;
  height: 149.8666666667vw;
  background-image: url(../../assets/img/top/logo-mark_full.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  bottom: -117.0666666667vw;
  transform: translateX(-50%);
  transition: bottom 0.7s ease-in-out;
}

.c-loading.is-loaded {
  opacity: 0;
  visibility: hidden;
}

.c-loading.is-loaded::before {
  bottom: -122.6666666667vw;
}

.c-loading__progress {
  width: 163px;
  height: 1px;
  background-color: #4e4e4e;
  margin: 10px 0 4px;
}

.c-loading__bar {
  transition: width 3s ease-in-out;
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #b6d33d 0%, #49a687 29.8%, #333333 62%, #ce4562 82%, #fff 100%);
}

.c-loading__text {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  line-height: 2.7rem;
}

.c-share {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.c-title {
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 3.3rem;
  text-align: center;
}

.js-horizontal-wrapper {
  overflow: hidden;
}

.js-horizontal-wrapper .horizontal-container {
  will-change: transform;
}

.horizontal-container {
  display: flex;
  height: 100%;
  flex-wrap: nowrap;
}

.p-featureMv {
  padding-bottom: 75px;
  overflow: hidden;
}

.p-featureMv__head {
  position: relative;
  z-index: 1;
}

.p-featureMv__video {
  width: 100%;
  height: auto;
  aspect-ratio: 1366/400;
  position: relative;
  z-index: 1;
}

.p-featureMv__video::before {
  inset: 0;
  content: "";
  position: absolute;
  background: url("../../assets/img/performance/cover-mv.svg") no-repeat center center/cover;
}

.p-featureMv__video video {
  width: 100%;
  height: auto;
  aspect-ratio: 1366/400;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.p-featureMv__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-featureMv__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding-bottom: 40px;
}

.p-featureMv__title img {
  opacity: 0.2;
}

.p-featureMv__subTitle {
  font-weight: 400;
  font-size: 2.537rem;
  line-height: 1.94;
  text-align: center;
  text-transform: uppercase;
  color: #afafaf;
  display: flex;
  align-items: center;
  gap: 15px;
}

.p-featureMv__desc {
  font-weight: 700;
  font-size: 3.8rem;
  line-height: 1.47;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-white);
  margin-top: 29px;
  position: relative;
  z-index: 1;
  padding-bottom: 56px;
}

.p-featureMv__desc::before {
  content: "";
  width: 52.2794117647vw;
  aspect-ratio: 711/72;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url("../../assets/img/performance/light-bottom.webp") no-repeat center center/cover;
}

.p-featureMv__desc.-fade-out::before {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.p-featureMv__scroll {
  overflow: hidden;
}

.p-featureMv__scroll-container {
  will-change: transform;
}

.p-featureMv__scroll-wrapper {
  position: relative;
  z-index: 1;
  max-width: 2060px;
  margin-left: auto;
  margin-right: auto;
}

.p-featureMv__scroll-img {
  position: relative;
  width: 2060px;
  background-image: url("../../assets/img/performance/bg-horizonal-scroll.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.p-featureMv__scroll-img>img {
  max-width: unset;
  margin-inline: 65px;
  display: block;
  position: relative;
  z-index: 2;
}

.p-featureMv__scroll-circle {
  display: block;
  background-image: url("../../assets/img/performance/circle-horizonal-scroll.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  opacity: 0;
  transform: scale(0);
}

@keyframes bounce {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  50% {
    opacity: 1;
    transform: scale(1.3);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.p-featureMv__scroll-circle.is-active {
  animation: bounce 0.5s ease-in-out forwards;
}

.p-featureMv__scroll-circle.-pos1 {
  width: 69px;
  height: 69px;
  top: 43%;
  left: 2.5%;
}

.p-featureMv__scroll-circle.-pos2 {
  width: 104px;
  height: 104px;
  top: 32%;
  left: 25.6%;
}

.p-featureMv__scroll-circle.-pos3 {
  width: 140px;
  height: 140px;
  top: 40%;
  left: 50.7%;
}

.p-featureMv__scroll-circle.-pos4 {
  width: 79px;
  height: 79px;
  left: 69.6%;
  top: 38%;
}

.p-featureMv__scroll-circle.-pos5 {
  width: 103px;
  height: 103px;
  left: 72.7%;
  top: 36%;
}

.p-featureMv__scroll-circle.-pos6 {
  width: 137px;
  height: 137px;
  left: 80.4%;
  top: 34%;
}

.p-featureMv__scroll-tooltip {
  position: absolute;
  transform-origin: center center;
  z-index: 2;
}

.p-featureMv__scroll-tooltip.-pos1 {
  top: 48%;
  left: 3.3%;
}

.p-featureMv__scroll-tooltip.-pos2 {
  top: 14.5%;
  left: 20.9%;
}

.p-featureMv__scroll-tooltip.-pos3 {
  top: 20.4%;
  left: 46%;
}

.p-featureMv__scroll-tooltip.-pos4 {
  top: 43.5%;
  left: 59.5%;
}

.p-featureMv__scroll-tooltip.-pos5 {
  top: 4.5%;
  left: 63.9%;
}

.p-featureMv__scroll-tooltip.-pos6 {
  top: 4.5%;
  right: 1.57%;
}

.p-featureMv__scroll-tooltip.-pos7 {
  right: 3.19%;
  top: 35.8%;
}

.p-featureHowToUse {
  padding-top: 50px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.p-featureHowToUse::before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #242424 0%, #b6d33d 20.19%, #49a687 38.94%, #333333 54.81%, #ce4562 69.23%, #ffffff 85.58%, #242424 100%);
}

.p-featureHowToUse__scroll {
  margin-inline: -35px;
  padding-inline: 35px;
  overflow: hidden;
}

.p-featureHowToUse__scroll .p-featureHowToUse__block {
  min-width: 990px;
}

.p-featureHowToUse__title {
  position: relative;
  padding-bottom: 56px;
}

.p-featureHowToUse__title::before {
  content: "";
  width: 52.2794117647vw;
  aspect-ratio: 711/72;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url("../../assets/img/performance/light-bottom.webp") no-repeat center center/cover;
  transition: opacity 0.2s ease-in-out;
}

.p-featureHowToUse__title.-fade-out::before {
  opacity: 0;
}

.p-featureHowToUse__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-featureHowToUse__body {
  min-width: 1360px;
  width: 100%;
  overflow: hidden;
  padding-bottom: 77px;
  background: url("../../assets/img/performance/bg-gradient-body.webp") no-repeat center center/cover;
  position: relative;
  z-index: 1;
}

.p-featureHowToUse__body::before, .p-featureHowToUse__body::after {
  content: "";
  position: absolute;
}

.p-featureHowToUse__body::before {
  width: 26.1029411765vw;
  aspect-ratio: 355/278;
  background: url("../../assets/img/performance/player-01.svg") no-repeat center center/cover;
  bottom: 0;
  transform: translateY(20%);
  left: 5.3%;
  z-index: 2;
}

.p-featureHowToUse__body::after {
  top: 3%;
  right: 0;
  width: 24.4852941176vw;
  height: auto;
  aspect-ratio: 333/402;
  background: url("../../assets/img/performance/player-02.svg") no-repeat center center/cover;
}

.p-featureHowToUse__block {
  margin-top: 85px;
  position: relative;
  z-index: 1;
}

.p-featureHowToUse__block::before {
  content: "";
  width: 170px;
  height: 15px;
  background: #009d95;
  position: absolute;
  z-index: -1;
  left: 40%;
  top: 50.5%;
  transform: rotate(-156deg);
}

.p-featureHowToUse__block .-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 22px;
  grid-row-gap: 20px;
  position: relative;
  z-index: 1;
}

.p-featureHowToUse__block .-list::before {
  content: "";
  width: 62%;
  aspect-ratio: 466/209;
  border-top: 15px solid #009d95;
  border-bottom: 15px solid #c73443;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.p-featureHowToUse__block .-list .-item {
  background: var(--color-black-dark);
  padding-block: 28px 27px;
  position: relative;
  z-index: 1;
  border-radius: 6px;
  overflow: hidden;
  background-image: url("../../assets/img/performance/bg-howtouse.webp");
  background-size: 250px;
  background-position: top left;
  background-repeat: repeat;
}

.p-featureHowToUse__block .-list .-item:first-child {
  padding-left: 30px;
  padding-right: 30px;
}

.p-featureHowToUse__block .-list .-item:first-child .-title {
  padding: 0;
}

.p-featureHowToUse__block .-list .-item.-row {
  display: flex;
}

.p-featureHowToUse__block .-list .-item.-row .-inner:not(:last-child) {
  border-right: 1px solid #414141;
}

.p-featureHowToUse__block .-list .-item.-row .-inner.-w182 {
  width: 181.5px;
}

.p-featureHowToUse__block .-list .-item.-row .-inner.-w152 {
  width: 152px;
}

.p-featureHowToUse__block .-list .-item.-row .-inner.-large {
  width: calc(100% - 181.5px);
}

.p-featureHowToUse__block .-list .-item .-title {
  padding-inline: 24px 20px;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.44;
  letter-spacing: 0;
  text-transform: uppercase;
}

.p-featureHowToUse__block .-list .-item .-desc {
  font-size: 1.6rem;
  line-height: 1.5;
}

.p-featureHowToUse__block .-list .-item .-img {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.p-featureHowToUse__block .-list .-item:nth-child(1) {
  grid-area: 1/1/3/2;
  width: 236px;
  padding-top: 32px;
}

.p-featureHowToUse__block .-list .-item:nth-child(1) .-img {
  margin-top: 29px;
}

.p-featureHowToUse__block .-list .-item:nth-child(2) {
  grid-area: 1/2/2/3;
  width: 180px;
}

.p-featureHowToUse__block .-list .-item:nth-child(3) {
  grid-area: 2/2/3/3;
  width: 180px;
}

.p-featureHowToUse__block .-list .-item:nth-child(3) .-img {
  margin-top: 15px;
}

.p-featureHowToUse__block .-list .-item:nth-child(4) {
  grid-area: 1/3/2/6;
  width: 515px;
  margin-left: auto;
}

.p-featureHowToUse__block .-list .-item:nth-child(4) .-inner:nth-child(1) .-img {
  margin-top: 20px;
}

.p-featureHowToUse__block .-list .-item:nth-child(4) .-inner:nth-child(2) .-img {
  margin-top: 38px;
}

.p-featureHowToUse__block .-list .-item:nth-child(4) .-inner:nth-child(3) .-img {
  margin-top: 42px;
}

.p-featureHowToUse__block .-list .-item:nth-child(5) {
  grid-area: 2/3/3/6;
  width: 515px;
  margin-left: auto;
}

.p-featureHowToUse__block .-list .-item:nth-child(5) .-large .-title::after {
  /* content: "※";
  font-size: 1.2rem;
  vertical-align: top; */
}

.p-featureHowToUse__block .-list .-item:nth-child(5) .-large .-img {
  margin-top: 8px;
  gap: 22px;
}

.p-featureHowToUse__block .-list .-item:nth-child(5) .-large .-img img {
  margin: 0;
}

.p-featureHowToUse__block .-list .-item:nth-child(5) .-large .-img figcaption {
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.63;
  letter-spacing: 0;
  text-transform: uppercase;
  width: 110px;
  text-align: left;
  /* text-indent: -12px; */
  transform: translateY(5px);
}

.p-featureHowToUse__slide {
  padding-block: 75px 89px;
  position: relative;
  z-index: 1;
}

.p-featureHowToUse__slide::before {
  content: "";
  height: 125px;
  width: 100vw;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #252525 0%, rgba(36, 36, 36, 0) 100%);
  z-index: 1;
  top: 0;
}

.p-featureHowToUse__slide .-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.p-featureHowToUse__slide .-list .-item {
  border: 1px solid #000;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  width: calc((100% - 20px) / 2);
  display: flex;
  align-items: center;
  padding-inline: 53px 49px;
  overflow: hidden;
}

.p-featureHowToUse__slide .-list .-item .-layer {
  position: absolute;
  z-index: 0;
  inset: 0;
}

.p-featureHowToUse__slide .-list .-item .-img {
  z-index: 2;
}

.p-featureHowToUse__slide .-list .-item::before {
  content: "";
  inset: 0;
  position: absolute;
  border-radius: 9px;
  z-index: -1;
  background: linear-gradient(328.54deg, #4e0313 -13.78%, #000000 44.61%, #09402e 95.12%, #002b1d 119.4%);
}

.p-featureHowToUse__slide .-list .-item .-inner {
  width: calc(100% - 80px);
  padding-left: 29px;
  padding-block: 23px;
  z-index: 2;
}

.p-featureHowToUse__slide .-list .-item .-inner .-title {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.16;
  letter-spacing: 0;
  text-transform: uppercase;
}

.p-featureHowToUse__slide .-list .-item .-inner .-desc {
  font-weight: 400;
  margin-top: 9px;
  font-size: 1.6rem;
  line-height: 1.43;
  letter-spacing: 0;
  text-transform: uppercase;
}

.p-featureHowToUse__slideVideo {
  position: absolute;
  width: 100vw;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.p-featureHowToUse__slideVideo video {
  width: 100%;
  height: 726px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.p-featureEvolution {
  padding-block: 100px 92px;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--color-border);
}

.p-featureEvolution .c-title {
  text-align: left;
}

.p-featureEvolution__container {
  max-width: 870px;
  margin-inline: auto;
}

.p-featureEvolution__desc {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.55;
  text-transform: uppercase;
  color: var(--color-white);
  margin-top: 20px;
}

.p-featureEvolution__desc span {
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.58;
  display: block;
  text-transform: uppercase;
  color: var(--color-gray);
  margin-top: 10px;
}

.p-featureEvolution__video {
  margin-top: 62px;
}

.p-featureEvolution__video video {
  width: 100%;
  height: 501px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.p-featureStrong {
  background: #282828;
  padding-bottom: 147px;
}

.p-featureStrong__container {
  max-width: 870px;
  margin-inline: auto;
}

.p-featureStrong__parallax {
  height: 440px;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  background-color: #000;
}

.p-featureStrong__parallax::before {
  content: "";
  inset: 0;
  position: absolute;
  background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.6;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.p-featureStrong__parallax .c-title {
  text-align: left;
  position: relative;
  z-index: 1;
  padding-bottom: 15px;
}

.p-featureStrong__parallaxBg {
  background: url("../../assets/img/performance/img-parallax.webp") no-repeat center center/cover;
  position: absolute;
  inset: 0;
  opacity: 0.5;
  will-change: background-position;
}

.p-featureStrong__desc {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.55;
  text-transform: uppercase;
  color: var(--color-white);
  /* margin-top: 59px; */
  margin-bottom: 40px;
}

.p-featureStrong__desc span {
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.58;
  display: block;
  text-transform: uppercase;
  color: var(--color-gray);
  margin-top: 10px;
}

.p-featureStrong__video video {
  width: 100%;
  height: auto;
}

.p-featureStrong__slide {
  padding-block: 47px;
  background: linear-gradient(140.23deg, #505050 4.04%, #000000 87.23%);
  overflow: hidden;
  position: relative;
}

.p-featureStrong__slide .swiper-wrapper .swiper-slide {
  position: relative;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  width: 81.3970588235%;
}

.p-featureStrong__slide .swiper-wrapper .swiper-slide .p-featureStrong__slideImg {
  width: 62.6016260163%;
}

.p-featureStrong__slide .swiper-wrapper .swiper-slide .p-featureStrong__slideImg img {
  width: 100%;
  height: auto;
  aspect-ratio: 693/546;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.p-featureStrong__slide .swiper-wrapper .swiper-slide .p-featureStrong__slideContent {
  position: absolute;
  width: 100%;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  height: 100%;
  top: unset;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.p-featureStrong__slide .swiper-wrapper .swiper-slide .p-featureStrong__slideContent::before {
  content: "";
  width: 43%;
  height: 100%;
  position: absolute;
  left: 0;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  z-index: -1;
}

.p-featureStrong__slide .swiper-wrapper .swiper-slide .p-featureStrong__slideContent .-ttl {
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.37;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--color-white);
}

.p-featureStrong__slide .swiper-wrapper .swiper-slide .p-featureStrong__slideContent .-desc {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.62;
  letter-spacing: 0;
  color: var(--color-white);
  margin-top: 16px;
}

.p-featureStrong__slide .swiper-wrapper .swiper-slide .p-featureStrong__slideContent .-name {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.84;
  letter-spacing: 0;
  text-align: right;
  text-transform: uppercase;
  margin-left: auto;
  margin-top: 44px;
}

.p-featureStrong__slide .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #cbcbcb;
  border: 1px solid #cbcbcb;
  opacity: 1;
}

.p-featureStrong__slide .swiper-pagination-bullet-active {
  background: #48ab8b;
  border-color: #fff;
}

.p-featureStrong__pv {
  margin-top: 100px;
}

.p-featureStrong__btn {
  display: flex;
  gap: 10px;
  margin-top: 57px;
}

.p-featureStrong__btn .c-btn {
  width: 100%;
}

.p-featureStrong__btn .c-btn:nth-child(3) .c-btn__inner {
  padding-right: 20px;
}

.p-featureStrong__btn .c-btn:nth-child(3) .c-btn__inner .-arrow {
  right: 17px;
}

.p-featureStrong__btn .c-btn__inner {
  border-color: rgba(255, 255, 255, 0.2);
  height: 66px;
}

.p-featureStrong__btn .c-btn__inner span {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.73;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.p-featureStrong__btn .c-btn__inner .-arrow {
  top: 50%;
  transform: translateY(-50%);
  right: 27px;
  width: 14px;
  height: 14px;
}

.p-topMv {
  background-color: var(--color-black);
  position: relative;
  pointer-events: none;
}

.p-topMv__first {
  width: 100%;
  background-color: var(--color-black);
  height: 100vh;
  height: 100lvh;
  padding-top: 125px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  overflow: hidden;
  min-height: 700px;
}

.p-topMv__logo {
  text-align: center;
  padding: 0 43px;
}

.p-topMv__logo img {
  width: 77.0666666667vw;
}

.p-topMv__img {
  margin-top: 32px;
  position: absolute;
  left: 50%;
  top: clamp(168px, 21.1428571429lvh, 500px);
  transform: translateX(-50%);
}

.p-topMv__img img {
  max-width: none;
  width: 149.8666666667vw;
}

.p-topMv__videoContainer {
  height: 650lvh;
  position: relative;
  /* Androidの縦スクロールを阻害しない */
  touch-action: pan-y;
  /* ネストスクロールの引っ張られを抑える（必要に応じて） */
  overscroll-behavior-y: contain;
  /* 動的ツールバー対策で 100vh より 100dvh 推奨 */
}

.p-topMv__video {
  width: 100%;
  height: calc(100vh - 55px);
  height: calc(100lvh - 55px);
  -o-object-fit: cover;
  object-fit: cover;
}

.p-topMv__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-topAbout {
  position: relative;
  overflow: hidden;
  margin-top: -30lvh;
  background-color: var(--color-bg);
}

.p-topAbout.c-bgLayer::after {
  z-index: 0;
}

.p-topAbout__container {
  padding-top: 0;
  padding-bottom: 48px;
}

.p-topAbout__title {
  font-weight: 700;
  position: relative;
  font-size: 3.8rem;
  line-height: 4.8rem;
}

.p-topAbout__title span {
  position: relative;
  z-index: 2;
  display: inline-block;
}

.p-topAbout__desc {
  line-height: 3.0rem;
  font-weight: 600;
  margin-top: 35px;
  position: relative;
  z-index: 2;
}

.p-topAbout__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.p-topStickyContainer .p-topFeature:not(:first-of-type) {
  border-top: 1px solid var(--color-border);
}

.p-topSticky {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  background-color: var(--color-bg);
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.p-topSticky.is-active {
  opacity: 1;
  visibility: visible;
}

.p-topSticky__gradient {
  width: 100%;
  height: 16px;
  position: relative;
}

.p-topSticky__gradient::before, .p-topSticky__gradient::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.p-topSticky__gradient::before {
  background: linear-gradient(90deg, #fff 0%, #ce4562 23.56%, #333 54.81%, #49a687 75.96%, #b6d33d 99.04%);
}

.p-topSticky__gradient::after {
  background: linear-gradient(0deg, #242424 0%, rgba(36, 36, 36, 0) 100%);
}

.p-topSticky__content {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.p-topSticky__content::before {
  content: "";
  display: block;
  width: 488px;
  height: 112px;
  border-radius: 50%;
  position: absolute;
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
}

.p-topSticky__label {
  font-size: 2.3rem;
  line-height: 3.6rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.p-topSticky__label.is-active {
  opacity: 1;
  visibility: visible;
}

.p-topSticky__label.is-active-up {
  opacity: 1;
  visibility: visible;
  transform: translateY(-20px);
}

.p-topSticky__rubberContainer {
  position: relative;
  height: 51px;
  z-index: 2;
}

.p-topSticky__rubber {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: 32px 51px;
  background-position: center;
  background-repeat: repeat;
  filter: blur(0);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.p-topSticky__rubber.is-active {
  opacity: 1;
  visibility: visible;
}

.p-topSticky__rubber.is-active.-rubber01 {
  opacity: 0.5;
}

.p-topSticky__rubber::before, .p-topSticky__rubber::after {
  content: "";
  display: block;
  width: 17.0666666667vw;
  height: 100%;
  position: absolute;
  top: 0;
}

.p-topSticky__rubber::before {
  left: 0;
  background: linear-gradient(90deg, rgba(36, 36, 36, 0.25) 0%, rgba(36, 36, 36, 0) 100%);
}

.p-topSticky__rubber::after {
  right: 0;
  background: linear-gradient(-90deg, rgba(36, 36, 36, 0.25) 0%, rgba(36, 36, 36, 0) 100%);
}

.p-topSticky__rubber.-rubber01 {
  background-image: url(../../assets/img/top/bg-rubber.svg);
}

.p-topSticky__rubber.-rubber02 {
  background-image: url(../../assets/img/top/bg-rubber02.svg);
}

.p-topSticky__rubber.-rubber03 {
  background-image: url(../../assets/img/top/bg-rubber03.svg);
}

.p-topSticky__rubber.-rubber04 {
  background-image: url(../../assets/img/top/bg-rubber04.svg);
}

.p-topSticky__rubber.-rubber05 {
  background-image: url(../../assets/img/top/bg-rubber04.svg);
}

.p-topSticky__rubber.-rubber06 {
  background-image: url(../../assets/img/top/bg-rubber.svg);
}

.p-topSticky__rubber.-rubber07 {
  background-image: url(../../assets/img/top/bg-rubber07.svg);
}

.p-topSticky__rubberImg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
}

.p-topSticky__rubberImg img {
  border-radius: 50%;
}

.p-topFeature.-feature01 {
  padding: 60px 0 60px;
}

.p-topFeature.-feature01 .p-topFeature__video {
  margin-top: 30px;
}

.p-topFeature.-feature02 {
  padding: 60px 0 100px;
}

.p-topFeature.-feature02 .p-topFeature__video {
  margin-top: 30px;
}

.p-topFeature.-feature02 .p-topFeature__desc {
  margin-top: 28px;
}

.p-topFeature.-feature03 {
  padding: 60px 0 100px;
  background-image: url(../../assets/img/top/bg-feature03.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.p-topFeature.-feature04 {
  border-top: 1px solid var(--color-border);
  padding: 60px 0 0;
}

.p-topFeature.-feature05 {
  padding: 60px 0 100px;
  border-top: none !important;
}

.p-topFeature.-feature06 {
  padding: 60px 0 100px;
  background-image: url(../../assets/img/top/bg-feature06.webp);
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
  position: relative;
}

.p-topFeature.-feature06::before {
  content: "";
  display: block;
  width: 100%;
  height: 142px;
  background: linear-gradient(180deg, #242424 0%, rgba(36, 36, 36, 0) 100%);
  position: absolute;
  top: 641px;
  left: 0;
}

.p-topFeature.-feature06 .m-wrapper {
  position: relative;
  z-index: 2;
}

.p-topFeature.-feature06 .p-topFeature__img img {
  border-radius: 5px;
}

.p-topFeature.-feature06 .p-featureStrong__btn {
  margin-top: 46px;
}

.p-topFeature__title {
  font-size: 2.1rem;
  line-height: 3.3rem;
  font-weight: 700;
}

.p-topFeature__title span {
  display: inline-block;
}

.p-topFeature__title.-text-center {
  text-align: left;
}

.p-topFeature__img {
  margin: 30px 0 24px;
}

.p-topFeature__sponge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 4px;
  margin-top: 40px;
}

.p-topFeature__sponge .-img:nth-child(1) .-logo img {
  width: 122px;
}

.p-topFeature__sponge .-img:last-child .-logo img {
  width: 112px;
}

.p-topFeature__sponge .-img>img {
  border-radius: 5px;
}

.p-topFeature__sponge .-triangle {
  width: 12px;
  height: 42px;
  background-color: #a4a4a4;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  margin-bottom: -50px;
  flex-shrink: 0;
  margin-left: 4px;
}

.p-topFeature__sponge .-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 23px;
}

.p-topFeature__sponge .-logo+img {
  margin-top: 16px;
}

.p-topFeature__desc {
  margin-top: 30px;
  font-size: 1.6rem;
  line-height: 2.4rem;
}

.p-topFeature__note {
  margin-top: 10px;
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--color-light-gray);
  order: 4;
}

.p-topFeature__note .-sup {
  vertical-align: top;
}

.p-topFeature__video {
  line-height: 1;
  max-width: 724px;
  margin-left: auto;
  margin-right: auto;
}

.p-topFeature__video video {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.p-topFeature__videoCaption {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.9rem;
  margin-top: 2px;
  color: var(--color-light-gray);
}

.p-topFeature__videos {
  display: flex;
  justify-content: center;
  gap: 0 27px;
  margin-top: 50px;
}

.p-topFeature__videosInner {
  max-width: 270px;
}

.p-topFeature__videosInner video {
  width: 100%;
  height: auto;
}

.p-topFeature__videosInner .-logo {
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-topFeature__videosInner .-img {
  margin: 12px 0 5px;
}

.p-topFeature__videosInner .-img img {
  border-radius: 5px 5px 0 0;
}

.p-topFeature__packages {
  display: flex;
  justify-content: space-between;
  gap: 0 25px;
  margin-top: 30px;
}

.p-topFeature__packages>figure:nth-child(2) {
  margin-top: 20px;
}

.p-topFeature__packages>figure:nth-child(3) {
  margin-top: 40px;
}

.p-topFeature__pack::after {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  background-color: #d9d9d9;
  border-radius: 50%;
  opacity: 0.27;
  filter: blur(6px);
  margin-top: 12px;
}

.p-topFeature__pack>img {
  box-shadow: 0 0 16px 0 rgba(255, 255, 255, 0.3);
}

.p-topFeature__pack figcaption {
  margin-top: 22px;
}

.p-topFeature__rackets {
  display: flex;
  justify-content: space-between;
  gap: 0 17px;
  margin-top: 40px;
}

.p-topFeature__racketItem {
  max-width: 470px;
  width: calc(50% - 8.5px);
}

.p-topFeature__racketImg .-logo {
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-topFeature__racketImg>img {
  border-radius: 5px;
  margin-top: 11px;
}

.js-sticky-desc {
  position: relative;
  margin-top: 10px;
}

.js-sticky-desc .p-topFeature__desc {
  margin-top: 0;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.js-sticky-desc .is-active {
  opacity: 1;
  visibility: visible;
}

.js-sticky-02 {
  height: 300vh;
  height: 300lvh;
}

.p-topSubFeature {
  min-height: 100vh;
  min-height: 100lvh;
  position: sticky;
  top: 0;
}

.p-topSubFeature .m-wrapper, .p-topSubFeature__inner {
  min-height: 100vh;
  min-height: 100lvh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px 0;
}

.p-topSubFeature__content {
  width: 100%;
}

.p-topSubFeature__video {
  max-width: 724px;
  width: 100%;
}

.p-topSubFeature__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-topFeature02 {
  padding: 56px 0 0;
  background-image: url(../../assets/img/top/bg-feature02.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.p-topFeature02__title {
  text-align: left;
  font-weight: 700;
  font-size: 2.9rem;
  line-height: 3.9rem;
}

.p-topFeature02__title span {
  display: inline-block;
}

.p-topFeature02__list {
  margin-top: 30px;
}

.p-topFeature02__listInner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 28px 30px 60px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 30px 0;
}

.p-topFeature02__listText .-title {
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 3.3rem;
}

.p-topFeature02__listText .-desc {
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin-top: 30px;
}

.p-topFeature02__listImg img {
  border-radius: 10px;
}

.p-topFeature02__listImg figcaption {
  text-align: left;
  font-size: 1.2rem;
  line-height: 1.9rem;
  margin-top: 17px;
  color: var(--color-gray);
}

.-sup {
  font-size: 1rem;
  vertical-align: super;
}

@media screen and (max-width: 767px) {
  .re-header-inner {
    position: static;
  }

  .re-header-logo,
  .re-header-ec,
  .re-header-nav {
    position: absolute;
  }

  .p-featureMv {
    padding-bottom: 34px;
  }

  .p-featureMv__video {
    height: 298px;
  }

  .p-featureMv__video::before {
    inset: 0 -1px -1px 0;
    background: url("../../assets/img/performance/cover-mv-sp.svg") no-repeat center center/cover;
  }

  .p-featureMv__video video {
    height: 298px;
    -o-object-position: top;
    object-position: top;
  }

  .p-featureMv__content {
    padding: 29px 20px;
    align-items: flex-start;
  }

  .p-featureMv__content .m-wrapper {
    padding: 0;
  }

  .p-featureMv__title {
    gap: 14px;
    max-width: 335px;
    margin-inline: auto;
    padding-bottom: 0;
  }

  .p-featureMv__subTitle {
    font-size: 1.8rem;
    line-height: 1.5;
    gap: 8px;
  }

  .p-featureMv__desc {
    font-size: 2.1rem !important;
    line-height: 1.5714285714;
    margin-top: -98px;
    padding-bottom: 19px;
  }

  .p-featureMv__desc::before {
    width: 100vw;
    aspect-ratio: 335/36;
  }

  .p-featureMv__scroll-img>img {
    margin-inline: 1px;
  }

  .p-featureHowToUse {
    padding-top: 20px;
  }

  .p-featureHowToUse::before {
    height: 1px;
  }

  .p-featureHowToUse__scroll .p-featureHowToUse__block {
    min-width: 1320px;
  }

  .p-featureHowToUse__title {
    padding-bottom: 24px;
  }

  .p-featureHowToUse__title::before {
    width: 100vw;
    aspect-ratio: 335/36;
  }

  .p-featureHowToUse__body {
    padding-bottom: 54px;
    min-width: 1415px;
  }

  .p-featureHowToUse__body .m-wrapper {
    max-width: calc(100% - 93px);
    margin-left: 28px;
    margin-right: auto;
  }

  .p-featureHowToUse__body::before {
    width: 293px;
  }

  .p-featureHowToUse__body::after {
    width: 334px;
    right: -7%;
  }

  .p-featureHowToUse__block {
    margin-top: 45px;
  }

  .p-featureHowToUse__block::before {
    height: 20px;
    top: 48%;
  }

  .p-featureHowToUse__block .-list {
    grid-column-gap: 30px;
    grid-row-gap: 20px;
  }

  .p-featureHowToUse__block .-list::before {
    border-width: 20px;
    aspect-ratio: 466/160;
  }

  .p-featureHowToUse__block .-list .-item.-row .-inner.-large {
    width: calc(100% - 216px);
  }

  .p-featureHowToUse__block .-list .-item .-title {
    padding-inline: 30px 10px;
  }

  .p-featureHowToUse__block .-list .-item:nth-child(1) {
    width: 315px;
  }

  .p-featureHowToUse__block .-list .-item:nth-child(2) {
    width: 240px;
  }

  .p-featureHowToUse__block .-list .-item:nth-child(3) {
    width: 240px;
  }

  .p-featureHowToUse__block .-list .-item:nth-child(4) {
    width: 674px;
  }

  .p-featureHowToUse__block .-list .-item:nth-child(4) .-inner:nth-child(1).-w182 {
    width: 222px;
  }

  .p-featureHowToUse__block .-list .-item:nth-child(4) .-inner:nth-child(2).-w182 {
    width: 276px;
  }

  .p-featureHowToUse__block .-list .-item:nth-child(5) {
    width: 674px;
  }

  .p-featureHowToUse__block .-list .-item:nth-child(5) .-inner:nth-child(1).-w182 {
    width: 216px;
  }

  .p-featureHowToUse__block .-list .-item:nth-child(5) .-large .-img figcaption {
    transform: translate(23px, -60px);
  }

  .p-featureHowToUse__slide {
    padding-block: 54px 72px;
  }

  .p-featureHowToUse__slide .-list .-item {
    width: 100%;
    padding-inline: 20px;
    padding: 0 18px 0 26px;
  }

  .p-featureHowToUse__slide .-list .-item .-layer {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }

  .p-featureHowToUse__slide .-list .-item .-img {
    width: 83px;
  }

  .p-featureHowToUse__slide .-list .-item .-inner {
    width: calc(100% - 83px);
    padding-left: 24px;
  }

  .p-featureHowToUse__slide .-list .-item .-inner .-title {
    font-size: 2.2rem;
  }

  .p-featureHowToUse__slideVideo video {
    height: 100%;
  }

  .p-featureEvolution {
    padding-block: 60px;
  }

  .p-featureEvolution .c-title {
    order: 1;
  }

  .p-featureEvolution__container {
    display: flex;
    flex-direction: column;
  }

  .p-featureEvolution__desc {
    order: 3;
  }

  .p-featureEvolution__video {
    margin-top: 30px;
    order: 2;
    margin-inline: -30px;
  }

  .p-featureEvolution__video video {
    aspect-ratio: 376/212;
    height: auto;
  }

  .p-featureStrong {
    padding-bottom: 62px;
  }

  .p-featureStrong__container .c-title {
    text-align: center;
  }

  .p-featureStrong__parallax {
    height: auto;
    aspect-ratio: 375/217;
  }

  .p-featureStrong__parallax .c-title {
    padding-bottom: 0;
  }

  .p-featureStrong__parallaxBg {
    width: 100%;
    aspect-ratio: 375/217;
    inset: unset;
    top: 0;
    left: 0;
  }

  .p-featureStrong__slide {
    background: linear-gradient(to top, #242424 0, #242424 40%, transparent 100%), linear-gradient(140.23deg, #505050 4.04%, #000000 87.23%);
  }

  .p-featureStrong__slide .swiper-wrapper .swiper-slide .p-featureStrong__slideImg {
    width: 100%;
    height: 394px;
  }

  .p-featureStrong__slide .swiper-wrapper .swiper-slide .p-featureStrong__slideImg img {
    aspect-ratio: 315/282;
    height: auto;
  }

  .p-featureStrong__slide .swiper-wrapper .swiper-slide .p-featureStrong__slideContent::before {
    width: 100%;
    height: 100%;
    transform: translateX(0);
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000000 100%);
  }

  .p-featureStrong__slide .swiper-wrapper .swiper-slide .p-featureStrong__slideContent .-ttl {
    line-height: 1.2307692308;
  }

  .p-featureStrong__slide .swiper-wrapper .swiper-slide .p-featureStrong__slideContent .-desc {
    line-height: 1.5;
  }

  .p-featureStrong__pv {
    margin-top: 40px;
  }

  .p-featureStrong__pv .m-wrapper {
    padding: 0;
  }

  .p-featureStrong__btn {
    flex-wrap: wrap;
    margin-top: 41px;
  }

  .p-featureStrong__btn .c-btn {
    width: calc(100% - 60px);
    margin-inline: auto;
  }

  .p-featureStrong__btn .c-btn__inner span {
    font-size: 1.6rem !important;
  }

  .p-topMv__img img {
    min-height: 562px;
    min-width: 562px;
  }

  .p-topAbout {
    padding-bottom: 30px;
  }

  .p-topAbout__desc {
    white-space: nowrap;
  }

  .p-topFeature.-feature01 .p-topFeature__inner {
    display: flex;
    flex-direction: column;
  }

  .p-topFeature.-feature01 .p-topFeature__title {
    order: 1;
  }

  .p-topFeature.-feature01 .p-topFeature__desc {
    order: 3;
  }

  .p-topFeature.-feature01 .p-topFeature__note {
    order: 4;
  }

  .p-topFeature.-feature01 .p-topFeature__video {
    order: 2;
  }

  .p-topFeature.-feature04 .p-topFeature__inner {
    display: flex;
    flex-direction: column;
  }

  .p-topFeature.-feature04 .p-topFeature__inner .p-topFeature__title {
    order: 1;
  }

  .p-topFeature.-feature04 .p-topFeature__inner .p-topFeature__desc {
    order: 3;
  }

  .p-topFeature.-feature04 .p-topFeature__inner .p-topFeature__packages {
    order: 2;
  }

  .p-topFeature.-feature05 .p-topFeature__inner {
    display: flex;
    flex-direction: column;
  }

  .p-topFeature.-feature05 .p-topFeature__inner .p-topFeature__desc {
    order: 2;
  }

  .p-topFeature.-feature05 .p-topFeature__inner .p-topFeature__rackets {
    order: 1;
  }

  .p-topFeature.-feature06 .p-topFeature__inner {
    display: flex;
    flex-direction: column;
  }

  .p-topFeature.-feature06 .p-topFeature__inner .p-topFeature__title {
    order: 1;
  }

  .p-topFeature.-feature06 .p-topFeature__inner .p-topFeature__desc {
    order: 3;
  }

  .p-topFeature.-feature06 .p-topFeature__inner .p-topFeature__img {
    order: 2;
  }

  .p-topFeature.-feature06 .p-topFeature__img {
    width: calc(100% - 56px);
    margin-left: auto;
    margin-right: auto;
  }

  .p-topFeature__videosInner:first-child .-logo img {
    width: 130px;
  }

  .p-topFeature__videosInner:nth-child(2) .-logo img {
    width: 90px;
  }

  .p-topFeature__pack figcaption {
    margin-top: 13px;
  }

  .p-topFeature__pack figcaption img {
    width: 70px;
  }

  .p-topFeature__racketItem:nth-child(1) .-logo img {
    width: 122px;
  }

  .p-topFeature__racketItem:nth-child(2) .-logo img {
    width: 112px;
  }

  .p-topSubFeature.c-bgLayer::after {
    height: 305px;
  }

  .p-topSubFeature__video {
    height: 31.7vw;
  }

  .p-topFeature02__listItem:nth-child(2n) .p-topFeature02__listInner {
    padding-bottom: 100px;
  }
}

@media print, screen and (min-width: 768px) {
  .t-hiddenSp {
    display: block;
  }

  .t-hiddenPc {
    display: none;
  }

  .t-taL-pc {
    text-align: left !important;
  }

  .t-taR-pc {
    text-align: right !important;
  }

  .t-taC-pc {
    text-align: center !important;
  }

  .c-btn__inner {
    font-size: 2.2rem;
    line-height: 3.4rem;
    height: 80px;
  }

  .c-btn__inner .-arrow {
    top: 30px;
    width: 19px;
    height: 19px;
  }

  .c-bgLayer::after {
    height: 343px;
  }

  .c-bgLayer.-pc-hidden::after {
    display: none;
  }

  .c-loading {
    height: calc(100vh - 106px);
    height: calc(100lvh - 106px);
  }

  .c-loading::before {
    width: 118.4558823529vw;
    height: 118.4558823529vw;
    bottom: -106.1764705882vw;
  }

  .c-loading.is-loaded::before {
    bottom: -108.3823529412vw;
  }

  .c-share {
    margin-top: 52px;
  }

  .c-title {
    font-size: 3.8rem;
    line-height: 5.6rem;
  }

  .p-featureMv__scroll-circle.-pos1 {
    left: 5.5%;
  }

  .p-featureMv__scroll-circle.-pos2 {
    top: 32.5%;
    left: 28%;
  }

  .p-featureMv__scroll-circle.-pos3 {
    top: 41%;
    left: 52.3%;
  }

  .p-featureMv__scroll-circle.-pos4 {
    left: 70.7%;
    top: 38%;
  }

  .p-featureMv__scroll-circle.-pos6 {
    left: 80.9%;
    top: 35%;
  }

  .p-featureMv__scroll-tooltip.-pos1 {
    top: 48.1%;
    left: 6.2%;
  }

  .p-featureMv__scroll-tooltip.-pos2 {
    left: 23.4%;
  }

  .p-featureMv__scroll-tooltip.-pos3 {
    top: 20.3%;
    left: 47.6%;
  }

  .p-featureMv__scroll-tooltip.-pos4 {
    left: 60.7%;
  }

  .p-featureMv__scroll-tooltip.-pos5 {
    left: 65%;
  }

  .p-featureStrong__slide .swiper-wrapper .swiper-slide {
    max-width: 950px;
  }

  .p-featureStrong__slide .swiper-wrapper .swiper-slide .p-featureStrong__slideContent {
    width: 47.4254742547%;
    padding: 0 40px 0 0;
    top: 0;
    justify-content: center;
  }

  .p-topMv__first {
    min-height: 800px;
    padding-top: 191px;
  }

  .p-topMv__logo img {
    width: 572px;
  }

  .p-topMv__img {
    top: 315px !important;
  }

  .p-topMv__img img {
    width: 1112px;
  }

  .p-topMv__video {
    height: calc(100vh - 106px);
    height: calc(100lvh - 106px);
  }

  .p-topAbout__container {
    padding-top: 260px;
    padding-bottom: 174px;
  }

  .p-topAbout__title {
    text-align: center;
    font-size: 7.4rem;
    line-height: 9.5rem;
  }

  .p-topAbout__title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 96.25vw;
    height: 20.6617647059vw;
    max-width: 1309px;
    max-height: 281px;
    transform: translate(-50%, -50%);
    background-image: url(../../assets/img/common/logo-gray.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .p-topAbout__desc {
    text-align: center;
    font-size: 2.6rem;
    line-height: 4.7rem;
    margin-top: 31px;
  }

  .p-topAbout__slider {
    display: none !important;
  }

  .p-topSticky__content {
    height: 108px;
  }

  .p-topSticky__label {
    font-size: 2.7rem;
    line-height: 3.6rem;
  }

  .p-topSticky__label.is-active-up {
    transform: translateY(-30px);
  }

  .p-topSticky__rubberContainer {
    height: 69px;
  }

  .p-topSticky__rubber {
    background-size: 44px 69px;
  }

  .p-topSticky__rubber::before, .p-topSticky__rubber::after {
    width: 50%;
  }

  .p-topSticky__rubber::before {
    background: linear-gradient(90deg, #242424 0%, rgba(36, 36, 36, 0) 100%);
  }

  .p-topSticky__rubber::after {
    background: linear-gradient(-90deg, #242424 0%, rgba(36, 36, 36, 0) 100%);
  }

  .p-topSticky__rubberImg {
    width: 183px;
    height: 183px;
  }

  .p-topFeature.-feature01 {
    padding: 260px 0 100px;
  }

  .p-topFeature.-feature01 .p-topFeature__video {
    margin-top: 64px;
  }

  .p-topFeature.-feature02 {
    padding: 120px 0 128px;
  }

  .p-topFeature.-feature02 .p-topFeature__video {
    margin-top: 44px;
  }

  .p-topFeature.-feature02 .p-topFeature__desc {
    margin-top: 48px;
  }

  .p-topFeature.-feature03 {
    padding: 80px 0 73px;
  }

  .p-topFeature.-feature04 {
    padding: 100px 0 0;
  }

  .p-topFeature.-feature05 {
    padding: 80px 0 130px;
  }

  .p-topFeature.-feature06 {
    padding: 80px 0 130px;
    background-size: cover;
    background-position: center;
  }

  .p-topFeature.-feature06::before {
    height: 393px;
    top: 0;
  }

  .p-topFeature.-feature06 .p-topFeature__inner {
    display: flex;
    gap: 0 40px;
    align-items: center;
  }

  .p-topFeature.-feature06 .p-topFeature__text {
    max-width: 427px;
    width: calc(50% - 20px);
  }

  .p-topFeature.-feature06 .p-topFeature__img {
    width: calc(50% - 20px + 50px);
    max-width: 475px;
    margin: 0 -50px 0 0;
  }

  .p-topFeature.-feature06 .p-topFeature__img img {
    border-radius: 10px;
  }

  .p-topFeature.-feature06 .p-featureStrong__btn {
    margin-top: 96px;
  }

  .p-topFeature__inner {
    padding: 0 50px;
  }

  .p-topFeature__title {
    font-size: 3.8rem;
    line-height: 5.6rem;
  }

  .p-topFeature__title.-text-center {
    text-align: center;
  }

  .p-topFeature__img {
    margin: 40px 0 42px;
  }

  .p-topFeature__sponge .-img>img {
    border-radius: 12px;
  }

  .p-topFeature__sponge .-triangle {
    width: 32px;
    height: 107px;
  }

  .p-topFeature__sponge .-logo {
    height: 37px;
  }

  .p-topFeature__desc {
    margin-top: 22px;
    font-size: 1.8rem;
    line-height: 2.8rem;
  }

  .p-topFeature__videos {
    gap: 0 50px;
    margin-top: 80px;
  }

  .p-topFeature__videosInner .-logo {
    height: 43px;
  }

  .p-topFeature__videosInner .-img {
    margin: 22px 0 10px;
  }

  .p-topFeature__videosInner .-img img {
    border-radius: 10px 10px 0 0;
  }

  .p-topFeature__packages {
    margin-top: 70px;
    width: calc(100% + 100px);
    margin-left: -50px;
  }

  .p-topFeature__packages>figure:nth-child(2) {
    margin-top: 40px;
  }

  .p-topFeature__packages>figure:nth-child(3) {
    margin-top: 80px;
  }

  .p-topFeature__pack::after {
    height: 19px;
    margin-top: 20px;
  }

  .p-topFeature__rackets {
    width: calc(100% + 100px);
    margin-left: -50px;
    margin-top: 60px;
  }

  .p-topFeature__racketImg .-logo {
    height: 37px;
  }

  .p-topFeature__racketImg>img {
    border-radius: 10px;
    margin-top: 21px;
  }

  .p-topSubFeature .m-wrapper, .p-topSubFeature__inner {
    padding: 0 50px;
    gap: 0;
  }

  .p-topSubFeature__video {
    margin-bottom: -10px;
    aspect-ratio: 724/212;
  }

  .p-topSubFeature .p-topFeature__desc {
    font-size: 1.6rem;
    width: 100%;
  }

  .p-topSubFeature .p-topFeature__desc:not(:nth-child(3)) {
    text-align: center;
  }

  .p-topSubFeature .p-topFeature__title {
    text-align: center;
  }

  .p-topFeature02 {
    padding: 80px 0 0;
  }

  .p-topFeature02__title {
    text-align: center;
    font-size: 4.6rem;
    line-height: 5.6rem;
  }

  .p-topFeature02__list {
    margin-top: 63px;
  }

  .p-topFeature02__listItem:nth-child(2n) .p-topFeature02__listInner {
    flex-direction: row-reverse;
  }

  .p-topFeature02__listInner {
    gap: 0 50px;
    padding: 65px 30px;
    flex-direction: row;
    max-width: 930px;
  }

  .p-topFeature02__listText {
    width: 50%;
    max-width: 395px;
  }

  .p-topFeature02__listText .-title {
    font-size: 3.8rem;
    line-height: 5.6rem;
  }

  .p-topFeature02__listText .-desc {
    margin-top: 22px;
    font-size: 1.8rem;
    line-height: 2.8rem;
  }

  .p-topFeature02__listImg {
    width: 50%;
    max-width: 395px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .c-btn__inner:hover {
    background-color: var(--color-black);
  }

  .c-btn__inner:hover .-arrow::before {
    animation: leftToRight 0.3s ease forwards;
  }

  .c-btn__inner:hover .-arrow::after {
    animation: leftToRight 0.3s ease forwards;
    animation-delay: 0.2s;
  }
}

@media screen and (max-width: 991px) {
  .p-featureMv__desc {
    font-size: 3rem;
  }

  .p-featureStrong__slide .swiper-wrapper .swiper-slide .p-featureStrong__slideContent .-name {
    font-size: 1.4rem;
    margin-top: 1px;
  }

  .p-featureStrong__btn .c-btn__inner span {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 2060px) {
  .p-featureMv__scroll-container {
    display: flex;
    justify-content: center;
  }
}

@media print, screen and (min-width: 992px) {
  .p-featureStrong__slide .swiper-wrapper .swiper-slide .p-featureStrong__slideContent {
    padding-right: 80px;
  }

  .p-featureStrong__slide .swiper-wrapper .swiper-slide .p-featureStrong__slideContent .-ttl {
    font-size: 3rem;
  }

  .p-topAbout__desc {
    font-size: 2.8rem;
    line-height: 5.1rem;
  }

  .p-topFeature02__listInner {
    padding: 65px 50px;
    max-width: 970px;
  }
}

@media print, screen and (min-width: 1221px) {
  .p-featureStrong__slide .swiper-wrapper .swiper-slide .p-featureStrong__slideContent .-ttl {
    font-size: 3.6rem;
  }
}

@media screen and (min-width: 450px) {
  .p-topMv__img {
    top: clamp(250px, 21.1428571429lvh, 500px);
  }
}
