* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style-type: none;
}

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

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: A-OTF-ShinGoPro;
  src: url("../public/fonts/A-OTF-ShinGoPro-ExLight.otf") format("opentype");
  font-weight: 200;
  font-display: swap;
}
@font-face {
  font-family: A-OTF-ShinGoPro;
  src: url("../public/fonts/A-OTF-ShinGoPro-Light.otf") format("opentype");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: A-OTF-ShinGoPro;
  src: url("../public/fonts/A-OTF-ShinGoPro-Regular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: A-OTF-ShinGoPro;
  src: url("../public/fonts/A-OTF-ShinGoPro-Medium.otf") format("opentype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: A-OTF-ShinGoPro;
  src: url("../public/fonts/A-OTF-ShinGoPro-Bold.otf") format("opentype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: A-OTF-ShinGoPro;
  src: url("../public/fonts/A-OTF-ShinGoPro-Heavy.otf") format("opentype");
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: A-OTF-ShinGoPro;
  src: url("../public/fonts/A-OTF-ShinGoPro-Ultra.otf") format("opentype");
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: Nissan-Brand;
  src: url("../public/fonts/NissanBrand-Light.otf");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: Nissan-Brand;
  src: url("../public/fonts/NissanBrand-Regular.otf");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Nissan-Brand;
  src: url("../public/fonts/NissanBrand-Italic.otf");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: Nissan-Brand;
  src: url("../public/fonts/NissanBrand-Bold.otf");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: Nissan-Brand;
  src: url("../public/fonts/NissanBrand-BoldItalic.otf");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
html {
  font-family: "A-OTF-ShinGoPro", sans-serif;
  font-size: 10px;
  color: #000;
  scroll-behavior: smooth;
}

.accordion__container {
  border-bottom: 1px solid #000;
}
.accordion__container:first-child {
  border-top: 1px solid #000;
}
.accordion__container--white {
  border-color: #fff;
}
.accordion__container--white:first-child {
  border-color: #fff;
}
.accordion__tab {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .accordion__tab {
    gap: 10px;
  }
}
.accordion__tab::after {
  content: "";
  width: 20px;
  height: 10.67px;
  margin-top: 8px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background: url("../public/img/svg/caret-down-black.svg") no-repeat center/contain;
}
.accordion__tab:hover {
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .accordion__tab:hover {
    gap: 10px;
  }
}
.accordion__tab.active::after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.accordion__tab.active .accordion__header {
  opacity: 0;
}
.accordion__tab--white::after {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.accordion__header {
  font-size: 3rem;
  text-align: right;
  padding-block: 20px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-weight: 400;
  font-family: "Nissan-Brand", sans-serif;
}
@media screen and (max-width: 767px) {
  .accordion__header {
    font-size: 24px;
    line-height: 1.4583333333em;
  }
}
.accordion__content {
  height: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.accordion__content.active {
  opacity: 1;
  height: 100%;
}
.accordion__button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
.accordion__note {
  font-size: 1rem;
  display: block;
  margin-top: 5px;
  line-height: 2.4em;
}
@media screen and (max-width: 980px) {
  .accordion__note {
    text-align: right;
  }
}

.button {
  gap: 20px;
  height: 42px;
  width: 285px;
  font-size: 1.4rem;
  border-radius: 10px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  letter-spacing: -0.05em;
  background-color: #fff;
  border: 1px solid #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .button {
    gap: 12.2px;
    width: 220px;
    height: 65px;
    font-size: 16.8px;
    border-radius: 15px;
  }
}
.button::after {
  content: "";
  width: 15px;
  height: 15px;
  margin-top: 2px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: url("../public/img/svg/external-link.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .button::after {
    width: 18px;
    height: 18px;
  }
}
.button:hover {
  color: #fff;
  background-color: #000;
  border: 1px solid #fff;
}
.button:hover::after {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.button--big {
  gap: 15px;
  height: 63px;
  font-size: 2.1rem;
  border-radius: 15px;
}
@media screen and (max-width: 767px) {
  .button--big {
    gap: 10px;
    height: 42px;
    font-size: 14px;
    border-radius: 10px;
  }
}
.button--big::after {
  width: 22.5px;
  height: 22.5px;
}
@media screen and (max-width: 767px) {
  .button--big::after {
    width: 15px;
    height: 15px;
  }
}
.button--black {
  color: #fff;
  background-color: #000;
  border: 1px solid #fff;
}
.button--black::after {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.button--black:hover {
  color: #000;
  background-color: #fff;
  border: 1px solid #000;
}
.button--black:hover::after {
  -webkit-filter: unset;
          filter: unset;
}

.footer {
  color: #fff;
  padding-block: 120px 80px;
  background-color: #000;
}
.footer--sub {
  padding-block: 120px 0;
}
@media screen and (max-width: 767px) {
  .footer--sub {
    padding-top: 70px;
  }
}
.footer__accordion {
  margin-block: 135px 97px;
}
@media screen and (max-width: 767px) {
  .footer__accordion {
    margin-block: 50px 70px;
  }
}
.footer__content--open {
  opacity: 1;
  height: 100%;
  max-height: 100%;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .footer__content--open {
    padding-top: 50px;
  }
}
.footer__container {
  border-color: #fff;
}
.footer__container:first-child {
  border-color: #fff;
}
.footer__container--open:first-child {
  border-top: none;
}
.footer__container--open:last-child {
  border-bottom: none;
}
.footer__wrap {
  padding-block: 25px 200px;
}
@media screen and (max-width: 767px) {
  .footer__wrap {
    padding-block: 4px 50px;
  }
}
.footer__tab {
  font-family: "A-OTF-ShinGoPro", sans-serif;
}
@media screen and (max-width: 767px) {
  .footer__tab {
    max-width: calc(100% - 60px) !important;
  }
}
.footer__tab::after {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
@media screen and (max-width: 767px) {
  .footer__tab::after {
    margin-top: 4px;
  }
}
.footer__tab--open::after {
  content: none;
}
.footer__header {
  font-size: 2.7rem;
}
@media screen and (max-width: 767px) {
  .footer__header {
    font-size: 21px;
  }
}
.footer__popup {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 980px) {
  .footer__popup {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
}
.footer__info {
  width: 100% !important;
}
.footer__details {
  width: 870px;
  max-width: 100%;
  margin: 50px 0 0 auto;
}
@media screen and (max-width: 980px) {
  .footer__details {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .footer__details {
    margin-top: 40px;
  }
}
.footer__event {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 3rem;
  letter-spacing: -0.03em;
  line-height: 1.2em;
}
@media screen and (max-width: 1000px) {
  .footer__event {
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .footer__event {
    font-size: 21px;
  }
}
.footer__event:not(:last-child) {
  margin-bottom: 50px;
}
.footer__event .en {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .footer__event .en {
    font-size: 23px;
  }
}
.footer__event--mb100:not(:last-child) {
  margin-bottom: 100px;
}
.footer__event--line {
  margin-bottom: 60px;
  padding-bottom: 30px;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .footer__event--line {
    font-size: 17px;
    padding-bottom: 20px;
  }
}
.footer__event--line:not(:last-child) {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .footer__event--line:not(:last-child) {
    margin-bottom: 30px;
  }
}
.footer__event--line:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .footer__event--line .en {
    font-size: 19px;
  }
}
.footer__event--center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .footer__event--center {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 1000px) {
  .footer__text {
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  .footer__text {
    max-width: 390px;
    margin-left: auto;
  }
}
.footer__text--fit {
  letter-spacing: 0;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .footer__text--fit {
    max-width: 100%;
    text-align: right;
  }
}
.footer__text--link {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.footer__text--link:hover {
  text-decoration: none;
}
.footer__text--external {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .footer__text--external {
    gap: 15px;
  }
}
.footer__text--external::after {
  content: "";
  width: 27px;
  height: 27px;
  margin-top: 10px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  background: url("../public/img/svg/external-link.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .footer__text--external::after {
    width: 18.9px;
    height: 18.9px;
    margin-top: 6px;
  }
}
.footer__text--external span {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.footer__text--external span:hover {
  text-decoration: none;
}
.footer__label {
  min-width: 350px;
}
@media screen and (max-width: 767px) {
  .footer__label--date {
    font-size: 14px;
  }
}
.footer__label--small {
  font-size: 21px;
  letter-spacing: -0.05em;
  line-height: 1.5714285714em;
}
.footer__label--small.en {
  font-size: 2.4rem !important;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 767px) {
  .footer__label--small.en {
    font-size: 20px !important;
  }
}
.footer__label.en {
  font-size: 3.3rem;
}
@media screen and (max-width: 767px) {
  .footer__label.en {
    font-size: 24px;
  }
}
.footer__dt {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .footer__dt {
    max-width: 495px;
    margin-left: auto;
  }
}
.footer__dt-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2.1rem;
  line-height: 1.5714285714em;
}
@media screen and (max-width: 767px) {
  .footer__dt-wrap {
    font-size: 15.4px;
  }
}
.footer__dt-wrap .en {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .footer__dt-wrap .en {
    font-size: 17.4px;
  }
}
@media screen and (max-width: 366px) {
  .footer__dt-wrap .en {
    font-size: 14px;
  }
}
@media screen and (max-width: 335px) {
  .footer__dt-wrap .en {
    font-size: 12px;
  }
}
.footer__date {
  min-width: 110px;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .footer__date {
    margin-right: 0;
    min-width: 75px;
  }
}
.footer__time {
  letter-spacing: 0;
  margin-left: auto;
}
.footer__time span {
  width: 50px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .footer__time span {
    width: 35px;
  }
}
@media screen and (max-width: 767px) {
  .footer__time--en span {
    width: 41.5px;
  }
}
@media screen and (max-width: 335px) {
  .footer__time--en span {
    width: 35px;
  }
}
.footer__time-special {
  text-align: center;
}
.footer__day {
  letter-spacing: 0;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.footer__note {
  display: block;
  margin-top: 30px;
  font-size: 1.4rem;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .footer__note {
    margin-top: 20px;
  }
}
.footer__note .en {
  font-size: 1.4rem;
}
.footer__location-text {
  display: block;
  font-size: 2.1rem;
  margin-bottom: 50px;
  letter-spacing: -0.05em;
  line-height: 1.5714285714em;
}
@media screen and (max-width: 1000px) {
  .footer__location-text {
    max-width: 449px;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .footer__location-text {
    max-width: 330px;
    font-size: 15.4px;
    margin-bottom: 30px;
  }
}
.footer__location-text .en {
  font-size: 2.3rem;
}
@media screen and (max-width: 767px) {
  .footer__location-text .en {
    font-size: 17.4px;
    letter-spacing: -0.1em;
  }
}
.footer__location-text--en {
  letter-spacing: normal;
  font-size: 2.1rem !important;
}
.footer__location {
  width: 100%;
}
.footer__map {
  aspect-ratio: 531/300;
}
@media screen and (max-width: 767px) {
  .footer__map {
    aspect-ratio: 353/199;
  }
}
.footer__map-link {
  gap: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
}
@media screen and (max-width: 980px) {
  .footer__map-link {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .footer__map-link {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 30px;
  }
}
.footer__button {
  width: 100%;
  max-width: 256px;
}
@media screen and (max-width: 980px) {
  .footer__button {
    max-width: 353px;
  }
}
.footer__button--en {
  font-size: 1.2rem;
  font-family: "Nissan-Brand", sans-serif;
}
@media screen and (max-width: 767px) {
  .footer__button--en {
    font-size: 16px;
  }
}
.footer__button--small {
  gap: 10px;
  font-size: 1.2rem;
}
.footer__button .en {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .footer__button .en {
    font-size: 18.8px;
  }
}
.footer__share {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__share-wrap {
  gap: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .footer__share-wrap {
    gap: 24px;
    margin-top: 19px;
  }
}
.footer__share-label {
  font-size: 2.4rem;
  font-family: "Nissan-Brand", sans-serif;
}
@media screen and (max-width: 767px) {
  .footer__share-label {
    font-size: 20px;
  }
}
.footer__end {
  gap: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer__end {
    margin-top: 50px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.footer__copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.5rem;
  font-family: "Nissan-Brand", sans-serif;
}
.footer__copyright-text {
  margin-right: 30px;
  padding-right: 30px;
  border-right: 1px solid #fff;
}
.footer__copyright-text--sub {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}
.footer__lang-text {
  opacity: 0.6;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.footer__lang-text:first-child {
  margin-right: 20px;
}
.footer__lang-text:last-child {
  margin-left: 20px;
}
.footer__lang-text.active {
  opacity: 1;
}
.footer__lang-text:hover {
  opacity: 1;
}
.footer__share-icon {
  width: auto;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.footer__share-icon:hover {
  opacity: 0.6;
}
.footer__socials-label {
  font-size: 1.5rem;
  text-align: center;
  font-family: "Nissan-Brand", sans-serif;
}
.footer__socials-wrap {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 27px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .footer__socials-wrap {
    gap: 15px;
    margin-top: 23px;
  }
}
.footer__socials-icon {
  width: auto;
  height: 35px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .footer__socials-icon {
    height: 33.81px;
  }
}
.footer__socials-icon--youtube {
  height: 36.28px;
}
@media screen and (max-width: 767px) {
  .footer__socials-icon--youtube {
    height: 27.77px;
  }
}
.footer__socials-icon--ig {
  height: 35px;
}
@media screen and (max-width: 767px) {
  .footer__socials-icon--ig {
    height: 30px;
  }
}
.footer__socials-icon:hover {
  opacity: 0.6;
}
.footer__sns-svg {
  max-width: 50px !important;
  max-height: 50px !important;
}
.footer__logos {
  padding-block: 119px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .footer__logos {
    padding-block: 70px;
  }
}

.image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.popup {
  gap: 8.51%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-inline: 33.5px;
}
@media screen and (max-width: 1300px) {
  .popup {
    padding-inline: 0;
  }
}
@media screen and (max-width: 980px) {
  .popup {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.popup__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 24.56%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 980px) {
  .popup__info {
    width: 100%;
  }
}
.popup__title {
  font: 400 4.5rem "Nissan-Brand", sans-serif;
  line-height: 1.1666666667em;
}
@media screen and (max-width: 980px) {
  .popup__title {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .popup__title {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
.popup__title .scroll-aware {
  display: block;
}
.popup__title--overflow {
  width: 309px;
}
.popup__logo {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 980px) {
  .popup__logo {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-bottom: 99px;
    padding: 0 15px;
  }
}
.popup__logo--h22 {
  height: 22px;
}
@media screen and (max-width: 767px) {
  .popup__logo--h22 {
    height: 15px;
  }
}
.popup__logo--h30 {
  height: 30px;
}
@media screen and (max-width: 767px) {
  .popup__logo--h30 {
    height: 23px;
  }
}
.popup__logo--h37 {
  height: 37px;
}
@media screen and (max-width: 767px) {
  .popup__logo--h37 {
    height: 30px;
  }
}
.popup__logo--h51 {
  height: 51px;
}
@media screen and (max-width: 767px) {
  .popup__logo--h51 {
    height: 40px;
  }
}
.popup__logo--h56 {
  height: 56px;
}
@media screen and (max-width: 767px) {
  .popup__logo--h56 {
    height: 45px;
  }
}
@media screen and (max-width: 980px) {
  .popup__logo--nomargin {
    margin-bottom: 0;
  }
}
.popup__logo img {
  -o-object-position: top left;
     object-position: top left;
}
.popup__logo-small {
  font-size: 1.8rem;
  line-height: 1.1111111111em;
}
@media screen and (max-width: 767px) {
  .popup__logo-small {
    font-size: 15px;
  }
}
.popup__logo-small--outer {
  margin-top: 10px;
}
@media screen and (max-width: 980px) {
  .popup__logo-small--outer {
    margin-bottom: 99px;
    padding: 0 15px;
  }
}
.popup__logo-text {
  font-size: 4rem;
  line-height: 1em;
  font-family: "Nissan-Brand", sans-serif;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 980px) {
  .popup__logo-text {
    margin-bottom: 74px;
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .popup__logo-text {
    font-size: 30px;
  }
}
.popup__text {
  font-size: 1.4rem;
  margin-block: auto 30px;
  line-height: 1.7142857143em;
}
@media screen and (max-width: 980px) {
  .popup__text {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .popup__text {
    margin-bottom: 20px;
  }
}
.popup__text--modal {
  padding-top: 50px;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 980px) {
  .popup__text--modal {
    padding-top: 0;
    width: 78%;
    margin-left: auto;
    padding-right: 8px;
  }
}
@media screen and (max-width: 767px) {
  .popup__text--modal {
    margin-bottom: 10px;
  }
}
.popup__text--modal .en {
  letter-spacing: 0.01em;
}
.popup__text--note {
  margin-bottom: 20px;
}
.popup__text .en {
  font-size: 1.5rem;
}
.popup__note {
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  line-height: 1.6666666667em;
}
@media screen and (max-width: 980px) {
  .popup__note {
    width: 78%;
    margin-left: auto;
  }
}
.popup__button {
  width: 100%;
  max-width: 285px;
}
@media screen and (max-width: 980px) {
  .popup__button {
    width: 285px;
    margin-left: auto;
  }
}
.popup__button--modal {
  margin-top: 25px;
}
@media screen and (max-width: 980px) {
  .popup__button--modal {
    width: 78%;
    margin-right: 5px;
  }
}
@media screen and (max-width: 767px) {
  .popup__button--modal {
    height: 42px;
    font-size: 14px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 767px) {
  .popup__button--modal::after {
    width: 15px;
    height: 15px;
  }
}
.popup__button .en {
  font-size: 1.7rem;
}
.popup__images {
  width: 66.93%;
  margin-top: 32px;
}
@media screen and (max-width: 980px) {
  .popup__images {
    width: 100%;
    margin-block: 0 50px;
  }
}
@media screen and (max-width: 767px) {
  .popup__images {
    margin-bottom: 20px;
  }
}
.popup__images--modal {
  margin-block: 0 30px;
  width: calc(100% - 348px);
}
@media screen and (max-width: 980px) {
  .popup__images--modal {
    width: 100%;
  }
}
.popup__images--modal .splide__pagination {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
@media screen and (max-width: 980px) {
  .popup__images--modal .splide__pagination {
    right: 20px;
    width: 70% !important;
    padding-inline: 50px !important;
    margin-inline: auto 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .popup__images--modal .splide__pagination {
    margin-top: 26px !important;
    padding-inline: 20px !important;
  }
}
@media screen and (max-width: 980px) {
  .popup__images--modal .splide__arrows {
    display: block !important;
  }
}
@media screen and (max-width: 980px) {
  .popup__images--modal .splide__arrow--prev {
    left: calc(30% - 20px) !important;
  }
}
@media screen and (max-width: 980px) {
  .popup__images--modal .splide__arrow--next {
    right: 20px !important;
  }
}
.popup__item {
  background-color: #646464;
  aspect-ratio: 785/442;
}
@media screen and (max-width: 767px) {
  .popup__item {
    width: 100%;
    aspect-ratio: 353/228;
  }
}
.popup__item--nobg {
  background-color: transparent;
}

.title {
  font-size: 6rem;
  font-weight: 400;
  font-family: "Nissan-Brand", sans-serif;
  line-height: 1.25em;
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 45px;
    line-height: 1.1111111111em;
  }
}
@media screen and (max-width: 340px) {
  .title {
    font-size: 35px;
  }
}
@media screen and (max-width: 280px) {
  .title {
    font-size: 30px;
  }
}

.header {
  position: fixed;
  top: 80px;
  z-index: 900;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 92px;
  width: 100%;
  font-family: "Nissan-Brand", sans-serif;
  pointer-events: none;
}
@media screen and (max-width: 980px) {
  .header {
    padding: 0 52px;
  }
}
@media screen and (max-width: 767px) {
  .header {
    top: 29px;
    padding: 0 28px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (aspect-ratio: 960/520) {
  .header {
    top: 40px;
  }
}
@media screen and (max-height: 591px) and (min-width: 768px) {
  .header {
    top: 40px;
  }
}
.header.active .header__language {
  opacity: 1;
  pointer-events: visible;
}
.header.active .header__logo-container {
  opacity: 1;
  pointer-events: visible;
}
.header.active .header__navigation {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 767px) {
  .header--en {
    top: 45px;
  }
}
.header__logo-container {
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  pointer-events: hidden;
}
.header__logo {
  width: 85px;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 50px;
  }
}
@media (aspect-ratio: 960/520) {
  .header__logo {
    width: 50px;
  }
}
@media screen and (max-height: 591px) and (min-width: 768px) {
  .header__logo {
    width: 50px;
  }
}
.header__logo--en {
  width: 141px;
}
@media screen and (max-width: 767px) {
  .header__logo--en {
    width: 98px;
  }
}
@media (aspect-ratio: 960/520) {
  .header__logo--en {
    width: 98px;
  }
}
@media screen and (max-height: 591px) and (min-width: 768px) {
  .header__logo--en {
    width: 98px;
  }
}
.header__language {
  margin-left: auto;
  color: #fff;
  font-size: 1.8rem;
  margin-right: 80px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .header__language {
    font-size: 15px;
    margin: 0;
    padding-left: 30px;
  }
}
.header__language-text {
  opacity: 0.5;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__language-text--active {
  opacity: 1;
}
.header__language-text:hover {
  opacity: 1;
}
.header__hamburger {
  position: fixed;
  top: 0;
  right: 0;
  background-color: #000;
  width: 100px;
  height: 100px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  pointer-events: visible;
}
@media screen and (max-width: 767px) {
  .header__hamburger {
    top: 24px;
    width: 55px;
    height: 55px;
  }
}
.header__hamburger.active .header__line {
  width: 65.33px;
}
@media screen and (max-width: 767px) {
  .header__hamburger.active .header__line {
    width: 35.36px;
  }
}
.header__hamburger.active .header__line:first-child {
  opacity: 0;
}
.header__hamburger.active .header__line:nth-child(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header__hamburger.active .header__line:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header__hamburger.active .header__line:last-child {
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .header__hamburger.top {
    top: 0;
  }
}
.header__line {
  position: absolute;
  height: 2px;
  width: 55px;
  background-color: #fff;
  opacity: 1;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
@media screen and (max-width: 767px) {
  .header__line {
    width: 30px;
  }
}
.header__line:first-child {
  top: 30px;
}
@media screen and (max-width: 767px) {
  .header__line:first-child {
    top: 16.5px;
  }
}
.header__line:nth-child(2), .header__line:nth-child(3) {
  top: 50px;
}
@media screen and (max-width: 767px) {
  .header__line:nth-child(2), .header__line:nth-child(3) {
    top: 27.5px;
  }
}
.header__line:last-child {
  top: 70px;
}
@media screen and (max-width: 767px) {
  .header__line:last-child {
    top: 38.5px;
  }
}
.header__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 90px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  padding: 188px 60px 50px;
  overflow: auto;
  color: #fff;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  pointer-events: visible;
  background-image: url("../public/img/nav-bg.jpg");
  background-size: cover;
  background-position: bottom center;
}
@media screen and (max-width: 767px) {
  .header__navigation {
    padding: 160px 30px 38px;
  }
}
.header__list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.header__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  font-size: 2.7rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .header__link {
    gap: 10px;
    font-size: 18px;
  }
}
.header__link:not(:last-child) {
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .header__link:not(:last-child) {
    margin-bottom: 20px;
  }
}
.header__link:hover img {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.header__link.active img {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header__link-icon {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .header__link-icon {
    width: 22.63px;
  }
}
.header__bottom {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .header__bottom {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    line-height: 17px;
  }
}
.header__copyright {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .header__copyright {
    font-size: 15px;
    padding-right: 30px;
    border-right: 1px solid #fff;
  }
}
@media screen and (max-width: 767px) {
  .header__copyright--sub {
    padding-right: 0;
    border-right: none;
  }
}
.header__sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.header__sns-svg {
  width: 100%;
  height: 100%;
  max-width: 40px;
  max-height: 40px;
}
.header__sns-svg--youtube {
  max-width: 50px;
  max-height: 50px;
}
.header__sns-svg path {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__sns-link:hover path:first-child {
  fill: #ffc700;
}
.header__link-list {
  margin-left: 5px;
  padding-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .header__link-list {
    margin-left: 2px;
    padding-bottom: 20px;
  }
}
.header__link-list .header__link {
  gap: 38px;
  font-size: 1.89rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .header__link-list .header__link {
    gap: 10px;
    font-size: 17.85px;
  }
}
.header__link-list .header__link-icon {
  width: 26.77px;
  height: 26.77px;
}
@media screen and (max-width: 767px) {
  .header__link-list .header__link-icon {
    width: 19.23px;
    height: 19.23px;
  }
}

.animate {
  display: inline-block;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}
.animate[data-animate=slide-up] {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.animate.slide-up {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.lp__booth {
  position: relative;
  z-index: 1;
  color: #fff;
  background-color: #000;
}
.lp__booth::before, .lp__booth::after {
  left: 50%;
  content: "";
  height: 213px;
  width: 588.6px;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url("../public/img/svg/booth-bg.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .lp__booth::before, .lp__booth::after {
    width: 292px;
    height: 142px;
  }
}
@media screen and (max-width: 300px) {
  .lp__booth::before, .lp__booth::after {
    width: 100%;
  }
}
.lp__booth::before {
  top: -175px;
}
@media screen and (max-width: 767px) {
  .lp__booth::before {
    top: -104px;
  }
}
.lp__booth::after {
  bottom: -175px;
  -webkit-transform: translateX(-50%) rotate(180deg);
          transform: translateX(-50%) rotate(180deg);
}
@media screen and (max-width: 767px) {
  .lp__booth::after {
    bottom: -104px;
  }
}
.lp__booth-container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1240px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  gap: 8.2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding-block: 150px 120px;
  max-width: calc(1020px + 8%);
}
@media screen and (max-width: 767px) {
  .lp__booth-container {
    max-width: 100%;
  }
}
@media screen and (max-width: 980px) {
  .lp__booth-container {
    padding-top: 200px;
  }
}
@media screen and (max-width: 900px) {
  .lp__booth-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (max-width: 767px) {
  .lp__booth-container {
    padding-block: 150px 50px;
  }
}
.lp__booth-title {
  left: 50%;
  top: -50px;
  z-index: 1;
  position: absolute;
  text-align: center;
  color: #fff;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font: 400 6rem "Nissan-Brand", sans-serif;
  line-height: 1.25em;
}
@media screen and (max-width: 767px) {
  .lp__booth-title {
    top: -15px;
    font-size: 45px;
    line-height: 1.11em;
  }
}
.lp__booth-title span {
  display: block;
}
.lp__booth-list {
  padding-top: 63px;
}
@media screen and (max-width: 767px) {
  .lp__booth-list {
    padding-top: 69px;
  }
}
.lp__booth-item {
  position: relative;
}
.lp__booth-item:not(:last-child) {
  border-bottom: 1px solid #fff;
}
.lp__booth-popup {
  gap: 8.23%;
  padding-inline: 0;
}
@media screen and (max-width: 980px) {
  .lp__booth-popup {
    gap: 0;
    width: 100%;
  }
}
.lp__booth-popup--first {
  gap: 2.65%;
}
@media screen and (max-width: 980px) {
  .lp__booth-popup--first {
    gap: 0;
  }
}
.lp__booth-info {
  width: 301px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 980px) {
  .lp__booth-info {
    width: 100%;
  }
}
.lp__booth-info--first {
  width: 358px;
}
@media screen and (max-width: 980px) {
  .lp__booth-info--first {
    width: 100%;
  }
}
.lp__booth-info--first .popup__text {
  width: 301px;
}
@media screen and (max-width: 980px) {
  .lp__booth-info--first .popup__text {
    width: 100%;
  }
}
.lp__booth-images {
  width: 100%;
  margin-top: 58px;
}
@media screen and (max-width: 980px) {
  .lp__booth-images {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.lp__booth-image {
  position: relative;
  background-color: #000;
  aspect-ratio: 635/410 !important;
}
@media screen and (max-width: 980px) {
  .lp__booth-image {
    aspect-ratio: unset !important;
  }
}
@media screen and (max-width: 980px) {
  .lp__booth-image::before {
    content: "";
    display: block;
    padding-top: 64.5669291339%;
  }
}
@media screen and (max-width: 980px) {
  .lp__booth-image picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.lp__booth-button {
  margin-top: 29px;
}
@media screen and (max-width: 980px) {
  .lp__booth-button {
    width: 55.6%;
    max-width: 250px;
    margin: 20px 0 0 auto;
  }
}
.lp__popup-title {
  margin-bottom: 100px;
}
@media screen and (max-width: 980px) {
  .lp__popup-title {
    left: 4%;
    top: 70px;
    position: absolute;
  }
}
@media screen and (max-width: 767px) {
  .lp__popup-title {
    top: 60px;
  }
}
@media screen and (max-width: 980px) {
  .lp__popup-title--oneline {
    top: 115px;
  }
}
@media screen and (max-width: 767px) {
  .lp__popup-title--oneline {
    top: 95px;
  }
}
.lp__booth-text {
  margin-block: 40px auto;
  text-align: justify;
}
@media screen and (max-width: 980px) {
  .lp__booth-text {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .lp__booth-text {
    margin-top: 20px;
  }
}
.lp__booth-text .en {
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}
.lp__floor {
  padding-block: 120px;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 1300px) {
  .lp__floor {
    padding-top: 250px;
  }
}
@media screen and (max-width: 767px) {
  .lp__floor {
    padding-block: 158px 60px;
  }
}
@media screen and (max-width: 767px) {
  .lp__floor--sub {
    padding-block: 50px;
  }
}
@media screen and (max-width: 767px) {
  .lp__floor-image {
    margin-top: 50px;
  }
}
.lp__floor-image--subpage {
  margin-top: -60px;
}
@media screen and (max-width: 1100px) {
  .lp__floor-image--subpage {
    margin-top: 50px;
  }
}
.lp__floor-image--kansai {
  margin-left: -80px;
}
@media screen and (max-width: 767px) {
  .lp__floor-image--kansai {
    margin-left: 0;
  }
}
.lp__floor-image--sapporo {
  margin-left: -100px;
}
@media screen and (max-width: 767px) {
  .lp__floor-image--sapporo {
    margin-left: 0;
  }
}
.lp__other {
  padding-block: 120px;
}
@media screen and (max-width: 767px) {
  .lp__other {
    padding-block: 100px 70px;
  }
}
.lp__other-info {
  width: 288px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 980px) {
  .lp__other-info {
    width: 100%;
  }
}
.lp__other-accordion {
  padding-block: 210px 100px;
}
@media screen and (max-width: 767px) {
  .lp__other-accordion {
    padding-block: 50px 80px;
  }
}
.lp__other-wrap {
  padding-block: 24px 100px;
}
@media screen and (max-width: 767px) {
  .lp__other-wrap {
    padding-block: 4px 50px;
  }
}
.lp__other-images {
  width: 100%;
}
.lp__popup {
  gap: 100px;
  width: 100%;
}
@media screen and (max-width: 980px) {
  .lp__popup {
    gap: 0;
  }
}
.lp__other-title {
  margin-bottom: 100px;
}
.lp__other-logos {
  gap: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .lp__other-logos {
    gap: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.lp__other-link {
  gap: 20px;
  width: 100%;
  height: 63px;
  margin: 0 auto 100px;
  max-width: 700px;
  font-size: 2.1rem;
  line-height: 1em;
  color: #000;
  border-radius: 15px;
  letter-spacing: -0.05em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background-color: #fff;
  border: 1.5px solid #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .lp__other-link {
    margin-bottom: 70px;
  }
}
.lp__other-link::before {
  content: "";
  width: 22.5px;
  height: 22.5px;
  margin-top: 5px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: url("../public/img/svg/external-link02.svg") no-repeat center/contain;
}
.lp__other-link:hover {
  color: #fff;
  background-color: #000;
}
.lp__other-link:hover::before {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.lp__other-logo {
  width: auto;
  height: 169px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .lp__other-logo {
    height: 130px;
  }
}
.lp__other-logo--long {
  height: 44.2px;
}
@media screen and (max-width: 767px) {
  .lp__other-logo--long {
    height: 34px;
  }
}
.lp__other-logo--en {
  height: 60px;
}
@media screen and (max-width: 767px) {
  .lp__other-logo--en {
    height: 46px;
  }
}
.lp__other-logo:hover {
  opacity: 0.6;
}
.lp__collab {
  padding: 242px 0 215px;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .lp__collab {
    padding: 141px 0 70px;
  }
}
.lp__collab-container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1240px + 8%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: calc(1020px + 8%);
}
@media screen and (max-width: 767px) {
  .lp__collab-container {
    max-width: 100%;
  }
}
.lp__collab-title {
  font-family: "Nissan-Brand", sans-serif;
  font-size: 4.8rem;
  line-height: 1.0416666667em;
  margin-bottom: 150px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .lp__collab-title {
    font-size: 35px;
    line-height: 1.2857142857em;
    margin-bottom: 32px;
  }
}
.lp__collab-subtitle {
  font-family: "Nissan-Brand", sans-serif;
  font-weight: 400;
  font-size: 3.6rem;
  margin-bottom: 22px;
  line-height: 1.3333333333em;
}
@media screen and (max-width: 767px) {
  .lp__collab-subtitle {
    font-size: 30px;
    margin-bottom: 14px;
  }
}
.lp__collab-text {
  font-size: 1.7rem;
  letter-spacing: -0.06em;
  line-height: 1.4117647059em;
}
@media screen and (max-width: 767px) {
  .lp__collab-text {
    font-size: 15px;
    line-height: 1.6em;
  }
}
.lp__collab-text .en {
  font-size: 1.9rem;
}
@media screen and (max-width: 767px) {
  .lp__collab-text .en {
    font-size: 17px;
  }
}
.lp__collab-image {
  width: 100%;
  font-size: 0;
}
.lp__collab-embed {
  width: 100%;
  height: auto;
  aspect-ratio: 635/347;
}
@media screen and (max-width: 767px) {
  .lp__collab-embed {
    aspect-ratio: 352/192;
  }
}
.lp__collab-item {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.lp__collab-item:not(:last-child) {
  margin-bottom: 107px;
}
@media screen and (max-width: 767px) {
  .lp__collab-item:not(:last-child) {
    margin-bottom: 58px;
  }
}
.lp__collab-button {
  margin-top: 19px;
}
.lp__collab-button:first-child {
  margin-top: 23px;
}

.mv {
  position: relative;
  height: 100vh;
  height: 100svh;
  color: #fff;
}
.mv__track {
  width: 100%;
  height: 100%;
  overflow: visible !important;
}
.mv__slide {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1 !important;
  -webkit-transform: none !important;
          transform: none !important;
  -webkit-transition: -webkit-clip-path 1s ease !important;
  transition: -webkit-clip-path 1s ease !important;
  transition: clip-path 1s ease !important;
  transition: clip-path 1s ease, -webkit-clip-path 1s ease !important;
  -webkit-clip-path: inset(0 0% 0 0);
          clip-path: inset(0 0% 0 0);
}
.mv__slide.is-masking {
  z-index: 2 !important;
}
.mv__slide.top {
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
}
.mv__slide.bottom {
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
}
.mv__slide.is-visible .mv__image {
  -webkit-animation: slide-up 5s linear forwards;
          animation: slide-up 5s linear forwards;
}
.mv__image {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  top: -6%;
  height: 106%;
  display: block;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.mv__tagline {
  position: absolute;
  right: 178px;
  bottom: 350px;
  font-size: 3.2rem;
  line-height: 1.71875em;
  letter-spacing: -0.1em;
}
@media screen and (max-width: 1200px) {
  .mv__tagline {
    right: 30px;
  }
}
@media screen and (max-height: 600px) and (min-width: 767px) {
  .mv__tagline {
    right: 30px;
  }
}
@media screen and (max-height: 430px) and (min-width: 767px) {
  .mv__tagline {
    bottom: 100px;
  }
}
@media screen and (max-height: 340px) and (min-width: 767px) {
  .mv__tagline {
    font-size: 8vh;
  }
}
@media screen and (max-width: 767px) {
  .mv__tagline {
    font-size: 21px;
    top: 116px;
    right: 23px;
    line-height: 1.4285714286em;
  }
}
@media screen and (max-width: 767px) {
  .mv__tagline--top {
    top: initial;
  }
}
@media screen and (max-width: 767px) and (max-height: 440px) {
  .mv__tagline--top {
    bottom: 20svh;
  }
}
.mv__tagline--en {
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .mv__tagline--en {
    top: initial;
  }
}
@media screen and (max-width: 767px) and (max-height: 440px) {
  .mv__tagline--en {
    bottom: 20svh;
  }
}
.mv__content {
  position: absolute;
  left: 100px;
  bottom: 90px;
}
@media screen and (max-width: 1200px) {
  .mv__content {
    left: 50px;
    bottom: 180px;
  }
}
@media screen and (max-height: 600px) and (min-width: 767px) {
  .mv__content {
    left: 50px;
    bottom: 180px;
  }
}
@media screen and (max-width: 767px) {
  .mv__content {
    bottom: 170px;
    left: 17px;
  }
}
@media screen and (max-height: 530px) and (max-width: 767px) {
  .mv__content {
    bottom: 30px;
  }
}
@media screen and (max-height: 340px) {
  .mv__content {
    bottom: 10px;
  }
}
@media screen and (max-width: 1400px) {
  .mv__content--sub {
    left: 50px;
    bottom: 100px;
  }
}
@media screen and (max-width: 1200px) {
  .mv__content--sub {
    bottom: 180px;
  }
}
@media screen and (max-height: 600px) and (min-width: 1200px) {
  .mv__content--sub {
    bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .mv__content--sub {
    left: 15px;
    bottom: 120px;
  }
}
@media screen and (max-width: 260px) {
  .mv__content--sub {
    bottom: 160px;
  }
}
.mv__title {
  font-family: "Nissan-Brand", sans-serif;
  font-size: 7.5rem;
  font-weight: 400;
  line-height: 1em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media screen and (max-height: 700px) and (min-width: 767px) {
  .mv__title {
    font-size: 10vh;
    margin-bottom: 2vh;
  }
}
@media screen and (max-height: 340px) and (min-width: 767px) {
  .mv__title {
    font-size: 15vh;
  }
}
@media screen and (max-width: 767px) {
  .mv__title {
    font-size: 52px;
    line-height: 0.9615384615em;
    margin-bottom: 23px;
  }
}
@media screen and (max-width: 767px) and (max-height: 600px) {
  .mv__title {
    font-size: 6vh;
  }
}
@media screen and (max-width: 767px) and (max-height: 550px) {
  .mv__title {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) and (max-height: 280px) {
  .mv__title {
    font-size: 10vh;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 300px) {
  .mv__title {
    font-size: 15vw;
  }
}
.mv__title--sub {
  margin-bottom: 0;
}
@media screen and (max-width: 1300px) {
  .mv__title--sub {
    font-size: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .mv__title--sub {
    font-size: 52px;
  }
}
@media screen and (max-width: 374px) {
  .mv__title--sub {
    font-size: 10vw;
  }
}
.mv__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 130px;
  font-family: "Nissan-Brand", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .mv__bottom {
    gap: 18px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media screen and (max-height: 340px) and (min-width: 767px) {
  .mv__bottom {
    display: none;
  }
}
@media screen and (max-width: 767px) and (max-height: 440px) {
  .mv__bottom {
    display: none;
  }
}
@media screen and (max-width: 245px) {
  .mv__bottom {
    display: none;
  }
}
.mv__schedule {
  padding-top: 1px;
}
.mv__schedule-text {
  position: relative;
  font-size: 7rem;
  line-height: 1.2857142857em;
}
@media screen and (max-width: 767px) {
  .mv__schedule-text {
    font-size: 55px;
    line-height: 1.2em;
  }
}
.mv__schedule-day {
  position: absolute;
  font-size: 14px;
  top: 0;
  right: 6px;
  line-height: 1em;
}
@media screen and (max-width: 767px) {
  .mv__schedule-day {
    top: -3px;
    right: 27px;
  }
}
@media screen and (max-width: 767px) {
  .mv__schedule-day.last {
    top: 0;
    right: -30px;
  }
}
.mv__location {
  margin-top: -5px;
  font-size: 2.1rem;
  line-height: 1.4285714286em;
}
@media screen and (max-width: 767px) {
  .mv__location {
    font-size: 14px;
    line-height: 1.5em;
    margin-top: 0;
    margin-bottom: 5px;
  }
}
.mv__logo {
  top: 80px;
  left: 92px;
  opacity: 1;
  position: absolute;
  pointer-events: visible;
}
@media screen and (max-width: 1200px) {
  .mv__logo {
    top: 45px;
    left: 52px;
  }
}
@media screen and (max-height: 600px) and (min-width: 767px) {
  .mv__logo {
    top: 45px;
    left: 52px;
  }
}
@media screen and (max-width: 767px) {
  .mv__logo {
    top: 45px;
    left: 23px;
  }
}
@media screen and (max-width: 767px) and (max-height: 280px) {
  .mv__logo {
    top: 25px;
    left: 17px;
  }
}
.mv__details {
  width: 100%;
  bottom: 90px;
  right: 100px;
  max-width: 530px;
  position: absolute;
  border-radius: 10px;
  padding: 55px 69px;
  border: 1px solid #fff;
}
@media screen and (max-height: 700px) and (min-width: 767px) {
  .mv__details {
    right: 30px;
    bottom: 40px;
    padding: 20px 17px;
  }
}
@media screen and (max-width: 1400px) {
  .mv__details {
    right: 30px;
    max-width: 450px;
    padding: 20px 17px;
  }
}
@media screen and (max-width: 1200px) {
  .mv__details {
    bottom: 40px;
    right: 30px;
    left: 30px;
    width: auto;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .mv__details {
    right: 20px;
    left: 20px;
  }
}
@media screen and (max-width: 767px) and (max-height: 550px) {
  .mv__details {
    display: none;
  }
}
.mv__details--small {
  max-width: 345px;
  padding-block: 47px;
}
@media screen and (max-width: 1400px) {
  .mv__details--small {
    padding: 45px;
  }
}
@media screen and (max-width: 1200px) {
  .mv__details--small {
    max-width: 100%;
    padding: 20px;
  }
}
@media screen and (max-width: 767px) and (max-height: 550px) {
  .mv__details--small {
    display: block;
  }
}
.mv__details-text {
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  line-height: 1.7142857143em;
}
@media screen and (max-width: 1200px) {
  .mv__details-text {
    text-align: center;
  }
}
@media screen and (max-height: 700px) and (min-width: 767px) {
  .mv__details-text {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .mv__details-text {
    font-size: 12px;
    letter-spacing: -0.05em;
  }
}
.mv__details-text .en {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .mv__details-text .en {
    font-size: 12px;
    letter-spacing: -0.05em;
  }
}
.mv__floating-text {
  position: absolute;
}

@-webkit-keyframes slide-up {
  from {
    -webkit-transform: translateY(5%);
            transform: translateY(5%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slide-up {
  from {
    -webkit-transform: translateY(5%);
            transform: translateY(5%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.bg {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-image: url("../public/img/bg.png"), url("../public/img/bg-2.jpg");
  background-size: 135%, cover;
  background-position: 50% 0, top center;
}
@media screen and (max-width: 1300px) {
  .bg {
    background-size: 155%, cover;
  }
}
@media screen and (max-width: 1024px) {
  .bg {
    background-size: 295%, cover;
  }
}
@media screen and (max-width: 767px) {
  .bg {
    background-image: url("../public/img/bg-sp.png"), url("../public/img/bg2-sp.jpg");
    background-size: 115%, cover;
    background-position: 50% 0, top center;
  }
}

.booth {
  border-top: 1px solid #fff;
  padding-top: 122px;
  color: #fff;
  overflow: hidden;
}
@media screen and (max-width: 980px) {
  .booth {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .booth {
    padding-top: 60px;
  }
}
.booth__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 980px) {
  .booth__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.booth__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 29px;
}
@media screen and (max-width: 980px) {
  .booth__list {
    -ms-flex-item-align: center;
        align-self: center;
  }
}
@media screen and (max-width: 767px) {
  .booth__list {
    gap: 10px;
  }
}
@media screen and (max-width: 350px) {
  .booth__list {
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 350px) {
  .booth__block {
    width: 100%;
  }
}
.booth__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  width: 300px;
  font-family: "Nissan-Brand", sans-serif;
}
@media screen and (max-width: 1110px) {
  .booth__item {
    width: 250px;
  }
}
@media screen and (max-width: 767px) {
  .booth__item {
    gap: 6px;
    width: 100%;
    max-width: 124px;
  }
}
@media screen and (max-width: 350px) {
  .booth__item {
    max-width: 100%;
  }
}
.booth__item--large {
  width: 430px;
}
@media screen and (max-width: 1110px) {
  .booth__item--large {
    width: 380px;
  }
}
@media screen and (max-width: 767px) {
  .booth__item--large {
    width: 100%;
    max-width: 207px;
  }
}
@media screen and (max-width: 350px) {
  .booth__item--large {
    max-width: 100%;
  }
}
.booth__item:not(:last-child) {
  margin-bottom: 13px;
}
@media screen and (max-width: 767px) {
  .booth__item:not(:last-child) {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 350px) {
  .booth__item:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 980px) {
  .booth__item--sptab23 {
    margin-bottom: 23px !important;
  }
}
@media screen and (max-width: 767px) {
  .booth__item--sptab23 {
    margin-bottom: 25px !important;
  }
}
@media screen and (max-width: 350px) {
  .booth__item--sptab23 {
    margin-bottom: 10px !important;
  }
}
@media screen and (max-width: 980px) {
  .booth__item--sptab25 {
    margin-bottom: 25px !important;
  }
}
@media screen and (max-width: 767px) {
  .booth__item--sptab25 {
    margin-bottom: 33px !important;
  }
}
@media screen and (max-width: 350px) {
  .booth__item--sptab25 {
    margin-bottom: 10px !important;
  }
}
@media screen and (max-width: 980px) {
  .booth__item--sptab24 {
    margin-bottom: 24px !important;
  }
}
@media screen and (max-width: 767px) {
  .booth__item--sptab24 {
    margin-bottom: 30px !important;
  }
}
@media screen and (max-width: 350px) {
  .booth__item--sptab24 {
    margin-bottom: 10px !important;
  }
}
@media screen and (max-width: 767px) {
  .booth__item--sp25 {
    margin-bottom: 25px !important;
  }
}
@media screen and (max-width: 350px) {
  .booth__item--sp25 {
    margin-bottom: 10px !important;
  }
}
@media screen and (max-width: 767px) {
  .booth__item--sp30 {
    margin-bottom: 30px !important;
  }
}
@media screen and (max-width: 350px) {
  .booth__item--sp30 {
    margin-bottom: 10px !important;
  }
}
.booth__item:hover .booth__number {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
.booth__item:hover .booth__number--white {
  color: #fff;
  background-color: transparent;
}
.booth__icon {
  margin-left: auto;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .booth__icon {
    height: 16px;
  }
}
.booth__number {
  font-size: 1.8rem;
  width: 36px;
  height: 36px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .booth__number {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }
}
.booth__number--white {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.9);
}
.booth__item-title {
  font-size: 2.1rem;
}
@media screen and (max-width: 767px) {
  .booth__item-title {
    font-size: 17px;
    line-height: 1em;
  }
}
@media screen and (max-width: 767px) {
  .booth__item-title--long {
    letter-spacing: -0.1em;
  }
}
@media screen and (max-width: 767px) {
  .booth__item-title--small {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .booth__item-title-sp {
    font-size: 11px;
  }
}
.booth__illustration {
  width: 100%;
  display: block;
  margin-top: 28px;
  position: relative;
}
@media screen and (max-width: 980px) {
  .booth__illustration {
    margin: 50px auto 42px;
  }
}
@media screen and (max-width: 767px) {
  .booth__illustration {
    width: calc(100% + 40px);
    margin-inline: -20px;
  }
}
.booth__illustration a {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.booth__illustration a:hover {
  opacity: 0.5;
}
.booth__coming-soon {
  width: 100%;
  height: 513px;
  border: 2px solid #fff;
  border-radius: 10px;
  margin-top: 130px;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .booth__coming-soon {
    height: 470px;
    margin-top: 27px;
  }
}
.booth__coming-soon-title {
  font-size: 4rem;
  font-family: "Nissan-Brand", sans-serif;
}
@media screen and (max-width: 767px) {
  .booth__coming-soon-title {
    font-size: 20px;
  }
}
.booth__coming-soon-date {
  font-size: 2.1rem;
}
@media screen and (max-width: 767px) {
  .booth__coming-soon-date {
    font-size: 14px;
  }
}
.booth__coming-soon-container {
  padding-bottom: 96px;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 980px) {
  .booth__coming-soon-container {
    padding-bottom: 0;
    border-bottom: 0;
  }
}
.booth__map {
  top: -2px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .booth__map {
    top: 0;
  }
}
.booth__info {
  padding: 36px;
  margin-bottom: 100px;
  border-radius: 10px;
  border: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .booth__info {
    padding: 17px;
    margin-bottom: 50px;
  }
}
.booth__info-text {
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: -0.03em;
  line-height: 1.7142857143em;
}
@media screen and (max-width: 767px) {
  .booth__info-text {
    font-size: 12px;
    letter-spacing: -0.05em;
  }
}
.booth__info-text .en {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .booth__info-text .en {
    font-size: 14px;
  }
}

.lineup {
  padding: 120px 0 318px;
  color: #fff;
}
@media screen and (max-width: 980px) {
  .lineup {
    border-top: 1px solid #fff;
  }
}
@media screen and (max-width: 767px) {
  .lineup {
    padding: 100px 0 153px;
  }
}
.lineup__content {
  margin-top: 135px;
}
@media screen and (max-width: 767px) {
  .lineup__content {
    margin-top: 40px;
  }
}
.lineup__block:not(:last-child) {
  margin-bottom: 20px;
}
.lineup__block--second {
  display: grid;
  gap: 20px;
  grid-template-columns: calc(61.86% - 5px) calc(37.34% - 5px);
}
@media screen and (max-width: 980px) {
  .lineup__block--second {
    grid-template-columns: 1fr;
  }
}
.lineup__block--second .lineup__item:last-child {
  grid-column: 2;
  grid-row: 1/span 2;
}
@media screen and (max-width: 980px) {
  .lineup__block--second .lineup__item:last-child {
    grid-column: auto;
    grid-row: auto;
  }
}
.lineup__block--third {
  display: grid;
  gap: 20px;
  grid-template-columns: calc(28.63% - 5px) repeat(2, calc(34.68% - 5px));
}
@media screen and (max-width: 980px) {
  .lineup__block--third {
    grid-template-columns: 1fr;
  }
}
.lineup__block--third .lineup__item:first-child {
  grid-column: 1;
  grid-row: 1/span 2;
}
@media screen and (max-width: 980px) {
  .lineup__block--third .lineup__item:first-child {
    grid-column: auto;
    grid-row: auto;
  }
}
.lineup__block--third .lineup__item:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}
@media screen and (max-width: 980px) {
  .lineup__block--third .lineup__item:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
  }
}
.lineup a.lineup__item:hover .lineup__plus-line::before, .lineup a.lineup__item:hover .lineup__plus-line::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.lineup a.lineup__item:hover .lineup__image-container img {
  width: 110%;
  left: -5%;
}
@media screen and (max-width: 767px) {
  .lineup a.lineup__item:hover .lineup__image-container img {
    width: 100%;
    left: 0;
  }
}
.lineup__item {
  position: relative;
  width: 100%;
  display: block;
  border: 2px solid #fff;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 980px) {
  .lineup__item {
    padding-top: 200px;
  }
}
@media screen and (max-width: 767px) {
  .lineup__item {
    padding-top: 118px;
  }
}
.lineup__item--mid {
  padding-top: 57px;
}
@media screen and (max-width: 980px) {
  .lineup__item--mid {
    padding-top: 200px;
  }
}
@media screen and (max-width: 767px) {
  .lineup__item--mid {
    padding-top: 118px;
  }
}
.lineup__item--vertical {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 980px) {
  .lineup__item--vertical {
    padding-top: 200px;
  }
}
@media screen and (max-width: 767px) {
  .lineup__item--vertical {
    padding-top: 118px;
  }
}
.lineup__item--vertical-thin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 980px) {
  .lineup__item--vertical-thin {
    padding-top: 0;
    height: 150px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .lineup__item--vertical-thin {
    height: 120px;
    gap: 9px;
  }
}
.lineup__item--small {
  padding-top: 136px;
}
@media screen and (max-width: 980px) {
  .lineup__item--small {
    gap: 20px;
    height: 150px;
    padding-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .lineup__item--small {
    height: 120px;
  }
}
.lineup__item--soon::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 2rem;
  font-family: "Nissan-Brand", sans-serif;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 980px) {
  .lineup__item--soon::before {
    content: "Coming Soon";
  }
}
.lineup__plus {
  position: absolute;
  right: 0;
  top: 0;
  width: 45px;
  height: 45px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .lineup__plus {
    border-width: 1px;
    width: 30px;
    height: 30px;
  }
}
.lineup__plus-line {
  position: relative;
  width: 21px;
  height: 21px;
}
.lineup__plus-line::before, .lineup__plus-line::after {
  content: "";
  position: absolute;
  background-color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.lineup__plus-line::before {
  left: 0;
  height: 2px;
  width: 100%;
  top: 10px;
}
@media screen and (max-width: 767px) {
  .lineup__plus-line::before {
    height: 1px;
  }
}
.lineup__plus-line::after {
  top: 0;
  left: 10px;
  width: 2px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .lineup__plus-line::after {
    width: 1px;
  }
}
.lineup__number-container {
  position: absolute;
  top: 0;
  left: 0;
  height: 210px;
  width: 210px;
}
@media screen and (max-width: 1200px) {
  .lineup__number-container {
    height: 170px;
  }
}
@media screen and (max-width: 980px) {
  .lineup__number-container {
    height: 220px;
  }
}
@media screen and (max-width: 767px) {
  .lineup__number-container {
    height: 140px;
  }
}
.lineup__number-container--small {
  width: 290px;
  height: 180px;
}
@media screen and (max-width: 1200px) {
  .lineup__number-container--small {
    height: 140px;
  }
}
@media screen and (max-width: 980px) {
  .lineup__number-container--small {
    height: 220px;
  }
}
@media screen and (max-width: 767px) {
  .lineup__number-container--small {
    height: 140px;
  }
}
.lineup__number-container--vertical {
  width: 100%;
  height: 380px;
}
@media screen and (max-width: 1200px) {
  .lineup__number-container--vertical {
    height: 340px;
  }
}
@media screen and (max-width: 980px) {
  .lineup__number-container--vertical {
    height: 220px;
  }
}
@media screen and (max-width: 767px) {
  .lineup__number-container--vertical {
    height: 140px;
  }
}
.lineup__number-container--smallest {
  width: 155px;
  height: 120px;
}
@media screen and (max-width: 1200px) {
  .lineup__number-container--smallest {
    height: 110px;
  }
}
@media screen and (max-width: 980px) {
  .lineup__number-container--smallest {
    position: static;
    width: 125px;
    height: auto;
    padding: 10px 0;
  }
}
@media screen and (max-width: 767px) {
  .lineup__number-container--smallest {
    width: 95px;
  }
}
.lineup__number {
  display: inline-block;
  position: absolute;
  top: 76px;
  left: 8px;
  font-size: 20rem;
  font-family: "Nissan-Brand", sans-serif;
  letter-spacing: -0.05em;
  font-weight: 200;
  line-height: 0.3em;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .lineup__number {
    font-size: 14rem;
  }
}
@media screen and (max-width: 980px) {
  .lineup__number {
    left: 16px;
    font-size: 12rem;
    top: 139px;
  }
}
@media screen and (max-width: 767px) {
  .lineup__number {
    font-size: 70px;
    top: 65px;
    left: 20px;
    line-height: 0.8571428571em;
  }
}
@media screen and (max-width: 340px) {
  .lineup__number {
    top: 75px;
    font-size: 60px;
  }
}
.lineup__number--mid {
  top: 46px;
}
@media screen and (max-width: 980px) {
  .lineup__number--mid {
    font-size: 12rem;
    top: 139px;
  }
}
@media screen and (max-width: 767px) {
  .lineup__number--mid {
    font-size: 70px;
    top: 64px;
    left: 10px;
  }
}
@media screen and (max-width: 340px) {
  .lineup__number--mid {
    top: 75px;
    font-size: 60px;
  }
}
.lineup__number--vertical {
  left: 20px;
  top: 244px;
}
@media screen and (max-width: 980px) {
  .lineup__number--vertical {
    font-size: 12rem;
    top: 139px;
    left: 8px;
  }
}
@media screen and (max-width: 767px) {
  .lineup__number--vertical {
    font-size: 70px;
    top: 64px;
    left: 10px;
  }
}
@media screen and (max-width: 340px) {
  .lineup__number--vertical {
    top: 75px;
    font-size: 60px;
  }
}
.lineup__number--small {
  font-size: 10rem;
  line-height: 0.6em;
  top: 34px;
  left: 15px;
}
@media screen and (max-width: 1300px) {
  .lineup__number--small {
    font-size: 9rem;
  }
}
@media screen and (max-width: 980px) {
  .lineup__number--small {
    position: static;
  }
}
@media screen and (max-width: 767px) {
  .lineup__number--small {
    font-size: 70px;
  }
}
@media screen and (max-width: 360px) {
  .lineup__number--small {
    font-size: 18vw;
  }
}
.lineup__logo-container {
  position: absolute;
  left: 29px;
  bottom: 20px;
  z-index: 1;
}
@media screen and (max-width: 980px) {
  .lineup__logo-container {
    position: static;
  }
}
.lineup__logo-container--vertical {
  left: auto;
  right: 30px;
  top: 135px;
  bottom: auto;
}
@media screen and (max-width: 980px) {
  .lineup__logo-container--vertical {
    position: static;
  }
}
.lineup__logo-container--vertical-thin {
  left: 29px;
  top: 214px;
  bottom: auto;
}
@media screen and (max-width: 1300px) {
  .lineup__logo-container--vertical-thin {
    left: 20px;
  }
}
@media screen and (max-width: 1100px) {
  .lineup__logo-container--vertical-thin {
    left: 15px;
  }
}
@media screen and (max-width: 980px) {
  .lineup__logo-container--vertical-thin {
    position: static;
    width: 230px;
    text-align: center;
    padding-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  .lineup__logo-container--vertical-thin {
    width: 203px;
    padding-top: 20px;
  }
}
@media screen and (max-width: 1300px) {
  .lineup__logo-container--vertical-thin .lineup__logo,
  .lineup__logo-container--vertical-thin .lineup__note {
    letter-spacing: -0.03em;
  }
}
@media screen and (max-width: 1100px) {
  .lineup__logo-container--vertical-thin .lineup__logo,
  .lineup__logo-container--vertical-thin .lineup__note {
    left: 15px;
    letter-spacing: -0.05em;
  }
}
@media screen and (max-width: 980px) {
  .lineup__logo-container--vertical-thin .lineup__logo,
  .lineup__logo-container--vertical-thin .lineup__note {
    position: static;
  }
}
@media screen and (max-width: 767px) {
  .lineup__logo-container--vertical-thin .lineup__logo,
  .lineup__logo-container--vertical-thin .lineup__note {
    letter-spacing: -0.08em;
  }
}
.lineup__logo-container--small {
  left: 170px;
  top: 11px;
  height: 136px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(100% - 170px);
}
@media screen and (max-width: 1200px) {
  .lineup__logo-container--small {
    left: 150px;
    width: calc(100% - 150px);
  }
}
@media screen and (max-width: 980px) {
  .lineup__logo-container--small {
    position: static;
    width: 225px;
    text-align: center;
    padding-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  .lineup__logo-container--small {
    width: 181px;
    padding-top: 10px;
  }
}
.lineup__logo-container--small img {
  max-width: 90%;
}
@media screen and (max-width: 980px) {
  .lineup__logo-container--small .lineup__logo,
  .lineup__logo-container--small .lineup__note {
    position: static;
  }
}
.lineup__logo-container--skyline {
  left: 169px;
}
@media screen and (max-width: 1200px) {
  .lineup__logo-container--skyline {
    left: 150px;
  }
}
.lineup__logo-container--skyline img {
  max-width: 80%;
}
@media screen and (max-width: 980px) {
  .lineup__logo-container--skyline img {
    max-width: 90%;
  }
}
.lineup__logo-container--fairlady-z {
  left: 165px;
}
@media screen and (max-width: 1200px) {
  .lineup__logo-container--fairlady-z {
    left: 150px;
  }
}
.lineup__logo-container--formula-e {
  left: 180px;
}
@media screen and (max-width: 1366px) {
  .lineup__logo-container--formula-e {
    left: 170px;
  }
}
@media screen and (max-width: 1300px) {
  .lineup__logo-container--formula-e {
    left: 150px;
  }
}
.lineup__logo-container--formula-e img {
  max-width: 70%;
}
@media screen and (max-width: 980px) {
  .lineup__logo-container--formula-e img {
    max-width: 90%;
  }
}
.lineup__logo-text {
  font-family: "Nissan-Brand", sans-serif;
  font-size: 4rem;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1300px) {
  .lineup__logo-text {
    font-size: 30px;
  }
}
@media screen and (max-width: 980px) {
  .lineup__logo {
    position: absolute;
    top: 145px;
    left: auto;
    right: 20px;
    z-index: 1;
  }
}
@media screen and (max-width: 767px) {
  .lineup__logo {
    width: 195px;
    top: 83px;
    left: auto;
    right: 20px;
  }
}
@media screen and (max-width: 340px) {
  .lineup__logo {
    width: 145px;
  }
}
@media screen and (max-width: 300px) {
  .lineup__logo {
    width: 100px;
  }
}
@media screen and (max-width: 767px) {
  .lineup__logo--patrol {
    width: 198px;
  }
}
@media screen and (max-width: 390px) {
  .lineup__logo--patrol {
    width: 165px;
  }
}
@media screen and (max-width: 340px) {
  .lineup__logo--patrol {
    width: 145px;
  }
}
@media screen and (max-width: 300px) {
  .lineup__logo--patrol {
    width: 110px;
  }
}
@media screen and (max-width: 275px) {
  .lineup__logo--patrol {
    width: 80px;
  }
}
@media screen and (max-width: 767px) {
  .lineup__logo--leaf {
    width: 123px;
  }
}
@media screen and (max-width: 290px) {
  .lineup__logo--leaf {
    width: 90px;
  }
}
@media screen and (max-width: 767px) {
  .lineup__logo--roox {
    width: 123px;
  }
}
@media screen and (max-width: 285px) {
  .lineup__logo--roox {
    width: 100px;
  }
}
@media screen and (max-width: 250px) {
  .lineup__logo--roox {
    width: 80px;
  }
}
@media screen and (max-width: 767px) {
  .lineup__logo--ariya {
    width: 136px;
  }
}
@media screen and (max-width: 265px) {
  .lineup__logo--ariya {
    width: 100px;
  }
}
@media screen and (max-width: 767px) {
  .lineup__logo--x-trail {
    width: 183px;
  }
}
@media screen and (max-width: 767px) {
  .lineup__logo--skyline {
    width: 176px;
  }
}
@media screen and (max-width: 767px) {
  .lineup__logo--fairlady-z {
    width: 198px;
  }
}
@media screen and (max-width: 767px) {
  .lineup__logo--formula-e {
    width: 135px;
    margin-left: auto;
    margin-right: auto;
  }
}
.lineup__note {
  display: block;
  font-size: 1.2rem;
  margin-top: 10px;
  line-height: 1.5em;
}
@media screen and (max-width: 980px) {
  .lineup__note {
    position: absolute;
    margin-top: 0;
    right: 20px;
    bottom: 20px;
    z-index: 1;
  }
}
@media screen and (max-width: 767px) {
  .lineup__note {
    font-size: 11px;
  }
}
@media screen and (max-width: 360px) {
  .lineup__note {
    font-size: 9px;
  }
}
.lineup__note--nomargin {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .lineup__note--margin-sp {
    margin-top: 10px;
  }
}
.lineup__note--margin5 {
  margin-top: 5px;
}
.lineup__note--en {
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  font-family: "Nissan-Brand", sans-serif;
}
@media screen and (max-width: 1400px) {
  .lineup__note--en {
    font-size: 1.2rem;
    letter-spacing: -0.06em;
  }
}
@media screen and (max-width: 767px) {
  .lineup__note--en {
    font-size: 10px;
    letter-spacing: 0.03em;
  }
}
.lineup__image-container {
  position: relative;
  margin-left: auto;
  display: block;
  width: 73.23%;
  aspect-ratio: 908/700;
  font-size: 0;
  border-radius: 10px;
  overflow: hidden;
  background-color: #646464;
}
@media screen and (max-width: 980px) {
  .lineup__image-container {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .lineup__image-container {
    aspect-ratio: 353/300;
  }
}
.lineup__image-container img {
  position: absolute;
  top: -15%;
  left: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  height: 130%;
}
@media screen and (max-width: 980px) {
  .lineup__image-container img {
    height: 140%;
    top: -20%;
  }
}
@media screen and (max-width: 767px) {
  .lineup__image-container img {
    height: 145%;
    top: -22.5%;
  }
}
.lineup__image-container--large img {
  height: 120%;
  top: -10%;
}
.lineup__image-container--soon::before {
  content: "Coming soon";
  font-size: 4.5rem;
  font-family: "Nissan-Brand", sans-serif;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .lineup__image-container--soon::before {
    font-size: 20px;
  }
}
.lineup__image-container--dark-bg::before {
  font-size: 3rem;
}
.lineup__image-container--mid {
  width: 66.8%;
  aspect-ratio: 509/335;
}
@media screen and (max-width: 980px) {
  .lineup__image-container--mid {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .lineup__image-container--mid {
    aspect-ratio: 353/300;
  }
}
.lineup__image-container--vertical {
  width: 100%;
  aspect-ratio: 458/470;
}
@media screen and (max-width: 980px) {
  .lineup__image-container--vertical {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .lineup__image-container--vertical {
    aspect-ratio: 353/300;
  }
}
.lineup__image-container--vertical-thin {
  width: 100%;
  aspect-ratio: 350/401;
}
.lineup__image-container--small {
  width: 100%;
  aspect-ratio: 425/219;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  padding: 78px 0;
  display: none;
  overflow: auto;
}
@media screen and (max-width: 767px) {
  .modal {
    padding: 103px 0 50px;
  }
}
.modal.active {
  display: block;
}
.modal__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal__content {
  padding: 40px 38px 60px 70px;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .modal__content {
    padding: 20px 10px 32px;
  }
}
.modal__close {
  display: block;
  margin-left: auto;
  cursor: pointer;
  width: 60px;
  height: 60px;
  -o-object-position: top right;
     object-position: top right;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
@media screen and (max-width: 767px) {
  .modal__close {
    margin-right: 10px;
  }
}
.modal__popup {
  gap: 60px;
  padding-inline: 0;
}
@media screen and (max-width: 980px) {
  .modal__popup {
    gap: 0;
  }
}
.modal__note {
  font-size: 1.2rem;
  letter-spacing: -0.05em;
  line-height: 1.5em;
  margin-top: -15px;
  white-space: nowrap;
}
@media screen and (max-width: 980px) {
  .modal__note {
    width: 78%;
    margin-left: auto;
    padding-right: 8px;
  }
}
@media screen and (max-width: 767px) {
  .modal__note {
    white-space: normal;
    margin-top: 0;
  }
}
.modal__indent {
  text-indent: -11px;
  display: block;
  margin-left: 11px;
}
.modal__info {
  width: 288px;
}
@media screen and (max-width: 980px) {
  .modal__info {
    width: 100%;
  }
}

.movie {
  position: relative;
  border-top: 1px solid #fff;
  padding: 131px 0 132px;
}
@media screen and (max-width: 767px) {
  .movie {
    padding: 54px 0 59px;
  }
}
.movie::before, .movie::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  z-index: -1;
}
.movie::before {
  height: 448px;
  background-color: #000001;
  top: -145px;
}
@media screen and (max-width: 767px) {
  .movie::before {
    top: 0;
    height: 560px;
  }
}
.movie::after {
  top: 303px;
  background: -webkit-gradient(linear, left top, left bottom, from(#000), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(#000, rgba(0, 0, 0, 0));
  height: 1470.55px;
}
@media screen and (max-width: 767px) {
  .movie::after {
    top: 361px;
    height: 596.64px;
  }
}
.movie__embed {
  width: 1036px;
  max-width: calc(100% - 200px);
  aspect-ratio: 1036/565;
  height: auto;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 1200px) {
  .movie__embed {
    max-width: calc(100% - 100px);
  }
}
@media screen and (max-width: 767px) {
  .movie__embed {
    max-width: calc(100% - 40px);
    aspect-ratio: 352/192;
  }
}

.regional {
  color: #fff;
  padding-block: 100px 173px;
  background-color: #000;
  border-top: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .regional {
    padding-block: 100px;
  }
}
.regional__subtitle {
  display: block;
  font-size: 1.4rem;
  margin-top: 20px;
  letter-spacing: -0.03em;
}
.regional__list {
  gap: 40px;
  display: grid !important;
  margin-top: 70px !important;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .regional__list {
    position: relative;
    gap: 0;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    padding-inline: 20px 0;
    max-width: 100% !important;
  }
}
.regional__list::-webkit-scrollbar {
  display: none;
}
.regional__item {
  gap: 10px;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid #fff;
}
@media screen and (max-width: 1400px) {
  .regional__item {
    gap: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .regional__item {
    gap: 20px;
    width: 311px;
    padding: 40px 20px 20px;
  }
}
.regional__label {
  display: block;
  font-size: 6rem;
  font-weight: 400;
  font-family: "Nissan-Brand", sans-serif;
}
@media screen and (max-width: 767px) {
  .regional__label {
    font-size: 45px;
  }
}
.regional__dates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 17px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.regional__dates-text {
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}
.regional__dates-text .en {
  font-size: 1.6rem;
}
.regional__link {
  height: 42px;
  width: 220px;
  margin-top: auto;
  font-size: 1.4rem;
  line-height: 1em;
  border-radius: 10px;
}
@media screen and (max-width: 1400px) {
  .regional__link {
    width: 100%;
  }
}
.regional .js-regional {
  width: 1240px;
  max-width: calc(100% - 200px);
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .regional .js-regional {
    max-width: calc(100% - 100px);
  }
}
@media screen and (max-width: 767px) {
  .regional .js-regional {
    position: relative;
    max-width: 100%;
    padding-inline: 20px 0;
  }
}

.floor {
  display: grid;
  margin-top: 30px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 1100px) {
  .floor {
    gap: 30px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.floor--kansai {
  grid-template-columns: 55% 45%;
}
@media screen and (max-width: 1100px) {
  .floor--kansai {
    gap: 30px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.floor--fukuoka {
  grid-template-columns: 70% 30%;
}
@media screen and (max-width: 1100px) {
  .floor--fukuoka {
    gap: 30px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.floor__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-left: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .floor__content {
    padding-top: 12px;
  }
}
.floor__label {
  gap: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  line-height: 1em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 20px;
  margin-bottom: 40px;
  letter-spacing: -0.03em;
}
.floor__label--dot::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-top: 4.5px;
  border-radius: 4px;
  background-color: #c3002f;
}
@media screen and (max-width: 767px) {
  .floor__label--dot::before {
    margin-top: 3.5px;
  }
}
.floor__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
@media screen and (max-width: 1100px) {
  .floor__details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .floor__details {
    gap: 29px;
  }
}
.floor__details-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  padding-inline: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1400px) {
  .floor__details-wrap {
    width: 100%;
  }
}
.floor__details-wrap:not(:last-child) {
  padding-inline: 20px 38px;
  border-right: 1px solid #000;
}
@media screen and (max-width: 1100px) {
  .floor__details-wrap:not(:last-child) {
    border-right: none;
  }
}
.floor__details-wrap--w260 {
  width: 260px;
}
@media screen and (max-width: 1100px) {
  .floor__details-wrap--w260 {
    width: 100%;
  }
}
.floor__details-wrap--fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.floor__details-label {
  display: block;
  font-size: 3.2rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  font-family: "Nissan-Brand", sans-serif;
}
@media screen and (max-width: 1400px) {
  .floor__details-label {
    width: auto;
  }
}
.floor__details-sublabel {
  display: block;
  font-size: 1.9rem;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
  line-height: 1.3157894737em;
  font-family: "Nissan-Brand", sans-serif;
}
.floor__details-sublabel--jp {
  font-size: 1.6rem;
  font-family: "A-OTF-ShinGoPro", sans-serif;
}
.floor__details-sublabel--nowrap {
  white-space: nowrap;
}
.floor__details-sm-label {
  position: relative;
  top: -5px;
  display: inline-block;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
  font-family: "Nissan-Brand", sans-serif;
}
.floor__details-text {
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  line-height: 1.65em;
}
.floor__details-text .en {
  font-size: 1.4rem;
}
.floor__details-text a {
  text-decoration: underline;
}
.floor__details-text-wrap {
  gap: 4%;
  display: grid;
  grid-template-columns: 53% 43%;
}
@media screen and (max-width: 1100px) {
  .floor__details-text-wrap {
    gap: 30px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.floor__details-text-content--offset {
  margin-top: 4px;
}

html.os-windows .floor__details--windows-offset {
  margin-top: 6px;
}

.booth-section {
  color: #fff;
  padding-block: 120px;
  background-color: #000;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .booth-section {
    padding-block: 50px;
  }
}
.booth-section__map {
  margin-top: -60px;
}
@media screen and (max-width: 1100px) {
  .booth-section__map {
    margin-top: 50px;
  }
}
.booth-section__map--kansai {
  margin-top: -100px;
  margin-left: -120px;
}
@media screen and (max-width: 1400px) {
  .booth-section__map--kansai {
    margin-top: 0;
  }
}
@media screen and (max-width: 1100px) {
  .booth-section__map--kansai {
    margin-left: -50px;
  }
}
@media screen and (max-width: 767px) {
  .booth-section__map--kansai {
    margin-top: 30px;
    margin-left: unset;
  }
}
.booth-section__map--fukuoka {
  margin-top: -90px;
  margin-left: -100px;
}
@media screen and (max-width: 1400px) {
  .booth-section__map--fukuoka {
    margin-top: 0;
  }
}
@media screen and (max-width: 1100px) {
  .booth-section__map--fukuoka {
    margin-left: -50px;
  }
}
@media screen and (max-width: 767px) {
  .booth-section__map--fukuoka {
    margin-top: 30px;
    margin-left: unset;
  }
}
.booth-section__map--sapporo {
  margin-top: -95px;
  margin-left: -100px;
}
@media screen and (max-width: 1400px) {
  .booth-section__map--sapporo {
    margin-top: 0;
  }
}
@media screen and (max-width: 1100px) {
  .booth-section__map--sapporo {
    margin-left: -50px;
  }
}
@media screen and (max-width: 767px) {
  .booth-section__map--sapporo {
    margin-top: 30px;
    margin-left: unset;
  }
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.overflow {
  overflow: hidden;
}

.overflow-text {
  overflow: hidden;
  display: block;
}
.overflow-text span {
  display: inline-block;
}

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

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

@media screen and (min-width: 981px) {
  .tablet-show {
    display: none;
  }
}

@media screen and (max-width: 980px) {
  .tablet-hide {
    display: none;
  }
}

.container {
  width: 1240px;
  max-width: calc(100% - 200px);
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .container {
    max-width: calc(100% - 100px);
  }
}
@media screen and (max-width: 767px) {
  .container {
    max-width: calc(100% - 40px);
  }
}

.white {
  color: #fff;
}

.jp {
  font-family: "A-OTF-ShinGoPro", sans-serif;
}

.en {
  font-family: "Nissan-Brand", sans-serif;
}

.anchor {
  display: block;
  position: relative;
  top: -175px;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .anchor {
    top: -104px;
  }
}

.os-mac .lineup__number-container--small {
  height: 200px;
}
.os-mac .lineup__number-container--vertical {
  height: 400px;
}
.os-mac .lineup__number--small {
  top: 44px;
}
.os-mac .lineup__number--mid {
  top: 74px;
}
.os-mac .lineup__number--vertical {
  top: 267px;
}
.os-mac .floor__label--dot::before {
  margin-top: 0;
}

@media screen and (max-width: 980px) {
  .os-ios .lineup__number {
    top: 155px;
  }
}
@media screen and (max-width: 767px) {
  .os-ios .lineup__number {
    top: 72px;
  }
}
.os-ios .lineup__number--mid {
  top: 76px;
}
@media screen and (max-width: 980px) {
  .os-ios .lineup__number--mid {
    top: 155px;
  }
}
@media screen and (max-width: 767px) {
  .os-ios .lineup__number--mid {
    top: 72px;
  }
}
.os-ios .lineup__number--vertical {
  top: 269px;
}
@media screen and (max-width: 980px) {
  .os-ios .lineup__number--vertical {
    top: 155px;
  }
}
@media screen and (max-width: 767px) {
  .os-ios .lineup__number--vertical {
    top: 72px;
  }
}
@media screen and (max-width: 980px) {
  .os-ios .lineup__number-container--smallest {
    padding-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .os-ios .lineup__number-container--smallest {
    padding-top: 20px;
  }
}
.os-ios .lineup__number-container--small {
  height: 185px;
}
@media screen and (max-width: 1200px) {
  .os-ios .lineup__number-container--small {
    height: 155px;
  }
}
@media screen and (max-width: 980px) {
  .os-ios .lineup__number-container--small {
    height: 235px;
  }
}
@media screen and (max-width: 767px) {
  .os-ios .lineup__number-container--small {
    height: 140px;
  }
}
@media screen and (max-width: 1200px) {
  .os-ios .lineup__number-container--vertical {
    height: 345px;
  }
}
@media screen and (max-width: 980px) {
  .os-ios .lineup__number-container--vertical {
    height: 225px;
  }
}
@media screen and (max-width: 767px) {
  .os-ios .lineup__number-container--vertical {
    height: 140px;
  }
}
@media screen and (max-width: 767px) {
  .os-ios .floor__label--dot::before {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .os-ios .footer__text--external::after {
    margin-top: 0;
  }
}

.popup .splide__pagination {
  left: unset;
  height: 1px;
  width: 458px;
  bottom: 1.5px;
  position: relative;
  margin: 52px 40px 0 auto;
}
@media screen and (max-width: 1100px) {
  .popup .splide__pagination {
    max-width: calc(100% - 73px);
    width: 100%;
  }
}
@media screen and (max-width: 980px) {
  .popup .splide__pagination {
    width: 100%;
    padding-inline: 0;
  }
}
@media screen and (max-width: 767px) {
  .popup .splide__pagination {
    margin-top: 20px;
  }
}
.popup .splide__pagination li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.popup .splide__pagination__page {
  margin: 0;
  width: 100%;
  opacity: 0.3;
  height: 1.5px;
  border-radius: 0;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .popup .splide__pagination__page {
    height: 1px;
  }
}
.popup .splide__pagination__page.is-active {
  opacity: 1;
  -webkit-transform: unset;
          transform: unset;
}
@media screen and (max-width: 980px) {
  .popup .splide__arrows {
    display: none;
  }
}
.popup .splide__arrow {
  top: unset;
  width: 12px;
  height: 12px;
  bottom: -4.5px;
  border-radius: 0;
  -webkit-transform: unset;
          transform: unset;
  background: url("../public/img/svg/caret-right-black.svg") no-repeat center/contain;
}
.popup .splide__arrow svg {
  display: none;
}
.popup .splide__arrow:disabled {
  opacity: 1;
}
.popup .splide__arrow--next {
  right: 0;
}
.popup .splide__arrow--prev {
  left: unset;
  right: 532px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 1100px) {
  .popup .splide__arrow--prev {
    left: 0;
    right: unset;
  }
}

@media screen and (max-width: 1050px) {
  .lp__other .splide__pagination {
    width: 100%;
    max-width: 400px;
  }
}
.lp__other .splide__pagination__page {
  opacity: 0.3;
  background-color: #000;
}
.lp__other .splide__pagination__page.is-active {
  opacity: 1;
  background-color: #000;
}
@media screen and (max-width: 1050px) {
  .lp__other .splide__arrow--prev {
    right: 465px;
  }
}

.lp__booth .splide__pagination {
  width: 100%;
  max-width: 100%;
  padding-inline: 0;
  margin: 37px auto 0;
}
@media screen and (max-width: 767px) {
  .lp__booth .splide__pagination {
    margin-top: 20px;
  }
}
.lp__booth .splide__pagination__page {
  background-color: #fff;
}
.lp__booth .splide:not(.is-overflow) .splide__pagination {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.lp__booth .splide:not(.is-overflow) .splide__pagination__page.is-active {
  opacity: 0.3;
}
.lp__booth .splide:not(.is-overflow) .splide__arrow {
  display: none;
}
@media screen and (max-width: 980px) {
  .lp__booth .splide__arrows {
    display: block;
  }
}
.lp__booth .splide__arrow {
  opacity: 1;
  height: 75px;
  width: 37.5px;
  top: calc(50% - 18.5px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../public/img/svg/caret-right.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .lp__booth .splide__arrow {
    width: 25px;
    height: 50px;
    top: calc(50% - 10px);
  }
}
.lp__booth .splide__arrow--prev {
  left: -18.75px;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
@media screen and (max-width: 767px) {
  .lp__booth .splide__arrow--prev {
    left: -12.5px;
  }
}
.lp__booth .splide__arrow--next {
  right: -18.75px;
}
@media screen and (max-width: 767px) {
  .lp__booth .splide__arrow--next {
    right: -12.5px;
  }
}

.regional .splide__pagination {
  left: unset;
  height: 1px;
  width: 458px;
  bottom: 1.5px;
  position: relative;
  margin: 52px 40px 0 auto;
}
@media screen and (max-width: 1100px) {
  .regional .splide__pagination {
    max-width: calc(100% - 73px);
    width: 100%;
  }
}
@media screen and (max-width: 980px) {
  .regional .splide__pagination {
    width: 100%;
    padding-inline: 0;
  }
}
@media screen and (max-width: 767px) {
  .regional .splide__pagination {
    width: 87.42%;
    margin-top: 25px;
  }
}
.regional .splide__pagination li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.regional .splide__pagination__page {
  margin: 0;
  width: 100%;
  opacity: 0.3;
  height: 1.5px;
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .regional .splide__pagination__page {
    height: 1px;
  }
}
.regional .splide__pagination__page.is-active {
  opacity: 1;
  -webkit-transform: unset;
          transform: unset;
  background-color: #fff;
  z-index: 1;
}
.regional .splide:not(.is-overflow) .splide__pagination {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.regional .splide:not(.is-overflow) .splide__arrow {
  display: none;
}
.regional .splide__arrow {
  opacity: 1;
  top: auto;
  background: url("../public/img/svg/caret-right-white.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .regional .splide__arrow {
    width: 24px;
    height: 12px;
    bottom: -9px;
  }
}
@media screen and (max-width: 767px) {
  .regional .splide__arrow--prev {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .regional .splide__arrow--next {
    -webkit-transform: rotate(180deg) translateY(6px);
            transform: rotate(180deg) translateY(6px);
    right: 0;
  }
}
.regional .splide__arrow svg {
  display: none;
}