@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.copyPopup,
.galleryModal {
  position: fixed;
  z-index: 50;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.4s cubic-bezier(0.39, 0.575, 0.565, 1),
    visibility 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.copyPopup {
  padding: 2rem 3rem;
  font-size: 1.4rem;
  color: #fff;
  white-space: nowrap;
  background-color: #535252;
  border-radius: 8px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.copyPopup.is-active {
  visibility: visible;
  opacity: 0.8;
}

.galleryModal {
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
  background: #fff;
}

.galleryModal.is-active {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.galleryModal .closeButton {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 2;
  width: 6rem;
  height: 6rem;
  background: #fff;
  border: solid 0.2rem #e2e2e2;
  border-radius: 50%;
  transition: border 0.3s;
}

.galleryModal .closeButton:hover {
  cursor: pointer;
  border: solid 0.2rem #da0b38;
}

.galleryModal .closeButton::after,
.galleryModal .closeButton::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 1.5rem;
  height: 0.2rem;
  content: "";
  background-color: #da0b38;
  -webkit-transform-origin: center;
  transform-origin: center;
}

.galleryModal .closeButton::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.galleryModal .closeButton::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.galleryModal__container {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 3rem;
}

.galleryModal__container .loadingIcon {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 1;
  display: none;
  margin: 0 0.5rem 0 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.galleryModal__container .loadingIcon img {
  width: 1.6rem;
  -webkit-animation: rotation 1.5s linear infinite;
  animation: rotation 1.5s linear infinite;
}

.galleryModal__container .swiper-container {
  position: relative;
  width: 100%;
  margin: 0 -0.25rem;
  overflow: visible;
}

.galleryModal__container .swiper-slide {
  box-sizing: border-box;
  padding: 0 0.25rem;
}

.galleryModal__container .swiper-slide img,
.parallaxImage img {
  width: 100%;
  height: auto;
}

.galleryModal__container .swiper-button-next,
.galleryModal__container .swiper-button-prev {
  top: 0;
  width: auto;
  height: 100%;
  margin: 0;
  background: 0 0;
}

.galleryModal__container .swiper-button-prev {
  right: 50%;
  left: -50%;
}

.galleryModal__container .swiper-button-next {
  right: -50%;
  left: 50%;
}

.galleryModal.is-loading .galleryModal__container .loadingIcon {
  display: block;
}

.l-page {
  padding-top: calc(88px + 4rem);
}

.l-footer {
  margin: 8rem 0 0;
}

.mouseStalkerWrapper.is-scroll {
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.pageHeading {
  font-size: 2.6rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

.pageListSection {
  margin: 7rem 0 0;
  overflow: hidden;
}

.pageListSection__body {
  margin: 2rem 0 0;
}

.pageListSection__body .swiper-container {
  position: relative;
  margin: 0 -1rem;
  overflow: visible;
}

.pageListSection__body .swiper-controller {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  margin: -5.5rem 1rem 0 0;
}

.pageListSection__body .swiper-controller .swiper-button-next,
.pageListSection__body .swiper-controller .swiper-button-prev {
  position: static;
  display: inline-block;
  width: auto;
  height: auto;
  margin: 0;
  background: 0 0;
}

.pageListSection__body .swiper-controller .swiper-button-next {
  margin: 0 0 0 0.6rem;
}

.pageListSection__body .swiper-slide {
  box-sizing: border-box;
  width: 27rem;
  padding: 0 1rem;
}

.pageListSection__body .slide__image {
  position: relative;
  overflow: hidden;
  border: 1px solid #e2e2e2;
}

.pageListSection__body .slide__image::before {
  display: block;
  width: 100%;
  padding-bottom: 100%;
  content: "";
}

.pageListSection__body .slide__image .image,
.pageListSection__body .slide__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pageListSection__body .slide__image img {
  -o-object-fit: cover;
  object-fit: cover;
}

.pageListSection__body .slide__container {
  position: relative;
}

.pageListSection__body .slide__container::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2rem;
  pointer-events: none;
  content: "";
  background: linear-gradient(360deg, #fff 0, rgba(255, 255, 255, 0) 100%);
  transition: opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.pageListSection__body .slide__container[open]::before {
  opacity: 0;
}

.pageListSection__body .slide__title {
  margin: 1.5rem 0 0;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0;
  word-break: break-word;
}

.pageListSection__body .slide__title + .slide__text {
  padding: 1rem 0 0;
  margin: 0;
}

.pageListSection__body .slide__text {
  margin: 1.5rem 0 0;
  font-size: 1.3rem;
  line-height: 1.75;
  letter-spacing: 0;
  word-break: break-word;
}

.pageListSection__body .slide__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9rem;
  height: 3rem;
  margin: 1.5rem auto 0;
  border: 1px solid #e2e2e2;
  border-radius: 10rem;
}

.pageListSection__body .slide__toggle .toggleIcon {
  position: relative;
  display: flex;
  align-items: center;
  width: 0.9rem;
  height: 0.9rem;
}

.pageListSection__body .slide__toggle .toggleIcon::after,
.pageListSection__body .slide__toggle .toggleIcon::before,
.pageNav .triggerButton__toggle::after,
.pageNav .triggerButton__toggle::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: #da0b38;
}

.pageListSection__body .slide__toggle .toggleIcon::after,
.pageNav .triggerButton__toggle::after {
  transition: transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition:
    transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1),
    -webkit-transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.pageListSection__body .slide__toggle .toggleText {
  margin: 0 0 0 0.5rem;
  font-size: 1.1rem;
  letter-spacing: 0;
}

.pageListSection__body .slide__toggle .toggleText--active,
.pageListSection__body .slide__toggle[aria-expanded="true"] .toggleText--inactive {
  display: none;
}

.pageListSection__body .slide__toggle[aria-expanded="true"] .toggleIcon::after,
.pageNav .triggerButton[aria-expanded="true"] .triggerButton__toggle::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.pageListSection__body .slide__toggle[aria-expanded="true"] .toggleText--active {
  display: block;
}

.l-header__nav + .pageNav {
  -webkit-transform: translate3d(0, calc(-100% - 88px), 0);
  transform: translate3d(0, calc(-100% - 88px), 0);
}

.l-header__nav.is-visible + .pageNav {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.pageNav,
.pageNav .triggerButton {
  width: 100%;
  height: 4rem;
  background: #f4f4f4;
}

.pageNav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  margin: 88px 0 0;
  transition: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.15s;
}

.pageNav .triggerButton {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  border-bottom: 1px solid #e2e2e2;
}

.pageNav .navList__item .nav,
.pageNav .triggerButton__text {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.pageNav .triggerButton__toggle {
  position: relative;
  display: flex;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
}

.pageNav__container {
  height: 100%;
  background: #f4f4f4;
}

.pageNav__inner {
  padding: 0 3rem 6.5rem;
  background: #f4f4f4;
}

.pageNav .navList__item {
  border-bottom: 1px solid #e2e2e2;
}

.pageNav .navList__item .nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5.5rem;
}

.pageNav .navList__item .nav .navIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  background: #fff;
  border: 1px solid #dfe2e6;
  border-radius: 50%;
}

.pageNav .navList__item .nav .navIcon img {
  width: 0.6rem;
  height: auto;
}

.pageNav .navList__item .nav:hover::before {
  opacity: 1;
}

.pageNav .snsShare {
  margin: 2.5rem 0 0;
}

.pageNav .snsShare .snsText {
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0;
}

.pageNav .snsShare .snsList {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0 0;
}

.pageNav .snsShare .snsList__item .sns img {
  width: 2.8rem;
  height: auto;
}

.pageNav .snsShare .snsList__item + .snsList__item {
  margin: 0 0 0 1rem;
}

.parallaxImage {
  height: 21.1rem;
  overflow: hidden;
  margin-top: 5rem;
}

.productContents {
  padding: 0 1rem;
}

.productContents__head {
  padding: 1.75rem 0;
}

.productContents__head .productLogo {
  text-align: center;
}

.productContents__head .productLogo img {
  width: 100%;
  max-width: 31.5rem;
  height: 100%;
  max-height: 10.5rem;
}

.productContents__visual .visual {
  overflow: hidden;
}

.productContents__visual .mainArea {
  position: relative;
  border: 1px solid #e2e2e2;
}

.productContents__visual .mainArea .productImage {
  position: relative;
}

.productContents__visual .mainArea .productImage::before {
  display: block;
  padding-bottom: 100%;
  content: "";
}

.productContents__visual .mainArea .productImage__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.productContents__visual .mainArea .productImage__item img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition:
    transform 0.3s cubic-bezier(0.39, 0.575, 0.565, 1),
    -webkit-transform 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  -o-object-fit: cover;
  object-fit: cover;
}

.productContents__visual .mainArea .productImage__item.is-active,
.productContents__visual .thumbnailArea .swiper-slide.swiper-slide-thumb-active .thumbnail::after {
  opacity: 1;
}

.productContents__visual .mainArea .arButton {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 6.5rem;
  height: 6.5rem;
  margin: 1.5rem 1.5rem 0 0;
  background: #000;
  border-radius: 50%;
}

.productContents__visual .mainArea .arButton__icon {
  width: 2.6rem;
}

.productContents__body .arContent__bnr img,
.productContents__visual .mainArea .arButton__icon img {
  width: 100%;
  height: auto;
}

.productContents__visual .mainArea .arButton__text {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.05em;
}

.productContents__visual .mainArea .rotateButton {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.5rem;
  height: 2.2rem;
  margin: 0 1.5rem 1.5rem 0;
  background: #0100c8;
  border-radius: 10rem;
}

.productContents__visual .mainArea .rotateButton__icon {
  margin: -0.3rem 0 0;
}

.productContents__visual .mainArea .rotateButton__icon img {
  width: 1rem;
  height: auto;
}

.productContents__visual .mainArea .rotateButton__text {
  margin: 0 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
}

.productContents__visual .mainArea .productText {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  margin: 0 0 1rem 1rem;
  font-size: 0.8rem;
  line-height: 1.75;
  color: #82888d;
  letter-spacing: 0.05em;
}

.productContents__visual .thumbnailArea {
  position: relative;
  padding: 0 3rem 0 0;
  margin: 0.4rem 0 0;
  transition: transform 0.3s ease-out;
  transition:
    transform 0.3s ease-out,
    -webkit-transform 0.3s ease-out;
}

.productContents__visual .thumbnailArea::before {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 2.7rem;
  height: 100%;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, #fff 100%);
  transition: opacity 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.productContents__visual .thumbnailArea .swiper-container {
  margin: 0 0 0 -0.4rem;
  overflow: visible;
}

.productContents__visual .thumbnailArea .swiper-slide {
  box-sizing: border-box;
  width: 6.8rem;
  padding: 0 0 0 0.4rem;
}

.productContents__visual .thumbnailArea .swiper-slide .thumbnail {
  position: relative;
  width: 100%;
  border: 1px solid #e2e2e2;
}

.productContents__visual .thumbnailArea .swiper-slide .thumbnail::before,
.secGallery__body .gallery::before {
  display: block;
  width: 100%;
  padding-bottom: 100%;
  content: "";
}

.productContents__visual .thumbnailArea .swiper-slide .thumbnail::after {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  content: "";
  border: 0.2rem solid #0100c8;
  opacity: 0;
}

.productContents__visual .thumbnailArea .swiper-slide .thumbnail__inner,
.secMovie__body .movie__iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.productContents__visual .thumbnailArea .swiper-slide .thumbnail img,
.secGallery__body .gallery img,
.secSpec .specList__item .specBody .itemList__item .item__preview img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.productContents__visual .thumbnailArea.is-end {
  -webkit-transform: translate3d(3rem, 0, 0);
  transform: translate3d(3rem, 0, 0);
}

.productContents__visual .thumbnailArea.is-end::before {
  opacity: 0;
}

.productContents__body {
  padding: 0 2rem;
  margin: 3rem 0 0;
}

.productContents__body .arContent__bnr .bnrText,
.productContents__body .leadText {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
}

.productContents__body .detailText {
  margin: 1.5rem 0 0;
  font-size: 1.3rem;
  line-height: 1.9;
  letter-spacing: 0;
}

.productContents__body .arContent {
  width: 48rem;
}

.productContents__body .arContent__bnr {
  position: relative;
  margin: 4rem auto 0;
}

.productContents__body .arContent__bnr .bnrText {
  position: absolute;
  top: 0;
  left: 0;
  margin: 16.6666666667% 0 0 33.3333333333%;
  line-height: 1.5;
}

.productContents__body .arContent__bnr .bnrQr {
  position: absolute;
  top: 0;
  right: 0;
  width: 20.4166666667%;
  margin: 15.8333333333% 2.0833333333% 0 0;
}

.productContents__body .arContent__text {
  margin: 1.5rem 0 0;
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: 0;
}

.productContents__body .arContent__text a {
  display: inline-block;
  border-bottom: 2px solid silver;
}

.secGallery {
  margin: 6rem 0 0;
}

.secGallery__container {
  margin: 1.5rem 0 0;
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.secGallery__body {
  display: flex;
  flex-wrap: wrap;
}

.secGallery__body .gallery {
  position: relative;
  width: 50%;
}

.secGallery__body .gallery::before {
  padding-bottom: 75%;
}

.secGallery__more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 19rem;
  height: 4rem;
  margin: 3rem auto 0;
  border: 1px solid #e2e2e2;
  border-radius: 10rem;
}

.secGallery__more .toggleIcon {
  position: relative;
  display: flex;
  align-items: center;
  width: 0.9rem;
  height: 0.9rem;
}

.secGallery__more .toggleIcon::after,
.secGallery__more .toggleIcon::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: #da0b38;
}

.secGallery__more .toggleIcon::after {
  transition: transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition:
    transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1),
    -webkit-transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.secGallery__more .loadingIcon,
.secGallery__more.is-loading .toggleIcon {
  display: none;
}

.secGallery__more .loadingIcon img {
  width: 1.6rem;
  -webkit-animation: rotation 1.5s linear infinite;
  animation: rotation 1.5s linear infinite;
}

.secGallery__more .moreText {
  margin: 0 0 0 1rem;
  font-size: 1.4rem;
  letter-spacing: 0;
}

.secGallery__more.is-loading .loadingIcon {
  display: block;
}

.secMovie__body .movie__iframe {
  position: relative;
}

.secMovie__body .movie__iframe::before {
  display: block;
  padding-bottom: 56.3897763578%;
  content: "";
}

.secMovie__body .movie__text {
  margin: 1rem 0 0;
  font-size: 1.3rem;
  line-height: 1.75;
  letter-spacing: 0;
}

.secSizePrice {
  margin: 7rem 0 0;
  overflow: hidden;
}

.secSizePrice .pcdCategory,
.secSizePrice .sizeCategory {
  display: flex;
  align-items: flex-start;
}

.secSizePrice .pcdCategory .category,
.secSizePrice .sizeCategory .category {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.4rem;
  padding: 0 1.1rem;
  margin: 0 0.6rem 0.6rem 0;
  font-size: 0.9rem;
  color: #0100c8;
  background: #f6f6f4;
  border: 1px solid #e2e2e2;
  border-radius: 10rem;
}

.secSizePrice .pcdCategory .category--all,
.secSizePrice .sizeCategory .category--all {
  width: 4.1rem;
}

.secSizePrice .pcdCategory .category.is-active,
.secSizePrice .sizeCategory .category.is-active {
  color: #fff;
  pointer-events: none;
  background: #0100c8;
  border: 1px solid #0100c8;
}

.secSizePrice .pcdCategory .category:not(.category--all).is-disable,
.secSizePrice .pcdCategory .category[disabled],
.secSizePrice .sizeCategory .category:not(.category--all).is-disable,
.secSizePrice .sizeCategory .category[disabled] {
  pointer-events: none;
  opacity: 0.3;
}

.secSizePrice .pcdCategory__head,
.secSizePrice .sizeCategory__head {
  width: 5.5rem;
}

.secSizePrice .pcdCategory__head .categoryTitle,
.secSizePrice .sizeCategory__head .categoryTitle {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.secSizePrice .pcdCategory__body,
.secSizePrice .sizeCategory__body {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
}

.secSizePrice .sizeCategory {
  margin: 2rem 0 0;
}

.secSizePrice .pcdCategory {
  margin: 1rem 0 0;
}

.secSizePrice .tableContainer {
  position: relative;
  max-height: calc(100svh - 100px);
  margin: 2rem 0 0;
  width: fit-content;
  max-width: 100%;
}

.secSizePrice .tableContainer__drag {
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 100vh;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1),
    visibility 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.secSizePrice .tableContainer__drag img {
  width: 8rem;
  height: auto;
}

.secSizePrice .tableContainer__drag.is-scrollable {
  visibility: visible;
  opacity: 1;
}

.secSizePrice .tableContainer__drag.is-scrolled {
  visibility: hidden !important;
  opacity: 0 !important;
}

.secSizePrice .tableContainer__drag,
.secSizePrice .tableContainer__scroller {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.secSizePrice .tableContainer .table {
  position: relative;
  border-collapse: collapse;
  background: #fff;
  white-space: nowrap;
}

.secSizePrice .tableContainer .table tbody,
.secSizePrice .tableContainer .table thead,
.secSizePrice .tableContainer .table tr {
  -ms-grid-columns: subgrid;
  grid-template-columns: subgrid;
  grid-column: 1/-1;
}

.secSizePrice .tableContainer .table td,
.secSizePrice .tableContainer .table th {
  align-items: center;
  justify-content: center;
  max-width: 80rem;
  padding: 1.115rem 1.151rem;
  font-size: 1rem;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-width: 0 0 1px 1px;
}

.secSizePrice .tableContainer .table th.thColor::before,
.secSizePrice .tableContainer .table th.thCaliper::before,
.secSizePrice .tableContainer .table th.thRemark::before,
.secSizePrice .tableContainer .table th.thRemarkEn::before {
  display: block;
  height: 0;
  visibility: hidden;
}
.secSizePrice .tableContainer .table th.thColor::before {
  content: "MMMMM/";
}
.secSizePrice .tableContainer .table th.thCaliper::before {
  content: "TOYOTA LAND CRUISER 70(GDJ76W)/";
}
.secSizePrice .tableContainer .table th.thRemark::before {
  content: "在庫がなくなり次第生産終了となります。/";
}
.secSizePrice .tableContainer .table th.thRemarkEn::before {
  content: "To be discontinued once inventory clears./";
}
.secSizePrice .tableContainer .table td.tdWrap {
  white-space: wrap;
}

.secSizePrice .tableContainer .table td > span,
.secSizePrice .tableContainer .table th > span {
  max-width: 100%;
  overflow-wrap: break-word;
}

.secSizePrice .tableContainer .table td:last-child {
  border-width: 0 1px 1px;
}

.secSizePrice .tableContainer .table [data-category-target]:not(.is-active) {
  display: none;
}

.secSizePrice .tableContainer .table .tableBody .tableRow th::after,
.secSizePrice .tableContainer .table .tableBody .tableRow th::before,
.secSizePrice .tableContainer .table .tableRow .js-table-float::after,
.secSizePrice .tableContainer .table .tableRow .js-table-float::before {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  content: "";
  background: #e2e2e2;
}

.secSizePrice .tableContainer .table .tableBody .tableRow th::before,
.secSizePrice .tableContainer .table .tableRow .js-table-float::before {
  left: -1px;
}

.secSizePrice .tableContainer .table .tableBody .tableRow th::after,
.secSizePrice .tableContainer .table .tableRow .js-table-float::after {
  right: -1px;
}

.secSizePrice .tableContainer .table .tableHead {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1;
}

.secSizePrice .tableContainer .table .tableHead .tableRow th {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  background: #858585;
}

.secSizePrice .tableContainer .table .tableHead .tableRow th:first-child {
  left: 0;
  z-index: 1;
}

.secSizePrice .tableContainer .table .tableHead .tableRow th:first-child::after,
.secSizePrice .tableContainer .table .tableHead .tableRow th:first-child::before {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  content: "";
  background: #e2e2e2;
}

.secSizePrice .tableContainer .table .tableHead .tableRow th:first-child::before {
  left: -1px;
}

.secSizePrice .tableContainer .table .tableHead .tableRow th:first-child::after {
  right: -1px;
}

.secSizePrice .tableContainer .table .tableBody .tableRow th {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.secSizePrice .tableContainer .table .tableBody .tableRow.is-odd td,
.secSizePrice .tableContainer .table .tableBody .tableRow.is-odd th {
  background: #f4f4f4;
}

.secSizePrice .sizeSupplement {
  margin: 1.5rem 0 0;
  font-size: 1.1rem;
  line-height: 1.7;
  letter-spacing: 0;
}

.secSizePrice .design {
  margin: 5rem 0 0;
}

.secSizePrice .design__head .designHeading {
  font-size: 2.1rem;
  letter-spacing: 0;
}

.secSizePrice .design__head .sizeCategory {
  margin: 1.5rem 0 0;
}

.secSizePrice .design__img {
  position: relative;
  height: 16.4rem;
  margin: 2rem -3rem 0;
}

.secSizePrice .design__img .img {
  visibility: hidden;
  border: 1px solid #e2e2e2;
  opacity: 0;
  transition:
    opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1),
    visibility 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.secSizePrice .design__img .img,
.secSizePrice .design__img .img__inner,
.secSpec .specList__item .specBody .itemList__item .item__preview .preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.secSizePrice .design__img .img span {
  position: absolute;
  bottom: 0;
  left: 0;
}

.secSizePrice .design__img .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.secSizePrice .design__img .img.is-active {
  visibility: visible;
  opacity: 1;
}

.secSpec {
  padding-top: 5rem;
}

.secSpec .specList {
  margin: 1.5rem 0 0;
  border-top: 1px solid #e2e2e2;
}

.secSpec .specList__item {
  padding: 2rem 0 1.5rem;
  border-bottom: 1px solid #e2e2e2;
}

.secSpec .specList__item .specHead {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0;
}

.secSpec .specList__item .specBody {
  margin: 1rem 0 0;
}

.secSpec .specList__item .specBody .specText {
  font-size: 1.3rem;
  line-height: 1.75;
  letter-spacing: 0;
}

.secSpec .specList__item .specBody .itemList {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5rem;
}

.secSpec .specList__item .specBody .itemList__item {
  width: calc(100% / 3);
  padding: 0 0.5rem;
  margin: 2rem 0 0;
}

.secSpec .specList__item .specBody .itemList__item .item__preview {
  position: relative;
  overflow: hidden;
  border: 1px solid #e2e2e2;
}

.secSpec .specList__item .specBody .itemList__item .item__preview::before {
  display: block;
  width: 100%;
  padding-bottom: 84%;
  content: "";
}

.secSpec .specList__item .specBody .itemList__item .item__name {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0;
}

.sliderModal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
  visibility: hidden;
  background: #fff;
  opacity: 0;
  transition:
    opacity 0.4s cubic-bezier(0.39, 0.575, 0.565, 1),
    visibility 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.sliderModal.is-active {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.sliderModal .closeButton {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 2;
  width: 6rem;
  height: 6rem;
  background: #fff;
  border: solid 0.2rem #e2e2e2;
  border-radius: 50%;
  transition: border 0.3s;
}

.sliderModal .closeButton:hover {
  cursor: pointer;
  border: solid 0.2rem #da0b38;
}

.sliderModal .closeButton::after,
.sliderModal .closeButton::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 1.5rem;
  height: 0.2rem;
  content: "";
  background-color: #da0b38;
  -webkit-transform-origin: center;
  transform-origin: center;
}

.sliderModal .closeButton::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.sliderModal .closeButton::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.sliderModal__container {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 3rem;
}

.sliderModal__container .swiper-container {
  position: relative;
  width: 100%;
  margin: 0 -0.25rem;
  overflow: visible;
}

.sliderModal__container .swiper-slide {
  box-sizing: border-box;
  padding: 0 0.25rem;
}

.sliderModal__container .swiper-slide img {
  width: 100%;
  height: auto;
}

.sliderModal__container .swiper-button-next,
.sliderModal__container .swiper-button-prev {
  top: 0;
  width: auto;
  height: 100%;
  margin: 0;
  background: 0 0;
}

.sliderModal__container .swiper-button-prev {
  right: 50%;
  left: -50%;
}

.sliderModal__container .swiper-button-next {
  right: -50%;
  left: 50%;
}

@media (min-width: 768px) {
  .copyPopup {
    font-size: 1.6rem;
  }

  .galleryModal .closeButton {
    top: 4rem;
    right: 4rem;
    width: 9rem;
    height: 9rem;
  }

  .galleryModal__container {
    max-width: 105rem;
    padding: 0 5rem;
    margin: 0 auto;
  }

  .galleryModal__container .loadingIcon {
    margin: 0 -9rem 0 0;
  }

  .galleryModal__container .loadingIcon img {
    width: 4rem;
  }

  .galleryModal__container .swiper-container {
    margin: 0 -0.5rem;
  }

  .galleryModal__container .swiper-slide {
    padding: 0 0.5rem;
  }

  #marker {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    pointer-events: none;
    transition: transform 0.2s cubic-bezier(0.33, 1, 0.68, 1);
    transition:
      transform 0.2s cubic-bezier(0.33, 1, 0.68, 1),
      -webkit-transform 0.2s cubic-bezier(0.33, 1, 0.68, 1);
  }

  #marker img {
    opacity: 0;
    transition:
      opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1),
      transform 0.2s cubic-bezier(0.33, 1, 0.68, 1);
    transition:
      opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1),
      transform 0.2s cubic-bezier(0.33, 1, 0.68, 1),
      -webkit-transform 0.2s cubic-bezier(0.33, 1, 0.68, 1);
    -webkit-transform: translate(-5px, -10px) scale(0);
    transform: translate(-5px, -10px) scale(0);
  }

  #marker.is-active img {
    opacity: 1;
    -webkit-transform: translate(-5px, -10px) scale(1);
    transform: translate(-5px, -10px) scale(1);
  }

  .l-page {
    padding-top: calc(88px + 5rem);
  }

  .l-footer {
    margin: 16rem 0 0;
  }

  .pageHeading {
    position: relative;
    padding: 0 0 0 3.5rem;
    font-size: 3.6rem;
    letter-spacing: 0;
  }

  .pageHeading::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0.2rem;
    height: 2.6rem;
    margin: -1.3rem 0 0;
    content: "";
    background: #002fb0;
  }

  .pageListSection {
    margin: 14rem 0 0;
  }

  .pageListSection__body {
    margin: 4.5rem 0 0;
  }

  .pageListSection__body .swiper-container {
    margin: 0 -2rem;
  }

  .pageListSection__body .swiper-controller {
    margin: -9.5rem 2rem 0 0;
  }

  .pageListSection__body .swiper-slide {
    width: 41.25rem;
    padding: 0 2rem;
  }

  .pageListSection__body .slide__image img,
  .secSpec .specList__item .specBody .itemList__item .item__preview img {
    transition: transform 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition:
      transform 0.3s cubic-bezier(0.39, 0.575, 0.565, 1),
      -webkit-transform 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  }

  .pageListSection__body .slide__container::before {
    height: 3rem;
  }

  .pageListSection__body .slide__title {
    margin: 2.5rem 0 0;
    font-size: 2.2rem;
  }

  .pageListSection__body .slide__title + .slide__text {
    padding: 1.5rem 0 0;
  }

  .pageListSection__body .slide__text {
    margin: 2rem 0 0;
    font-size: 1.4rem;
  }

  .pageListSection__body .slide__toggle {
    width: 12rem;
    height: 4rem;
    margin: 2rem auto 0;
    border-width: 2px;
    transition: background-color 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  }

  .pageListSection__body .slide__toggle .toggleIcon {
    width: 1.1rem;
    height: 1.1rem;
  }

  .pageListSection__body .slide__toggle .toggleText {
    margin: 0 0 0 1rem;
    font-size: 1.4rem;
  }

  .pageListSection__body .slide__toggle:hover {
    background: #e2e2e2;
  }

  .pageListSection__body .slide:hover .slide__image img,
  .secSpec .specList__item .specBody .itemList__item .item:hover .item__preview img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  .pageNav {
    height: 5rem;
  }

  .pageNav__container {
    display: block !important;
    flex: 1;
    height: 100% !important;
    overflow: visible !important;
    text-align: center;
    visibility: visible !important;
    border-bottom: 1px solid #e2e2e2;
  }

  .pageNav__inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 120rem;
    height: 100%;
    padding: 0 5rem;
  }

  .pageNav .navList {
    display: flex;
    height: 100%;
  }

  .pageNav .navList__item {
    border-bottom: none;
  }

  .pageNav .navList__item .nav {
    height: 100%;
    overflow: hidden;
    font-size: 1.4rem;
    letter-spacing: 0;
  }

  .pageNav .navList__item .nav::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    content: "";
    background: #0100c8;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  }

  .pageNav .navList__item + .navList__item {
    margin: 0 0 0 2.5rem;
  }

  .pageNav .snsShare {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 0 3rem;
    margin: 0 0 0 3rem;
  }

  .pageNav .snsShare::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 2rem;
    content: "";
    background: #b5b5b5;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .pageNav .snsShare .snsText {
    font-size: 1.4rem;
    letter-spacing: 0;
  }

  .pageNav .snsShare .snsList {
    margin: 0 0 0 2rem;
  }

  .pageNav .snsShare .snsList__item .sns img {
    width: 3rem;
  }

  .parallaxImage {
    height: 56rem;
    margin-top: 13rem;
  }

  .productContents {
    padding: 5rem 0 0;
  }

  .productContents__wrapper {
    position: relative;
    padding: 0 12rem;
    margin: 0 auto;
  }

  .productContents__container {
    display: grid;
    grid-template-areas:
      "visual head"
      "visual body";
    grid-template-columns: 43.32% 46.72%;
    grid-template-rows: auto auto;
    gap: 0 9.96%;
  }

  .productContents__head {
    grid-area: head;
    align-self: start;
    justify-self: center;
    width: 100%;
  }

  .productContents__head .productLogo img {
    max-width: 48rem;
    max-height: 16rem;
  }

  .productContents__visual {
    grid-area: visual;
  }

  .productContents__visual .visual {
    position: -webkit-sticky;
    position: sticky;
    top: 5rem;
  }

  .productContents__visual .mainArea .arButton {
    width: 10rem;
    height: 10rem;
    margin: 2rem 2rem 0 0;
  }

  .productContents__visual .mainArea .arButton__icon {
    width: 4rem;
  }

  .productContents__visual .mainArea .arButton__text {
    margin: 1rem 0 0;
    font-size: 1.2rem;
  }

  .productContents__visual .mainArea .rotateButton {
    width: 10rem;
    height: 3.4rem;
    margin: 0 2rem 2rem 0;
  }

  .productContents__visual .mainArea .rotateButton__icon {
    margin: -0.4rem 0 0;
  }

  .productContents__visual .mainArea .rotateButton__icon img {
    width: 1.5rem;
  }

  .productContents__visual .mainArea .rotateButton__text {
    margin: 0 0 0 0.8rem;
    font-size: 1.2rem;
  }

  .productContents__visual .mainArea .productText {
    margin: 0 0 2rem 2rem;
    font-size: 1.2rem;
    line-height: 1.8;
  }

  .productContents__visual .thumbnailArea {
    padding: 0 3.6rem 0 0;
  }

  .productContents__visual .thumbnailArea.is-end {
    -webkit-transform: translate3d(3.6rem, 0, 0);
    transform: translate3d(3.6rem, 0, 0);
  }

  .productContents__body {
    grid-area: body;
    align-self: start;
    justify-self: end;
    margin: 5.5rem 0 0;
  }

  .productContents__body .leadText {
    font-size: 2.6rem;
    line-height: 1.5;
    letter-spacing: 0;
  }

  .productContents__body .detailText {
    margin: 2.5rem 0 0;
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0;
  }

  .secFeature .slide:hover .slide__image img {
    -webkit-transform: none;
    transform: none;
  }

  .secFeature .slide:hover .slide__text {
    text-decoration: none;
  }

  .secGallery {
    margin: 13rem 0 0;
  }

  .secGallery__container {
    margin: 5.5rem 0 0;
  }

  .secGallery__body .gallery {
    width: 25%;
  }

  .secGallery__more {
    width: 24rem;
    height: 6rem;
    margin: 6rem auto 0;
    transition: background-color 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  }

  .secGallery__more .toggleIcon {
    width: 1.4rem;
  }

  .secGallery__more .toggleIcon::after,
  .secGallery__more .toggleIcon::before {
    height: 2px;
  }

  .secGallery__more .moreText {
    margin: 0 0 0 1.5rem;
    font-size: 1.6;
  }

  .secGallery__more:hover {
    background: #e2e2e2;
  }

  .secMovie,
  .secSizePrice {
    margin: 14rem 0 0;
  }

  .secMovie__body .swiper-slide {
    width: 62rem;
  }

  .secOptional.pageListSection .swiper-slide {
    width: 31rem;
  }

  .secSizePrice .pcdCategory .category,
  .secSizePrice .sizeCategory .category {
    height: 3.4rem;
    padding: 0 2rem;
    margin: 0 0.8rem 0.8rem 0;
    font-size: 1.2rem;
  }

  .secSizePrice .pcdCategory .category--all,
  .secSizePrice .sizeCategory .category--all {
    width: 6.3rem;
  }

  .secSizePrice .pcdCategory__head,
  .secSizePrice .sizeCategory__head {
    width: 6rem;
  }

  .secSizePrice .pcdCategory__head .categoryTitle,
  .secSizePrice .sizeCategory__head .categoryTitle {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
  }

  .secSizePrice .sizeCategory {
    margin: 3.5rem 0 0;
  }

  .secSizePrice .pcdCategory {
    margin: 1.5rem 0 0;
  }

  .secSizePrice .tableContainer {
    max-height: calc(100svh - 200px);
    margin: 4rem 0 0;
  }

  .secSizePrice .tableContainer .table td,
  .secSizePrice .tableContainer .table th {
    padding: 0.71rem 1.55rem;
    font-size: 1.2rem;
  }

  .secSizePrice .sizeSupplement {
    margin: 2rem 0 0;
    font-size: 1.3rem;
    line-height: 1.75;
  }

  .secSizePrice .design {
    display: flex;
    margin: 7rem 0 0;
  }

  .secSizePrice .design__head {
    width: 24rem;
  }

  .secSizePrice .design__head .designHeading {
    font-size: 3rem;
  }

  .secSizePrice .design__head .sizeCategory {
    display: block;
    margin: 2.5rem 0 0;
  }

  .secSizePrice .design__head .sizeCategory .category {
    margin: 0 0 0.8rem;
  }

  .secSizePrice .design__img {
    flex: 1;
    height: 42rem;
    margin: 1.5rem 0 0;
  }

  .secSpec {
    padding: 13rem 0 0;
  }

  .secSpec .specList {
    margin: 4rem 0 0;
  }

  .secSpec .specList__item {
    display: flex;
    padding: 3rem 0;
  }

  .secSpec .specList__item .specHead {
    width: 24rem;
    font-size: 1.4rem;
  }

  .secSpec .specList__item .specBody {
    flex: 1;
    margin: 0;
  }

  .secSpec .specList__item .specBody .specText {
    font-size: 1.4rem;
  }

  .secSpec .specList__item .specBody .itemList {
    margin: 1.5rem -0.7rem 0;
  }

  .secSpec .specList__item .specBody .itemList__item {
    width: calc(100% / 7);
    padding: 0 0.7rem;
    margin: 1.5rem 0 0;
  }

  .secSpec .specList__item .specBody .itemList__item .item__name {
    margin: 1rem 0 0;
    font-size: 1.2rem;
    line-height: 1.6;
  }

  .sliderModal .closeButton {
    top: 4rem;
    right: 4rem;
    width: 9rem;
    height: 9rem;
  }

  .sliderModal__container {
    max-width: 85rem;
    padding: 0 5rem;
    margin: 0 auto;
  }

  .sliderModal__container .swiper-container {
    margin: 0 -0.5rem;
  }

  .sliderModal__container .swiper-slide {
    padding: 0 0.5rem;
  }
}

@media (min-width: 1440px) {
  .galleryModal__container {
    max-width: 1050px;
    padding: 0 50px;
  }

  .productContents__visual .mainArea .arButton {
    width: 100px;
    height: 100px;
  }

  .productContents__visual .mainArea .arButton__icon {
    width: 40px;
  }

  .productContents__visual .mainArea .arButton__text {
    margin: 10px 0 0;
    font-size: 12px;
  }

  .productContents__visual .mainArea .rotateButton {
    width: 100px;
    height: 34px;
    margin: 0 20px 20px 0;
  }

  .productContents__visual .mainArea .rotateButton__icon {
    margin: -4px 0 0;
  }

  .productContents__visual .mainArea .rotateButton__icon img {
    width: 15px;
  }

  .productContents__visual .mainArea .rotateButton__text {
    margin: 0 0 0 8px;
    font-size: 12px;
  }

  .productContents__visual .mainArea .productText {
    margin: 0 0 20px 20px;
    font-size: 12px;
  }

  .sliderModal__container {
    max-width: 850px;
    padding: 0 50px;
  }
}

@media (min-width: 1600px) {
  .pageNav {
    height: 55.5px;
  }

  .pageNav__inner {
    max-width: 1200px;
    padding: 0 55.5px;
  }

  .pageNav .navList__item .nav {
    font-size: 15.5px;
  }

  .pageNav .navList__item + .navList__item {
    margin: 0 0 0 27.7px;
  }

  .pageNav .snsShare .snsText {
    font-size: 15.5px;
  }

  .pageNav .snsShare .snsList {
    margin: 0 0 0 22.2px;
  }

  .pageNav .snsShare .snsList__item .sns img {
    width: 33.3px;
  }

  .pageNav .snsShare .snsList__item + .snsList__item {
    margin: 0 0 0 11.1px;
  }
}

@media (min-width: 768px) and (min-width: 1600px) {
  .pageNav .snsShare {
    padding: 0 0 0 33.3px;
    margin: 0 0 0 33.3px;
  }
}
