@charset "UTF-8";
/* ------------------------------
    RESPONSIVE SETTINGS
  ------------------------------ */
/* ------------------------------
    Keyframes
  ------------------------------ */
@-webkit-keyframes loopCl {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes loopCl {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes loopClRv {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes loopClRv {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
/* =========================
   Product Hero base
========================= */
.topHero {
  position: relative;
}
.topHero__logo {
  position: fixed;
  inset: auto auto 2.5vw 2.5vw;
  z-index: 6;
}
.topHero__logo img {
  display: block;
  height: auto;
}
@media screen and (min-width: 320px) {
  .topHero__logo img {
    width: 19.8rem;
  }
}
@media screen and (min-width: 600px) {
  .topHero__logo img {
    width: 39.8rem;
  }
}
.topHero__mv {
  position: fixed;
  inset: 0;
  z-index: 1;
}
.topHero__mv img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: filter, transform;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-transition: -webkit-filter 0.35s ease;
  transition: -webkit-filter 0.35s ease;
  transition: filter 0.35s ease;
  transition: filter 0.35s ease, -webkit-filter 0.35s ease;
}
.topHero__cover {
  position: relative;
  z-index: 5;
}
.topHero__coverTexts {
  position: fixed;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 320px) {
  .topHero__coverTexts {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 2.5vw;
    gap: 16px;
  }
}
@media screen and (min-width: 600px) {
  .topHero__coverTexts {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 2.5vw 2.5vw 2.5vw 70%;
    gap: 16px;
  }
}
.topHero__coverTexts p {
  line-height: 1.64;
}
@media screen and (min-width: 320px) {
  .topHero__coverTexts p {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 600px) {
  .topHero__coverTexts p {
    font-size: 1.8rem;
  }
}
.topHero__coverTexts p div, .topHero__coverTexts p span {
  display: inline;
}
.topHero__coverTexts p:last-child {
  line-height: 1.42;
}
@media screen and (min-width: 320px) {
  .topHero__coverTexts p:last-child {
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 600px) {
  .topHero__coverTexts p:last-child {
    font-size: 1.52rem;
  }
}
.topHero__productPanel {
  position: fixed;
  inset: 0;
  z-index: 7;
  width: 100%;
  opacity: 0;
  -webkit-transform: translateY(16px);
          transform: translateY(16px);
  pointer-events: none;
  -webkit-transition: opacity 0.45s ease, -webkit-transform 0.45s ease;
  transition: opacity 0.45s ease, -webkit-transform 0.45s ease;
  transition: opacity 0.45s ease, transform 0.45s ease;
  transition: opacity 0.45s ease, transform 0.45s ease, -webkit-transform 0.45s ease;
}
@media screen and (min-width: 320px) {
  .topHero__productPanel {
    padding: 8.4rem 2.5vw 0;
  }
}
@media screen and (min-width: 600px) {
  .topHero__productPanel {
    padding: 15rem 2.5vw 0;
  }
}
.topHero__productPanel.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}
.topHero__productPanelBg {
  position: absolute;
  inset: auto 0 0 0;
  height: 44vh;
  background: rgba(var(--color-bk)/0.14);
  -webkit-mask-image: -webkit-gradient(linear, left bottom, left top, from(rgb(0, 0, 0)), color-stop(rgba(0, 0, 0, 0.85)), color-stop(rgba(0, 0, 0, 0.15)), to(rgba(0, 0, 0, 0)));
  -webkit-mask-image: linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
          mask-image: -webkit-gradient(linear, left bottom, left top, from(rgb(0, 0, 0)), color-stop(rgba(0, 0, 0, 0.85)), color-stop(rgba(0, 0, 0, 0.15)), to(rgba(0, 0, 0, 0)));
          mask-image: linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
  pointer-events: none;
}

/* =========================
   Panel layout
========================= */
.productPanel {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 320px) {
  .productPanel {
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  .productPanel {
    width: 40%;
  }
}

/* Main swiper */
.productMain {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 320px) {
  .productMain {
    aspect-ratio: 16/10;
  }
}
@media screen and (min-width: 600px) {
  .productMain {
    aspect-ratio: 16/10;
  }
}
.productMain .swiper-slide {
  display: grid;
  place-items: center;
}
.productMain img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}

.productZoom {
  position: absolute;
  inset: auto 12px 12px auto;
  z-index: 3;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(var(--color-wh)/0.22);
  border-radius: 999vw;
  background: rgba(var(--color-bk)/0.18);
  backdrop-filter: blur(10px) saturate(140%);
  cursor: pointer;
}
.productZoom span {
  display: grid;
  place-items: center;
  height: 100%;
  color: rgb(var(--color-wh));
  font-size: 18px;
  line-height: 1;
}

/* Thumbs swiper */
.productThumbs {
  margin-top: 10px;
}
@media screen and (min-width: 600px) {
  .productThumbs {
    margin-top: 12px;
  }
}
.productThumbs .swiper-slide {
  opacity: 0.55;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  overflow: hidden;
  cursor: pointer;
}
.productThumbs .swiper-slide-thumb-active {
  opacity: 1;
  outline: 1px solid rgba(var(--color-wh)/0.28);
}
.productThumbs img {
  display: block;
  width: 100%;
  height: 76px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}
@media screen and (min-width: 320px) {
  .productThumbs img {
    height: 56px;
  }
}
@media screen and (min-width: 600px) {
  .productThumbs img {
    height: 72px;
  }
}

/* Text area */
.productMeta {
  color: rgba(var(--color-wh)/0.92);
}
@media screen and (min-width: 320px) {
  .productMeta {
    padding: 0 2px 2px;
  }
}
@media screen and (min-width: 600px) {
  .productMeta {
    padding: 0 0 8px;
  }
}
.productMeta__title {
  letter-spacing: 0.04em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 8px;
}
@media screen and (min-width: 320px) {
  .productMeta__title {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 600px) {
  .productMeta__title {
    font-size: 1.6rem;
  }
}
.productMeta__title .sep {
  opacity: 0.5;
}
.productMeta__title .en {
  opacity: 0.85;
  font-size: 0.9em;
}
.productMeta__desc {
  margin-top: 10px;
  line-height: 1.75;
}
@media screen and (min-width: 320px) {
  .productMeta__desc {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 600px) {
  .productMeta__desc {
    font-size: 1.28rem;
  }
}
.productMeta__desc p {
  opacity: 0.88;
}

/* =========================
   Zoom modal
========================= */
.productModal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.productModal[aria-hidden=false] {
  opacity: 1;
  pointer-events: auto;
}
.productModal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.productModal__dialog {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(var(--color-bk)/0.35);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-box-shadow: 0 18px 64px rgba(0, 0, 0, 0.35);
          box-shadow: 0 18px 64px rgba(0, 0, 0, 0.35);
}
.productModal__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  background: rgba(0, 0, 0, 0.15);
}
.productModal__close {
  position: absolute;
  inset: 10px 10px auto auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(var(--color-wh)/0.22);
  border-radius: 999vw;
  background: rgba(var(--color-bk)/0.18);
  color: rgb(var(--color-wh));
  cursor: pointer;
  backdrop-filter: blur(10px) saturate(140%);
}

.heroScrollSpacer {
  height: 200vh;
}
@media screen and (min-width: 320px) {
  .heroScrollSpacer {
    margin-top: -170svh;
  }
}
@media screen and (min-width: 600px) {
  .heroScrollSpacer {
    margin-top: -170svh;
  }
}

/* Thumbs: Swiperの割り算に依存しない */
.productThumbs {
  width: 100%;
  overflow: hidden;
}

.productThumbs .swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.productThumbs .swiper-slide {
  width: clamp(64px, 10vw, 96px) !important; /* ここが肝 */
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.productThumbs img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* panelがdisplay:noneになってると幅が取れないので絶対NG */
.topHero__productPanel {
  /* display:none; は禁止 */
  width: 100%;
}

.layerContents {
  background: rgb(var(--color-wh));
  color: rgb(var(--color-bk));
}

.productDetail__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (min-width: 320px) {
  .productDetail__inner {
    padding: 6.4rem 5vw 96px;
  }
}
@media screen and (min-width: 600px) {
  .productDetail__inner {
    padding: 12.4rem 2.5vw 128px 10vw;
  }
}
@media screen and (min-width: 320px) {
  .productDetail__img {
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  .productDetail__img {
    width: 50%;
  }
}
.productDetail__img img {
  display: block;
}
@media screen and (min-width: 320px) {
  .productDetail__img img {
    width: 80%;
    margin: 0 auto 56px;
  }
}
@media screen and (min-width: 600px) {
  .productDetail__img img {
    width: 50%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 320px) {
  .productDetail__info {
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  .productDetail__info {
    width: 50%;
  }
}
.productDetail__infoInner {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0 auto;
}
.productDetail__info h2 {
  font-weight: 400;
  margin-bottom: 24px;
}
@media screen and (min-width: 320px) {
  .productDetail__info h2 {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 600px) {
  .productDetail__info h2 {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 320px) {
  .productDetail__info p {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 600px) {
  .productDetail__info p {
    font-size: 1.8rem;
  }
}

/* =========================================================
  Products JS ready gate（初期チラ見え封殺）
========================================================= */
html:not(.is-productsReady) .topHero__coverTexts {
  opacity: 0 !important;
}
html:not(.is-productsReady) .topHero__productPanel {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  -webkit-transform: translateY(16px) !important;
          transform: translateY(16px) !important;
  -webkit-transition: none !important;
  transition: none !important;
}
html:not(.is-productsReady) .topHero__mv img {
  -webkit-filter: blur(0px) !important;
          filter: blur(0px) !important;
  -webkit-transform: translateZ(0) scale(1) !important;
          transform: translateZ(0) scale(1) !important;
  -webkit-transition: none !important;
  transition: none !important;
}
html:not(.is-productsReady) .topHero__logo img {
  opacity: 1 !important;
  -webkit-transition: none !important;
  transition: none !important;
}

html.is-productsReady .topHero__coverTexts {
  opacity: 1;
}
html.is-productsReady .topHero__mv img {
  -webkit-transition: -webkit-filter 0.35s ease;
  transition: -webkit-filter 0.35s ease;
  transition: filter 0.35s ease;
  transition: filter 0.35s ease, -webkit-filter 0.35s ease;
}
html.is-productsReady .topHero__logo img {
  -webkit-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
}

/* panel：opacityだけだとiOSで“見えてる扱い”になる瞬間があるのでvisibilityも使う */
.topHero__productPanel {
  visibility: hidden;
}
.topHero__productPanel.is-active {
  visibility: visible;
}/*# sourceMappingURL=products.css.map */