@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --color-white: #fff;
  --color-black: #000;
}

.u-color-white {
  color: var(--color-white);
}

.u-color-black {
  color: var(--color-black);
}

/*** The new CSS reset - version 1.5.1 (last updated 1.3.2022) ***/
body {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

a,
button {
  text-decoration: none;
  cursor: revert;
  color: inherit;
}

ol,
ul,
menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

table {
  border-collapse: collapse;
}

textarea {
  white-space: revert;
}

meter {
  appearance: revert;
}

::placeholder {
  color: unset;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  background-color: #000;
  overflow-x: hidden;
}
body a {
  transition: all 0.3s;
}

.l-inner {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: min(1200px, 93.75vw);
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #000;
}
@media screen and (min-width: 768px) {
  .l-header a:hover {
    opacity: 0.7;
  }
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    padding: 0 min(60px, 3.125vw);
    height: min(60px, 4.6875vw);
  }
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding: 0 8vw;
    height: 8vw;
  }
}
@media screen and (min-width: 768px) {
  .l-header__logo {
    width: min(108px, 8.4375vw);
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 14.4vw;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__nav-list {
  display: flex;
  align-items: center;
  column-gap: min(32px, 2.5vw);
}
.l-header__nav-list li a {
  display: block;
}
@media screen and (min-width: 768px) {
  .l-header__nav-list li a {
    font-size: clamp(7px, 1.09375vw, 14px);
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 300;
  }
}
@media screen and (min-width: 768px) {
  .l-header__brandlogo {
    width: min(86px, 6.71875vw);
  }
}
@media screen and (max-width: 767px) {
  .l-header__brandlogo {
    width: 11.4666666667vw;
  }
}

.l-footer {
  font-family: "Poppins", sans-serif;
}
@media screen and (min-width: 768px) {
  .l-footer a:hover {
    opacity: 0.7;
  }
}
.l-footer__bg {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .l-footer__bg {
    padding: min(92px, 7.1875vw) 0;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__bg {
    padding-bottom: 44.4vw;
  }
}
.l-footer__bg::before {
  position: absolute;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  bottom: 0;
  opacity: 0.6;
}
@media screen and (min-width: 768px) {
  .l-footer__bg::before {
    background-image: url(../img/bg-footer.png);
    width: min(731px, 57.109375vw);
    height: min(418px, 32.65625vw);
    left: max(-36px, -2.8125vw);
  }
}
@media screen and (max-width: 767px) {
  .l-footer__bg::before {
    background-image: url(../img/bg-footer-sp.png);
    width: 100vw;
    height: 57.3333333333vw;
    left: -1.0666666667vw;
  }
}
.l-footer__nav {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .l-footer__nav {
    column-gap: min(30px, 2.34375vw);
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav {
    column-gap: 4vw;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__nav li a {
    font-size: clamp(7px, 1.09375vw, 14px);
    line-height: 1.1428571429;
    letter-spacing: 0.03em;
    font-weight: 400;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav li a {
    font-size: calc(14 / 750 * 100vw);
    line-height: 1.1428571429;
    letter-spacing: 0.03em;
    font-weight: 400;
  }
}
.l-footer__sns {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .l-footer__sns {
    column-gap: min(30px, 2.34375vw);
    margin-top: min(30px, 2.34375vw);
  }
}
@media screen and (max-width: 767px) {
  .l-footer__sns {
    column-gap: 4vw;
    margin-top: 4vw;
  }
}
.l-footer__sns li a {
  display: flex;
}
.l-footer__sns li a img {
  width: auto;
}
@media screen and (min-width: 768px) {
  .l-footer__sns li a img {
    height: min(20px, 1.5625vw);
  }
}
@media screen and (max-width: 767px) {
  .l-footer__sns li a img {
    height: 2.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__copy {
    font-size: clamp(7px, 1.09375vw, 14px);
    line-height: 1.1428571429;
    letter-spacing: 0.03em;
    font-weight: 400;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    font-size: calc(14 / 750 * 100vw);
    line-height: 1.1428571429;
    letter-spacing: 0.03em;
    font-weight: 400;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__copy {
    margin-top: min(30px, 2.34375vw);
  }
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    margin-top: 4vw;
  }
}

.u-font-italic {
  font-style: italic;
}

.c-text-center {
  text-align: center;
}

.c-title-en {
  display: block;
  font-style: italic;
  font-family: "Poppins", sans-serif;
}
@media screen and (min-width: 768px) {
  .c-title-en {
    font-size: clamp(7px, 1.09375vw, 14px);
    line-height: 1.1428571429;
    letter-spacing: 0.08em;
    font-weight: 400;
  }
}
@media screen and (max-width: 767px) {
  .c-title-en {
    font-size: calc(20 / 750 * 100vw);
    line-height: 1;
    letter-spacing: 0.08em;
    font-weight: 400;
  }
}
@media screen and (min-width: 768px) {
  .c-title-en {
    margin-bottom: min(10px, 0.78125vw);
  }
}
@media screen and (max-width: 767px) {
  .c-title-en {
    margin-bottom: 1.8666666667vw;
  }
}
.c-title-jp {
  display: block;
}
@media screen and (min-width: 768px) {
  .c-title-jp {
    font-size: clamp(28px, 4.375vw, 56px);
    line-height: 1.1;
    letter-spacing: 0em;
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) {
  .c-title-jp {
    font-size: calc(44 / 750 * 100vw);
    line-height: 1.3636363636;
    letter-spacing: 0em;
    font-weight: 600;
  }
}

@media screen and (min-width: 768px) {
  .c-sec {
    padding: min(120px, 9.375vw) 0;
  }
}

.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .c-btn {
    width: min(290px, 22.65625vw);
    height: min(40px, 3.125vw);
  }
  .c-btn:hover::after {
    opacity: 1;
  }
}
.c-btn::after {
  position: absolute;
  content: "";
  display: block;
  inset: 0;
  z-index: 1;
  background: linear-gradient(88.42deg, rgba(255, 255, 255, 0) 1.42%, #565656 54.03%, rgba(86, 86, 86, 0) 100%);
  opacity: 0;
  transition: all 0.3s;
}
.c-btn__txt {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .c-btn__txt {
    font-size: clamp(7px, 1.09375vw, 14px);
    line-height: 1;
    letter-spacing: 0.03em;
    font-weight: 600;
  }
}

.js-sticky-container {
  overflow: hidden;
}

.intro_box {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background-color: #000;
}
.intro_box iframe {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  transform: translateY(-50%);
}
.intro_box #skip_btn {
  display: none;
  position: absolute;
  bottom: 80px;
  right: 80px;
  font-size: 30px;
  font-weight: 700;
  font-size: "Poppins", sans-serif;
  cursor: pointer;
}
.intro_box #skip_btn::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 20px;
  margin-left: 20px;
  border-left: 14px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.intro_box #skip_btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .intro_box #skip_btn {
    bottom: 50px;
    right: 20px;
  }
}

.p-kv {
  opacity: 0;
  transition: opacity 0.8s;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-kv {
    margin-top: min(60px, 4.6875vw);
    margin-bottom: min(97px, 7.578125vw);
  }
}
@media screen and (max-width: 767px) {
  .p-kv {
    margin-top: 8vw;
    margin-bottom: 15.4666666667vw;
  }
}
.p-kv.is-fadein {
  opacity: 1;
}
.p-kv img {
  display: block;
}
.p-kv__text {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-kv__text {
    top: 6.3020833333vw;
    left: 6.5104166667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-kv__text {
    top: 8vw;
    left: 7.7333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-kv__text-note {
    font-size: calc(20 / 750 * 100vw);
    line-height: 1.2;
    letter-spacing: 0.01em;
    font-weight: 700;
  }
}
@media screen and (min-width: 768px) {
  .p-kv__text-note {
    font-size: 1.0416666667vw;
    line-height: 1.2;
    letter-spacing: 2px;
    font-weight: 700;
    margin-top: 2.7604166667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-kv__text-note {
    margin-top: 4vw;
    text-shadow: 0px 0px 24px rgba(45, 100, 56, 0.7);
  }
}
.p-kv__title-txt {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-kv__title-txt {
    font-size: calc(56 / 750 * 100vw);
    line-height: 1.3571428571;
    letter-spacing: 0em;
    font-weight: 700;
  }
}
@media screen and (min-width: 768px) {
  .p-kv__title-txt {
    font-size: 3.3333333333vw;
    line-height: 1.1875;
    font-weight: 700;
    padding-bottom: 2.0833333333vw;
    margin-bottom: 2.5vw;
  }
}
@media screen and (max-width: 767px) {
  .p-kv__title-txt {
    padding-bottom: 4.6666666667vw;
    margin-bottom: 4.6666666667vw;
    text-shadow: 0px 0px 24px #592A95;
  }
}
.p-kv__title-txt::after {
  position: absolute;
  content: "";
  display: block;
  bottom: 0;
  height: 1px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-kv__title-txt::after {
    left: 0.9375vw;
    width: 3.2291666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-kv__title-txt::after {
    width: 6.9333333333vw;
    left: 1.2vw;
  }
}
@media screen and (min-width: 768px) {
  .p-kv__title img {
    width: 17.2395833333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-kv__title img {
    width: 36.8vw;
  }
}
.p-kv__ecodrive {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-kv__ecodrive {
    width: 16.5625vw;
    top: 4.8958333333vw;
    right: 4.8958333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-kv__ecodrive {
    width: 26vw;
    top: 8.2666666667vw;
    right: 4.6666666667vw;
  }
}
.p-kv__btns {
  display: flex;
  justify-content: center;
  position: absolute;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-kv__btns {
    column-gap: 0.8854166667vw;
    bottom: 3.0208333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-kv__btns {
    column-gap: 3.2vw;
    bottom: 8.8vw;
  }
}
.p-kv__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #fff;
  overflow: hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
@media screen and (min-width: 768px) {
  .p-kv__btn {
    width: min(400px, 31.25vw);
    height: min(40px, 3.125vw);
  }
  .p-kv__btn:hover::after {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .p-kv__btn {
    width: 36vw;
    height: 10vw;
  }
}
.p-kv__btn::after {
  position: absolute;
  content: "";
  display: block;
  inset: 0;
  opacity: 0;
  transition: all 0.3s;
}
.p-kv__btn.green::after {
  background: linear-gradient(88.42deg, rgba(255, 255, 255, 0) 1.42%, rgba(0, 182, 18, 0.36) 63.98%, rgba(86, 86, 86, 0) 100%);
}
.p-kv__btn.purple::after {
  background: linear-gradient(88.42deg, rgba(255, 255, 255, 0) 1.42%, #8324FF 54.03%, rgba(86, 86, 86, 0) 100%);
}
.p-kv__btn-txt {
  position: relative;
  z-index: 2;
  font-family: "Poppins", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-kv__btn-txt {
    font-size: clamp(7px, 1.09375vw, 14px);
    line-height: 1;
    letter-spacing: 0.03em;
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) {
  .p-kv__btn-txt {
    font-size: calc(14 / 750 * 100vw);
    line-height: 1.5;
    letter-spacing: 0.03em;
    font-weight: 600;
  }
}
.p-kv__scroll {
  position: absolute;
  width: 6.3020833333vw;
  right: 10.0520833333vw;
  bottom: 2.1354166667vw;
}

.p-intro {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-intro {
    padding: min(157px, 12.265625vw) 0 min(77px, 6.015625vw);
  }
}
@media screen and (max-width: 767px) {
  .p-intro {
    padding-top: 12.4vw;
  }
}
.p-intro img {
  display: block;
}
.p-intro.is-in .p-intro__bg {
  animation: curtainOpenVertical 0.6s cubic-bezier(0, 0, 1, 1) 0.3s forwards;
}
.p-intro.is-in .p-intro__bg img {
  animation: introImgAnim 2s cubic-bezier(0.25, 0.05, 0.75, 0.95) 0.3s forwards;
}
.p-intro.is-in .p-intro__graph {
  animation: introGraphAnim 1s cubic-bezier(0.25, 0.05, 0.75, 0.95) 0.3s forwards;
}
.p-intro__bg {
  position: absolute;
  z-index: -1;
  overflow: hidden;
  clip-path: inset(50% 0% 50% 0%);
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-intro__bg {
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-intro__bg {
    height: 147.7333333333vw;
  }
  .p-intro__bg::after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    background: linear-gradient(0deg, #000000 1.39%, rgba(0, 0, 0, 0) 100%);
    height: 24vw;
    bottom: -5.6vw;
    left: 0;
  }
}
.p-intro__bg img {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-intro__bg img {
    top: 50%;
    left: 50%;
    translate: -50% -50%;
  }
}
@media screen and (max-width: 767px) {
  .p-intro__bg img {
    top: 0;
    max-width: none;
    width: 145.2vw;
    left: 50%;
    translate: -50% 0;
  }
}
.p-intro__inner {
  position: relative;
}
.p-intro__title {
  font-family: "Poppins", sans-serif;
  mix-blend-mode: difference;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-intro__title {
    font-size: clamp(50px, 7.8125vw, 100px);
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) {
  .p-intro__title {
    font-size: calc(90 / 750 * 100vw);
    line-height: 1.1333333333;
    letter-spacing: 0em;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) {
  .p-intro__title {
    margin-left: 8vw;
  }
}
.p-intro__title-sub {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-intro__title-sub {
    font-size: clamp(10px, 1.5625vw, 20px);
    line-height: 1.2;
    letter-spacing: 0.08em;
    font-weight: 500;
  }
}
@media screen and (max-width: 767px) {
  .p-intro__title-sub {
    font-size: calc(24 / 750 * 100vw);
    line-height: 1;
    letter-spacing: 0.08em;
    font-weight: 500;
  }
}
@media screen and (min-width: 768px) {
  .p-intro__title-sub {
    top: min(60px, 4.6875vw);
    left: min(343px, 26.796875vw);
  }
}
@media screen and (max-width: 767px) {
  .p-intro__title-sub {
    right: 9.3333333333vw;
    top: 6.4vw;
  }
}
.p-intro__graph {
  position: absolute;
  z-index: 1;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .p-intro__graph {
    width: min(551px, 43.046875vw);
    top: max(-20px, -1.5625vw);
    right: min(65px, 5.078125vw);
  }
}
@media screen and (max-width: 767px) {
  .p-intro__graph {
    width: 73.4666666667vw;
    top: 28vw;
    right: 12vw;
  }
}
.p-intro__product {
  position: absolute;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-intro__product {
    width: min(459px, 35.859375vw);
    right: min(103px, 8.046875vw);
    bottom: min(43px, 3.359375vw);
  }
}
@media screen and (max-width: 767px) {
  .p-intro__product {
    width: 61.2vw;
    right: 14.8vw;
    top: 64.4vw;
  }
}
.p-intro__product-btn {
  position: absolute;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-intro__product-btn {
    column-gap: min(6px, 0.46875vw);
  }
  .p-intro__product-btn:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .p-intro__product-btn {
    column-gap: 0.8vw;
  }
}
@media screen and (min-width: 768px) {
  .p-intro__product-btn.green {
    bottom: min(72px, 5.625vw);
    left: max(-73px, -5.703125vw);
  }
}
@media screen and (max-width: 767px) {
  .p-intro__product-btn.green {
    bottom: 9.6vw;
    left: -9.7333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-intro__product-btn.purple {
    right: min(90px, 7.03125vw);
    bottom: min(72px, 5.625vw);
  }
}
@media screen and (max-width: 767px) {
  .p-intro__product-btn.purple {
    right: 12vw;
    bottom: 9.6vw;
  }
}
.p-intro__product-btn::after {
  content: "";
  display: block;
  background: center/contain no-repeat url(../img/ic-circle-arrow.png);
}
@media screen and (min-width: 768px) {
  .p-intro__product-btn::after {
    width: min(15px, 1.171875vw);
    height: min(15px, 1.171875vw);
  }
}
@media screen and (max-width: 767px) {
  .p-intro__product-btn::after {
    width: 2vw;
    height: 2vw;
  }
}
.p-intro__product-btn .txt {
  text-align: right;
  font-family: "Poppins", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-intro__product-btn .txt {
    font-size: clamp(6px, 0.9375vw, 12px);
    line-height: 1.1666666667;
    letter-spacing: 0em;
    font-weight: 300;
  }
}
@media screen and (max-width: 767px) {
  .p-intro__product-btn .txt {
    font-size: calc(12 / 750 * 100vw);
    line-height: 1.1666666667;
    letter-spacing: 0em;
    font-weight: 300;
  }
}
@media screen and (min-width: 768px) {
  .p-intro__text {
    margin-top: min(30px, 2.34375vw);
  }
}
@media screen and (max-width: 767px) {
  .p-intro__text {
    padding: 0 6.9333333333vw;
    margin-top: 78.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-intro__text-txt {
    font-size: clamp(9px, 1.40625vw, 18px);
    line-height: 1.8222222222;
    letter-spacing: 0em;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px) {
  .p-intro__text-txt {
    font-size: calc(24 / 750 * 100vw);
    line-height: 1.6666666667;
    letter-spacing: 0em;
    font-weight: 700;
  }
}
@media screen and (min-width: 768px) {
  .p-intro__text-txt:not(:last-of-type) {
    margin-bottom: min(16px, 1.25vw);
  }
}
@media screen and (max-width: 767px) {
  .p-intro__text-txt:not(:last-of-type) {
    margin-bottom: 3.2vw;
  }
}

@keyframes curtainOpenVertical {
  0% {
    clip-path: inset(50% 0% 50% 0%);
  }
  100% {
    clip-path: inset(0% 0% 0% 0%);
  }
}
@keyframes introImgAnim {
  0% {
    rotate: 180deg;
    scale: 1;
  }
  30% {
    rotate: 126deg;
    scale: 1;
  }
  100% {
    rotate: 0deg;
    scale: 1.2;
  }
}
@keyframes introGraphAnim {
  0% {
    opacity: 0;
    rotate: 240deg;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    rotate: 0deg;
  }
}
.p-product {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-product {
    margin-bottom: min(120px, 9.375vw);
  }
}
@media screen and (max-width: 767px) {
  .p-product {
    padding-top: 20vw;
  }
}
.p-product::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: -1;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .p-product::before {
    inset: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-product::before {
    height: 77.6vw;
  }
}
.p-product#green.is-in::before {
  transform: scaleY(1);
  opacity: 1;
}
.p-product#green::before {
  transition-delay: 0.4s;
  transform-origin: center 75%;
  transform: scaleY(0);
  transition: transform 3s cubic-bezier(0.16, 1, 0.3, 1) 0.5s, opacity 0.3s linear 0.4s;
}
@media screen and (min-width: 768px) {
  .p-product#green::before {
    background-image: url(../img/im-green-flash.png);
  }
}
@media screen and (max-width: 767px) {
  .p-product#green::before {
    top: 30.6666666667vw;
    background-image: url(../img/im-green-flash-sp.png);
  }
}
@media screen and (max-width: 767px) {
  .p-product#green .p-product__lead {
    margin-bottom: 26.6666666667vw;
  }
}
.p-product#purple {
  perspective: 3000px;
}
.p-product#purple.is-in::before {
  opacity: 1;
  transform: rotateX(0deg);
}
.p-product#purple::before {
  transform-origin: top;
  transform: rotateX(-90deg);
  backface-visibility: hidden;
  transition: transform 3s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, opacity 0.3s linear 0.2s;
}
@media screen and (min-width: 768px) {
  .p-product#purple::before {
    background-image: url(../img/im-purple-aurora.png);
  }
}
@media screen and (max-width: 767px) {
  .p-product#purple::before {
    background-image: url(../img/im-purple-aurora-sp.png);
    top: 56vw;
  }
}
@media screen and (max-width: 767px) {
  .p-product#purple .p-product__lead {
    margin-bottom: 30.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-product__inner {
    max-width: 88vw;
  }
}
@media screen and (min-width: 768px) {
  .p-product__title {
    margin-bottom: min(36px, 2.8125vw);
  }
}
@media screen and (max-width: 767px) {
  .p-product__title {
    margin-bottom: 4.8vw;
  }
}
@media screen and (min-width: 768px) {
  .p-product__lead {
    font-size: clamp(9px, 1.40625vw, 18px);
    line-height: 1.6666666667;
    letter-spacing: 0em;
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) {
  .p-product__lead {
    font-size: calc(22 / 750 * 100vw);
    line-height: 1.8181818182;
    letter-spacing: 0em;
    font-weight: 600;
  }
}
@media screen and (min-width: 768px) {
  .p-product__lead {
    margin-bottom: min(40px, 3.125vw);
  }
}
.p-product__wrap {
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-product__wrap {
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .p-product__wrap {
    flex-direction: column;
    row-gap: 5.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-product__left {
    width: min(600px, 46.875vw);
  }
}
.p-product__left video {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.p-product__info {
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-product__info {
    row-gap: min(14px, 1.09375vw);
    width: min(540px, 42.1875vw);
    margin-top: min(43px, 3.359375vw);
  }
}
@media screen and (max-width: 767px) {
  .p-product__info {
    row-gap: 0.5333333333vw;
    margin-top: 5.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-product__info-number {
    font-size: clamp(7px, 1.09375vw, 14px);
    line-height: 1.3571428571;
    letter-spacing: 0.03em;
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) {
  .p-product__info-number {
    font-size: calc(20 / 750 * 100vw);
    line-height: 1.35;
    letter-spacing: 0.03em;
    font-weight: 600;
  }
}
.p-product__info-name {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-product__info-name {
    column-gap: min(24px, 1.875vw);
  }
}
@media screen and (max-width: 767px) {
  .p-product__info-name {
    column-gap: 3.2vw;
  }
}
.p-product__info-name .name {
  font-family: "Poppins", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-product__info-name .name {
    font-size: clamp(11px, 1.71875vw, 22px);
    line-height: 1.5;
    letter-spacing: 0.03em;
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) {
  .p-product__info-name .name {
    font-size: calc(26 / 750 * 100vw);
    line-height: 1.5;
    letter-spacing: 0.03em;
    font-weight: 600;
  }
}
.p-product__info-name .badge {
  font-family: "Poppins", sans-serif;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-product__info-name .badge {
    font-size: clamp(6px, 0.9375vw, 12px);
    line-height: 1;
    letter-spacing: 0.03em;
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) {
  .p-product__info-name .badge {
    font-size: calc(20 / 750 * 100vw);
    line-height: 1;
    letter-spacing: 0.03em;
    font-weight: 300;
  }
}
@media screen and (min-width: 768px) {
  .p-product__info-name .badge {
    width: min(79px, 6.171875vw);
    height: min(22px, 1.71875vw);
  }
}
@media screen and (max-width: 767px) {
  .p-product__info-name .badge {
    width: 15.2vw;
    height: 4.5333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-product__info-name .limited {
    font-size: clamp(7px, 1.09375vw, 14px);
    line-height: 1.3571428571;
    letter-spacing: 0.03em;
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) {
  .p-product__info-name .limited {
    font-size: calc(20 / 750 * 100vw);
    line-height: 1.35;
    letter-spacing: 0.03em;
    font-weight: 600;
  }
}
@media screen and (min-width: 768px) {
  .p-product__info-price {
    font-size: clamp(8px, 1.25vw, 16px);
    line-height: 1.375;
    letter-spacing: 0.03em;
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) {
  .p-product__info-price {
    font-size: calc(20 / 750 * 100vw);
    line-height: 1.35;
    letter-spacing: 0.03em;
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) {
  .p-product__info-price {
    margin-bottom: 4.8vw;
  }
}
@media screen and (min-width: 768px) {
  .p-product__info-price small {
    font-size: min(12px, 0.9375vw);
  }
}
@media screen and (max-width: 767px) {
  .p-product__info-price small {
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 767px) {
  .p-product__info .c-btn {
    margin-inline: auto;
    width: 66.6666666667vw;
    height: 9.2vw;
  }
}
@media screen and (max-width: 767px) {
  .p-product__info .c-btn__txt {
    font-size: calc(24 / 750 * 100vw);
    line-height: 1;
    letter-spacing: 0.03em;
    font-weight: 600;
  }
}
.p-product__text {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
}
@media screen and (min-width: 768px) {
  .p-product__text {
    width: min(572px, 44.6875vw);
    min-height: min(500px, 39.0625vw);
    padding: min(50px, 3.90625vw) min(40px, 3.125vw);
    border-radius: min(8px, 0.625vw);
  }
}
@media screen and (max-width: 767px) {
  .p-product__text {
    border-radius: 1.0666666667vw;
  }
}
.p-product__text-head {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-product__text-head {
    pointer-events: none;
    margin-bottom: min(28px, 2.1875vw);
  }
}
@media screen and (max-width: 767px) {
  .p-product__text-head {
    padding: 3.0666666667vw 0;
  }
}
.p-product__text-head.is-open .icon::after {
  height: 0;
}
.p-product__text-head .txt {
  text-align: center;
  font-family: "Poppins", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-product__text-head .txt {
    font-size: clamp(8px, 1.25vw, 16px);
    line-height: 1.5;
    letter-spacing: 0em;
    font-weight: 500;
  }
}
@media screen and (max-width: 767px) {
  .p-product__text-head .txt {
    font-size: calc(24 / 750 * 100vw);
    line-height: 1.5;
    letter-spacing: 0em;
    font-weight: 500;
  }
}
.p-product__text-head .icon {
  position: absolute;
  width: 1.7333333333vw;
  height: 1.7333333333vw;
  top: 50%;
  transform: translateY(-50%);
  right: 5.7333333333vw;
}
.p-product__text-head .icon::before, .p-product__text-head .icon::after {
  position: absolute;
  content: "";
  display: block;
  background-color: #fff;
  transition: all 0.3s;
}
.p-product__text-head .icon::before {
  width: 100%;
  height: 1px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.p-product__text-head .icon::after {
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-product__text-body {
    display: none;
    padding: 1.6vw 5.4666666667vw 4.8vw;
  }
}
@media screen and (min-width: 768px) {
  .p-product__text-body .txt {
    font-size: clamp(7px, 1.09375vw, 14px);
    line-height: 1.7142857143;
    letter-spacing: 0em;
    font-weight: 500;
  }
}
@media screen and (max-width: 767px) {
  .p-product__text-body .txt {
    font-size: calc(20 / 750 * 100vw);
    line-height: 1.75;
    letter-spacing: 0em;
    font-weight: 400;
  }
}
@media screen and (min-width: 768px) {
  .p-product__text-body .txt:not(:last-of-type) {
    margin-bottom: min(14px, 1.09375vw);
  }
}
@media screen and (max-width: 767px) {
  .p-product__text-body .txt:not(:last-of-type) {
    margin-bottom: 1.8666666667vw;
  }
}

@media screen and (max-width: 767px) {
  .p-gallery {
    padding-top: 20vw;
  }
}
.p-gallery__title {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-gallery__title {
    margin-bottom: min(60px, 4.6875vw);
  }
}
@media screen and (max-width: 767px) {
  .p-gallery__title {
    margin: 0 5.3333333333vw 8vw;
  }
}
.p-gallery__title::after {
  position: absolute;
  content: "";
  display: block;
  height: 1px;
  background-color: #D9D9D9;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.p-gallery__title-txt {
  position: relative;
  z-index: 2;
  display: block;
  width: max-content;
  background-color: #000;
  font-family: "Poppins", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-gallery__title-txt {
    font-size: clamp(7px, 1.09375vw, 14px);
    line-height: 1.1428571429;
    letter-spacing: 0.08em;
    font-weight: 400;
  }
}
@media screen and (max-width: 767px) {
  .p-gallery__title-txt {
    font-size: calc(24 / 750 * 100vw);
    line-height: 1;
    letter-spacing: 0.05em;
    font-weight: 400;
  }
}
@media screen and (min-width: 768px) {
  .p-gallery__title-txt {
    padding-right: min(30px, 2.34375vw);
  }
}
@media screen and (max-width: 767px) {
  .p-gallery__title-txt {
    padding-right: 4vw;
  }
}
.p-gallery__tabs {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-gallery__tabs {
    margin-bottom: min(34px, 2.65625vw);
    column-gap: min(30px, 2.34375vw);
  }
}
@media screen and (max-width: 767px) {
  .p-gallery__tabs {
    margin-bottom: 4.5333333333vw;
    column-gap: 4vw;
  }
}
.p-gallery__tab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  position: relative;
  background: center/contain no-repeat url(../img/bg-tab-btn.png);
  overflow: hidden;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-gallery__tab-btn {
    width: min(282px, 22.03125vw);
    height: min(44px, 3.4375vw);
    column-gap: min(8px, 0.625vw);
  }
}
@media screen and (max-width: 767px) {
  .p-gallery__tab-btn {
    width: 37.6vw;
    height: 5.8666666667vw;
    column-gap: 1.0666666667vw;
  }
}
.p-gallery__tab-btn::after {
  position: absolute;
  content: "";
  display: block;
  inset: 0;
  z-index: 1;
  background: linear-gradient(88.42deg, rgba(255, 255, 255, 0) 1.42%, #565656 54.03%, rgba(86, 86, 86, 0) 100%);
  opacity: 0;
  transition: all 0.4s;
}
.p-gallery__tab-btn.is-active::after {
  opacity: 1;
}
.p-gallery__tab-btn.is-active .icon::after {
  display: none;
}
.p-gallery__tab-btn.is-active .icon.green {
  border: 1px solid #7C7C7C;
  background-color: #00B612;
}
.p-gallery__tab-btn.is-active .icon.purple {
  border: 1px solid #5E5E5E;
  background-color: #6C00C8;
}
.p-gallery__tab-btn .icon {
  position: relative;
  z-index: 2;
  border-radius: 50%;
  transition: all 0.4s;
}
@media screen and (min-width: 768px) {
  .p-gallery__tab-btn .icon {
    width: min(16px, 1.25vw);
    height: min(16px, 1.25vw);
  }
}
@media screen and (max-width: 767px) {
  .p-gallery__tab-btn .icon {
    width: 2.1333333333vw;
    height: 2.1333333333vw;
  }
}
.p-gallery__tab-btn .icon::after {
  position: absolute;
  content: "";
  display: block;
  inset: 0;
  background: center/contain no-repeat url(../img/bg-tab-btn-icon.png);
  z-index: -1;
  mix-blend-mode: overlay;
}
.p-gallery__tab-btn .icon.green {
  background-color: rgba(0, 182, 18, 0.2);
}
.p-gallery__tab-btn .icon.purple {
  background-color: rgba(108, 0, 200, 0.3);
}
.p-gallery__tab-btn .txt {
  position: relative;
  z-index: 2;
  font-family: "Poppins", sans-serif;
  font-style: italic;
}
@media screen and (min-width: 768px) {
  .p-gallery__tab-btn .txt {
    font-size: clamp(7px, 1.09375vw, 14px);
    line-height: 1;
    letter-spacing: 0.08em;
    font-weight: 400;
  }
}
@media screen and (max-width: 767px) {
  .p-gallery__tab-btn .txt {
    font-size: calc(14 / 750 * 100vw);
    line-height: 1;
    letter-spacing: 0.08em;
    font-weight: 400;
  }
}
.p-gallery__tab-content {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.p-gallery__tab-content.is-active {
  opacity: 1;
  visibility: visible;
  height: auto;
  overflow: visible;
}
.p-gallery img {
  display: block;
}
.p-gallery__main {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-gallery__main .splide__slide {
    margin: 0 min(20px, 1.5625vw);
    width: min(960px, 75vw);
  }
}
@media screen and (max-width: 767px) {
  .p-gallery__main .splide__slide {
    width: 94.1333333333vw;
    margin: 0 2.9333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-gallery__main .splide__arrow {
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  .p-gallery__main .splide__arrow--prev {
    left: calc(50% - 510px);
  }
  .p-gallery__main .splide__arrow--next {
    right: calc(50% - 510px);
  }
}
@media screen and (min-width: 768px) {
  .p-gallery__thumbs {
    margin-top: min(30px, 2.34375vw);
  }
}
@media screen and (max-width: 767px) {
  .p-gallery__thumbs {
    margin-top: 4vw;
  }
}
.p-gallery__thumbs .splide__list {
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-gallery__thumbs .splide__slide {
    width: min(224px, 17.5vw);
    margin: 0 min(10px, 0.78125vw);
  }
}
@media screen and (max-width: 767px) {
  .p-gallery__thumbs .splide__slide {
    width: 26.6666666667vw;
    margin: 0 1.3333333333vw;
  }
}

@media screen and (max-width: 767px) {
  .p-technology {
    padding: 16vw 0 17.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-technology__title {
    margin-bottom: min(60px, 4.6875vw);
  }
}
@media screen and (max-width: 767px) {
  .p-technology__title {
    margin-bottom: 5.3333333333vw;
    margin-left: 6.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-technology__subtitle {
    font-size: clamp(20px, 3.125vw, 40px);
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) {
  .p-technology__subtitle {
    font-size: calc(44 / 750 * 100vw);
    line-height: 1.3636363636;
    letter-spacing: 0em;
    font-weight: 600;
  }
}
@media screen and (min-width: 768px) {
  .p-technology__subtitle {
    margin-bottom: min(60px, 4.6875vw);
  }
}
@media screen and (max-width: 767px) {
  .p-technology__subtitle {
    margin-bottom: 5.3333333333vw;
    margin-left: 6.6666666667vw;
  }
}
.p-technology__list {
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-technology__list {
    padding-left: calc((100vw - 1200px) / 2);
  }
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .p-technology__list {
    padding-left: min(40px, 3.125vw);
  }
}
@media screen and (max-width: 767px) {
  .p-technology__list {
    padding: 0 8vw;
  }
}
.p-technology__list::after {
  content: "";
  display: block;
  flex-shrink: 0;
  height: 1px;
}
@media screen and (min-width: 768px) {
  .p-technology__list::after {
    width: min(60px, 4.6875vw);
  }
}
@media screen and (max-width: 767px) {
  .p-technology__list::after {
    width: 4.6666666667vw;
  }
}
.p-technology__item {
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-technology__item {
    font-size: clamp(7px, 1.09375vw, 14px);
    line-height: 1.7142857143;
    letter-spacing: 0em;
    font-weight: 500;
  }
}
@media screen and (max-width: 767px) {
  .p-technology__item {
    font-size: calc(14 / 750 * 100vw);
    line-height: 1.7142857143;
    letter-spacing: 0em;
    font-weight: 500;
  }
}
@media screen and (min-width: 768px) {
  .p-technology__item {
    width: min(360px, 28.125vw);
    margin-right: min(40px, 3.125vw);
  }
}
@media screen and (max-width: 767px) {
  .p-technology__item {
    width: 48vw;
    margin-right: 4vw;
  }
}
.p-technology__item img {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-technology__item-title {
    font-size: clamp(12px, 1.875vw, 24px);
    line-height: 1.25;
    letter-spacing: 0em;
    font-weight: 500;
  }
}
@media screen and (max-width: 767px) {
  .p-technology__item-title {
    font-size: calc(24 / 750 * 100vw);
    line-height: 1.25;
    letter-spacing: 0em;
    font-weight: 500;
  }
}
@media screen and (min-width: 768px) {
  .p-technology__item-title {
    margin: min(24px, 1.875vw) 0 min(14px, 1.09375vw);
  }
}
@media screen and (max-width: 767px) {
  .p-technology__item-title {
    margin: 3.2vw 0 1.8666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-technology__item-name {
    margin-bottom: min(14px, 1.09375vw);
  }
}
@media screen and (max-width: 767px) {
  .p-technology__item-name {
    margin-bottom: 1.8666666667vw;
  }
}

.p-eco-drive {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-eco-drive {
    padding-bottom: min(100px, 7.8125vw);
  }
  .p-eco-drive::before {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 667/526;
    opacity: 0.7;
    top: -3%;
    left: 0;
    z-index: -1;
    background: center/contain no-repeat url(../img/bg-eco-drive.png);
    width: 34.7395833333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-eco-drive {
    padding-bottom: 19.3333333333vw;
  }
}
.p-eco-drive__head {
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-eco-drive__head {
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: min(60px, 4.6875vw);
  }
}
@media screen and (max-width: 767px) {
  .p-eco-drive__head {
    flex-direction: column;
    align-items: center;
    row-gap: 3.7333333333vw;
    margin-bottom: 5.7333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-eco-drive__head-text {
    width: 100%;
    padding-left: 7.4666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-eco-drive__head-logo {
    width: min(380px, 29.6875vw);
  }
}
@media screen and (max-width: 767px) {
  .p-eco-drive__head-logo {
    width: 50.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-eco-drive__title {
    margin-bottom: min(16px, 1.25vw);
  }
}
@media screen and (max-width: 767px) {
  .p-eco-drive__title {
    margin-bottom: 2.1333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-eco-drive__title .c-title-jp {
    font-size: clamp(20px, 3.125vw, 40px);
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 600;
  }
}
@media screen and (min-width: 768px) {
  .p-eco-drive__lead {
    font-size: clamp(8px, 1.25vw, 16px);
    line-height: 1.5;
    letter-spacing: 0em;
    font-weight: 400;
  }
}
@media screen and (max-width: 767px) {
  .p-eco-drive__lead {
    font-size: calc(20 / 750 * 100vw);
    line-height: 1.55;
    letter-spacing: 0em;
    font-weight: 400;
  }
}
.p-eco-drive__list {
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-eco-drive__list {
    padding-left: calc((100vw - 1200px) / 2);
  }
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .p-eco-drive__list {
    padding-left: min(40px, 3.125vw);
  }
}
@media screen and (max-width: 767px) {
  .p-eco-drive__list {
    padding: 0 8.9333333333vw;
  }
}
.p-eco-drive__list::after {
  content: "";
  display: block;
  flex-shrink: 0;
  height: 1px;
}
@media screen and (min-width: 768px) {
  .p-eco-drive__list::after {
    width: min(60px, 4.6875vw);
  }
}
@media screen and (max-width: 767px) {
  .p-eco-drive__list::after {
    width: 4.6666666667vw;
  }
}
.p-eco-drive__item {
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-eco-drive__item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-image: url(../img/bg-eco-drive-box.png);
    width: min(568px, 44.375vw);
    height: min(248px, 19.375vw);
    padding: min(30px, 2.34375vw) min(21px, 1.640625vw) 0;
    margin-right: 8vw;
  }
}
@media screen and (max-width: 767px) {
  .p-eco-drive__item {
    background-image: url(../img/bg-eco-drive-box-sp.png);
    width: 50.6666666667vw;
    height: 97.2vw;
    padding: 8vw 5.0666666667vw 0;
    margin-right: 4.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-eco-drive__item-text {
    width: min(302px, 23.59375vw);
  }
}
@media screen and (min-width: 768px) {
  .p-eco-drive__item-title {
    font-size: clamp(10px, 1.5625vw, 20px);
    line-height: 1.45;
    letter-spacing: 0em;
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) {
  .p-eco-drive__item-title {
    font-size: calc(24 / 750 * 100vw);
    line-height: 1.2083333333;
    letter-spacing: 0em;
    font-weight: 600;
  }
}
@media screen and (min-width: 768px) {
  .p-eco-drive__item-title {
    margin-bottom: min(28px, 2.1875vw);
  }
}
@media screen and (max-width: 767px) {
  .p-eco-drive__item-title {
    text-align: center;
    margin-bottom: 41.6vw;
  }
}
@media screen and (min-width: 768px) {
  .p-eco-drive__item-txt {
    font-size: clamp(7px, 1.09375vw, 14px);
    line-height: 1.5714285714;
    letter-spacing: 0em;
    font-weight: 400;
  }
}
@media screen and (max-width: 767px) {
  .p-eco-drive__item-txt {
    font-size: calc(20 / 750 * 100vw);
    line-height: 1.5;
    letter-spacing: 0em;
    font-weight: 400;
  }
}
@media screen and (min-width: 768px) {
  .p-eco-drive__item-note {
    font-size: clamp(5px, 0.78125vw, 10px);
    line-height: 1.6;
    letter-spacing: 0em;
    font-weight: 400;
  }
}
@media screen and (max-width: 767px) {
  .p-eco-drive__item-note {
    font-size: calc(18 / 750 * 100vw);
    line-height: 1.5;
    letter-spacing: 0em;
    font-weight: 400;
  }
}
.p-eco-drive__item-img {
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-eco-drive__item-img {
    width: min(196px, 15.3125vw);
  }
}
@media screen and (max-width: 767px) {
  .p-eco-drive__item-img {
    position: absolute;
    width: 40.4vw;
    left: 50%;
    transform: translateX(-50%);
    top: 14vw;
  }
}

.p-design__bg {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-design__bg {
    padding-top: 17.2vw;
  }
}
.p-design__bg::before {
  position: absolute;
  content: "";
  display: block;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
  background-repeat: no-repeat;
  background-position: top center;
}
@media screen and (min-width: 768px) {
  .p-design__bg::before {
    background-size: cover;
    background-image: url(../img/bg-design.png);
  }
}
@media screen and (max-width: 767px) {
  .p-design__bg::before {
    background-size: 100% auto;
    background-image: url(../img/bg-design-sp.png);
  }
}
@media screen and (min-width: 768px) {
  .p-design__title {
    margin-bottom: min(30px, 2.34375vw);
  }
}
@media screen and (max-width: 767px) {
  .p-design__title {
    margin-left: 7.3333333333vw;
    margin-bottom: 5.2vw;
  }
}
@media screen and (min-width: 768px) {
  .p-design__lead {
    font-size: clamp(9px, 1.40625vw, 18px);
    line-height: 1.5;
    letter-spacing: 0.06em;
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) {
  .p-design__lead {
    font-size: calc(20 / 750 * 100vw);
    line-height: 1.5;
    letter-spacing: 0.06em;
    font-weight: 600;
  }
}
@media screen and (min-width: 768px) {
  .p-design__lead {
    margin-bottom: min(60px, 4.6875vw);
  }
}
@media screen and (max-width: 767px) {
  .p-design__lead {
    margin: 0 12.5333333333vw 10.4vw 7.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-design__movie {
    margin-bottom: min(60px, 4.6875vw);
  }
}
@media screen and (max-width: 767px) {
  .p-design__movie {
    width: 88vw;
    margin: 0 auto 10.1333333333vw;
  }
}
.p-design__movie-wrap {
  cursor: pointer;
}
.p-design__movie iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
.p-design__wrap {
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-design__wrap {
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .p-design__wrap {
    flex-direction: column-reverse;
    align-items: center;
    row-gap: 8vw;
  }
}
@media screen and (min-width: 768px) {
  .p-design__text {
    width: min(550px, 42.96875vw);
  }
}
@media screen and (max-width: 767px) {
  .p-design__text {
    width: 84.8vw;
  }
}
.p-design__text-wrap {
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .p-design__text-wrap {
    padding: min(16px, 1.25vw) min(27px, 2.109375vw);
    background-image: url(../img/bg-intro-box.png);
    height: min(160px, 12.5vw);
  }
}
@media screen and (max-width: 767px) {
  .p-design__text-wrap {
    height: 27.8666666667vw;
    padding: 4vw;
    background-image: url(../img/bg-intro-box-sp.png);
  }
}
@media screen and (min-width: 768px) {
  .p-design__text-wrap:not(:last-of-type) {
    margin-bottom: min(20px, 1.5625vw);
  }
}
@media screen and (max-width: 767px) {
  .p-design__text-wrap:not(:last-of-type) {
    margin-bottom: 2.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-design__text-txt {
    font-size: clamp(8px, 1.25vw, 16px);
    line-height: 1.5;
    letter-spacing: 0.075em;
    font-weight: 400;
  }
}
@media screen and (max-width: 767px) {
  .p-design__text-txt {
    font-size: calc(20 / 750 * 100vw);
    line-height: 1.45;
    letter-spacing: 0.06em;
    font-weight: 400;
  }
}
@media screen and (min-width: 768px) {
  .p-design__text-info {
    font-size: clamp(7px, 1.09375vw, 14px);
    line-height: 1.7142857143;
    letter-spacing: 0.085em;
    font-weight: 400;
  }
}
@media screen and (max-width: 767px) {
  .p-design__text-info {
    font-size: calc(20 / 750 * 100vw);
    line-height: 1.2;
    letter-spacing: 0.06em;
    font-weight: 400;
  }
}
@media screen and (min-width: 768px) {
  .p-design__text-info {
    margin-top: min(8px, 0.625vw);
  }
}
@media screen and (max-width: 767px) {
  .p-design__text-info {
    margin-top: 1.0666666667vw;
    margin-left: 2vw;
  }
}
@media screen and (min-width: 768px) {
  .p-design__intro {
    width: min(610px, 47.65625vw);
  }
}
@media screen and (max-width: 767px) {
  .p-design__intro {
    width: 88vw;
  }
}
@media screen and (min-width: 768px) {
  .p-design__intro-txt {
    font-size: clamp(9px, 1.40625vw, 18px);
    line-height: 1.3333333333;
    letter-spacing: 0.06em;
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) {
  .p-design__intro-txt {
    font-size: calc(28 / 750 * 100vw);
    line-height: 1.5714285714;
    letter-spacing: 0.04em;
    font-weight: 600;
  }
}
@media screen and (min-width: 768px) {
  .p-design__intro-txt {
    margin-top: min(20px, 1.5625vw);
  }
}
@media screen and (max-width: 767px) {
  .p-design__intro-txt {
    margin-top: 2.6666666667vw;
  }
}

@media screen and (max-width: 767px) {
  .p-lineup {
    padding: 26.6666666667vw 0 23.0666666667vw;
  }
}
.p-lineup__title {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-lineup__title {
    margin-bottom: min(60px, 4.6875vw);
  }
}
@media screen and (max-width: 767px) {
  .p-lineup__title {
    margin: 0 5.3333333333vw 8vw;
  }
}
.p-lineup__title::after {
  position: absolute;
  content: "";
  display: block;
  height: 1px;
  background-color: #D9D9D9;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.p-lineup__title-txt {
  position: relative;
  z-index: 2;
  display: block;
  width: max-content;
  background-color: #000;
  font-family: "Poppins", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-lineup__title-txt {
    font-size: clamp(7px, 1.09375vw, 14px);
    line-height: 1.1428571429;
    letter-spacing: 0.08em;
    font-weight: 400;
  }
}
@media screen and (max-width: 767px) {
  .p-lineup__title-txt {
    font-size: calc(24 / 750 * 100vw);
    line-height: 1;
    letter-spacing: 0.05em;
    font-weight: 400;
  }
}
@media screen and (min-width: 768px) {
  .p-lineup__title-txt {
    padding-right: min(30px, 2.34375vw);
  }
}
@media screen and (max-width: 767px) {
  .p-lineup__title-txt {
    padding-right: 4vw;
  }
}
.p-lineup__list {
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-lineup__list {
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .p-lineup__list {
    flex-direction: column;
    align-items: center;
    row-gap: 14vw;
  }
}
.p-lineup__item {
  display: flex;
  align-items: flex-end;
}
@media screen and (min-width: 768px) {
  .p-lineup__item {
    width: min(560px, 43.75vw);
    column-gap: min(20px, 1.5625vw);
  }
}
@media screen and (max-width: 767px) {
  .p-lineup__item {
    width: 78.1333333333vw;
    column-gap: 4vw;
  }
}
@media screen and (min-width: 768px) {
  .p-lineup__item img {
    width: min(250px, 19.53125vw);
  }
}
@media screen and (max-width: 767px) {
  .p-lineup__item img {
    width: 35.4666666667vw;
  }
}
.p-lineup__text {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-lineup__text {
    row-gap: min(16px, 1.25vw);
  }
}
@media screen and (max-width: 767px) {
  .p-lineup__text {
    row-gap: 2.1333333333vw;
  }
}
.p-lineup__text-info {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-lineup__text-info {
    row-gap: min(8px, 0.625vw);
  }
}
@media screen and (max-width: 767px) {
  .p-lineup__text-info {
    row-gap: 1.0666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-lineup__text-label {
    font-size: clamp(7px, 1.09375vw, 14px);
    line-height: 1.3571428571;
    letter-spacing: 0.03em;
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) {
  .p-lineup__text-label {
    font-size: calc(20 / 750 * 100vw);
    line-height: 1.35;
    letter-spacing: 0.03em;
    font-weight: 400;
  }
}
.p-lineup__text-title {
  font-family: "Poppins", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-lineup__text-title {
    font-size: clamp(11px, 1.71875vw, 22px);
    line-height: 1.5;
    letter-spacing: 0.03em;
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) {
  .p-lineup__text-title {
    font-size: calc(24 / 750 * 100vw);
    line-height: 1.5;
    letter-spacing: 0.03em;
    font-weight: 600;
  }
}
.p-lineup__text-badge {
  font-family: "Poppins", sans-serif;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-lineup__text-badge {
    font-size: clamp(6px, 0.9375vw, 12px);
    line-height: 1.5;
    letter-spacing: 0.03em;
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) {
  .p-lineup__text-badge {
    font-size: calc(12 / 750 * 100vw);
    line-height: 1.5;
    letter-spacing: 0.03em;
    font-weight: 600;
  }
}
@media screen and (min-width: 768px) {
  .p-lineup__text-badge {
    width: min(79px, 6.171875vw);
    height: min(22px, 1.71875vw);
  }
}
@media screen and (max-width: 767px) {
  .p-lineup__text-badge {
    width: 10.5333333333vw;
    height: 2.9333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-lineup__text-limited {
    font-size: clamp(7px, 1.09375vw, 14px);
    line-height: 1.3571428571;
    letter-spacing: 0.03em;
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) {
  .p-lineup__text-limited {
    font-size: calc(20 / 750 * 100vw);
    line-height: 1.35;
    letter-spacing: 0.03em;
    font-weight: 600;
  }
}
@media screen and (min-width: 768px) {
  .p-lineup__text-price {
    font-size: clamp(8px, 1.25vw, 16px);
    line-height: 1.375;
    letter-spacing: 0.03em;
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) {
  .p-lineup__text-price {
    font-size: calc(20 / 750 * 100vw);
    line-height: 1.35;
    letter-spacing: 0.03em;
    font-weight: 600;
  }
}
@media screen and (min-width: 768px) {
  .p-lineup__text-price small {
    font-size: min(12px, 0.9375vw);
  }
}
@media screen and (max-width: 767px) {
  .p-lineup__text-price small {
    font-size: 1.8666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-lineup__text-txt {
    font-size: clamp(7px, 1.09375vw, 14px);
    line-height: 1.5714285714;
    letter-spacing: 0.03em;
    font-weight: 400;
  }
}
@media screen and (max-width: 767px) {
  .p-lineup__text-txt {
    font-size: calc(18 / 750 * 100vw);
    line-height: 1.6666666667;
    letter-spacing: 0.03em;
    font-weight: 400;
  }
}
@media screen and (max-width: 767px) {
  .p-lineup__text .c-btn {
    width: 38.6666666667vw;
    height: 5.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-lineup__text .c-btn__txt {
    font-size: calc(14 / 750 * 100vw);
    line-height: 1;
    letter-spacing: 0.03em;
    font-weight: 600;
  }
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}