@charset "UTF-8";
:root {
  /* カラー指定 */
  --color-neutral-black: #2a2a2e;
  --color-active-red: #d0102c;
  --color-neutral-gray: #727171;
  --color-light-beige-1: #d6d6d6;
  --color-beige-1: #ddbf86;
  --color-beige-2: #f4f4e9;
  --color-beige-3: #b8934c;
  --color-white: #ffffff;
  --color-white-1: #ededed;
  /* 1400px基準 */
  --px2: min(0.14vw, 2px);
  --px3: min(0.21vw, 3px);
  --px4: min(0.29vw, 4px);
  --px5: min(0.36vw, 5px);
  --px6: min(0.43vw, 6px);
  --px7: min(0.5vw, 7px);
  --px8: min(0.57vw, 8px);
  --px9: min(0.64vw, 9px);
  --px10: min(0.71vw, 10px);
  --px11: min(0.79vw, 11px);
  --px12: min(0.86vw, 12px);
  --px13: min(0.93vw, 13px);
  --px14: min(1vw, 14px);
  --px15: min(1.07vw, 15px);
  --px16: min(1.14vw, 16px);
  --px17: min(1.21vw, 17px);
  --px18: min(1.29vw, 18px);
  --px19: min(1.36vw, 19px);
  --px20: min(1.43vw, 20px);
  --px21: min(1.5vw, 21px);
  --px22: min(1.57vw, 22px);
  --px23: min(1.64vw, 23px);
  --px24: min(1.71vw, 24px);
  --px25: min(1.79vw, 25px);
  --px26: min(1.86vw, 26px);
  --px27: min(1.93vw, 27px);
  --px28: min(2vw, 28px);
  --px29: min(2.07vw, 29px);
  --px30: min(2.14vw, 30px);
  --px31: min(2.21vw, 31px);
  --px32: min(2.29vw, 32px);
  --px33: min(2.36vw, 33px);
  --px34: min(2.43vw, 34px);
  --px35: min(2.5vw, 35px);
  --px36: min(2.57vw, 36px);
  --px37: min(2.64vw, 37px);
  --px38: min(2.71vw, 38px);
  --px39: min(2.79vw, 39px);
  --px40: min(2.86vw, 40px);
  --px41: min(2.93vw, 41px);
  --px42: min(3vw, 42px);
  --px43: min(3.07vw, 43px);
  --px44: min(3.14vw, 44px);
  --px45: min(3.21vw, 45px);
  --px46: min(3.29vw, 46px);
  --px47: min(3.36vw, 47px);
  --px48: min(3.43vw, 48px);
  --px49: min(3.5vw, 49px);
  --px50: min(3.57vw, 50px);
}

html {
  font-size: 62.5%;
  line-height: 1.6;
}

body {
  color: var(--color-whit);
  font-weight: 400;
  font-family: "Noto Sans JP", serif;
}

main {
  background: var(--color-neutral-black);
}

main img {
  width: 100%;
  height: auto;
}

.u-mt-10 {
  margin-top: 1rem;
}

.u-mt-16 {
  margin-top: 1.6rem;
}

.u-mt-20 {
  margin-top: 2rem;
}

.u-mt-30 {
  margin-top: 2rem;
}

.u-txt-center {
  text-align: center;
}

.u-pc-only {
  display: block !important;
}

.u-sp-only {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none !important;
  }
  .u-sp-only {
    display: block !important;
  }
}
.c-ttl-h1 {
  color: var(--color-white);
  font-size: 8rem;
  line-height: 9.9rem;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-ttl-h1 {
    font-size: 5rem;
    line-height: 6rem;
  }
}
.c-ttl-h1 .u-strong {
  font-size: 10rem;
}
@media screen and (max-width: 767px) {
  .c-ttl-h1 .u-strong {
    font-size: 6rem;
  }
}
.c-ttl-h1__wrap {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-ttl-h1__wrap {
    width: calc(100% - 5.5rem);
    margin: 0 auto;
  }
}
.c-ttl-h1__img {
  width: 48.6rem;
  margin-bottom: 2.2rem;
}
@media screen and (max-width: 767px) {
  .c-ttl-h1__img {
    width: 29.6rem;
  }
}
.c-ttl-h1__sub-ttl {
  margin-top: 2rem;
  font-size: 2.2rem;
  line-height: 6.8rem;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.22em;
}
@media screen and (max-width: 767px) {
  .c-ttl-h1__sub-ttl {
    font-size: 1.4rem;
    line-height: 4.3rem;
  }
}

.c-ttl-h2 {
  color: var(--color-light-beige-1);
  font-weight: 600;
  font-size: 4.8rem;
  line-height: 6.9rem;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .c-ttl-h2 {
    font-size: 2.4rem;
    line-height: 3.5rem;
  }
}
.c-ttl-h2__wrap {
  position: relative;
  margin-bottom: 6rem;
  padding-bottom: 2rem;
  text-align: center;
}
.c-ttl-h2__wrap::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--color-light-beige-1);
  content: "";
}
@media screen and (max-width: 767px) {
  .c-ttl-h2__wrap {
    margin-bottom: 3rem;
  }
}
.c-ttl-h2__sub {
  margin-top: 0.8rem;
  color: var(--color-light-beige-1);
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 3rem;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .c-ttl-h2__sub {
    font-size: 1.4rem;
    line-height: 3rem;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}

.p-header {
  position: relative;
}

.p-header::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-image: linear-gradient(black, rgba(0, 0, 0, 0));
  content: "";
  pointer-events: none;
}

@media print, screen and (min-width: 768px) {
  .p-header::before {
    height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .p-header::before {
    height: 80px;
  }
}
.m-header {
  display: flex;
  align-items: center;
  position: relative;
  padding: 14px 20px;
}
@media screen and (max-width: 767px) {
  .m-header {
    padding: 10px 10px;
  }
  .m-header::before {
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100lvh;
    content: "";
    transition-property: opacity;
    transition-duration: 0.2s;
    pointer-events: none;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
  }
}

.is-menu .m-header::before {
  opacity: 1;
}

.m-header__logo {
  margin-right: 10%;
}
@media screen and (max-width: 767px) {
  .m-header__logo {
    position: relative;
    z-index: 10;
  }
}
.m-header__logo img {
  width: auto;
  height: 2.5rem;
}

.l-sw-nav {
  flex: 1;
  position: relative;
  top: auto;
}
@media screen and (max-width: 767px) {
  .l-sw-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
}

@media print, screen and (min-width: 768px) {
  .c-sw-header-nav-icon {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .c-sw-header-nav-icon {
    display: block;
    position: absolute;
    top: 7px;
    right: 10px;
    z-index: 10;
    width: 30px;
    height: 30px;
  }
  .c-sw-header-nav-icon > span {
    display: block;
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition-property: background-color, transform;
    transition-duration: 0.375s;
  }
  .c-sw-header-nav-icon > span:nth-child(1) {
    transform: translateY(-4px);
  }
  .c-sw-header-nav-icon > span:nth-child(2) {
    transform: translateY(4px);
    transition-delay: 0s, 0.1s;
  }
  .is-menu .c-sw-header-nav-icon > span:nth-child(1) {
    transform: rotate(-45deg) translateY(0);
  }
  .is-menu .c-sw-header-nav-icon > span:nth-child(2) {
    transform: rotate(45deg) translateY(0);
  }
}
@media screen and (max-width: 767px) {
  .m-headerNav {
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
  }
  html:not(.is-menu) .m-headerNav {
    height: 0;
    pointer-events: none;
  }
  .is-menu .m-headerNav {
    height: 100lvh;
  }
}
.m-headerNav__list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6%;
}
@media screen and (max-width: 767px) {
  .m-headerNav__list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 0 40px;
    gap: 4rem;
  }
}

@media screen and (max-width: 767px) {
  .m-headerNav__listItem {
    opacity: 0;
    transform: translateX(40px);
  }
  .is-menu .m-headerNav__listItem {
    opacity: 1;
    transform: translateX(0);
    transition-property: opacity, transform;
    transition-duration: 0.5s;
  }
  .is-menu .m-headerNav__listItem:nth-of-type(1) {
    transition-delay: 0.1s;
  }
  .is-menu .m-headerNav__listItem:nth-of-type(2) {
    transition-delay: 0.2s;
  }
  .is-menu .m-headerNav__listItem:nth-of-type(3) {
    transition-delay: 0.3s;
  }
  .is-menu .m-headerNav__listItem:nth-of-type(4) {
    transition-delay: 0.4s;
  }
  .is-menu .m-headerNav__listItem:nth-of-type(5) {
    transition-delay: 0.5s;
  }
}
.m-headerNav__link {
  display: block;
  position: relative;
  color: var(--color-white);
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
}

@media print, screen and (min-width: 768px) {
  .m-headerNav__link {
    padding: 2px 0;
    font-size: 15px;
    transition-property: color;
    transition-duration: 0.2s;
  }
  .m-headerNav__link::after {
    display: block;
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(221, 191, 134, 0);
    content: "";
    transition-property: background-color;
    transition-duration: 0.2s;
  }
  .m-headerNav__link:hover {
    color: #ddbf86;
  }
  .m-headerNav__link:hover::after {
    background-color: #ddbf86;
  }
}
@media screen and (max-width: 767px) {
  .m-headerNav__link {
    font-size: 19px;
  }
}
.l-mv {
  position: relative;
  height: 100vh;
  background-image: url(/images/special/sportmaxx/lux/review-archive/img_mv_pc.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}
.l-mv__inner {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.l-contents {
  position: relative;
  padding-top: 12.7rem;
}
@media screen and (max-width: 767px) {
  .l-contents {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
.l-contents__inner {
  display: flex;
  position: relative;
  gap: 2rem;
  width: calc(100% - 10rem);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-contents__inner {
    flex-direction: column;
    width: 100%;
  }
}
.l-contents__item {
  flex: 1.7;
}
.l-contents__subitem {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 2rem;
}

.c-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  border: 1px solid var(--color-beige-1);
  border-radius: 0.5rem;
  background: var(--color-neutral-black);
  transition: var(--transition-1);
}
.c-card:hover .c-card__img {
  transform: scale(1.1);
}
.c-card__title {
  position: relative;
  margin-top: 8.8rem;
  color: var(--color-beige-1);
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 4rem;
  font-family: "Noto Serif JP", serif;
  word-break: break-all;
}
.c-card__title:before {
  display: block;
  position: absolute;
  bottom: calc(100% + 1rem);
  left: 0;
  width: 10.9rem;
  height: 3.9rem;
  background-image: url(/images/special/sportmaxx/lux/review-archive/icon_pickup.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
@media screen and (max-width: 767px) {
  .c-card__title:before {
    bottom: calc(100% + 0.4rem);
    width: 6.8rem;
    height: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-card__title {
    margin-top: 4.8rem;
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
}
.c-card__link {
  padding: 3rem 3rem 4rem;
}
@media screen and (max-width: 767px) {
  .c-card__link {
    padding: 2rem;
  }
}
.c-card__img-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 0.2rem;
}
.c-card__img {
  width: 100%;
  height: auto;
  margin-top: var(--margin-size-md);
  transition: 0.3s all ease-out;
}
.c-card__desc {
  margin-top: 2.9rem;
  color: var(--color-light-beige-1);
  font-size: 1.5rem;
  line-height: 2.4rem;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .c-card__desc {
    margin-top: 2rem;
    font-size: 1.4rem;
    line-height: 2.3rem;
  }
}

.c-card-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  border: 1px solid #484848;
  border-radius: 0.5rem;
  background: rgba(42, 42, 46, 0.5);
  transition: var(--transition-1);
}
.c-card-sub:hover .c-card-sub__img {
  transform: scale(1.1);
}
.c-card-sub__title {
  margin-top: 2rem;
  color: var(--color-light-beige-1);
  font-size: 1.5rem;
  line-height: 2.8rem;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .c-card-sub__title {
    font-size: 1.4rem;
    line-height: 2.3rem;
  }
}
.c-card-sub__link {
  padding: 3rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-card-sub__link {
    padding: 2rem;
  }
}
.c-card-sub__img-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 0.2rem;
}
.c-card-sub__img {
  width: 100%;
  height: auto;
  margin-top: var(--margin-size-md);
  transition: 0.3s all ease-out;
}

.p-slider__wrap {
  margin-top: min(4.57vw, 64px);
}
@media screen and (max-width: 767px) {
  .p-slider__wrap {
    margin-top: 3rem;
  }
}

.c-slide {
  margin: 0 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-slide {
    margin: 0 1rem;
  }
}
.c-slide__txt-area {
  padding: var(--px20);
  background: #272727;
}
@media screen and (max-width: 767px) {
  .c-slide__txt-area {
    padding: 4.2vw;
  }
}
.c-slide__txt {
  display: block;
  color: #ffffff;
  font-size: 1.6rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  max-height: 3.2em;
}
@media screen and (max-width: 767px) {
  .c-slide__txt {
    font-size: 1.4rem;
  }
}
.c-slide__date {
  display: block;
  opacity: 0.6;
  margin-top: var(--px5);
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 1.9rem;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .c-slide__date {
    margin-top: 1.33vw;
    font-size: 1.2rem;
    line-height: 1.7rem;
  }
}
.c-slide__link {
  cursor: pointer;
}
.c-slide__link:hover .c-slide__img {
  transform: scale(1.1);
}
.c-slide__link--disabled {
  pointer-events: none;
}
.c-slide__img {
  transition: 0.3s all ease-out;
}
.c-slide__img-area {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  object-fit: cover;
  overflow: hidden;
  border-radius: 0.5rem;
}
.c-slide__img-area:after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(4vw, 56px);
  height: min(4vw, 56px);
  margin-top: max(-1.64vw, -23px);
  margin-left: max(-1.64vw, -23px);
  background: url(/images/special/sportmaxx/lux/review-archive/icon_mov.svg) no-repeat center;
  background-size: contain !important;
  content: "";
}
@media screen and (max-width: 767px) {
  .c-slide__img-area:after {
    width: 15vw;
    height: 15vw;
    margin-top: -7.5vw;
    margin-left: -7.5vw;
  }
}
.c-slide__img-area > img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.c-controler {
  display: flex;
  align-items: center;
  position: relative;
  width: fit-content;
  margin: 2rem auto 0;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .c-controler {
    margin: 8.53vw auto 0;
  }
}
.c-controler__dots {
  position: relative;
}
.c-controler__wrap {
  margin-bottom: 11rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-controler__wrap {
    margin-bottom: 8rem;
  }
}
.c-controler__btn-inner {
  display: inline-block;
}
.c-controler__btn-img {
  width: auto;
  height: 100%;
}
.c-controler__btn-stop {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  line-height: 1;
  cursor: pointer;
}
.c-controler__btn-inner {
  display: inline-flex;
  line-height: 1;
}
.c-controler__arrow {
  position: relative;
  width: 2.1rem;
  height: 2.5rem;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: 0.3s all ease-out;
}
.c-controler__arrow--prev {
  transform: rotate(180deg);
  background-image: url(/images/special/sportmaxx/lux/review-archive/icon_arrow.svg);
}
.c-controler__arrow--prev:hover {
  transform: rotate(180deg) translateX(30%);
}
.c-controler__arrow--next {
  background-image: url(/images/special/sportmaxx/lux/review-archive/icon_arrow.svg);
}
.c-controler__arrow--next:hover {
  transform: translateX(30%);
}
.c-controler__btn-play {
  display: flex;
  align-items: center;
  width: 2.4rem;
  height: 2.4rem;
  line-height: 1;
  cursor: pointer;
}
.c-controler__btn-play .c-controler__btn-inner {
  display: inline-flex;
  line-height: 1;
}

.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  bottom: 0;
  gap: 2rem;
}
.slick-dots li {
  width: 1.2rem;
  height: 1.2rem;
  text-align: center;
  margin: 0;
}
.slick-dots li button {
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background: #424242;
}
.slick-dots li button:before {
  content: none;
}
.slick-dots .slick-active button {
  background: var(--color-beige-1);
}

.is_playing .c-controler__btn-stop {
  display: flex;
  align-items: center;
}

.is_playing .c-controler__btn-play {
  display: none;
}

.slick-prev {
  left: 0;
  z-index: 2;
  width: min(5.71vw, 80px);
  height: min(8.57vw, 120px);
  margin-top: var(--px20);
  background: #000000;
}
@media screen and (max-width: 767px) {
  .slick-prev {
    width: 15vw;
    height: 21.33vw;
    margin-top: -20vw;
  }
}
.slick-prev:before {
  display: block;
  position: absolute;
  top: 50%;
  left: var(--px30);
  width: var(--px40);
  height: var(--px40);
  margin-top: max(-1.43vw, -20px);
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  background-size: contain !important;
  content: "";
  rotate: 45deg;
}
@media screen and (max-width: 767px) {
  .slick-prev:before {
    top: 50%;
    left: 6vw;
    width: 5.33vw;
    height: 5.33vw;
    margin-top: -2.665vw;
    rotate: 45deg;
  }
}

.slick-next {
  right: 0;
  z-index: 2;
  width: min(5.71vw, 80px);
  height: min(8.57vw, 120px);
  margin-top: var(--px20);
  background: #000000;
}
@media screen and (max-width: 767px) {
  .slick-next {
    width: 15vw;
    height: 21.33vw;
    margin-top: -20vw;
  }
}
.slick-next:before {
  display: block;
  position: absolute;
  top: 50%;
  right: var(--px30);
  width: var(--px40);
  height: var(--px40);
  margin-top: max(-1.43vw, -20px);
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  background-size: contain !important;
  content: "";
  rotate: -45deg;
}
@media screen and (max-width: 767px) {
  .slick-next:before {
    top: 50%;
    right: 6vw;
    width: 5.33vw;
    height: 5.33vw;
    margin-top: -2.665vw;
    rotate: -45deg;
  }
}

.l-banner {
  display: flex;
  justify-content: flex-end;
  position: relative;
  padding: 11.7rem 2rem 0;
  background-image: url(/images/special/sportmaxx/lux/review-archive/img_banner.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .l-banner {
    flex-direction: column;
    gap: 3.3rem;
    justify-content: center;
    align-items: center;
    padding-top: 10vw;
    background-image: url(/images/special/sportmaxx/lux/review-archive/img_banner_sp.jpg);
    height: inherit;
  }
}
.l-banner .l-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 60%;
}
@media screen and (max-width: 767px) {
  .l-banner .l-banner__inner {
    width: 100%;
  }
}
.l-banner__wheel {
  width: 41.4rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .l-banner__wheel {
    width: 22.5rem;
  }
}

.c-banner-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-banner-title1 {
  width: 100%;
  max-width: 46.7rem;
  margin-bottom: 3.3rem;
}
@media screen and (max-width: 767px) {
  .c-banner-title1 {
    width: 28.9rem;
    max-width: 100%;
  }
}
.c-banner-title2 {
  width: 100%;
  max-width: 73.6rem;
}
@media screen and (max-width: 767px) {
  .c-banner-title2 {
    width: 31.5rem;
    max-width: 100%;
  }
}

.c-button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 45rem;
  height: 8rem;
  margin-top: 4.6rem;
  border: 1px solid var(--color-beige-1);
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .c-button {
    width: 31.5rem;
    height: 6rem;
    margin-top: 3rem;
    max-width: 100%;
  }
}
.c-button:after {
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%);
  width: 2.1rem;
  height: 2.5rem;
  background-image: url(/images/special/sportmaxx/lux/review-archive/icon_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  transition: 0.3s all ease-out;
}
@media screen and (max-width: 767px) {
  .c-button:after {
    width: 1.6rem;
    height: 1.9rem;
    right: 1.5rem;
  }
}
.c-button:hover:after {
  transform: translateY(-50%) translateX(30%);
}
.c-button__text {
  padding-right: 1em;
  color: var(--color-beige-1);
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 3.7rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .c-button__text {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
}

.m-modal-video-player-wrapper {
  border: 2px solid var(--color-beige-1);
  border-radius: 0.5rem;
  overflow: hidden;
}

.m-modal__close {
  content: "";
  position: absolute;
  z-index: 1020;
  background-image: url(/images/special/sportmaxx/lux/review-archive/icon_close.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  border: none;
  width: 2.4rem;
  height: 2.4rem;
  cursor: pointer;
  top: -3rem;
  right: -3rem;
}
@media screen and (max-width: 767px) {
  .m-modal__close {
    right: 0;
  }
}

.l-sw-footer .c-sw-footer-copyright small {
  font-size: 1.2rem;
}

.c-scroll-landmark {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
.c-scroll-landmark__txt {
  color: var(--color-beige-1);
  height: 7rem;
  width: 2.2rem;
}
.c-scroll-landmark__wrap {
  position: absolute;
  bottom: 0;
  right: 2rem;
}
@media screen and (max-width: 767px) {
  .c-scroll-landmark__wrap {
    right: 0;
  }
}
.c-scroll-landmark__bar {
  position: relative;
  display: block;
  height: 7.2rem;
  width: 2px;
  background-color: #2a2a2e;
}
.c-scroll-landmark__bar:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-beige-1);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    height: 0;
    top: 0;
    bottom: auto;
  }
  10% {
    height: 0;
    top: 0;
    bottom: auto;
  }
  40% {
    height: 100%;
    top: 0;
  }
  50% {
    height: 100%;
    top: 0;
  }
  60% {
    height: 100%;
    bottom: 0;
    top: auto;
  }
  90% {
    height: 0;
    bottom: 0;
    top: auto;
  }
  100% {
    height: 0;
    bottom: auto;
    top: 0;
  }
}
.l-background {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background: linear-gradient(to bottom, rgb(8, 8, 8), rgba(8, 8, 8, 0));
}
.l-background--upper {
  position: absolute;
  top: 0;
  right: 0;
  width: 24.9vw;
}
.l-background--middle {
  position: absolute;
  bottom: -25rem;
  left: 0;
  width: 34.8vw;
}

.l-implession {
  margin-top: 9.4rem;
}/*# sourceMappingURL=index.css.map */