@charset "UTF-8";
:root {
  --font: 游ゴシック体, YuGothic, 游ゴシック Medium, Yu Gothic, メイリオ, sans-serif;
  --font-en: europa, sans-serif;
  --font-credit: europa, sans-serif;
  --font-mincho: yu-mincho-pr6n, ヒラギノ明朝 Pro W3, Hiragino Mincho Pro, ＭＳ Ｐ明朝, MS PMincho, serif;
  --pc-width: 1400;
  --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;
}

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

/* --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: 1201px) {
  #MO250807AW1st {
    --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width)); /* PCとSPのデザイン幅の比率 */
    --variable: 1px; /* 固定値（可変しない） */
  }
}
/* PC画面幅 768～1200px 可変 */
@media (min-width: 768px) and (max-width: 1200px) {
  #MO250807AW1st {
    --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width)); /* PCとSPのデザイン幅の比率 */
    --variable: calc(100vw / var(--pc-width)); /* 画面幅に基づく可変値 */
  }
}
/* SP画面幅 767px以下 可変 */
@media (max-width: 767px) {
  #MO250807AW1st {
    --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 2s;
}

.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;
}

#MO250807AW1st {
  --image_w: calc(750 * var(--formula));
  --image_n: calc(630 * var(--formula));
}

#MO250807AW1st {
  margin: 0 auto;
  padding: 0 0 0 0;
  color: #000000;
  font-weight: 400;
  letter-spacing: 0.05em;
  /* メインビジュアル */
}
#MO250807AW1st .intro {
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}
#MO250807AW1st .firstview {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
#MO250807AW1st .firstview a {
  width: 100%;
  display: block;
  margin: 0 auto;
}
#MO250807AW1st .firstview video {
  width: 100%;
}
#MO250807AW1st .intro__titleWrap {
  position: fixed;
  max-width: calc(1200 * var(--formula_pc));
  width: 100%;
  height: calc(265 * var(--formula_pc));
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  pointer-events: none;
  z-index: 1;
}
#MO250807AW1st .intro__titleWrap .intro__title--brand {
  width: calc(11 * var(--formula_pc));
  margin: 0 0 0 calc(352 * var(--formula_pc));
  position: absolute;
  top: calc(-50 * var(--formula_pc));
}
#MO250807AW1st .intro__titleWrap .intro__title--theme {
  width: calc(950 * var(--formula_pc));
  margin: 0 auto;
  clip-path: polygon(0% 0%, 0% 100%, 31% 100%, 31% 0, 69% 0, 69% 100%, 100% 100%, 100% 0%);
}
#MO250807AW1st .intro__titleWrap .svg_path {
  fill: #fff;
}
#MO250807AW1st .mvVisual {
  position: relative;
}
#MO250807AW1st .mvVideo {
  width: 100%;
}
#MO250807AW1st .togglemvSound {
  cursor: pointer;
}
#MO250807AW1st .togglemvSound {
  display: block;
  width: calc(40 * var(--formula));
  height: calc(40 * var(--formula));
  padding: 0;
  cursor: pointer;
  background-size: 100% auto;
  position: absolute;
  right: calc(22 * var(--formula));
  bottom: calc(22 * var(--formula));
  z-index: 1;
}
#MO250807AW1st .togglemvSound .soundOff {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/sound_off.svg) no-repeat;
}
#MO250807AW1st .togglemvSound .soundON {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/sound_on.svg) no-repeat;
}
#MO250807AW1st .product__block {
  width: 100%;
  position: sticky;
}
#MO250807AW1st .product__block .product__block-inner {
  width: calc(750 * var(--formula));
  margin: 0 auto;
  position: relative; /* fixedやabsoluteは避ける */
  background-color: #fff;
  position: relative;
  z-index: 1000;
}
#MO250807AW1st .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;
}
#MO250807AW1st .product__block .product__heading {
  margin: calc(286 * var(--formula)) auto 0;
}
#MO250807AW1st .product__block .product__heading.product__heading--01 {
  margin: calc(237 * var(--formula)) auto 0;
}
#MO250807AW1st .product__block .product__heading.product__heading--03 {
  margin: calc(237 * var(--formula)) auto 0;
}
#MO250807AW1st .product__block .product__heading.product__heading--04 {
  margin: calc(295 * var(--formula)) auto 0;
}
#MO250807AW1st .product__block .product__heading .product__colorchip {
  display: block;
  margin: 0 auto;
  width: calc(80 * var(--formula));
}
#MO250807AW1st .product__block .product__heading .product__lead {
  margin: calc(10 * var(--formula)) auto 0;
  font-family: var(--font-en);
  font-size: calc(19.26 * var(--formula));
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4994807892;
  text-align: center;
}
#MO250807AW1st .product__block .product__image-wrap {
  position: relative;
  width: calc(750 * var(--formula));
  margin: 0 auto;
}
#MO250807AW1st .product__block .product__image {
  width: var(--image_w);
  margin: calc(115 * var(--formula)) auto 0;
  position: relative;
}
#MO250807AW1st .product__block .product__image > a:hover {
  opacity: 1;
}
#MO250807AW1st .product__block .product__image > a::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: #4d4d4d;
  pointer-events: none;
  top: 0;
  left: 0;
  z-index: 1;
  transition: opacity 0.5s;
}
#MO250807AW1st .product__block .product__image > .product__slider:hover {
  opacity: 1;
}
#MO250807AW1st .product__block .product__image > .product__slider::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: #4d4d4d;
  pointer-events: none;
  top: 0;
  left: 0;
  z-index: 1;
  transition: opacity 0.5s;
}
#MO250807AW1st .product__block .product__image:hover > a::after {
  opacity: 0.2;
}
#MO250807AW1st .product__block .product__image:hover > .product__slider::after {
  opacity: 0.2;
}
#MO250807AW1st .product__block .product__image:hover .product__credit {
  opacity: 1;
}
#MO250807AW1st .product__block .product__image:hover .__line {
  opacity: 1;
}
#MO250807AW1st .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%);
}
#MO250807AW1st .product__block .product__image.product__image--01_1 {
  margin: calc(40 * var(--formula)) auto 0;
}
#MO250807AW1st .product__block .product__image.product__image--01_4 {
  margin: calc(113 * var(--formula)) auto 0;
  width: var(--image_n);
}
#MO250807AW1st .product__block .product__image.product__image--01_5 {
  margin: calc(112 * var(--formula)) auto 0;
}
#MO250807AW1st .product__block .product__image.product__image--01_6 {
  width: var(--image_n);
}
#MO250807AW1st .product__block .product__image.product__image--01_7 {
  margin: calc(113 * var(--formula)) auto 0;
  width: var(--image_n);
}
#MO250807AW1st .product__block .product__image.product__image--02_1 {
  margin: calc(40 * var(--formula)) auto 0;
}
#MO250807AW1st .product__block .product__image.product__image--02_2 {
  width: var(--image_n);
}
#MO250807AW1st .product__block .product__image.product__image--02_4 {
  width: var(--image_n);
}
#MO250807AW1st .product__block .product__image.product__image--02_5 {
  width: var(--image_n);
}
#MO250807AW1st .product__block .product__image.product__image--03_1 {
  margin: calc(40 * var(--formula)) auto 0;
}
#MO250807AW1st .product__block .product__image.product__image--03_2 {
  width: var(--image_n);
}
#MO250807AW1st .product__block .product__image.product__image--03_4 {
  width: var(--image_n);
}
#MO250807AW1st .product__block .product__image.product__image--03_5 {
  width: var(--image_n);
}
#MO250807AW1st .product__block .product__image.product__image--03_7 {
  width: var(--image_n);
}
#MO250807AW1st .product__block .product__image.product__image--03_8 {
  width: var(--image_n);
}
#MO250807AW1st .product__block .product__image.product__image--04_1 {
  margin: calc(40 * var(--formula)) auto 0;
}
#MO250807AW1st .product__block .product__image.product__image--04_2 {
  width: var(--image_n);
}
#MO250807AW1st .product__block .product__image.product__image--04_4 {
  width: var(--image_n);
}
#MO250807AW1st .product__block .product__image.product__image--04_5 {
  width: var(--image_n);
}
#MO250807AW1st .product__block .product__image.product__image--04_6 {
  margin: 0;
}
#MO250807AW1st .product__block .product__image.product__image--04_7 {
  width: var(--image_n);
}
#MO250807AW1st .product__block .product__image.product__image--04_8 {
  width: var(--image_n);
}
#MO250807AW1st .product__block .product__image.product__image--bottom {
  margin: 0 auto;
}
#MO250807AW1st .product__block .product__colorInner {
  padding: calc(115 * var(--formula)) 0;
}
#MO250807AW1st .product__block .product__colorInner .product__image:first-of-type {
  margin: 0 auto;
}
#MO250807AW1st .product__block .product__colorInner--brown {
  background-color: #3a2108;
  padding: calc(117 * var(--formula)) 0 calc(113 * var(--formula)) 0;
}
#MO250807AW1st .product__block .product__colorInner--charcoal {
  background-color: #172125;
}
#MO250807AW1st .product__block .product__colorInner--redbrown {
  background-color: #793b1b;
}
#MO250807AW1st .product__block .product__colorInner--gray {
  background-color: #545251;
}
#MO250807AW1st .product__block .product__credit {
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: calc(30 * var(--formula));
  opacity: 0;
  transition: opacity 0.5s;
  font-family: var(--font-credit);
  font-size: calc(14 * var(--formula));
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.7714285714;
  color: #fff;
  text-align: center;
  z-index: 2;
}
#MO250807AW1st .product__block .product__credit.product__credit--top {
  bottom: calc(100 * var(--formula));
}
#MO250807AW1st .product__block .product__credit.product__credit--last {
  display: inline-block;
  width: auto;
  bottom: calc(353 * var(--formula));
  left: calc(517 * var(--formula));
}
#MO250807AW1st .product__block .product__credit a {
  display: inline-block;
  margin: 0 calc(7 * var(--formula)) 0 0;
}
#MO250807AW1st .product__block .product__credit a._slash {
  position: relative;
  margin: 0 calc(7 * var(--formula)) 0 calc(7 * var(--formula));
}
#MO250807AW1st .product__block .product__credit a._slash::after {
  position: absolute;
  content: "/";
  display: block;
  top: 0;
  left: calc(-12 * var(--formula));
  line-height: 1.7714285714;
  color: #fff;
}
#MO250807AW1st .lp_movie {
  width: calc(750 * var(--formula));
  margin: 0 auto;
  position: relative;
  background-color: #fff;
}
#MO250807AW1st .lp_movie a {
  width: 100%;
  display: block;
  margin: 0 auto;
}
#MO250807AW1st .lp_movie video {
  width: 100%;
}
#MO250807AW1st .product__block--intro {
  position: relative;
  z-index: 0;
  background-color: #392106;
}
#MO250807AW1st .product__block--intro .product__block-inner {
  width: 100%;
}
#MO250807AW1st .product__block--01 {
  top: calc(-6607 * var(--formula));
  margin: 0 auto 0;
  z-index: 1;
  background-color: #392106;
}
#MO250807AW1st .product__block--02 {
  top: calc(-5485 * var(--formula));
  margin: 0 auto 0;
  z-index: 2;
  background-color: #a7a7aa;
}
#MO250807AW1st .product__block--03 {
  top: calc(-8507 * var(--formula));
  margin: 0 auto 0;
  z-index: 2;
  background-color: #dbd8d6;
}
#MO250807AW1st .product__block--04 {
  margin: 0 auto 0;
  z-index: 2;
  background-color: #937961;
}
#MO250807AW1st .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;
}
#MO250807AW1st .staff__area {
  width: calc(750 * var(--formula));
  margin: calc(307 * var(--formula)) auto 0;
  text-align: left;
  z-index: 2;
  font-family: var(--font-credit);
  font-weight: 700;
}
#MO250807AW1st .staff__area .staff__title {
  font-family: var(--font-en);
  font-size: calc(19.26 * var(--formula));
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}
#MO250807AW1st .staff__area .staff__name {
  margin: calc(21 * var(--formula)) auto 0;
  font-family: var(--font-credit);
  font-size: calc(19.26 * var(--formula));
  font-weight: 700;
  line-height: 0.9171428571;
  letter-spacing: 0.04em;
}

@media only screen and (min-width: 768px) {
  #MO250807AW1st {
    width: 100%;
    position: relative;
    margin: 0 auto;
  }
  #MO250807AW1st .floating__wrap {
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    width: calc(1200 * var(--formula_pc));
    position: sticky;
    top: 0;
    z-index: 1;
  }
  #MO250807AW1st .floating__logo {
    margin: calc(53 * var(--formula_pc)) 0 0 calc(53 * var(--formula_pc));
    width: calc(190 * var(--formula_pc));
  }
  #MO250807AW1st .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;
  }
  #MO250807AW1st .contents__center {
    margin: calc(-697 * var(--formula_pc)) auto 0;
    width: calc(750 * var(--formula));
    position: relative;
    z-index: 2;
  }
  #MO250807AW1st .product__block .product__credit {
    font-weight: 600;
  }
  #MO250807AW1st .product__block .product__credit a {
    font-weight: 600;
  }
}/*# sourceMappingURL=style.css.map */