@charset "UTF-8";
/* media query
------------------------------------------ */
/* display
------------------------------------------ */
.is-show-pc {
  display: block;
}
@media (max-width: 767px) {
  .is-show-pc {
    display: none;
  }
}

.is-show-sp {
  display: none;
}
@media (max-width: 767px) {
  .is-show-sp {
    display: block;
  }
}

/* function
------------------------------------------ */
.footer {
  padding-top: 0 !important;
}

.MO251211outer {
  /* 可変設定
  ------------------------------------------ */
  /*デザインの値*/
  --pc-width: 1400; /*PCデザイン幅*/
  --sp-width: 750; /*SPデザイン幅*/
  --pc-artboard-width: 490; /*SP共通デザイン幅*/
  --sp-artboard-width: 750; /*PC共通デザイン幅*/
  /*可変率の計算式*/
  --formula: calc(
    var(--variable) * var(--ratio)
  ); /*SP,PC共通箇所の可変割合の計算式*/
  --formula_pc: calc(var(--variable) * 1); /*PCデザインの可変割合の計算式*/
  /* PC画面幅 1400px以上 固定 */
  /* PC画面幅 768～1400px 可変 */
  /* SP画面幅 767px以下 可変 */
  /* mixin
  ------------------------------------------ */
  /* reset
  ------------------------------------------ */
  /* 共通
  ------------------------------------------ */
  /* animation
  ------------------------------------------ */
  /* LP style
  ------------------------------------------ */
  /* product
  ------------------------------------------ */
  /* all
  ------------------------------------------ */
  /* staff
  ------------------------------------------ */
}
@media (min-width: 1401px) {
  .MO251211outer {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    ); /* PCとSPのデザイン幅の比率 */
    --variable: 1px; /* 固定値（可変しない） */
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .MO251211outer {
    --ratio: calc(
      var(--pc-artboard-width) / var(--sp-artboard-width)
    ); /* PCとSPのデザイン幅の比率 */
    --variable: calc(100vw / var(--pc-width)); /* 画面幅に基づく可変値 */
  }
}
@media (max-width: 767px) {
  .MO251211outer {
    --ratio: 1; /* 比率は1（変わらない） */
    --variable: calc(100vw / var(--sp-width)); /* 画面幅に基づく可変値 */
  }
}
.MO251211outer img {
  width: 100%;
  height: auto;
}
.MO251211outer * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.MO251211outer .movie-cont {
  position: relative;
}
.MO251211outer .movie-sound {
  width: calc(45 * var(--formula));
  height: calc(45 * var(--formula));
  position: absolute;
  bottom: calc(15 * var(--formula));
  right: calc(15 * var(--formula));
  z-index: 1;
  cursor: pointer;
}
.MO251211outer .movie-sound-on {
  width: calc(45 * var(--formula));
  height: calc(1545 * var(--formula));
  display: none;
}
.MO251211outer .movie-sound-off {
  width: calc(45 * var(--formula));
  height: calc(45 * var(--formula));
}
.MO251211outer .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(22 * var(--formula));
  position: absolute;
  height: calc(12 * var(--formula));
}
.MO251211outer .swiper-pagination-bullet {
  width: calc(12 * var(--formula));
  height: calc(12 * var(--formula));
  background-color: transparent;
  border-radius: 50%;
  opacity: 1;
  margin: 0 !important;
  cursor: pointer;
  border: 1px solid #000;
  position: relative;
  overflow: hidden;
}
.MO251211outer .swiper-pagination-bullet-active {
  background-color: transparent;
}
.MO251211outer .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
}
.MO251211outer .js-fade-in {
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
}
.MO251211outer .js-fade-in.is-active {
  opacity: 1;
}
.MO251211outer .js-smooth-to-bottom img {
  -webkit-transition: 0.8s;
  transition: 0.8s;
  clip-path: inset(0 0 100% 0);
}
.MO251211outer .js-smooth-to-bottom.is-active img {
  clip-path: inset(0 0 0 0);
}
.MO251211outer .js-smooth-to-right img {
  -webkit-transition: 0.8s;
  transition: 0.8s;
  clip-path: inset(0 100% 0 0);
}
.MO251211outer .js-smooth-to-right.is-active img {
  clip-path: inset(0 0 0 0);
}
.MO251211outer .js-smooth-to-left img {
  -webkit-transition: 0.8s;
  transition: 0.8s;
  clip-path: inset(0 0 0 100%);
}
.MO251211outer .js-smooth-to-left.is-active img {
  clip-path: inset(0 0 0 0);
}
.MO251211outer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .MO251211outer-container {
    display: block;
  }
}
.MO251211outer .mv {
  position: sticky;
  top: 0;
  width: 50%;
  height: 100vh;
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
}
.MO251211outer .mv.is-active {
  opacity: 1;
}
@media (max-width: 767px) {
  .MO251211outer .mv {
    position: static;
    width: 100%;
    height: auto;
  }
}
.MO251211outer .mv a {
  display: block;
  position: relative;
  z-index: 0;
}
.MO251211outer .mv-logo {
  position: absolute;
  left: calc(4 * var(--formula));
  right: calc(0 * var(--formula));
  margin: auto;
  bottom: calc(46 * var(--formula_pc));
  width: calc(663 * var(--formula_pc));
  z-index: 1;
}
@media (max-width: 767px) {
  .MO251211outer .mv-logo {
    bottom: calc(51 * var(--formula));
    left: calc(5 * var(--formula));
    width: calc(710 * var(--formula));
  }
}
.MO251211outer .mv-img {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .MO251211outer .mv-img {
    height: auto;
  }
}
.MO251211outer .mv-img img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
@media (max-width: 767px) {
  .MO251211outer .mv-img img {
    -o-object-fit: fill;
       object-fit: fill;
    height: auto;
  }
}
.MO251211outer .lp-container {
  width: 50%;
}
@media (max-width: 767px) {
  .MO251211outer .lp-container {
    width: 100%;
  }
}
.MO251211outer .lp-cont {
  width: calc(750 * var(--variable) * var(--ratio));
  margin: 0 auto calc(184 * var(--variable) * var(--ratio));
}
.MO251211outer .product01 {
  margin-top: calc(154 * var(--formula));
}
.MO251211outer .product01-ttl {
  width: calc(422 * var(--formula));
  margin: 0 auto;
}
.MO251211outer .product01-photo-01 {
  width: calc(700 * var(--formula));
  margin-top: calc(64 * var(--formula));
  margin-right: auto;
}
.MO251211outer .product01-photo-02 {
  width: calc(700 * var(--formula));
  margin-top: calc(5 * var(--formula));
  margin-right: auto;
}
.MO251211outer .product01-movie {
  margin-top: calc(168 * var(--formula));
}
.MO251211outer .product01-movie video {
  width: 100%;
}
.MO251211outer .product01-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(18 * var(--formula));
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: calc(40 * var(--formula));
}
.MO251211outer .product01-price a {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: calc(24 * var(--formula));
  line-height: 2;
  letter-spacing: 0.02em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.MO251211outer .product01-price-01 {
  margin-top: calc(38 * var(--formula));
}
.MO251211outer .product02 {
  margin-top: calc(185 * var(--formula));
}
.MO251211outer .product02-ttl {
  width: calc(640 * var(--formula));
  margin: 0 auto;
}
.MO251211outer .product02-photo-01 {
  width: calc(640 * var(--formula));
  margin: calc(36 * var(--formula)) auto 0;
}
.MO251211outer .product02-photo-02 {
  width: calc(640 * var(--formula));
  margin: calc(6 * var(--formula)) auto 0;
}
.MO251211outer .product02-movie {
  margin-top: calc(168 * var(--formula));
}
.MO251211outer .product02-movie video {
  width: 100%;
}
.MO251211outer .product02-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(18 * var(--formula));
}
.MO251211outer .product02-price a {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: calc(24 * var(--formula));
  line-height: 2;
  letter-spacing: 0.02em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.MO251211outer .product02-price-01 {
  margin-top: calc(38 * var(--formula));
}
.MO251211outer .product03 {
  margin-top: calc(180 * var(--formula));
}
.MO251211outer .product03-ttl {
  width: calc(616 * var(--formula));
  margin: 0 auto;
  position: relative;
  left: calc(44 * var(--formula));
}
.MO251211outer .product03-photo-01 {
  width: calc(640 * var(--formula));
  margin: calc(48 * var(--formula)) 0 0 auto;
}
.MO251211outer .product03-photo-02 {
  width: calc(680 * var(--formula));
  margin: calc(4 * var(--formula)) auto 0 0;
}
.MO251211outer .product03-photo-03 {
  margin: calc(170 * var(--formula)) auto 0;
}
.MO251211outer .product03-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(18 * var(--formula));
}
.MO251211outer .product03-price a {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: calc(24 * var(--formula));
  line-height: 2;
  letter-spacing: 0.02em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.MO251211outer .product03-price-01 {
  padding-left: calc(40 * var(--formula));
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.MO251211outer .product03-price-01:nth-of-type(3) {
  margin-top: calc(38 * var(--formula));
}
.MO251211outer .product03-price-02 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.MO251211outer .product03-price-02 span {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: calc(24 * var(--formula));
  line-height: 2;
  letter-spacing: 0.02em;
  margin-right: calc(-14 * var(--formula));
}
.MO251211outer .product03-price-02:nth-of-type(6) {
  margin-top: calc(38 * var(--formula));
}
.MO251211outer .product04 {
  margin-top: calc(185 * var(--formula));
}
.MO251211outer .product04-ttl {
  width: calc(353 * var(--formula));
  margin: 0 auto;
}
.MO251211outer .product04-photo-01 {
  width: calc(620 * var(--formula));
  margin: calc(60 * var(--formula)) auto 0 0;
}
.MO251211outer .product04-photo-02 {
  width: calc(700 * var(--formula));
  margin: calc(5 * var(--formula)) 0 0 auto;
}
.MO251211outer .product04-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(18 * var(--formula));
  padding-left: calc(50 * var(--formula));
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.MO251211outer .product04-price a {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: calc(24 * var(--formula));
  line-height: 2;
  letter-spacing: 0.02em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.MO251211outer .product04-price-01 {
  margin-top: calc(38 * var(--formula));
}
.MO251211outer .product05 {
  margin-top: calc(168 * var(--formula));
}
.MO251211outer .product05-ttl {
  width: calc(680 * var(--formula));
  margin: calc(188 * var(--formula)) auto 0;
}
.MO251211outer .product05-photo-01 {
  width: calc(680 * var(--formula));
  margin: calc(35 * var(--formula)) auto 0;
}
.MO251211outer .product05-photo-02 {
  width: calc(680 * var(--formula));
  margin: calc(5 * var(--formula)) auto 0;
}
.MO251211outer .product05-movie video {
  width: 100%;
}
.MO251211outer .product05-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(18 * var(--formula));
}
.MO251211outer .product05-price a {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: calc(24 * var(--formula));
  line-height: 2;
  letter-spacing: 0.02em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.MO251211outer .product05-price-01 {
  margin-top: calc(38 * var(--formula));
}
.MO251211outer .product06 {
  margin-top: calc(168 * var(--formula));
}
.MO251211outer .product06-ttl {
  width: calc(667 * var(--formula));
  margin: calc(0 * var(--formula)) auto 0;
  position: relative;
  left: calc(-14 * var(--formula));
}
.MO251211outer .product06-photo-01 {
  width: calc(660 * var(--formula));
  margin: calc(50 * var(--formula)) auto 0 0;
}
.MO251211outer .product06-photo-02 {
  width: calc(750 * var(--formula));
  margin: calc(170 * var(--formula)) auto 0;
}
.MO251211outer .product06-movie video {
  width: 100%;
}
.MO251211outer .product06-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(18 * var(--formula));
  padding-left: calc(40 * var(--formula));
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.MO251211outer .product06-price a {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: calc(24 * var(--formula));
  line-height: 2;
  letter-spacing: 0.02em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.MO251211outer .product06-price-01 {
  margin-top: calc(38 * var(--formula));
}
.MO251211outer .product07 {
  margin-top: calc(182 * var(--formula));
}
.MO251211outer .product07-ttl {
  width: calc(533 * var(--formula));
  margin: calc(50 * var(--formula)) auto 0;
}
.MO251211outer .product07-slider-01 {
  width: calc(660 * var(--formula));
  margin: calc(50 * var(--formula)) 0 0 auto;
}
.MO251211outer .product07-slider-01 .swiper-pagination {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  top: calc(26 * var(--formula));
  padding-right: calc(26 * var(--formula));
}
.MO251211outer .product07-slider-02 {
  width: calc(700 * var(--formula));
  margin: calc(5 * var(--formula)) auto 0 0;
}
.MO251211outer .product07-slider-02 .swiper-pagination {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  top: calc(26 * var(--formula));
  padding-left: calc(26 * var(--formula));
}
.MO251211outer .product07-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(18 * var(--formula));
  padding-left: calc(40 * var(--formula));
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.MO251211outer .product07-price a {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: calc(24 * var(--formula));
  line-height: 2;
  letter-spacing: 0.02em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.MO251211outer .product07-price-01 {
  margin-top: calc(40 * var(--formula));
}
.MO251211outer .all {
  margin-top: calc(168 * var(--formula));
}
.MO251211outer .all-link {
  display: block;
  width: calc(675 * var(--formula));
  margin: 0 auto;
}
.MO251211outer .staff {
  margin-top: calc(140 * var(--formula));
}
.MO251211outer .staff-ttl {
  display: block;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: calc(26 * var(--formula));
  line-height: 1.03846154;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.15em;
  text-align: center;
}
.MO251211outer .staff-txt {
  margin-top: calc(18 * var(--formula));
  text-align: center;
  font-size: calc(24 * var(--formula));
  line-height: 2;
  letter-spacing: 0.02em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}