@charset "UTF-8";
:root {
  --font: 游ゴシック体, YuGothic, 游ゴシック Medium, Yu Gothic, メイリオ, sans-serif;
  --font-en: solano-gothic-pro-mvb, sans-serif;
  --font-credit: solano-gothic-pro-mvb, sans-serif;
  --font-mincho: yu-mincho-pr6n, ヒラギノ明朝 Pro W3, Hiragino Mincho Pro, ＭＳ Ｐ明朝, MS PMincho, serif;
  --pc-width: 1915;
  --tb-width: 768;
  --sp-width: 750;
}

* > .main-area {
  font-family: var(--font);
  font-weight: var(--fontweight-medium);
  font-feature-settings: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: unset;
  min-width: auto;
}

/* ▼ -----------可変設定---------- ▼ */
#MR250825COLLECTION {
  --pc-width: 1915; /*PCデザイン幅*/
  --sp-width: 750; /*SPデザイン幅*/
  --pc-artboard-width: 694.1289; /*PC共通デザイン幅*/
  --sp-artboard-width: 750; /*SP共通デザイン幅*/
  --formula: calc(var(--variable) * var(--ratio)); /*SP→PC 可変設定*/
  --formula_pc: calc(var(--variable) * 1); /*PC 1900以上は固定*/
}

/* --formulaの補足
  SPの値 × SP→PCの縮小率 × 画面幅に基づく可変値

  例）PC1400px　SP750pxのデザイン
  　　PC共通部分:500px　SP共通部分:750px
  　　PC、SP共通デザインwidth:100pxの場合

  ▼記述 pc表示時に(500/750)を掛ける
  width: calc(100* var(--variable)* var(--ratio));

　▼PC固定幅の計算
　100×0.6666666666666667×1=66.66666666666667px

　▼PC可変の計算
　100×0.6666666666666667×(100vw/1400)=calc(66.66666666666667 * (100vw/1400));

　▼SP可変の計算
　100×1×(100vw/750)=calc(100 * (100vw/750));
*/
/* PC画面幅 1200px以上 固定 */
@media (min-width: 1916px) {
  #MR250825COLLECTION {
    --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width)); /* PCとSPのデザイン幅の比率 */
    --variable: 1px; /* 固定値（可変しない） */
  }
}
/* PC画面幅 768～1200px 可変 */
@media (min-width: 768px) and (max-width: 1915px) {
  #MR250825COLLECTION {
    --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width)); /* PCとSPのデザイン幅の比率 */
    --variable: calc(100vw / var(--pc-width)); /* 画面幅に基づく可変値 */
  }
}
/* SP画面幅 767px以下 可変 */
@media (max-width: 767px) {
  #MR250825COLLECTION {
    --ratio: 1; /* 比率は1（変わらない） */
    --variable: calc(100vw / var(--sp-width)); /* 画面幅に基づく可変値 */
  }
}
/* ▲ -----------可変設定---------- ▲ */
.main-area * {
  box-sizing: border-box;
}
.main-area img {
  height: auto;
  opacity: 1;
  width: 100%;
}
.main-area a {
  text-decoration: none;
}
.main-area picture {
  display: block;
}
.main-area p, .main-area ul, .main-area ol, .main-area dl {
  list-style: none;
}
@media only screen and (max-width: 767px) {
  .main-area .pc_only {
    display: none;
  }
  .main-area .sp_only {
    display: block;
  }
}

@media only screen and (min-width: 768px) {
  .main-area .pc_only {
    display: block;
  }
  .main-area .sp_only {
    display: none;
  }
}
@keyframes js-moveUp {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-clip-path: inset(100% 0 0 0);
    clip-path: inset(100% 0 0 0);
  }
  50% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: blur(30px) brightness(1.1);
  }
  100% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: blur(0) brightness(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.js-fadeIn-load {
  opacity: 0;
  transition: opacity 3s;
}

.js-fadeIn-load--02 {
  opacity: 0;
  transition: opacity 1s 0.8s;
}

.js-fadeIn-load.js-active, .js-fadeIn-load--02.js-active {
  opacity: 1;
}

.js-fadeUp-load {
  opacity: 0;
  transition: opacity 1s, transform 1s;
  transform: translateY(10px);
}

.js-fadeUp-load.js-active {
  opacity: 1;
  transform: translateY(0);
}

.js-fadeUp, .js-fadeUp-credit {
  opacity: 0;
  transition: opacity 1s, transform 1s;
  transform: translateY(30px);
}

.js-fadeUp.js-active, .js-fadeUp-credit.js-active {
  opacity: 1;
  transform: translateY(0);
}

.js-fadeLeft {
  opacity: 0;
  transition: opacity 1s, transform 1s;
  transform: translateX(-30px);
}

.js-fadeRight {
  opacity: 0;
  transition: opacity 1s, transform 1s;
  transform: translateX(30px);
}

.js-fadeLeft.js-active, .js-fadeRight.js-active {
  opacity: 1;
  transform: translateX(0);
}

.js-fadeIn {
  opacity: 0;
  transition: opacity 1s;
}

.js-fadeIn.js-active {
  opacity: 1;
}

.js-arrow img {
  transform: translateY(-100%);
  transition: transform 0.8s ease-in-out;
}

.js-arrow.js-active img {
  transform: translateY(0);
}

.js-moveUp {
  opacity: 0;
  clip-path: inset(94% 0 0 0);
  filter: blur(30px) brightness(1.1);
}

.js-moveUp.js-active {
  animation: js-moveUp 0.95s ease-out forwards;
}

.footer {
  padding: 0;
}

.footer .toTop {
  z-index: 100;
}

#MR250825COLLECTION {
  --image_w: calc(750 * var(--formula));
  --image_m: calc(609 * var(--formula));
  --image_s: calc(522 * var(--formula));
}

#MR250825COLLECTION {
  margin: 0 auto;
  padding: 0 0 0 0;
  color: #000000;
  font-weight: 400;
  letter-spacing: 0.05em;
  /* メインビジュアル */
}
#MR250825COLLECTION .intro {
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}
#MR250825COLLECTION .firstview {
  width: calc(750 * var(--formula));
  margin: 0 auto;
  position: relative;
}
#MR250825COLLECTION .firstview a {
  width: 100%;
  display: block;
  margin: 0 auto;
}
#MR250825COLLECTION .firstview video {
  width: 100%;
}
#MR250825COLLECTION .intro__titleWrap {
  display: flex;
  justify-content: space-between;
  width: calc(750 * var(--formula));
  height: calc(19 * var(--formula));
  padding: 0 calc(38 * var(--formula)) 0 calc(36 * var(--formula));
}
#MR250825COLLECTION .intro__titleWrap .intro__title--collection {
  width: calc(261 * var(--formula));
}
#MR250825COLLECTION .intro__titleWrap .intro__title--theme {
  width: calc(221 * var(--formula));
}
#MR250825COLLECTION .intro__text {
  width: calc(750 * var(--formula));
  margin: calc(510 * var(--formula)) auto 0;
}
#MR250825COLLECTION .mvVisual {
  position: relative;
}
#MR250825COLLECTION .mvVideo {
  width: 100%;
}
#MR250825COLLECTION .togglemvSound {
  cursor: pointer;
}
#MR250825COLLECTION .product__block {
  width: 100%;
  position: relative;
  z-index: 0;
}
#MR250825COLLECTION .product__block .product__block-inner {
  width: calc(750 * var(--formula));
  margin: 0 auto;
  position: relative; /* fixedやabsoluteは避ける */
  z-index: 1;
}
#MR250825COLLECTION .product__block .lp__title {
  margin: 0 auto 0;
  padding: calc(35 * var(--formula)) 0 0 0;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: calc(22 * var(--formula));
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
}
#MR250825COLLECTION .product__block .product__image-wrap {
  position: relative;
  width: calc(750 * var(--formula));
  margin: calc(190 * var(--formula)) auto 0;
}
#MR250825COLLECTION .product__block .product__image-wrap.product__image-wrap--01 {
  margin: calc(16 * var(--formula)) auto 0;
}
#MR250825COLLECTION .product__block .product__image-wrap.product__image-wrap--03 {
  margin: 0;
  padding: calc(191 * var(--formula)) 0 calc(228 * var(--formula));
  background-color: #fff;
}
#MR250825COLLECTION .product__block .product__image-wrap.product__image-wrap--04 {
  margin: calc(0 * var(--formula)) auto 0;
}
#MR250825COLLECTION .product__block .product__image-wrap.product__image-wrap--05 {
  margin: 0;
  padding: calc(191 * var(--formula)) 0 calc(289 * var(--formula));
  background-color: #fff;
}
#MR250825COLLECTION .product__block .product__image-wrap.product__image-wrap--06 {
  margin: calc(0 * var(--formula)) auto 0;
}
#MR250825COLLECTION .product__block .product__image-wrap.product__image-wrap--08 {
  margin: calc(239 * var(--formula)) auto 0;
}
#MR250825COLLECTION .product__block .product__image-wrap.product__image-wrap--09 {
  margin: calc(256 * var(--formula)) auto 0;
}
#MR250825COLLECTION .product__block .product__image-wrap.product__image-wrap--11 {
  margin: 0;
  padding: calc(226 * var(--formula)) 0 calc(236 * var(--formula));
  background-color: #fff;
}
#MR250825COLLECTION .product__block .product__image-wrap.product__image-wrap--12 {
  margin: calc(0 * var(--formula)) auto 0;
}
#MR250825COLLECTION .product__block .product__image-wrap.product__image-wrap--13 {
  margin: calc(184 * var(--formula)) auto 0;
}
#MR250825COLLECTION .product__block .product__image-wrap.product__image-wrap--14 {
  margin: calc(204 * var(--formula)) auto 0;
}
#MR250825COLLECTION .product__block .product__image-wrap.product__image-wrap--bottom {
  margin: 0 auto 0;
  padding: calc(0 * var(--formula)) 0 calc(53 * var(--formula));
}
#MR250825COLLECTION .product__block .product__image {
  width: var(--image_w);
  margin: calc(16 * var(--formula)) auto 0;
  position: relative;
}
#MR250825COLLECTION .product__block .product__image > a:hover {
  opacity: 1;
}
#MR250825COLLECTION .product__block .product__image > a::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: transparent;
  pointer-events: none;
  top: 0;
  left: 0;
  z-index: 1;
  transition: opacity 0.5s;
}
#MR250825COLLECTION .product__block .product__image > .product__slider {
  z-index: 0;
}
#MR250825COLLECTION .product__block .product__image > .product__slider:hover {
  opacity: 1;
}
#MR250825COLLECTION .product__block .product__image > .product__slider::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: transparent;
  pointer-events: none;
  top: 0;
  left: 0;
  z-index: 1;
  transition: opacity 0.5s;
}
#MR250825COLLECTION .product__block .product__image:hover > a::after {
  opacity: 0.2;
}
#MR250825COLLECTION .product__block .product__image:hover > .product__slider::after {
  opacity: 0.2;
}
#MR250825COLLECTION .product__block .product__image:hover .product__credit {
  opacity: 1;
}
#MR250825COLLECTION .product__block .product__image:hover .__line {
  opacity: 1;
}
#MR250825COLLECTION .product__block .product__image .__line {
  opacity: 0;
  position: absolute;
  width: calc(29 * var(--formula));
  height: calc(1 * var(--formula));
  background-color: #fff;
  bottom: calc(90 * var(--formula));
  left: 50%;
  transform: translateX(-50%);
}
#MR250825COLLECTION .product__block .product__image.product__image--01_1 {
  margin: 0 auto;
}
#MR250825COLLECTION .product__block .product__image.product__image--03 {
  width: calc(555 * var(--formula));
}
#MR250825COLLECTION .product__block .product__image.product__image--03 {
  width: var(--image_s);
}
#MR250825COLLECTION .product__block .product__image.product__image--04_1 {
  margin: 0 auto;
}
#MR250825COLLECTION .product__block .product__image.product__image--05 {
  width: var(--image_s);
}
#MR250825COLLECTION .product__block .product__image.product__image--06_2 {
  margin: calc(10 * var(--formula)) auto 0;
}
#MR250825COLLECTION .product__block .product__image.product__image--08_1 {
  width: var(--image_m);
}
#MR250825COLLECTION .product__block .product__image.product__image--08_2 {
  width: var(--image_m);
}
#MR250825COLLECTION .product__block .product__image.product__image--09_2 {
  margin: calc(22 * var(--formula)) auto 0;
}
#MR250825COLLECTION .product__block .product__image.product__image--11 {
  width: var(--image_s);
}
#MR250825COLLECTION .product__block .product__image.product__image--bottom {
  margin: 0 auto 0;
  padding: 0 0 calc(54 * var(--formula)) 0;
}
#MR250825COLLECTION .product__block .product__credit {
  display: block;
  width: 100%;
  padding: 0 0 0 calc(20 * var(--formula));
  position: absolute;
  left: 0;
  bottom: calc(17 * var(--formula));
  opacity: 0;
  transition: opacity 0.5s;
  font-family: var(--font-credit);
  font-size: calc(23 * var(--formula));
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #fff;
  text-align: left;
  z-index: 2;
}
#MR250825COLLECTION .product__block .product__credit.product__credit--top {
  bottom: calc(100 * var(--formula));
}
#MR250825COLLECTION .product__block .product__credit.product__credit--last {
  display: inline-block;
  width: auto;
  bottom: calc(353 * var(--formula));
  left: calc(517 * var(--formula));
}
#MR250825COLLECTION .product__block .product__credit a {
  display: inline-block;
  margin: 0 calc(7 * var(--formula)) 0 0;
  font-family: var(--font-credit);
  font-weight: 500;
}
#MR250825COLLECTION .product__block .product__credit a._slash {
  position: relative;
  margin: 0 calc(7 * var(--formula)) 0 calc(7 * var(--formula));
}
#MR250825COLLECTION .product__block .product__credit a._slash::after {
  position: absolute;
  content: "/";
  display: block;
  top: 0;
  left: calc(-13 * var(--formula));
  line-height: 1;
  color: #fff;
}
#MR250825COLLECTION .product__block .product__text {
  position: absolute;
}
#MR250825COLLECTION .product__block .product__text.product__text--03_1 {
  width: calc(377 * var(--formula));
  top: calc(-40 * var(--formula));
  left: 0;
}
#MR250825COLLECTION .product__block .product__text.product__text--03_2 {
  width: calc(213 * var(--formula));
  bottom: calc(-46 * var(--formula));
  left: auto;
  right: calc(-3 * var(--formula));
}
#MR250825COLLECTION .product__block .product__text.product__text--05 {
  width: calc(521 * var(--formula));
  bottom: calc(-90 * var(--formula));
  left: 0;
}
#MR250825COLLECTION .product__block .product__text.product__text--08_1 {
  width: calc(438 * var(--formula));
  top: calc(-41 * var(--formula));
  left: 0;
}
#MR250825COLLECTION .product__block .product__text.product__text--08_2 {
  width: calc(382 * var(--formula));
  bottom: calc(-73 * var(--formula));
  left: auto;
  right: 0;
}
#MR250825COLLECTION .product__block .product__text.product__text--11_1 {
  width: calc(260 * var(--formula));
  top: calc(-40 * var(--formula));
  left: calc(-2 * var(--formula));
}
#MR250825COLLECTION .product__block .product__text.product__text--11_2 {
  width: calc(307 * var(--formula));
  bottom: calc(-44 * var(--formula));
  left: auto;
  right: 0;
}
#MR250825COLLECTION .product__block .product__text.product__text--bottom {
  width: calc(750 * var(--formula));
  position: static;
}
#MR250825COLLECTION .product__block--intro {
  width: calc(750 * var(--formula));
  margin: calc(17 * var(--formula)) auto 0;
  padding: calc(38 * var(--formula)) 0 calc(53 * var(--formula));
  position: relative;
  z-index: 0;
  background-color: #eae5d6;
}
#MR250825COLLECTION .product__block--intro .product__block-inner {
  width: 100%;
}
#MR250825COLLECTION .product__block--01 {
  margin: 0 auto 0;
  z-index: 0;
}
#MR250825COLLECTION .button__all {
  display: grid;
  place-content: center;
  width: calc(258 * var(--formula));
  height: calc(61 * var(--formula));
  margin: 0 auto;
  border: 1px solid #fff;
  color: #fff;
  font-family: var(--font-en);
  font-size: calc(22.17 * var(--formula));
  letter-spacing: 0.04em;
  line-height: 1;
  position: absolute;
  bottom: calc(60 * var(--formula));
  transform: translateX(-50%);
  left: 50%;
  z-index: 2;
}
#MR250825COLLECTION .staff__area {
  width: calc(452 * var(--formula));
  margin: calc(507 * var(--formula)) 0 0 calc(32 * var(--formula));
  text-align: left;
  z-index: 2;
  font-family: var(--font-credit);
  font-weight: 700;
}

@media only screen and (min-width: 768px) {
  .header-logo {
    opacity: 1;
    transition: opacity 0.5s;
  }
  .header-logo.change-color {
    opacity: 0;
  }
  #MR250825COLLECTION {
    width: 100%;
    position: relative;
    margin: 0 auto;
    background-color: #f9f7f2;
  }
  #MR250825COLLECTION .intro__titleWrap {
    display: flex;
    justify-content: space-between;
    position: fixed;
    max-width: calc(1915 * var(--formula_pc));
    width: 100%;
    height: calc(19 * var(--formula_pc));
    z-index: 3;
    left: 50%;
    top: 50vh;
    transform: translate(-50%, -50%);
    margin: 0;
    pointer-events: none;
    z-index: 1;
  }
  #MR250825COLLECTION .intro__titleWrap .intro__title--collection {
    width: calc(261 * var(--formula_pc));
    margin: 0 0 0 calc(241 * var(--formula_pc));
  }
  #MR250825COLLECTION .intro__titleWrap .intro__title--theme {
    width: calc(221 * var(--formula_pc));
    margin: 0 calc(290 * var(--formula_pc)) 0 0;
  }
  #MR250825COLLECTION .floating__wrap {
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    width: calc(1200 * var(--formula_pc));
    position: sticky;
    top: 0;
    z-index: 1;
  }
  #MR250825COLLECTION .floating__logo {
    margin: calc(53 * var(--formula_pc)) 0 0 calc(53 * var(--formula_pc));
    width: calc(190 * var(--formula_pc));
  }
  #MR250825COLLECTION .floating__all {
    width: calc(186 * var(--formula_pc));
    margin: calc(533 * var(--formula_pc)) calc(90 * var(--formula_pc)) calc(56 * var(--formula_pc)) 0;
  }
  #MR250825COLLECTION .contents__center {
    margin: calc(-697 * var(--formula_pc)) auto 0;
    width: calc(750 * var(--formula));
    position: relative;
    z-index: 2;
  }
  #MR250825COLLECTION .product__block .product__credit {
    font-weight: 500;
  }
  #MR250825COLLECTION .product__block .product__credit a {
    font-weight: 500;
  }
}/*# sourceMappingURL=style.css.map */