@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@100;200;300;400;500;600;700;800;900&display=swap");
/*
    A (more) Modern CSS Reset
    https://piccalil.li/blog/a-more-modern-css-reset/
    @since 25/02/05
    @update t-ooishi / 25/02/26
*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

li {
  list-style: none;
}

ul {
  margin: unset;
  padding: unset;
}

body {
  line-height: 1.5;
  min-height: 100dvh;
}

h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 140%;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

a {
  word-break: break-all;
  text-decoration: none;
  color: inherit; /* 親要素の文字色を継承 */
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
  width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 2.5ex;
}

select:hover {
  background-color: unset;
}
select option:hover {
  background-color: unset;
}

:root {
  --base-font-family: M PLUS 1p, sans-serif; /* メインフォント */
  --header-height: 96px; /* ヘッダー - 高さ */
  --header-top: 0.9375rem; /* ヘッダー - 上余白 */
  --header-gutter: min(25px, var(--gutter, 0px)); /* ヘッダーガイド */
  --gutter: clamp(80px, 7.5vw, 120px); /* コンテンツガイド */
  --contents-spacer: 120px; /* コンテンツ間隔 */
  --page-title: 100px;
}
@media screen and (width <= 768px) {
  :root {
    --header-height: 52px; /* ヘッダー - 高さ */
    --gutter: clamp(10px, 5.3333333333vw, 80px); /* コンテンツガイド */
    --contents-spacer: 60px;
    --page-title: 50px;
    /* コンテンツ間隔 */
  }
}

@media screen and (width > 768px) {
  a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover {
    color: #c02c6e;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-block: var(--header-height);
}

body {
  font-size: 0.9375rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  color: #222;
  font-family: var(--base-font-family), sans-serif;
  min-height: 100dvh;
  background-color: #ffffff;
  line-height: 1.8;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
}
@media screen and (width <= 768px) {
  body {
    font-size: 0.9375rem;
  }
}

:where(.js-tab-container) {
  display: grid;
}
:where(.js-tab-container) .js-tab-buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
:where(.js-tab-container) .js-tab-button {
  margin: 0;
  padding: 0;
  cursor: pointer;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
}
:where(.js-tab-container) .js-tab-contents {
  position: relative;
  display: grid;
  grid-template-areas: "tab-content";
}
:where(.js-tab-container) .js-tab-content {
  z-index: 0;
  display: grid;
  visibility: hidden;
  grid-template-rows: 0fr;
  grid-area: tab-content;
  opacity: 0;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: visibility, opacity, z-index, grid-template-rows;
  transition-property: visibility, opacity, z-index, grid-template-rows;
  transition-property: visibility, opacity, z-index, grid-template-rows, -ms-grid-rows;
}
:where(.js-tab-container) .js-tab-content.is-active {
  z-index: 1;
  visibility: visible;
  grid-template-rows: 1fr;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  opacity: 1;
}
:where(.js-tab-container) .js-tab-content[aria-hidden=true] {
  display: none;
}
:where(.js-tab-container) .js-tab-content-inn {
  overflow: hidden;
}

.js-tab-container.tab-theme-default {
  gap: 8px;
}
.js-tab-container.tab-theme-default .js-tab-buttons {
  gap: 8px;
}
.js-tab-container.tab-theme-default .js-tab-button {
  font-size: 0.875rem;
  padding: 8px 16px;
  color: #333333;
  border-radius: 20px;
  background-color: #f0f0f0;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: background-color, color, opacity;
  transition-property: background-color, color, opacity;
}
.js-tab-container.tab-theme-default .js-tab-button:hover {
  opacity: 0.9;
}
.js-tab-container.tab-theme-default .js-tab-button.is-active {
  color: #ffffff;
  background-color: #004b8d;
}
.js-tab-container.tab-theme-default .js-tab-button:focus {
  outline: 2px solid rgba(0, 75, 141, 0.5);
  outline-offset: 2px;
}
.js-tab-container.tab-theme-default .js-tab-button:focus:not(:focus-visible) {
  outline: none;
}
.js-tab-container.tab-theme-default .js-tab-contents {
  padding: 8px;
}

.js-scroll-fade-up-trr {
  opacity: 0;
  -webkit-transform: translateY(35px);
          transform: translateY(35px);
  -webkit-transition: opacity 0.1s ease-out, -webkit-transform 0.1s ease-out;
  transition: opacity 0.1s ease-out, -webkit-transform 0.1s ease-out;
  transition: opacity 0.1s ease-out, transform 0.1s ease-out;
  transition: opacity 0.1s ease-out, transform 0.1s ease-out, -webkit-transform 0.1s ease-out;
}

.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-scale-up-image {
  opacity: 0;
}

.js-scale-up-image.is-active {
  -webkit-animation: bounce-in 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97) forwards;
          animation: bounce-in 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97) forwards;
}

@-webkit-keyframes bounce-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes bounce-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.l-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  padding-left: 1.8666666667vw;
  padding-right: 2.1333333333vw;
  z-index: 10;
}
@media screen and (width > 768px) {
  .l-header {
    padding-left: 1.5vw;
    padding-right: 1vw;
  }
}
.l-header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 1.3333333333vw;
}
@media screen and (width > 768px) {
  .l-header__inner {
    margin-top: 1.3125vw;
  }
}
.l-header__logos-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.8666666667vw;
}
@media screen and (width > 768px) {
  .l-header__logos-right {
    gap: 0.75vw;
  }
}
.l-header__logo {
  display: block;
}
.l-header__logo--switch {
  pointer-events: none;
  aspect-ratio: 1;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  width: 13.8666666667vw;
}
@media screen and (width > 768px) {
  .l-header__logo--switch {
    width: 6vw;
  }
}
.l-header__logo--paritybit {
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
  width: 10.6666666667vw;
}
@media screen and (width > 768px) {
  .l-header__logo--paritybit {
    width: 5.1875vw;
  }
}
.l-header__logo--gameaddict {
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
  width: 9.8666666667vw;
}
@media screen and (width > 768px) {
  .l-header__logo--gameaddict {
    width: 4.375vw;
  }
}

.l-footer {
  overflow-x: clip;
  position: relative;
}
.l-footer__background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
  aspect-ratio: 16/9;
  height: 100%;
}
.l-footer__background video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-footer__guide {
  padding-top: 17.625vw;
  margin-inline: auto;
  width: 85.1875vw;
  aspect-ratio: 1363/327;
}
@media screen and (width <= 768px) {
  .l-footer__guide {
    padding-top: 26.6666666667vw;
    width: 90.6666666667vw;
    aspect-ratio: 340/103;
  }
}
.l-footer__guide picture {
  position: relative;
  display: block;
}
.l-footer__guide picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-footer__detail {
  margin-top: 9.625vw;
  margin-inline: auto;
  width: 85.5vw;
  aspect-ratio: 1368/2945;
}
@media screen and (width <= 768px) {
  .l-footer__detail {
    margin-top: 12.2666666667vw;
    width: 93.6vw;
    aspect-ratio: 351/1571;
  }
}
.l-footer__detail picture {
  position: relative;
  display: block;
}
.l-footer__detail picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-footer__bottom-area {
  display: grid;
  margin-top: 3.75vw;
  margin-inline: auto;
  width: 85.375vw;
  padding-bottom: 8.125vw;
  grid-template-areas: "sale " "logo " "text ";
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
}
@media screen and (width <= 768px) {
  .l-footer__bottom-area {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 5.3333333333vw;
    padding-bottom: 5.3333333333vw;
  }
}
.l-footer__sales-area {
  grid-area: sale;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: auto;
  gap: 0.625vw;
}
@media screen and (width <= 768px) {
  .l-footer__sales-area {
    gap: 1.6vw;
  }
}
.l-footer__sales {
  display: inline-block;
  position: relative;
  cursor: pointer;
  width: 18.3125vw;
}
@media screen and (width <= 768px) {
  .l-footer__sales {
    width: 32.5333333333vw;
  }
}
.l-footer__sales img {
  display: block;
  width: 100%;
  height: auto;
}
.l-footer__sales img:last-child {
  display: none;
}
.l-footer__sales:hover {
  translate: 5px 5px;
}
.l-footer__sales:hover img:first-child {
  display: none;
}
.l-footer__sales:hover img:last-child {
  display: block;
}
.l-footer__sales-text {
  display: none;
  font-size: 1.6875vw;
  font-weight: 500;
  color: #fcfffa;
  font-family: "M PLUS 1p", sans-serif;
  text-decoration: underline;
}
.l-footer__sales-text:hover {
  color: #fcfffa;
  opacity: 0.7;
}
@media screen and (width <= 768px) {
  .l-footer__sales-text {
    font-size: 3.2vw;
  }
}
.l-footer__logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375vw;
  margin-bottom: 1.125vw;
  margin-top: 2.25vw;
  grid-area: logo;
}
@media screen and (width <= 768px) {
  .l-footer__logo {
    margin-top: 3.7333333333vw;
    margin-bottom: 1.3333333333vw;
  }
}
.l-footer__logo-01 {
  width: 5.75vw;
}
@media screen and (width <= 768px) {
  .l-footer__logo-01 {
    width: 10.6666666667vw;
  }
}
.l-footer__logo-02 {
  width: 5.3125vw;
}
@media screen and (width <= 768px) {
  .l-footer__logo-02 {
    width: 9.8666666667vw;
  }
}
.l-footer__copy {
  color: #fcfffa;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 1.6875vw;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  grid-area: text;
  width: 100%;
}
@media screen and (width <= 768px) {
  .l-footer__copy {
    font-size: 3.2vw;
    white-space: nowrap;
  }
}

.l-main {
  position: relative;
  width: 100%;
  overflow-x: clip;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(55%, rgba(169, 231, 75, 0.35)), to(rgba(169, 231, 75, 0.75))), url(../images/icon/img_icon_back.webp);
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(169, 231, 75, 0.35) 55%, rgba(169, 231, 75, 0.75) 100%), url(../images/icon/img_icon_back.webp);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(169, 231, 75, 0.35) 55%, rgba(169, 231, 75, 0.75) 100%), url(../images/icon/img_icon_back.webp);
  background-size: auto, contain;
  background-repeat: no-repeat, repeat;
  background-attachment: fixed, scroll;
  background-position: center, center;
}
@media screen and (width <= 768px) {
  .l-main {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(55%, rgba(169, 231, 75, 0.35)), color-stop(75%, rgba(169, 231, 75, 0.55)), to(rgba(169, 231, 75, 0.8))), url(../images/icon/img_icon_back_sp.webp);
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(169, 231, 75, 0.35) 55%, rgba(169, 231, 75, 0.55) 75%, rgba(169, 231, 75, 0.8) 100%), url(../images/icon/img_icon_back_sp.webp);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(169, 231, 75, 0.35) 55%, rgba(169, 231, 75, 0.55) 75%, rgba(169, 231, 75, 0.8) 100%), url(../images/icon/img_icon_back_sp.webp);
  }
}

.l-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-modal.is-open {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.l-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.l-modal__content {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  max-height: 90vh;
  overflow-y: auto;
  cursor: pointer;
}
.l-modal__img {
  width: 60.1875vw;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media screen and (width <= 768px) {
  .l-modal__img {
    width: 90vw;
  }
}

@media (orientation: landscape) and (max-width: 1024px) {
  #ytModal > div {
    width: 90vw !important;
  }
}

.l-section-title {
  position: relative;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  overflow: hidden;
  width: 57.875vw;
  aspect-ratio: 962/266;
  z-index: 12;
}
.l-section-title--reverse {
  -webkit-margin-start: unset;
          margin-inline-start: unset;
  -webkit-margin-end: auto;
          margin-inline-end: auto;
}
.l-section-title--blue {
  width: 65.125vw;
  aspect-ratio: 1042/266;
}
.l-section-title--green-dark {
  width: 47.3125vw;
  aspect-ratio: 757/266;
}
.l-section-title--yellow {
  width: 68.8125vw;
  aspect-ratio: 1101/266;
}
.l-section-title--blue-dark {
  width: 55.125vw;
  aspect-ratio: 882/266;
}
@media screen and (width <= 768px) {
  .l-section-title {
    width: 86.9333333333vw;
    aspect-ratio: 326/96.8;
    top: -4vw;
  }
  .l-section-title--blue {
    width: 95.4666666667vw;
    aspect-ratio: 358/96;
  }
  .l-section-title--green-dark {
    width: 67.2vw;
    aspect-ratio: 252/98;
  }
  .l-section-title--yellow {
    width: 100vw;
    aspect-ratio: 375/97;
  }
  .l-section-title--blue-dark {
    width: 78.4vw;
    aspect-ratio: 294/97;
  }
}
.l-section-title__bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 57.875vw;
  aspect-ratio: 962/266;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.l-section-title__bg img {
  width: 100%;
}
.l-section-title__bg--reverse {
  left: 0;
  right: auto;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.l-section-title__bg--blue {
  width: 65.125vw;
  aspect-ratio: 1042/266;
}
.l-section-title__bg--green-dark {
  width: 47.3125vw;
  aspect-ratio: 757/266;
}
.l-section-title__bg--yellow {
  width: 68.8125vw;
  aspect-ratio: 1101/266;
}
.l-section-title__bg--blue-dark {
  width: 55.125vw;
  aspect-ratio: 882/266;
}
@media screen and (width <= 768px) {
  .l-section-title__bg {
    width: 86.9333333333vw;
    aspect-ratio: 326/96.8;
  }
  .l-section-title__bg--blue {
    width: 95.4666666667vw;
    aspect-ratio: 358/96;
  }
  .l-section-title__bg--green-dark {
    width: 67.2vw;
    aspect-ratio: 252/98;
  }
  .l-section-title__bg--yellow {
    width: 100vw;
    aspect-ratio: 375/97;
  }
  .l-section-title__bg--blue-dark {
    width: 78.4vw;
    aspect-ratio: 294/97;
  }
  .l-section-title__bg img {
    width: 100vw;
  }
}
.l-section-title__text {
  position: absolute;
  color: #fcfffa;
  top: 50%;
  translate: 0 -50%;
  -webkit-text-stroke-width: 3px;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 5vw;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  -webkit-transform: translateX(-120%);
          transform: translateX(-120%);
  -webkit-transition: opacity 1.4s ease 0.15s, -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
  transition: opacity 1.4s ease 0.15s, -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s, opacity 1.4s ease 0.15s;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s, opacity 1.4s ease 0.15s, -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
  opacity: 0;
}
@media screen and (width <= 768px) {
  .l-section-title__text {
    font-size: 7.7653333333vw;
    -webkit-text-stroke-width: 1.09px;
  }
}
.l-section-title__text--green {
  text-shadow: 0 4px 4px #105129;
  -webkit-text-stroke-color: #2d5a20;
  right: 7.5vw;
}
@media screen and (width <= 768px) {
  .l-section-title__text--green {
    text-shadow: 0 1.456px 1.456px #105129;
    right: 5.128vw;
  }
}
.l-section-title__text--blue {
  text-shadow: 0 4px 4px #0a104f;
  -webkit-text-stroke-color: #0a4ea1;
  left: 7.875vw;
}
@media screen and (width <= 768px) {
  .l-section-title__text--blue {
    text-shadow: 0 1.456px 1.456px #0a104f;
  }
}
.l-section-title__text--green-dark {
  text-shadow: 0 4px 4px #136b3b;
  -webkit-text-stroke-color: #3c700d;
  right: 7.875vw;
}
@media screen and (width <= 768px) {
  .l-section-title__text--green-dark {
    right: 5.0666666667vw;
    text-shadow: 0 1.456px 1.456px #136b3b;
  }
}
.l-section-title__text--yellow {
  text-shadow: 0 4px 4px #40361a;
  -webkit-text-stroke-color: #9a7e0c;
  left: 7.875vw;
}
@media screen and (width <= 768px) {
  .l-section-title__text--yellow {
    text-shadow: 0 1.456px 1.456px #40361a;
  }
}
.l-section-title__text--blue-dark {
  text-shadow: 0 4px 4px #313B5B;
  -webkit-text-stroke-color: #005068;
  right: 7.875vw;
}
@media screen and (width <= 768px) {
  .l-section-title__text--blue-dark {
    right: 5.0666666667vw;
    text-shadow: 0 1.456px 1.456px #313B5B;
  }
}
.l-section-title__text--reverse {
  -webkit-transform: translateX(120%);
          transform: translateX(120%);
}
.l-section-title.is-animated .l-section-title__bg {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.l-section-title.is-animated .l-section-title__text {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.l-slider {
  position: relative;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  z-index: 10;
}
.l-slider__track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: -webkit-transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.l-slider__track--yellow li:last-of-type {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-slider__item {
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.l-slider__item--blue {
  aspect-ratio: 1100/675;
}
@media screen and (width <= 768px) {
  .l-slider__item--blue {
    aspect-ratio: 341/386;
  }
}
.l-slider__item picture {
  position: relative;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 100%;
}
@media screen and (width <= 768px) {
  .l-slider__item .this-blue {
    aspect-ratio: 341/386;
  }
}
.l-slider__item img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
}
.l-slider__btn {
  position: absolute;
  top: 40%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 3.125vw;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease;
}
@media screen and (width <= 768px) {
  .l-slider__btn {
    width: 4.9013333333vw;
    top: 45%;
  }
}
.l-slider__btn-img--normal {
  display: block;
  width: 100%;
  height: auto;
}
.l-slider__btn-img--hover {
  display: none;
  width: 100%;
  height: auto;
}
.l-slider__btn:hover:not(:disabled) {
  -webkit-transform: translateY(calc(-50% + 4px));
          transform: translateY(calc(-50% + 4px));
}
.l-slider__btn:hover:not(:disabled) .l-slider__btn-img--normal {
  display: none;
}
.l-slider__btn:hover:not(:disabled) .l-slider__btn-img--hover {
  display: block;
}
.l-slider__btn:active:not(:disabled) {
  -webkit-transform: translateY(calc(-50% + 6px));
          transform: translateY(calc(-50% + 6px));
}
.l-slider__btn:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}
.l-slider__dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.4375vw;
  margin-top: 4.375vw;
}
@media screen and (width <= 768px) {
  .l-slider__dots {
    margin-top: 7.2vw;
  }
}
.l-slider__dots--blue {
  margin-top: 3.5vw;
}
@media screen and (width <= 768px) {
  .l-slider__dots--blue {
    margin-top: 5.3333333333vw;
  }
}
.l-slider__dots--green-dark {
  margin-top: 1.3125vw;
}
@media screen and (width <= 768px) {
  .l-slider__dots--green-dark {
    margin-top: 10.32vw;
  }
}
.l-slider__dots--yellow {
  margin-top: 6.4375vw;
}
@media screen and (width <= 768px) {
  .l-slider__dots--yellow {
    margin-top: 12vw;
  }
}
.l-slider__dots--blue-dark {
  margin-top: 5.3125vw;
}
@media screen and (width <= 768px) {
  .l-slider__dots--blue-dark {
    margin-top: 9vw;
  }
}
.l-slider__dot {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  aspect-ratio: 49/52;
  width: 3.0625vw;
}
@media screen and (width <= 768px) {
  .l-slider__dot {
    aspect-ratio: 19/20;
    width: 5.0666666667vw;
  }
}
.l-slider__dot img {
  width: 100%;
  height: auto;
  display: block;
}
.l-slider__dot-img--on {
  display: none;
}
.l-slider__dot-img--off {
  display: block;
}
.l-slider__dot.is-active .l-slider__dot-img--on {
  display: none;
}
.l-slider__dot.is-active .l-slider__dot-img--off {
  display: block;
}
.l-slider__modal-btn {
  position: absolute;
  bottom: -0.625vw;
  right: 1.75vw;
  aspect-ratio: 398/103;
  width: 24.875vw;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease;
}
@media screen and (width <= 768px) {
  .l-slider__modal-btn {
    bottom: 2vw;
    right: 2.6666666667vw;
    aspect-ratio: 180/46;
    width: 48vw;
  }
  .l-slider__modal-btn--yellow {
    bottom: -5vw;
    bottom: -6vw;
  }
}
.l-slider__modal-btn img {
  width: 100%;
  height: auto;
  display: block;
}
.l-slider__modal-btn img:last-child {
  display: none;
}
.l-slider__modal-btn:hover {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}
.l-slider__modal-btn:hover img:first-child {
  display: none;
}
.l-slider__modal-btn:hover img:last-child {
  display: block;
}
.l-slider__modal-btn:active {
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}

.p-hero {
  position: relative;
}
.p-hero .p-fv__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.p-hero .p-fv__background video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-yt-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.75);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-yt-modal__inner {
  position: relative;
  width: 78.125vw;
  max-width: 100vw;
}
@media screen and (width <= 768px) {
  .p-yt-modal__inner {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  .p-yt-modal__inner {
    width: 177.7777777778vh;
    height: auto;
  }
}
.p-yt-modal__close {
  position: absolute;
  top: -1.875vw;
  right: -1.875vw;
  z-index: 10;
  width: 4.4375vw;
  height: 4.4375vw;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
@media screen and (width <= 768px) {
  .p-yt-modal__close {
    top: 2.6666666667vw;
    right: 2.6666666667vw;
    position: fixed;
    width: 9.3333333333vw;
    height: 9.3333333333vw;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  .p-yt-modal__close {
    top: 1.6vw;
    right: 1.6vw;
  }
}
.p-yt-modal__nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  width: 3.125vw;
  height: 3.125vw;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  visibility: hidden;
}
@media screen and (width <= 768px) {
  .p-yt-modal__nav {
    width: 9.3333333333vw;
    height: 9.3333333333vw;
    top: 50%;
  }
}
.p-yt-modal__nav--prev {
  left: -3.75vw;
}
@media screen and (width <= 768px) {
  .p-yt-modal__nav--prev {
    left: 2.1333333333vw;
    background: rgba(0, 0, 0, 0.5333333333);
    z-index: 1;
  }
}
.p-yt-modal__nav--next {
  right: -3.75vw;
}
@media screen and (width <= 768px) {
  .p-yt-modal__nav--next {
    background: rgba(0, 0, 0, 0.5333333333);
    right: 2.1333333333vw;
    z-index: 1;
  }
}
.p-yt-modal__video {
  position: relative;
  padding-top: 56.25%;
  background: #000;
  border-radius: 12px;
}
@media screen and (width <= 768px) {
  .p-yt-modal__video {
    width: 100%;
    border-radius: 0;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  .p-yt-modal__video {
    padding-top: 0;
    height: 100vh;
  }
}
.p-yt-modal__iframe {
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
}
@media (max-width: 767px) and (orientation: landscape) {
  .p-yt-modal__iframe {
    width: 100%;
    height: 100%;
  }
}

.p-fv {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 375/650;
  z-index: 5;
}
@media screen and (width > 768px) {
  .p-fv {
    aspect-ratio: 2/1;
  }
}
.p-fv__title {
  position: absolute;
  top: 40%;
  left: 50%;
  translate: -50% -50%;
  background-image: url(../images/fv/img_fv_title.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 1178/326;
  width: 73.625vw;
}
@media screen and (width <= 768px) {
  .p-fv__title {
    aspect-ratio: 374/103;
    top: 46.1333333333vw;
    width: 99.7333333333vw;
  }
}
.p-fv__title span {
  display: none;
}
.p-fv__release {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  bottom: 6%;
  left: 0;
  aspect-ratio: 586/149;
  width: 36.625vw;
}
@media screen and (width <= 768px) {
  .p-fv__release {
    bottom: unset;
    translate: -50% 0;
    top: 81.8666666667vw;
    left: 50%;
    -o-object-fit: contain;
       object-fit: contain;
    aspect-ratio: 317/54.85;
    width: 84.5333333333vw;
  }
}
.p-fv__x {
  display: block;
  width: 22.0625vw;
  height: 4.3125vw;
  position: absolute;
  bottom: 1.1875vw;
  left: 7.5vw;
}
@media screen and (width <= 768px) {
  .p-fv__x {
    width: 59.4666666667vw;
    height: 11.7333333333vw;
    position: absolute;
    top: 98.6666666667vw;
    left: 50%;
    translate: -50% 0;
  }
}

.p-product {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #e2ffb5;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(55%, rgba(169, 231, 75, 0.35)), to(rgba(169, 231, 75, 0.75)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(169, 231, 75, 0.35) 55%, rgba(169, 231, 75, 0.75) 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(169, 231, 75, 0.35) 55%, rgba(169, 231, 75, 0.75) 100%);
  background-attachment: fixed;
  padding-top: 7.1875vw;
}
@media screen and (width <= 768px) {
  .p-product {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(55%, rgba(169, 231, 75, 0.35)), color-stop(75%, rgba(169, 231, 75, 0.55)), to(rgba(169, 231, 75, 0.8)));
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(169, 231, 75, 0.35) 55%, rgba(169, 231, 75, 0.55) 75%, rgba(169, 231, 75, 0.8) 100%);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(169, 231, 75, 0.35) 55%, rgba(169, 231, 75, 0.55) 75%, rgba(169, 231, 75, 0.8) 100%);
  }
}
.p-product__parallelogram {
  width: 84.90625vw;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 58.25vw auto;
  grid-auto-rows: 1fr;
  gap: 1.875vw;
  position: relative;
  z-index: 1;
}
@media screen and (width <= 768px) {
  .p-product__parallelogram {
    grid-template-columns: 1fr;
    grid-auto-rows: unset;
    gap: 9.3333333333vw;
    margin-top: -21.3333333333vw;
    position: relative;
    z-index: 100;
  }
}
.p-product-json__news-area {
  position: relative;
  min-height: 14.3125vw;
}
.p-product-json__news-area::before {
  content: "";
  opacity: 0.75;
  position: absolute;
  inset: 0;
  background: #fff;
  -webkit-transform: skewX(-13deg);
          transform: skewX(-13deg);
  z-index: 0;
  border-radius: 0.625vw 1.0625vw;
  border: 0.1875vw solid #303c25;
}
@media screen and (width <= 768px) {
  .p-product-json__news-area::before {
    border-radius: 2.1333333333vw;
    min-height: 30.2666666667vw;
    border: 0.4vw solid #303c25;
  }
}
.p-product-json__news-wrapper {
  position: relative;
  z-index: 1;
  padding: 1.375vw 3.125vw;
}
@media screen and (width <= 768px) {
  .p-product-json__news-wrapper {
    padding: 3.2vw 5.8666666667vw;
  }
}
.p-product-json__news {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.625vw;
}
@media screen and (width <= 768px) {
  .p-product-json__news {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.6vw;
  }
}
.p-product-json__news-logo {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 8.125vw;
  aspect-ratio: 130/88;
}
@media screen and (width <= 768px) {
  .p-product-json__news-logo {
    width: 19.7333333333vw;
  }
}
.p-product-json__news-logo img {
  width: 100%;
  height: auto;
}
.p-product-json__news-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 1.875vw;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}
@media screen and (width <= 768px) {
  .p-product-json__news-body {
    padding-top: 0;
    width: 97%;
  }
}
.p-product-json__news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  max-height: 9.625vw;
}
@media screen and (width <= 768px) {
  .p-product-json__news-list {
    max-height: 15.9333333333vw;
  }
}
.p-product-json__news-list::-webkit-scrollbar {
  width: 0.25vw;
}
@media screen and (width <= 768px) {
  .p-product-json__news-list::-webkit-scrollbar {
    width: 0.8vw;
  }
}
.p-product-json__news-list::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 2px;
}
.p-product-json__news-list::-webkit-scrollbar-thumb {
  background: #2d4a1e;
  border-radius: 2px;
}
.p-product-json__news-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.25vw;
  padding: 0.28125vw 0;
  padding-right: 1.875vw;
  min-height: 2.875vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (width <= 768px) {
  .p-product-json__news-item {
    padding-right: 2.6666666667vw;
  }
}
.p-product-json__news-item:first-of-type {
  padding-top: 0;
}
.p-product-json__news-date {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  font-size: 1vw;
  line-height: 1.5vw;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 600;
  color: #2d4a1e;
  white-space: nowrap;
}
@media screen and (width <= 768px) {
  .p-product-json__news-date {
    font-size: 3.2vw;
    line-height: 4.8vw;
  }
}
.p-product-json__news-text {
  font-size: 1vw;
  line-height: 1.5vw;
  font-weight: 600;
  color: #333;
  margin: 0;
  font-family: "M PLUS 1p", sans-serif;
  display: -webkit-box;
  overflow: hidden;
}
@media screen and (width <= 768px) {
  .p-product-json__news-text {
    font-size: 3.7333333333vw;
    line-height: 5.6vw;
  }
}
.p-product-json__news-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.5vw;
  width: 100%;
  color: inherit;
  text-decoration: none;
}
@media screen and (width <= 768px) {
  .p-product-json__news-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.2666666667vw;
  }
}
.p-product-json__news-link:hover {
  opacity: 0.7;
}
.p-product-modal {
  cursor: pointer;
}
.p-product-modal__area {
  height: 100%;
  position: relative;
  -webkit-transform: skewX(-13deg);
          transform: skewX(-13deg);
  border-radius: 0.625vw 1.0625vw;
  border: 0.1875vw solid #303c25;
  overflow: hidden;
}
.p-product-modal__area::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/section01/img_section01_youtube.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: skewX(13deg);
          transform: skewX(13deg);
  left: -1.5vw;
  width: 27.5vw;
}
@media screen and (width <= 988px) {
  .p-product-modal__area::after {
    width: 28.1376518219vw;
    left: -2.024291498vw;
  }
}
@media screen and (width <= 768px) {
  .p-product-modal__area::after {
    left: -4.8vw;
    width: 93.8666666667vw;
  }
}
@media screen and (width <= 768px) {
  .p-product-modal__area {
    border-radius: 1.3333333333vw;
    border: 0.4vw solid #303c25;
  }
}
.p-product-modal__wrapper {
  height: 100%;
  position: relative;
  z-index: 1;
}
@media screen and (width <= 768px) {
  .p-product-modal__wrapper {
    aspect-ratio: 315/162;
  }
}
.p-product-modal__inside {
  position: relative;
  width: 100%;
  height: 100%;
}
.p-product-modal__play {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 4.45625vw;
  aspect-ratio: 1;
}
@media screen and (width <= 768px) {
  .p-product-modal__play {
    width: 13.3333333333vw;
  }
}
.p-product-modal__plus {
  position: absolute;
  bottom: 0.75vw;
  right: 1vw;
  width: 3.1875vw;
  height: auto;
  -webkit-transform: skewX(13deg);
          transform: skewX(13deg);
}
@media screen and (width <= 768px) {
  .p-product-modal__plus {
    width: 10.6666666667vw;
    bottom: 2.6666666667vw;
    right: 3.4666666667vw;
  }
}
.p-product__title {
  position: relative;
  z-index: 10;
  margin-inline: auto;
  background-image: url(../images/section01/img_section01_title.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 1375.15/389;
  width: 85.946875vw;
  margin-top: 50px;
}
@media screen and (width <= 768px) {
  .p-product__title {
    background-image: url(../images/section01/img_section01_title_sp.webp);
    -webkit-margin-start: auto;
            margin-inline-start: auto;
    aspect-ratio: 375/145;
    width: 100vw;
    margin-top: 30px;
  }
}
.p-product__title span {
  display: none;
}
.p-product__race-back {
  margin-top: -12.5vw;
  position: relative;
  position: relative;
  z-index: 2;
}
@media screen and (width <= 768px) {
  .p-product__race-back {
    margin-top: -21.3333333333vw;
  }
}
.p-product__race-back img {
  aspect-ratio: 1600/844;
  width: 100vw;
}
@media screen and (width <= 768px) {
  .p-product__race-back img {
    aspect-ratio: 375/277;
    width: 100vw;
  }
}
.p-product__catchphrase {
  position: relative;
  z-index: 10;
  margin-inline: auto;
  background-image: url(../images/section01/img_section01_catchphrase.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 1266/174.8;
  width: 79.125vw;
  margin-top: -5.1875vw;
}
@media screen and (width <= 768px) {
  .p-product__catchphrase {
    background-image: url(../images/section01/img_section01_catchphrase_sp.webp);
    -webkit-margin-start: auto;
            margin-inline-start: auto;
    aspect-ratio: 364/123;
    width: 97.0666666667vw;
    margin-top: -13.3333333333vw;
  }
}
.p-product__catchphrase span {
  display: none;
}
.p-product__text-wrapper {
  position: relative;
  margin-inline: auto;
  width: 80.689375vw;
  z-index: 1;
}
@media screen and (width <= 768px) {
  .p-product__text-wrapper {
    width: 92.272vw;
  }
}
.p-product__leg {
  position: absolute;
  width: 53.375vw;
  aspect-ratio: 854/925;
  top: 0;
  left: 50%;
  translate: -50% 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/section01/img_section01_leg.webp);
  z-index: 0;
}
@media screen and (width <= 768px) {
  .p-product__leg {
    width: 90.1333333333vw;
    aspect-ratio: 338/366;
  }
}
.p-product__text {
  position: relative;
  background-image: url(../images/section01/img_section01_text.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 1358.93/320;
  width: 100%;
  z-index: 1;
}
@media screen and (width <= 768px) {
  .p-product__text {
    background-image: url(../images/section01/img_section01_text_sp.webp);
    aspect-ratio: 346.02/381.2;
  }
}
.p-product__text span {
  display: none;
}
.p-product-slider {
  overflow-x: clip;
  position: relative;
  z-index: 2;
  margin-top: -2.1875vw;
}
@media screen and (width <= 768px) {
  .p-product-slider {
    padding-bottom: 6.6666666667vw;
  }
}
.p-product-slider__track {
  aspect-ratio: 1600/425;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/section01/img_section01_slider_back.webp);
  width: 100vw;
}
@media screen and (width <= 768px) {
  .p-product-slider__track {
    aspect-ratio: 375/135;
  }
}
.p-product-slider__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 2vw;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  rotate: -3.05deg;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-animation: p-product-slider-scroll 30s linear infinite;
          animation: p-product-slider-scroll 30s linear infinite;
  list-style: none;
  margin: 0;
  padding-top: 7.6875vw;
}
@media screen and (width <= 768px) {
  .p-product-slider__list {
    gap: 2.5733333333vw;
    padding-top: 8.8vw;
  }
}
.p-product-slider__item {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 27.25vw;
}
@media screen and (width <= 768px) {
  .p-product-slider__item {
    width: 39.4666666667vw;
  }
}
.p-product-slider__item img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transform: rotate(3deg);
          transform: rotate(3deg);
}
@-webkit-keyframes p-product-slider-scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes p-product-slider-scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.p-product__horse {
  margin-top: -12.5vw;
  position: relative;
  z-index: 10;
}
@media screen and (width <= 768px) {
  .p-product__horse {
    margin-top: -22.1333333333vw;
  }
}
.p-product__horse img {
  aspect-ratio: 255/477;
  width: 15.475vw;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  margin-right: 0;
}
@media screen and (width <= 768px) {
  .p-product__horse img {
    aspect-ratio: 108/204;
    width: 28.8vw;
    margin-right: 0;
  }
}
.p-product__text02 {
  position: relative;
  z-index: 10;
  margin-left: 7.3125vw;
  background-image: url(../images/section01/img_section01_text02.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 1959/164;
  width: 62.0625vw;
  margin-top: -17.5vw;
}
@media screen and (width <= 768px) {
  .p-product__text02 {
    background-image: url(../images/section01/img_section01_text02_sp.webp);
    margin-left: 12.5333333333vw;
    aspect-ratio: 200/152;
    width: 53.4453333333vw;
    margin-top: -36.5vw;
  }
}
.p-product__text02 span {
  display: none;
}
.p-product__order {
  position: relative;
  z-index: 10;
  margin-left: 2.5vw;
  background-image: url(../images/section01/img_section01_order.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 2425/361;
  width: 75.5vw;
  margin-top: -1.375vw;
}
@media screen and (width <= 768px) {
  .p-product__order {
    background-image: url(../images/section01/img_section01_order_sp.webp);
    margin-left: 0;
    aspect-ratio: 726/301;
    width: 100vw;
    rotate: 0deg;
    margin-top: 3.7333333333vw;
  }
}
.p-product__order span {
  display: none;
}

.p-evolution {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 6.8vw;
  padding-bottom: 17.9375vw;
  z-index: 0;
}
.p-evolution::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #e2ffb5;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(55%, rgba(169, 231, 75, 0.35)), to(rgba(169, 231, 75, 0.75)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(169, 231, 75, 0.35) 55%, rgba(169, 231, 75, 0.75) 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(169, 231, 75, 0.35) 55%, rgba(169, 231, 75, 0.75) 100%);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 1600/600;
  width: 100vw;
}
@media screen and (width <= 768px) {
  .p-evolution {
    padding-top: 12vw;
    padding-bottom: 18.2vw;
  }
  .p-evolution::before {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(55%, rgba(169, 231, 75, 0.35)), color-stop(75%, rgba(169, 231, 75, 0.55)), to(rgba(169, 231, 75, 0.8)));
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(169, 231, 75, 0.35) 55%, rgba(169, 231, 75, 0.55) 75%, rgba(169, 231, 75, 0.8) 100%);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(169, 231, 75, 0.35) 55%, rgba(169, 231, 75, 0.55) 75%, rgba(169, 231, 75, 0.8) 100%);
  }
}
.p-evolution__background {
  position: absolute;
  top: -5.875vw;
  left: 50%;
  translate: -50% 0;
  width: 104.4386422977vw;
  aspect-ratio: 2400/2299;
  pointer-events: none;
  z-index: 10;
  scale: 0.959;
}
@media screen and (width <= 768px) {
  .p-evolution__background {
    width: 100vw;
    aspect-ratio: 375/652;
    scale: 1;
    top: -5.8666666667vw;
  }
}
.p-evolution__background picture {
  position: relative;
  display: block;
  line-height: 0;
}
.p-evolution__background picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-evolution__title {
  margin-bottom: 7vw;
}
@media screen and (width <= 768px) {
  .p-evolution__title {
    margin-bottom: 6.9333333333vw;
  }
}

.p-system {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 3.125vw;
  padding-bottom: 8.5vw;
}
@media screen and (width <= 768px) {
  .p-system {
    padding-top: 14vw;
    padding-bottom: 5vw;
  }
}
.p-system__background {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 100vw;
  aspect-ratio: 1600/1213;
  pointer-events: none;
  z-index: 10;
}
@media screen and (width <= 768px) {
  .p-system__background {
    width: 100vw;
    aspect-ratio: 375/609;
    scale: 1;
    top: 18.6666666667vw;
  }
}
.p-system__background picture {
  position: relative;
  display: block;
  line-height: 0;
}
.p-system__background picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-system__title {
  margin-bottom: 2.75vw;
}
@media screen and (width <= 768px) {
  .p-system__title {
    margin-bottom: 16.2666666667vw;
  }
}

.p-comfort {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 8.8125vw;
  padding-bottom: 15.5375vw;
}
@media screen and (width <= 768px) {
  .p-comfort {
    padding-top: 25.6vw;
    padding-bottom: 0;
  }
}
.p-comfort__background {
  position: absolute;
  top: -3.125vw;
  left: 50%;
  translate: -50% 0;
  width: 104.4386422977vw;
  aspect-ratio: 2400/2299;
  pointer-events: none;
  z-index: 10;
  scale: 0.959;
}
@media screen and (width <= 768px) {
  .p-comfort__background {
    width: 100vw;
    aspect-ratio: 375/652;
    scale: 1;
    top: 15.2vw;
  }
}
.p-comfort__background picture {
  position: relative;
  display: block;
  line-height: 0;
}
.p-comfort__background picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-comfort__house {
  position: absolute;
  top: -2.8125vw;
  width: 39.625vw;
  aspect-ratio: 952/706;
  z-index: 100;
  left: 0;
}
@media screen and (width <= 768px) {
  .p-comfort__house {
    top: -1.125vw;
    width: 46.6666666667vw;
    aspect-ratio: 175/149;
  }
}
.p-comfort__title {
  margin-bottom: 6.0625vw;
}
@media screen and (width <= 768px) {
  .p-comfort__title {
    margin-bottom: 8.8vw;
  }
}

.p-data {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 1.125vw;
  padding-bottom: 7.5625vw;
}
@media screen and (width <= 768px) {
  .p-data {
    padding-top: 34vw;
    padding-bottom: 16.2vw;
  }
}
.p-data__background {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 100vw;
  aspect-ratio: 1600/1213;
  pointer-events: none;
  z-index: 10;
}
@media screen and (width <= 768px) {
  .p-data__background {
    width: 100vw;
    aspect-ratio: 375/609;
    scale: 1;
    top: 37.8666666667vw;
  }
}
.p-data__background picture {
  position: relative;
  display: block;
  line-height: 0;
}
.p-data__background picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-data__horse {
  position: absolute;
  top: -18.4375vw;
  width: 25.375vw;
  aspect-ratio: 531/643;
  z-index: 100;
  right: 0;
}
@media screen and (width <= 768px) {
  .p-data__horse {
    top: 7vw;
    width: 29.3333333333vw;
    aspect-ratio: 151/183;
  }
}
.p-data__title {
  margin-bottom: 2.3125vw;
}
@media screen and (width <= 768px) {
  .p-data__title {
    margin-bottom: 10.6666666667vw;
  }
}

.p-online {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 6vw;
  padding-bottom: 0;
}
@media screen and (width <= 768px) {
  .p-online {
    padding-top: 13.0666666667vw;
  }
}
.p-online__background {
  position: absolute;
  top: -3.125vw;
  left: 50%;
  translate: -50% 0;
  width: 104.4386422977vw;
  aspect-ratio: 2400/2299;
  pointer-events: none;
  z-index: 10;
  scale: 0.959;
}
@media screen and (width <= 768px) {
  .p-online__background {
    width: 100vw;
    aspect-ratio: 375/652;
    scale: 1;
    top: 3.3333333333vw;
  }
}
.p-online__background picture {
  position: relative;
  display: block;
  line-height: 0;
}
.p-online__background picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-online__house {
  position: absolute;
  top: -2.8125vw;
  width: 39.625vw;
  aspect-ratio: 952/706;
  z-index: 100;
  left: 0;
}
@media screen and (width <= 768px) {
  .p-online__house {
    top: -1.125vw;
    width: 46.6666666667vw;
    aspect-ratio: 175/149;
  }
}
.p-online__title {
  margin-bottom: 7.5625vw;
}
@media screen and (width <= 768px) {
  .p-online__title {
    margin-bottom: 1.8666666667vw;
  }
}

@media screen and (width > 768px) {
  .u-dn-md-min {
    display: none;
  }
}

@media screen and (width > 36rem) {
  .u-dn-md-rsm {
    display: none;
  }
}

@media screen and (width <= 768px) {
  .u-dn-md-max {
    display: none;
  }
}

.u-cf::after {
  display: block;
  clear: both;
  content: "";
}/*# sourceMappingURL=style.css.map */