@charset "UTF-8";
:root {
  --font: 游ゴシック体, YuGothic, 游ゴシック Medium, Yu Gothic, メイリオ, sans-serif;
  --font-en: "bodoni-urw", serif;
  --font-credit: neue-haas-grotesk-display, 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;
}

/* ▼ -----------可変設定---------- ▼ */
#MO260325UV {
  --pc-width: 1400; /*PCデザイン幅*/
  --sp-width: 750; /*SPデザイン幅*/
  --pc-artboard-width: 490; /*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) {
  #MO260325UV {
    --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) {
  #MO260325UV {
    --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width)); /* PCとSPのデザイン幅の比率 */
    --variable: calc(100vw / var(--pc-width)); /* 画面幅に基づく可変値 */
  }
}
/* SP画面幅 767px以下 可変 */
@media (max-width: 767px) {
  #MO260325UV {
    --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;
  }
}

.js-fadeIn-load {
  opacity: 0;
  transition: all 1s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.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: all 1s cubic-bezier(0.39, 0.575, 0.565, 1);
}

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

.footer {
  padding: 0;
}

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

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

#MO260325UV {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 0 auto;
  padding: 0 0 0 0;
  color: #000000;
  font-weight: 400;
  letter-spacing: 0.05em;
  /* メインビジュアル */
}
#MO260325UV .intro {
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}
#MO260325UV .firstview {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
#MO260325UV .firstview a {
  width: 100%;
  display: block;
  margin: 0 auto;
}
#MO260325UV .firstview video {
  width: 100%;
}
#MO260325UV .intro__titleWrap {
  position: fixed;
  max-width: calc(1400 * 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;
}
#MO260325UV .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));
}
#MO260325UV .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%);
}
#MO260325UV .intro__titleWrap .svg_path {
  fill: #fff;
}
#MO260325UV .mvVisual {
  position: relative;
}
#MO260325UV .mvVideo {
  width: 100%;
}
#MO260325UV .togglemvSound {
  cursor: pointer;
}
#MO260325UV .togglemvSound {
  display: block;
  width: calc(45 * var(--formula));
  height: calc(45 * var(--formula));
  padding: 0;
  cursor: pointer;
  background-size: 100% auto;
  position: absolute;
  right: calc(20 * var(--formula));
  bottom: calc(20 * var(--formula));
  z-index: 1;
}
#MO260325UV .togglemvSound .soundOff {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/sound_off.svg) no-repeat;
}
#MO260325UV .togglemvSound .soundON {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/sound_on.svg) no-repeat;
}
#MO260325UV .product__block {
  width: 100%;
  position: sticky;
}
#MO260325UV .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;
}
#MO260325UV .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;
}
#MO260325UV .product__block .product__heading {
  margin: calc(85 * var(--formula)) auto 0;
}

#MO260325UV .product__block .product__heading .product__lead {
  font-size: calc(24 * var(--formula));
  line-height: 2.1666666667;
  text-align: center;
  font-feature-settings: "palt";
}
#MO260325UV .product__block .product__heading .product__lead span {
  display: block;
  font-size: calc(17 * var(--formula));
  font-feature-settings: "palt";
  padding-top: calc(38 * var(--formula));
}
#MO260325UV .product__block .product__image-wrap {
  position: relative;
  width: calc(750 * var(--formula));
  margin: 0 auto;
}
#MO260325UV .product__block .product__image {
  width: 100%;
  margin: calc(115 * var(--formula)) auto 0;
  position: relative;
}
#MO260325UV .product__block .product__image > a:hover {
  opacity: 1;
}
#MO260325UV .product__block .product__image > a::after {
  content: "";
  display: block;
  position: absolute;
  width: auto;
  height: 100%;
  opacity: 0;
  background-image: url(../img/credits_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
  top: 0;
  right: 0;
  z-index: 1;
  transition: opacity 0.5s;
}
#MO260325UV .product__block .product__image--bottom > a::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: #fff;
  pointer-events: none;
  top: 0;
  left: 0;
  z-index: 1;
  transition: opacity 0.5s;
  background-image: none;
}
#MO260325UV .product__block .product__image > .product__slider:hover {
  opacity: 1;
}
#MO260325UV .product__block .product__image > .product__slider::after {
  content: "";
  display: block;
  position: absolute;
  width: auto;
  height: 100%;
  opacity: 0;
  background-image: url(../img/credits_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
  top: 0;
  right: 0;
  z-index: 1;
  transition: opacity 0.5s;
}
#MO260325UV .product__block .product__image:hover > a::after {
  opacity: 0.2;
}
#MO260325UV .product__block .product__image:hover > .product__slider::after {
  opacity: 0.2;
}
#MO260325UV .product__block .product__image:hover .product__credit {
  opacity: 1;
}

#MO260325UV .product__block .product__title.product__title--01 {
  width: calc(480 * var(--formula));
  margin: calc(148 * var(--formula)) auto 0;
}
#MO260325UV .product__block .product__image.product__image--01_1 {
  width: calc(700 * var(--formula));
  margin: calc(78 * var(--formula)) auto 0;
}
#MO260325UV .product__block .product__image.product__image--01_2 {
  width: calc(700 * var(--formula));
  margin: calc(12 * var(--formula)) auto 0;
}

#MO260325UV .product__block .product__title.product__title--02 {
  width: calc(401 * var(--formula));
  margin: calc(170 * var(--formula)) auto 0;
}
#MO260325UV .product__block.product__block--02 .product__heading {
  margin: calc(52 * var(--formula)) auto 0;
}
#MO260325UV .product__block.product__block--02 .product__heading .product__lead {
  line-height: 2;
}
#MO260325UV .product__block .product__image.product__image--02_1 {
  width: calc(640 * var(--formula));
  margin: calc(68 * var(--formula)) auto 0;
}
#MO260325UV .product__block .product__image.product__image--02_2 {
  width: calc(750 * var(--formula));
  margin: calc(66 * var(--formula)) auto 0;
}

#MO260325UV .product__block .product__title.product__title--03 {
  width: calc(511 * var(--formula));
  margin: calc(170 * var(--formula)) auto 0;
}
#MO260325UV .product__block .product__image.product__image--03_1 {
  width: calc(700 * var(--formula));
  margin: calc(80 * var(--formula)) auto 0;
}

#MO260325UV .product__block .product__title.product__title--04 {
  width: calc(564 * var(--formula));
  margin: calc(174 * var(--formula)) auto 0;
}
#MO260325UV .product__block .product__image.product__image--04_1 {
  width: calc(750 * var(--formula));
  margin: calc(80 * var(--formula)) auto 0;
}

#MO260325UV .product__block .product__title.product__title--05 {
  width: calc(612 * var(--formula));
  margin: calc(162 * var(--formula)) auto 0;
}
#MO260325UV .product__block .product__image.product__image--05_1 {
  width: calc(700 * var(--formula));
  margin: calc(80 * var(--formula)) auto 0;
}
#MO260325UV .product__block .product__image.product__image--05_2 {
  width: calc(700 * var(--formula));
  margin: calc(10 * var(--formula)) auto 0;
}

#MO260325UV .product__block .product__image.product__image--bottom {
  margin: 0 auto;
}
#MO260325UV .product__block .product__colorInner {
  padding: calc(115 * var(--formula)) 0;
}
#MO260325UV .product__block .product__colorInner .product__image:first-of-type {
  margin: 0 auto;
}

#MO260325UV .product__block .product__credit {
  display: block;
  /* width: 100%; */
  position: absolute;
  right: calc(23 * var(--formula));
  bottom: calc(15 * var(--formula));
  opacity: 0;
  transition: opacity 0.5s;
  font-family: var(--font-credit);
  font-size: calc(24 * var(--formula));
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.75;
  color: #fff;
  text-align: right;
  z-index: 2;
}
#MO260325UV .product__block .credit_ja {
  font-family: var(--font);
  font-size: calc(22 * var(--formula));
  font-weight: 600;
}
#MO260325UV .product__block .product__credit a {
  display: block;
}

#MO260325UV .lp_movie {
  width: calc(750 * var(--formula));
  margin: 0 auto;
  position: relative;
  background-color: #fff;
}
#MO260325UV .lp_movie a {
  width: 100%;
  display: block;
  margin: 0 auto;
}
#MO260325UV .lp_movie video {
  width: 100%;
}
#MO260325UV .product__block--intro {
  position: relative;
}
#MO260325UV .product__block--intro .product__block-inner {
  width: 100%;
}

#MO260325UV .button__all {
  display: block;
  width: calc(675 * var(--formula));
  height: calc(118 * var(--formula));
  margin: calc(198 * var(--formula)) auto 0;
}
#MO260325UV .staff__area {
  width: calc(750 * var(--formula));
  margin: calc(118 * var(--formula)) auto calc(188 * var(--formula));
  text-align: center;
}
#MO260325UV .staff__area .staff__title {
  font-family: var(--font-en);
  font-size: calc(34 * var(--formula));
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.145em;
}
#MO260325UV .staff__area .staff__name {
  margin: calc(25 * var(--formula)) auto 0;
  font-family: var(--font-credit);
  font-size: calc(23 * var(--formula));
  font-weight: 400;
  line-height: 1.9565217391;
  letter-spacing: 0.05em;
}

@media only screen and (min-width: 768px) {
  #MO260325UV .lp-mv-area{
    position: sticky;
    top: 0;
    height: 100vh;
    /* flex: 1; */
    overflow: hidden;
    width: 50%;
  }

  #MO260325UV .lp-mv-area a {
    width: 100%;
  }

  #MO260325UV .mv__title {
    position: absolute;
    bottom: calc(15 * var(--formula_pc));
    left: 50.3%;
    transform: translateX(-50%);
    width: calc(568 *(100vw / 1400));
    z-index: 5;
    pointer-events: none;
  }

  #MO260325UV .mv-inner {
    width: 100%;
    height: auto;
    z-index: 1;
    position: relative;
  }

  #MO260325UV .mv__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top center;
  }

  #MO260325UV .mv__image .mv__imageInner img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: top center;
  }

  #MO260325UV .lp-main-area {
    position: relative;
    /* flex: 1; */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
  }
  #MO260325UV .lp_movie {
    margin-top: calc(70 * var(--formula));
  }
}/*# sourceMappingURL=style.css.map */