@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@500;700;900&display=swap");
:root {
  --font-jp: "Zen Kaku Gothic New", sans-serif;
  --color-bl: #006da2;
  --color-lbl: #01b0f0;
  --color-ye: #fff34b;
  --color-gr: #5ecc83;
  --color-be: #fffcf0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-jp);
  font-weight: 500;
  font-style: normal;
  line-height: 1.8;
  font-size: 1.8rem;
  color: #000000;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

img {
  vertical-align: bottom;
  height: auto;
  max-height: inherit;
}

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

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

/* header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.header-logo {
  max-width: 22.22222vw;
  aspect-ratio: 663/358;
  padding: 20px 29px;
  background: url(../img/bg-logo.png) no-repeat left top/100% auto;
}
@media screen and (max-width: 767px) {
  .header-logo {
    max-width: 44%;
    padding: 10px 15px;
  }
}
.header-logo img {
  width: 42%;
}

/* footer */
.footer {
  position: relative;
  z-index: 1;
  background: var(--color-ye);
  padding-block: 40px 20px;
  border-radius: 120px 120px 0 0;
  margin-top: -120px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-block: 30px 10px;
    border-radius: 50px 50px 0 0;
    margin-top: -50px;
  }
}
.footer > .inner {
  display: flex;
  flex-direction: column;
  max-width: 1100px;
  padding-inline: 40px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
  font-size: 1.4rem;
}
.footer-logo {
  max-width: 240px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .footer-logo {
    max-width: 100px;
  }
}
.footer-logo > img {
  width: 100%;
}
.footer-link {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .footer-link {
    margin-top: 20px;
  }
}
.footer-link > a {
  color: var(--color-bl);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 2.4rem;
  font-weight: 700;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .footer-link > a {
    font-size: 1.4rem;
    gap: 10px;
  }
  .footer-link > a span img {
    width: 31px;
    height: 18px;
    vertical-align: middle;
  }
}
@media (hover: hover) {
  .footer-link > a:hover {
    opacity: 0.8;
  }
}
.footer .copyright {
  margin-top: 46px;
}
@media screen and (max-width: 767px) {
  .footer .copyright {
    margin-top: 20px;
  }
}

.section {
  position: relative;
  z-index: 1;
}
.section::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: url(../img/bg-texture.png) repeat-y top center/100% auto;
  mix-blend-mode: multiply;
}
.section .title-box {
  display: flex;
  gap: 40px;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .section .title-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
}
.section .title-box .section-title {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section .title-box .section-title > span {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .section .title-box .section-title > span {
    font-size: 1.2rem;
  }
}
.section .title-box .section-title > img {
  width: auto;
}
.section .title-box .title-paragraph {
  font-size: 1.8rem;
  text-align: right;
  max-width: 450px;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .section .title-box .title-paragraph {
    max-width: 100%;
    font-size: 1.4rem;
    text-align: left;
  }
}
.section .title-box .title-paragraph > span.bg-color__ye {
  background-color: var(--color-ye);
  color: var(--color-bl);
}
.section .title-box .title-paragraph > span.bg-color__lbl {
  background-color: #69cdff;
}

/* top mv */
.top {
  position: relative;
  background: url(../img/bg-mv.png) no-repeat center top/100% auto;
}
@media screen and (max-width: 767px) {
  .top {
    background: none;
  }
}
.top img {
  width: 100%;
}
.top-information__list {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  padding-inline: 40px;
  margin: -120px auto 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-information__list {
    padding-inline: 60px;
    margin-top: 0;
    margin-top: -88px;
  }
}
.top-information__list .splide__track {
  overflow: visible;
}
.top-information__item > a {
  display: block;
  padding: 20px 12px 20px 20px;
  transition: 0.3s;
  background-color: #ffffff;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .top-information__item > a {
    padding: 10px;
    border-radius: 4px;
  }
}
@media (hover: hover) {
  .top-information__item > a:hover {
    background-color: #f1f1f1;
  }
}
.top-information__figure {
  display: flex;
  align-items: center;
  gap: 12px;
}
.top-information__figure > img {
  max-width: 130px;
  border: 1px solid #f1f1f1;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-information__figure > img {
    max-width: 100px;
    border-radius: 4px;
  }
}
.top-information__figure > figcaption {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top-information__figure > figcaption {
    font-size: 1.2rem;
  }
}
.top-information__figure > figcaption > span {
  color: var(--color-bl);
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .top-information__figure > figcaption > span {
    font-size: 1.6rem;
  }
}

/* message */
.message {
  background: var(--color-gr);
  padding-block: 158px 278px;
}
@media screen and (max-width: 767px) {
  .message {
    padding-block: 80px 130px;
    overflow: hidden;
  }
}
.message-bg {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .message-bg {
    top: 30px;
    left: 65%;
    width: 130%;
    max-width: none;
  }
}
.message .section-title {
  position: absolute;
  top: 60px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .message .section-title {
    max-width: 45px;
    top: 36px;
  }
}
.message > .inner {
  max-width: 1300px;
  padding-inline: 120px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .message > .inner {
    flex-direction: column;
    padding-inline: 20px;
    gap: 20px;
  }
}
.message > .inner .text-box {
  color: #ffffff;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .message > .inner .text-box {
    max-width: 100%;
    order: 1;
  }
}
.message > .inner .text-box .section-sub-title {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .message > .inner .text-box .section-sub-title {
    font-size: 2.4rem;
    text-align: center;
  }
}
.message > .inner .text-box .paragraph {
  margin-top: 40px;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .message > .inner .text-box .paragraph {
    font-size: 1.4rem;
    text-align: center;
  }
}
.message > .inner .text-box .paragraph > span {
  display: block;
}
.message > .inner .text-box .paragraph > span + span {
  margin-top: 16px;
}
.message > .inner .img-box {
  padding-top: 30px;
  max-width: 440px;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .message > .inner .img-box {
    order: 0;
    max-width: 58.6666%;
    margin: 0 auto;
    padding-top: 0;
  }
}

/* destinations-routes */
.destinations-routes {
  background: var(--color-lbl);
  padding-block: 125px 245px;
  border-radius: 120px 120px 0 0;
  margin-top: -120px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .destinations-routes {
    padding-block: 50px 130px;
    border-radius: 50px 50px 0 0;
    margin-top: -50px;
  }
}
.destinations-routes .inner {
  max-width: 1100px;
  padding-inline: 40px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .destinations-routes .inner {
    padding-inline: 20px;
  }
}
.destinations-routes .section-title {
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .destinations-routes .section-title {
    max-width: 280px;
  }
}
.destinations-routes .title-paragraph {
  color: #ffffff;
}
.destinations-routes-details {
  position: relative;
  margin-top: 36px;
}
@media screen and (max-width: 767px) {
  .destinations-routes-details {
    margin-top: 30px;
  }
}
.destinations-routes-map {
  margin-left: auto;
  position: relative;
  max-width: 872px;
}
.destinations-routes-map .img-map {
  display: block;
}
.destinations-routes .btn-game-schedule {
  position: absolute;
  right: 0;
  bottom: 40px;
}
@media screen and (max-width: 767px) {
  .destinations-routes .btn-game-schedule {
    bottom: -40px;
  }
}
.destinations-routes .btn-game-schedule a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  width: 200px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 3px solid #ffffff;
  background-color: #b3e6ff;
  padding-inline: 24px;
  transition: 0.3s;
  color: var(--color-bl);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .destinations-routes .btn-game-schedule a {
    width: 130px;
    padding-inline: 12px;
    font-size: 1.4rem;
    gap: 6px;
    border-width: 2px;
    line-height: 1.2;
  }
  .destinations-routes .btn-game-schedule a img {
    width: 31px;
    height: 18px;
    vertical-align: middle;
  }
}
@media (hover: hover) {
  .destinations-routes .btn-game-schedule a:hover {
    opacity: 0.8;
  }
}
.destinations-routes .btn-area {
  max-width: 952px;
  margin: 40px auto 0;
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .destinations-routes .btn-area {
    flex-direction: column;
    width: 100%;
    gap: 16px;
    margin-top: 60px;
  }
}
.destinations-routes .btn-area .btn-box {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .destinations-routes .btn-area .btn-box {
    padding-inline: 25px;
  }
}
.destinations-routes .btn-area .btn-box > a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  padding-inline: 20px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  border-radius: 8px;
  transition: 0.3s;
}
@media screen and (max-width: 824px) {
  .destinations-routes .btn-area .btn-box > a {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .destinations-routes .btn-area .btn-box > a {
    height: 62px;
    font-size: 1.4rem;
  }
}
@media (hover: hover) {
  .destinations-routes .btn-area .btn-box > a:hover {
    opacity: 0.8;
  }
}
.destinations-routes .btn-area .btn-box > a > .icon {
  width: 80px;
  margin-right: 12px;
}
@media screen and (max-width: 767px) {
  .destinations-routes .btn-area .btn-box > a > .icon {
    width: 42px;
  }
}
.destinations-routes .btn-area .btn-box > a > .text {
  flex: 1;
}
.destinations-routes .btn-area .btn-box > a > .arrow {
  width: 56px;
  margin-left: 24px;
}
@media screen and (max-width: 767px) {
  .destinations-routes .btn-area .btn-box > a > .arrow {
    width: 31px;
    margin-left: 12px;
  }
}
.destinations-routes .btn-area .btn-box.btn-bg--white > a {
  background-color: #b3e6ff;
  color: var(--color-bl);
}
.destinations-routes .btn-area .btn-box.btn-bg--blue > a {
  background-color: var(--color-bl);
  color: #ffffff;
}

/* map */
#map-animation-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.pin {
  position: absolute;
  width: 52px;
  height: 70px;
  transform: translate(-50%, -85%);
  cursor: pointer;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .pin {
    width: 26px;
    height: 35px;
  }
  .pin svg {
    width: 26px;
    height: 35px;
  }
}

.flight-path {
  stroke: #000000;
  stroke-width: 2;
  stroke-dasharray: 8 8;
  fill: none;
}
@media screen and (max-width: 767px) {
  .flight-path {
    stroke-width: 1.5;
    stroke-dasharray: 6 6;
  }
}

.pin .pin-body {
  transition: fill 0.2s ease;
}

.pin:hover .pin-body,
.pin.is-active .pin-body {
  fill: #eb2e2e;
}

.stadium-info-container {
  position: absolute;
  top: 46px;
  left: 0;
  width: 50%;
  max-width: 460px;
  background-color: var(--color-bl);
  padding: 8px;
  border-radius: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
@media screen and (max-width: 767px) {
  .stadium-info-container {
    top: -15px;
    min-width: 180px;
    width: 50.7%;
    padding: 4px;
    border-radius: 12px;
  }
}
.stadium-info-container.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.stadium-info-container .area {
  position: absolute;
  top: 8px;
  left: 8px;
  background-color: var(--color-bl);
  color: #ffffff;
  font-size: 2.8rem;
  font-weight: 700;
  padding: 0 32px 4px;
  border-radius: 0 0 16px 0;
}
@media screen and (max-width: 767px) {
  .stadium-info-container .area {
    border-radius: 0 0 8px 0;
    top: 3px;
    left: 3px;
    font-size: 1.4rem;
    padding: 3px 16px 4px;
  }
}
.stadium-info-container .img-box {
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .stadium-info-container .img-box {
    border-radius: 8px;
  }
}
.stadium-info-container .name {
  color: #ffffff;
  font-size: 3.6rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  margin-top: 6px;
}
@media screen and (max-width: 767px) {
  .stadium-info-container .name {
    font-size: 1.8rem;
    line-height: 1.4;
    padding-block: 4px 3px;
    margin-top: 4px;
  }
}

.common__list {
  display: flex;
  gap: 36px;
}
@media screen and (max-width: 767px) {
  .common__list {
    flex-direction: column;
    gap: 20px;
  }
}
.common__item {
  max-width: 492px;
}
@media screen and (max-width: 767px) {
  .common__item {
    max-width: 100%;
  }
}
.common__item.mgT80 {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .common__item.mgT80 {
    margin-top: 0;
  }
}
.common__item .common-box {
  display: block;
  background-color: var(--color-bl);
  padding: 16px 16px 36px 16px;
  border-radius: 16px;
}
@media screen and (max-width: 767px) {
  .common__item .common-box {
    padding: 7.5px 7.5px 18px 7.5px;
    border-radius: 6px;
  }
}
.common__item .common-box .img-box {
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .common__item .common-box .img-box {
    border-radius: 4px;
  }
}
.common__item a.common-box {
  transition: 0.3s;
}
@media (hover: hover) {
  .common__item a.common-box:hover {
    opacity: 0.8;
  }
}
.common-title {
  margin-top: 46px;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .common-title {
    margin-top: 24px;
  }
  .common-title img {
    width: auto;
    height: 18px;
  }
}
.common-title + .paragraph {
  margin-top: 20px;
  color: #ffffff;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .common-title + .paragraph {
    margin-top: 16px;
    font-size: 1.4rem;
  }
}

/* service-campaign */
.service-campaign {
  background: var(--color-be);
  padding-block: 125px 345px;
  border-radius: 120px 120px 0 0;
  margin-top: -120px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .service-campaign {
    padding-block: 50px 220px;
    border-radius: 50px 50px 0 0;
    margin-top: -50px;
  }
}
.service-campaign .inner {
  max-width: 1100px;
  padding-inline: 40px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .service-campaign .inner {
    padding-inline: 20px;
  }
}
.service-campaign .inner + .inner {
  margin-top: 196px;
}
@media screen and (max-width: 767px) {
  .service-campaign .inner + .inner {
    margin-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .service-campaign .section-title--service {
    max-width: 172px;
  }
  .service-campaign .section-title--campaign {
    max-width: 247.5px;
  }
}
.service-campaign .service {
  position: relative;
  margin-top: 148px;
}
@media screen and (max-width: 767px) {
  .service-campaign .service {
    margin-top: 28px;
  }
}
.service-campaign .service::after {
  content: "";
  display: block;
  height: 793px;
  width: 200%;
  background-color: #ffffff;
  border-radius: 9999px;
  position: absolute;
  left: -100%;
  top: -80px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .service-campaign .service::after {
    display: none;
  }
}
.service-campaign .campaign {
  margin-top: 68px;
}
@media screen and (max-width: 767px) {
  .service-campaign .campaign {
    margin-top: 20px;
  }
}
.service-campaign .campaign__list {
  display: flex;
  gap: 36px;
  margin-bottom: 36px;
}
@media screen and (max-width: 767px) {
  .service-campaign .campaign__list {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
  }
}
.service-campaign .campaign__item {
  width: calc(50% - 18px);
}
@media screen and (max-width: 767px) {
  .service-campaign .campaign__item {
    width: 100%;
  }
}
.service-campaign .campaign__item a {
  display: block;
  transition: 0.3s;
}
@media (hover: hover) {
  .service-campaign .campaign__item a:hover {
    opacity: 0.8;
  }
}
.service-campaign .campaign__item img {
  border-radius: 16px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .service-campaign .campaign__item img {
    border-radius: 6px;
  }
}
.service-campaign .campaign__item figcaption {
  margin-top: 12px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .service-campaign .campaign__item figcaption {
    font-size: 1.4rem;
  }
}
.service-campaign .campaign__item figcaption > p {
  flex: 1;
}
.service-campaign .campaign__item figcaption > span {
  max-width: 80px;
}
.service-campaign .campaign__item figcaption > p small {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .service-campaign .campaign__item figcaption > span {
    max-width: 64px;
  }
  .service-campaign .campaign__item figcaption > p small {
    font-size: 1.2rem;
  }
}
.service-campaign .tour {
  margin-top: 68px;
}
@media screen and (max-width: 767px) {
  .service-campaign .tour {
    margin-top: 20px;
  }
}

.x-area {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .x-area {
    margin-top: 30px;
    gap: 14px;
  }
}
.x-area > p {
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .x-area > p {
    font-size: 1.4rem;
  }
}
.x-area a {
  display: inline-block;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .x-area a {
    max-width: 174px;
  }
}
@media (hover: hover) {
  .x-area a:hover {
    opacity: 0.8;
  }
}

.separator {
  position: relative;
  z-index: 1;
  margin-top: -210px;
  width: 100%;
  max-height: 210px;
  overflow: hidden;
}
.separator .img-bg-top {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .separator .img-bg-top {
    margin-top: 100px;
  }
}

/* goods */
.goods {
  background: var(--color-gr);
  padding-block: 0 245px;
  margin-top: -160px;
  width: 100%;
  border-radius: 0;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .goods {
    padding-block: 12px 130px;
    margin-top: -1px;
  }
}
.goods .img-plane {
  position: absolute;
  top: -330px;
  right: 0;
  width: 781px;
  max-width: 60%;
}
@media screen and (max-width: 767px) {
  .goods .img-plane {
    top: -30vw;
    width: auto;
    max-width: 80%;
  }
}
.goods .inner {
  max-width: 1100px;
  padding-inline: 40px;
  margin: 0 auto;
  transform: translateY(-40px);
}
@media screen and (max-width: 767px) {
  .goods .inner {
    padding-inline: 20px;
    transform: translateY(0);
  }
}
.goods .section-title {
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .goods .section-title {
    max-width: 319.5px;
  }
}
.goods .title-paragraph {
  color: #ffffff;
}
.goods__list {
  max-width: 1140px;
  padding-inline: 40px;
  margin: 68px auto 0;
}
@media screen and (max-width: 767px) {
  .goods__list {
    padding-inline: 0;
    margin-top: 30px;
    overflow: hidden;
  }
}
.goods__list .goods__figure {
  cursor: pointer;
  transition: 0.3s;
}
@media (hover: hover) {
  .goods__list .goods__figure:hover {
    opacity: 0.8;
  }
}
.goods__list .goods__figure .img-box {
  position: relative;
  display: inline-block;
}
.goods__list .goods__figure .img-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  padding: 9px;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(218, 233, 240) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .goods__list .goods__figure .img-box::before {
    padding: 4px;
  }
}
.goods__list .goods__figure .img-box img {
  display: block;
  border-radius: 9999px;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.08);
}
.goods__list .goods__figure > figcaption {
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .goods__list .goods__figure > figcaption {
    font-size: 1.2rem;
    margin-top: 8px;
  }
}
.goods__list .splide__track {
  overflow: inherit;
}
@media screen and (max-width: 767px) {
  .goods__list .splide__track {
    padding-inline: 20px !important;
  }
}
.goods .splide-ui {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .goods .splide-ui {
    padding-inline: 20px;
    margin-top: 23px;
  }
}
.goods .splide-ui .splide__progress {
  border: 1px solid #ffffff;
  border-radius: 9999px;
  height: 8px;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .goods .splide-ui .splide__progress {
    height: 4px;
  }
}
.goods .splide-ui .splide__progress--bar {
  background-color: #ffffff;
  border-radius: 9999px;
  height: 100%;
  transition: width 400ms ease;
  width: 0;
}
.goods .splide-ui .splide__arrows {
  width: 172px;
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .goods .splide-ui .splide__arrows {
    width: 126px;
    gap: 8px;
  }
}
.goods .splide-ui .splide__arrows .splide__arrow {
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .goods .splide-ui .splide__arrows .splide__arrow {
    width: 64px;
  }
}
.goods .splide-ui .splide__arrows .splide__arrow[disabled] {
  cursor: default;
}
.goods .splide-ui .splide__arrows .splide__arrow[disabled] > img {
  opacity: 0;
}
.goods .splide-ui .splide__arrows .splide__arrow > img {
  opacity: 1;
  transition: 0.3s;
}
.goods .splide-ui .splide__arrows .splide__arrow--prev {
  background: url(../img/btn-arrow-prev-disabled.svg) no-repeat left top/100% auto;
}
.goods .splide-ui .splide__arrows .splide__arrow--next {
  background: url(../img/btn-arrow-next-disabled.svg) no-repeat left top/100% auto;
}

.goods__modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 100%;
  height: 100%;
}
.goods__modal.is-open .goods__modal--overlay {
  opacity: 1;
}
.goods__modal.is-open .goods__modal--content {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.goods__modal--overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.goods__modal--content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  z-index: 10000;
  max-width: 460px;
  background-color: var(--color-bl);
  padding: 30px;
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .goods__modal--content {
    width: 100%;
    padding: 20px;
    border-radius: 8px;
  }
}
.goods__modal--content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 9px;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(218, 233, 240) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .goods__modal--content::before {
    padding: 4px;
    border-radius: 8px;
  }
}
.goods__modal--close {
  position: absolute;
  top: -54px;
  right: 0;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .goods__modal--close {
    width: 64px;
    top: -42px;
  }
}
@media (hover: hover) {
  .goods__modal--close:hover {
    opacity: 0.8;
  }
}
.goods__modal--detail {
  display: none;
}
.goods__modal--tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.goods__modal--tags > span {
  display: inline-block;
  background-color: #ffffff;
  color: var(--color-bl);
  font-size: 2rem;
  font-weight: 700;
  padding: 2px 16px;
  border-radius: 9999px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .goods__modal--tags > span {
    font-size: 1.4rem;
  }
}
.goods__modal--figure figcaption {
  line-height: 1.4;
  color: #ffffff;
  font-size: 2.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .goods__modal--figure figcaption {
    font-size: 2.2rem;
  }
}
.goods__modal .img-box {
  margin-top: 8px;
  border-radius: 12px;
  overflow: hidden;
}
.goods__modal--specs {
  margin-top: 16px;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .goods__modal--specs {
    font-size: 1.6rem;
  }
}
.goods__modal--specs .spec__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.goods__modal--specs .spec__item {
  display: flex;
}
.goods__modal--specs .spec__item--head {
  width: 90px;
  position: relative;
  padding-right: 18px;
}
@media screen and (max-width: 767px) {
  .goods__modal--specs .spec__item--head {
    width: 80px;
    padding-right: 16px;
  }
}
.goods__modal--specs .spec__item--head::after {
  content: "：";
  position: absolute;
  right: 0;
  top: 0;
}
.goods__modal--specs .spec__item--body {
  flex: 1;
  display: flex;
  gap: 12px;
}
.goods__modal--specs .spec__item--body__inner a {
  text-decoration: underline;
}
@media (hover: hover) {
  .goods__modal--specs .spec__item--body__inner a:hover {
    text-decoration: none;
  }
}
.goods__modal--specs .spec__item .img-sticker {
  width: 62px;
}
@media screen and (max-width: 767px) {
  .goods__modal--specs .spec__item .img-sticker {
    width: 45px;
  }
}

/*# sourceMappingURL=style.css.map */
