@charset "UTF-8";
@font-face {
  font-family: "NotoSerifJP";
  src: url(../font/NotoSerifJP-Medium.otf) format("opentype");
  font-weight: normal;
}
:root {
  --font: yu-mincho-pr6n, sans-serif;
  --font-en: meno-banner, serif;
  --font-credit: meno-banner, serif;
  --font-mincho: vdl-v7mincho, sans-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;
}

/* ▼ -----------可変設定---------- ▼ */
#MO251120HOLIDAY {
  --pc-width: 1400; /*PCデザイン幅*/
  --sp-width: 750; /*SPデザイン幅*/
  --pc-artboard-width: 560; /*SP共通デザイン幅*/
  --sp-artboard-width: 750; /*PC共通デザイン幅*/
  --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画面幅 1400px以上 固定 */
@media (min-width: 1401px) {
  #MO251120HOLIDAY {
    --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width)); /* PCとSPのデザイン幅の比率 */
    --variable: calc(100vw / var(--pc-width));
  }
}
/* PC画面幅 768～1400px 可変 */
@media (min-width: 768px) and (max-width: 1400px) {
  #MO251120HOLIDAY {
    --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width)); /* PCとSPのデザイン幅の比率 */
    --variable: calc(100vw / var(--pc-width)); /* 画面幅に基づく可変値 */
  }
}
/* SP画面幅 767px以下 可変 */
@media (max-width: 767px) {
  #MO251120HOLIDAY {
    --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: 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-blur-zoom-load {
  filter: blur(10px);
  transform: scale(1.02);
  opacity: 0;
  transition: filter 1s, opacity 1s, transform 1s;
}

.js-blur-zoom-load.js-active {
  filter: blur(0);
  transform: scale(1);
  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-blur-zoom {
  filter: blur(10px);
  transform: scale(1.02);
  opacity: 0;
  transition: filter 1s, opacity 1s, transform 1s;
}

.js-blur-zoom.js-active {
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
}

.footer {
  padding: 0;
}

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

.footer .footer-inner {
  position: relative;
}

#MO251120HOLIDAY {
  margin: 0 auto;
  padding: 0 0 0 0;
  color: #000000;
  font-weight: 400;
  letter-spacing: 0.05em;
  /* メインビジュアル */
}
#MO251120HOLIDAY .contents__right {
  background-color: #fff;
}
#MO251120HOLIDAY .contents__bottom {
  padding-bottom: calc(200 * var(--formula));
}
#MO251120HOLIDAY .product__block--mv {
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}
#MO251120HOLIDAY .product__block--mv a {
  display: block;
}
#MO251120HOLIDAY .product__block--mv video {
  width: 100%;
}
#MO251120HOLIDAY #mvVisual {
  position: relative;
}
#MO251120HOLIDAY #mvVideo {
  width: 100%;
}
#MO251120HOLIDAY #togglemvSound {
  cursor: pointer;
}
#MO251120HOLIDAY #togglemvSound {
  display: block;
  width: calc(60 * var(--formula));
  height: calc(60 * var(--formula));
  cursor: pointer;
  background-size: 100% auto;
  position: absolute;
  right: calc(20 * var(--formula));
  bottom: calc(20 * var(--formula));
  z-index: 1;
  box-sizing: border-box;
  padding: 0;
}
#MO251120HOLIDAY #togglemvSound .soundOff {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/sound_off.svg) no-repeat;
  width: calc(45 * var(--formula));
  height: calc(45 * var(--formula));
}
#MO251120HOLIDAY #togglemvSound .soundON {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/sound_on.svg) no-repeat;
  width: calc(45 * var(--formula));
  height: calc(45 * var(--formula));
}
#MO251120HOLIDAY .intro {
  margin: 0 auto;
  padding: calc(79 * var(--formula)) 0 0 0;
  text-align: center;
  z-index: 1;
  position: relative;
}
#MO251120HOLIDAY .intro .intro__title {
  font-family: var(--font-mincho);
  font-size: calc(44 * var(--formula));
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.8636363636;
  text-align: center;
}
#MO251120HOLIDAY .intro .intro__lead {
  margin: calc(55 * var(--formula)) 0 0 0;
  font-family: var(--font);
  font-size: calc(25 * var(--formula));
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;
}
#MO251120HOLIDAY .product__block {
  width: calc(750 * var(--formula));
  margin: 0 auto;
}
#MO251120HOLIDAY .product__block .product__image-wrap {
  margin: calc(148 * var(--formula)) 0 0 0;
  position: relative;
}
#MO251120HOLIDAY .product__block .product__image-wrap.product__image-wrap--01 {
  margin: calc(115 * var(--formula)) 0 0 0;
}
#MO251120HOLIDAY .product__block .product__image-wrap.product__image-wrap--01::before {
  display: block;
  content: "";
  position: absolute;
  top: calc(240 * var(--formula));
  width: calc(750 * var(--formula));
  height: calc(1000 * var(--formula));
  background-image: url(../img/bg_01.jpg);
  background-size: cover;
}
#MO251120HOLIDAY .product__block .product__image-wrap.product__image-wrap--02 {
  margin: calc(128 * var(--formula)) 0 0 0;
}
#MO251120HOLIDAY .product__block .product__image-wrap.product__image-wrap--03 {
  margin: calc(132 * var(--formula)) 0 0 0;
}
#MO251120HOLIDAY .product__block .product__image-wrap.product__image-wrap--03::before {
  display: block;
  content: "";
  position: absolute;
  top: calc(400 * var(--formula));
  width: calc(750 * var(--formula));
  height: calc(1000 * var(--formula));
  background-image: url(../img/bg_03.jpg);
  background-size: cover;
}
#MO251120HOLIDAY .product__block .product__image-wrap.product__image-wrap--04 {
  margin: calc(126 * var(--formula)) 0 0 0;
}
#MO251120HOLIDAY .product__block .product__image-wrap.product__image-wrap--05 {
  margin: calc(131 * var(--formula)) 0 0 0;
}
#MO251120HOLIDAY .product__block .product__image-wrap.product__image-wrap--06 {
  margin: calc(127 * var(--formula)) 0 0 0;
}
#MO251120HOLIDAY .product__block .product__image-wrap.product__image-wrap--07 {
  margin: calc(128 * var(--formula)) 0 0 0;
}
#MO251120HOLIDAY .product__block .product__image-wrap.product__image-wrap--07::before {
  display: block;
  content: "";
  position: absolute;
  top: calc(400 * var(--formula));
  width: calc(750 * var(--formula));
  height: calc(1000 * var(--formula));
  background-image: url(../img/bg_07.jpg);
  background-size: cover;
}
#MO251120HOLIDAY .product__block .product__image-wrap.product__image-wrap--08 {
  margin: calc(125 * var(--formula)) 0 0 0;
}
#MO251120HOLIDAY .product__block .product__image {
  width: calc(750 * var(--formula));
  margin: calc(150 * var(--formula)) 0 0 auto;
  position: relative;
}
#MO251120HOLIDAY .product__block .product__image.product__image--01_1 {
  width: calc(700 * var(--formula));
  margin: 0 auto;
}
#MO251120HOLIDAY .product__block .product__image.product__image--01_2 {
  width: calc(615 * var(--formula));
  margin: calc(100 * var(--formula)) 0 0 0;
  z-index: 1;
}
#MO251120HOLIDAY .product__block .product__image.product__image--01_3 {
  width: calc(645 * var(--formula));
  margin: calc(-65 * var(--formula)) 0 0 auto;
}
#MO251120HOLIDAY .product__block .product__image.product__image--02_1 {
  width: calc(680 * var(--formula));
  margin: 0 0 0 auto;
  z-index: 1;
}
#MO251120HOLIDAY .product__block .product__image.product__image--02_2 {
  width: calc(600 * var(--formula));
  margin: calc(45 * var(--formula)) 0 0 0;
}
#MO251120HOLIDAY .product__block .product__image.product__image--03_1 {
  width: calc(640 * var(--formula));
  margin: 0 auto;
}
#MO251120HOLIDAY .product__block .product__image.product__image--03_2 {
  width: calc(640 * var(--formula));
  margin: calc(18 * var(--formula)) auto 0;
  z-index: 2;
}
#MO251120HOLIDAY .product__block .product__image.product__image--04_1 {
  width: calc(750 * var(--formula));
  margin: 0 0 0 0;
}
#MO251120HOLIDAY .product__block .product__image.product__image--04_2 {
  width: calc(580 * var(--formula));
  margin: calc(150 * var(--formula)) 0 0 0;
  z-index: 2;
}
#MO251120HOLIDAY .product__block .product__image.product__image--04_3 {
  width: calc(700 * var(--formula));
  margin: calc(-60 * var(--formula)) 0 0 auto;
}
#MO251120HOLIDAY .product__block .product__image.product__image--05_1 {
  width: calc(660 * var(--formula));
  margin: calc(150 * var(--formula)) 0 0 0;
}
#MO251120HOLIDAY .product__block .product__image.product__image--05_2 {
  width: calc(700 * var(--formula));
  margin: calc(80 * var(--formula)) 0 0 auto;
  z-index: 1;
}
#MO251120HOLIDAY .product__block .product__image.product__image--05_3 {
  width: calc(620 * var(--formula));
  margin: calc(-40 * var(--formula)) 0 0 0;
}
#MO251120HOLIDAY .product__block .product__image.product__image--06_1 {
  width: calc(660 * var(--formula));
  margin: 0 auto;
  z-index: 1;
}
#MO251120HOLIDAY .product__block .product__image.product__image--06_2 {
  width: calc(750 * var(--formula));
  margin: calc(-80 * var(--formula)) 0 0 auto;
}
#MO251120HOLIDAY .product__block .product__image.product__image--07_1 {
  width: calc(640 * var(--formula));
  margin: 0 0 0 0;
}
#MO251120HOLIDAY .product__block .product__image.product__image--07_2 {
  width: calc(600 * var(--formula));
  margin: calc(20 * var(--formula)) 0 0 auto;
}
#MO251120HOLIDAY .product__block .product__image.product__image--07_3 {
  width: calc(600 * var(--formula));
  margin: calc(15 * var(--formula)) 0 0 auto;
}
#MO251120HOLIDAY .product__block .product__image.product__image--08_1 {
  width: calc(750 * var(--formula));
  margin: 0 auto;
}
#MO251120HOLIDAY .product__block .product__image.product__image--08_2 {
  width: calc(600 * var(--formula));
  margin: calc(-47 * var(--formula)) auto 0;
}
#MO251120HOLIDAY .product__block .product__image.product__image--bottom {
  width: calc(480 * var(--formula));
  margin: calc(78 * var(--formula)) auto 0;
}
#MO251120HOLIDAY .product__block .product__creditWrap {
  display: flex;
  gap: calc(61 * var(--formula));
  margin: calc(30 * var(--formula)) 0 0 0;
}
#MO251120HOLIDAY .product__block .product__creditWrap.product__creditWrap--left {
  gap: calc(61 * var(--formula));
}
#MO251120HOLIDAY .product__block .product__creditWrap.product__creditWrap--right {
  gap: calc(78 * var(--formula));
  flex-direction: row-reverse;
}
#MO251120HOLIDAY .product__block .product__creditWrap--01 {
  margin: calc(32 * var(--formula)) 0 0 0;
  padding: 0 0 0 calc(25 * var(--formula));
  gap: calc(73 * var(--formula));
}
#MO251120HOLIDAY .product__block .product__creditWrap--02 {
  padding: 0 calc(82 * var(--formula)) 0 calc(38 * var(--formula));
}
#MO251120HOLIDAY .product__block .product__creditWrap--03 {
  margin: calc(35 * var(--formula)) 0 0 0;
  padding: 0 0 0 calc(115 * var(--formula));
  gap: calc(79 * var(--formula));
}
#MO251120HOLIDAY .product__block .product__creditWrap--04 {
  padding: 0 calc(50 * var(--formula)) 0 calc(50 * var(--formula));
  gap: calc(78 * var(--formula));
}
#MO251120HOLIDAY .product__block .product__creditWrap--05 {
  padding: 0 0 0 calc(40 * var(--formula));
  margin: calc(35 * var(--formula)) 0 0 0;
  gap: calc(77 * var(--formula));
}
#MO251120HOLIDAY .product__block .product__creditWrap--06 {
  margin: calc(33 * var(--formula)) 0 0 0;
  padding: 0 calc(65 * var(--formula)) 0 calc(75 * var(--formula));
}
#MO251120HOLIDAY .product__block .product__creditWrap--07 {
  margin: calc(38 * var(--formula)) 0 0 0;
  padding: 0 0 0 calc(90 * var(--formula));
  gap: calc(81 * var(--formula));
}
#MO251120HOLIDAY .product__block .product__creditWrap--08 {
  margin: calc(35 * var(--formula)) 0 0 0;
  padding: 0 calc(75 * var(--formula)) 0 calc(80 * var(--formula));
}
#MO251120HOLIDAY .product__block .product__creditNum {
  position: relative;
  display: grid;
  place-content: center;
  font-family: var(--font-en);
  font-size: calc(144 * var(--formula));
  font-weight: 300;
  letter-spacing: 0.025em;
  line-height: 1;
}
#MO251120HOLIDAY .product__block .product__creditNum::after {
  display: block;
  position: absolute;
  content: "";
  width: 1px;
  height: calc(106 * var(--formula));
  background-color: #000;
  top: calc(18 * var(--formula));
}
#MO251120HOLIDAY .product__block .product__creditNum.product__creditNum--01::after {
  left: calc(155 * var(--formula));
}
#MO251120HOLIDAY .product__block .product__creditNum.product__creditNum--02::after {
  right: calc(193 * var(--formula));
}
#MO251120HOLIDAY .product__block .product__creditNum.product__creditNum--03::after {
  left: calc(174 * var(--formula));
  top: calc(18 * var(--formula));
}
#MO251120HOLIDAY .product__block .product__creditNum.product__creditNum--04::after {
  right: calc(208 * var(--formula));
}
#MO251120HOLIDAY .product__block .product__creditNum.product__creditNum--05::after {
  left: calc(174 * var(--formula));
  top: calc(14 * var(--formula));
}
#MO251120HOLIDAY .product__block .product__creditNum.product__creditNum--06::after {
  right: calc(194 * var(--formula));
}
#MO251120HOLIDAY .product__block .product__creditNum.product__creditNum--07::after {
  left: calc(174 * var(--formula));
  top: calc(10 * var(--formula));
}
#MO251120HOLIDAY .product__block .product__creditNum.product__creditNum--08::after {
  top: calc(13 * var(--formula));
  right: calc(205 * var(--formula));
}
#MO251120HOLIDAY .product__block .product__credit {
  width: 100%;
  margin: 0 0 0 0;
  font-family: var(--font-credit);
  font-size: calc(23 * var(--formula));
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.7391304348;
  text-align: left;
  color: #000;
  position: relative;
  white-space: nowrap;
}
#MO251120HOLIDAY .product__block .product__credit--01 {
  margin: calc(10 * var(--formula)) 0 0 0;
}
#MO251120HOLIDAY .product__block .product__credit--02 {
  padding: calc(13 * var(--formula)) 0 0 0;
}
#MO251120HOLIDAY .product__block .product__credit--03 {
  margin: calc(28 * var(--formula)) 0 0 0;
}
#MO251120HOLIDAY .product__block .product__credit--04 {
  padding: calc(13 * var(--formula)) 0 0 0;
}
#MO251120HOLIDAY .product__block .product__credit--05 {
  padding: calc(28 * var(--formula)) 0 0 0;
}
#MO251120HOLIDAY .product__block .product__credit--06 {
  padding: calc(8 * var(--formula)) 0 0 0;
}
#MO251120HOLIDAY .product__block .product__credit--07 {
  padding: calc(7 * var(--formula)) 0 0 0;
}
#MO251120HOLIDAY .product__block .product__credit--08 {
  padding: calc(28 * var(--formula)) 0 0 0;
}
#MO251120HOLIDAY .product__block .product__credit a {
  display: inline-block;
  margin: 0 calc(18 * var(--formula)) 0 0;
  font-weight: 300;
}
#MO251120HOLIDAY .product__block--mv .mv-inner {
  width: 100%;
}
#MO251120HOLIDAY .product__block--mv .intro__image {
  width: 100%;
  position: relative;
  z-index: 0;
}
#MO251120HOLIDAY .product__block--mv .intro__image::after {
  display: block;
  position: absolute;
  content: "";
  background-image: url(../img/bg_text_shadow.png);
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
  top: 0;
  left: 0;
}
#MO251120HOLIDAY .product__block--mv .intro__text {
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  position: absolute;
  pointer-events: none;
  filter: drop-shadow(0px 0px 20px rgba(76, 76, 76, 0.2));
  z-index: 2;
}
#MO251120HOLIDAY .product__block--mv .intro__text picture {
  width: 100%;
  height: 100%;
}
#MO251120HOLIDAY .product__block--mv .intro__text img {
  width: 100%;
  height: 100%;
}
#MO251120HOLIDAY .product__block--intro {
  position: relative;
  z-index: 0;
}
#MO251120HOLIDAY .product__block--intro .product__block-inner {
  width: 100%;
}
#MO251120HOLIDAY .product__block--01 {
  position: relative;
  z-index: 1;
}
#MO251120HOLIDAY .product__block--02 {
  text-align: center;
  margin: calc(150 * var(--formula)) auto 0;
  position: relative;
  z-index: 2;
}
#MO251120HOLIDAY .product__block--02 .product__image-wrap {
  margin: calc(127 * var(--formula)) 0 0 0;
}
#MO251120HOLIDAY .product__block--02 .product__credit {
  margin: calc(35 * var(--formula)) auto 0;
  left: calc(6 * var(--formula));
  text-align: center;
}
#MO251120HOLIDAY .lp__bottom-area {
  padding: 0 0 calc(316 * var(--formula)) 0;
}
#MO251120HOLIDAY .lp__bottom-area .product__title--bottom {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  text-align: center;
  font-family: var(--font-en);
  font-size: calc(68 * var(--formula));
  letter-spacing: -0.02em;
  line-height: 1;
  margin: calc(134 * var(--formula)) 0 0 0;
  padding: calc(20 * var(--formula)) 0 calc(30 * var(--formula));
}
#MO251120HOLIDAY .lp__bottom-area .product__lead {
  margin: calc(74 * var(--formula)) 0 0 0;
  font-family: var(--font);
  font-size: calc(24 * var(--formula));
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;
}
#MO251120HOLIDAY .lp__bottom-area .store__info {
  margin: calc(70 * var(--formula)) 0 0 0;
  text-align: center;
}
#MO251120HOLIDAY .lp__bottom-area .store__info .store__infoHeadding {
  display: inline-block;
  border-bottom: 1px solid #000;
  font-size: calc(22 * var(--formula));
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
}
#MO251120HOLIDAY .lp__bottom-area .store__info .store__lineup {
  margin: calc(32 * var(--formula)) 0 0 0;
  font-size: calc(24 * var(--formula));
  font-feature-settings: "palt";
  letter-spacing: 0.07em;
  line-height: 2;
  text-align: center;
}
#MO251120HOLIDAY .lp__bottom-area .store__info .store__attention {
  margin: calc(25 * var(--formula)) 0 0 0;
  font-size: calc(21 * var(--formula));
  font-feature-settings: "palt";
  letter-spacing: 0.07em;
  line-height: 2;
  text-align: center;
}
#MO251120HOLIDAY .lp__bottom-area .prof__area {
  margin: calc(180 * var(--formula)) 0 0 0;
  text-align: center;
}
#MO251120HOLIDAY .lp__bottom-area .prof__area .prof__infoHeadding {
  padding: calc(10 * var(--formula)) 0 calc(13 * var(--formula));
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  text-align: center;
  font-family: var(--font-en);
  font-size: calc(45 * var(--formula));
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 0 0;
}
#MO251120HOLIDAY .lp__bottom-area .prof__area .prof__name {
  margin: calc(62 * var(--formula)) 0 0 0;
  font-size: calc(24 * var(--formula));
  font-feature-settings: "palt";
  letter-spacing: 0.07em;
  line-height: 2;
  text-align: center;
}
#MO251120HOLIDAY .lp__bottom-area .prof__area .prof__name ._jp {
  display: block;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-family: var(--font);
  font-size: calc(34 * var(--formula));
}
#MO251120HOLIDAY .lp__bottom-area .prof__area .prof__name ._en {
  display: block;
  margin: calc(18 * var(--formula)) 0 0 0;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: var(--font-en);
  font-size: calc(24 * var(--formula));
}
#MO251120HOLIDAY .lp__bottom-area .prof__area .prof__lead {
  margin: calc(37 * var(--formula)) 0 0 0;
  font-size: calc(23 * var(--formula));
  font-feature-settings: "palt";
  letter-spacing: 0.07em;
  line-height: 2;
  text-align: center;
}
#MO251120HOLIDAY .lp__bottom-area .prof__area .link__insta {
  display: inline-block;
  margin: calc(27 * var(--formula)) 0 0 0;
  padding: 0 0 0 calc(60 * var(--formula));
  line-height: 1;
  font-family: var(--font-en);
  font-size: calc(24 * var(--formula));
  position: relative;
}
#MO251120HOLIDAY .lp__bottom-area .prof__area .link__insta::after {
  display: block;
  position: absolute;
  content: "";
  background-image: url(../img/icon_insta.svg);
  width: calc(26 * var(--formula));
  height: calc(26 * var(--formula));
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
  top: calc(0 * var(--formula));
  left: calc(26 * var(--formula));
}
#MO251120HOLIDAY .button__all {
  display: block;
  width: calc(675 * var(--formula));
  height: calc(118 * var(--formula));
  margin: calc(136 * var(--formula)) auto 0;
  font-size: calc(28 * var(--formula));
  letter-spacing: 0.06em;
  line-height: calc(118 * var(--formula));
  text-align: center;
  white-space: nowrap;
  position: relative;
  border: 1px solid #000;
}
#MO251120HOLIDAY .button__all span {
  padding: 0 calc(20 * var(--formula)) 0 0rem;
  position: relative;
  top: calc(-3 * var(--formula));
}
#MO251120HOLIDAY .button__all span::after {
  position: absolute;
  content: "";
  display: block;
  border-top: calc(10 * var(--formula)) solid transparent;
  border-bottom: calc(10 * var(--formula)) solid transparent;
  border-left: calc(13 * var(--formula)) solid #000;
  left: auto;
  right: calc(-10 * var(--formula));
  top: calc(8 * var(--formula));
}
#MO251120HOLIDAY .staff__area {
  margin: calc(90 * var(--formula)) 0 0 calc(0 * var(--formula));
  padding: calc(98 * var(--formula)) 0 0 calc(0 * var(--formula));
  text-align: center;
  border-top: 1px solid #000;
}
#MO251120HOLIDAY .staff__area .staff__title {
  font-family: var(--font-en);
  font-size: calc(26 * var(--formula));
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
}
#MO251120HOLIDAY .staff__area .staff__name {
  margin: calc(18 * var(--formula)) 0 0 0;
  font-family: var(--font-credit);
  font-size: calc(23 * var(--formula));
  font-weight: 300;
  font-feature-settings: "palt";
  line-height: 2.0869565217;
  letter-spacing: 0.05em;
}
#MO251120HOLIDAY .logo__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: calc(207 * var(--formula));
  margin: calc(42 * var(--formula)) auto 0;
}
#MO251120HOLIDAY .logo__bottom .logo__magazine {
  width: calc(90 * var(--formula));
}
#MO251120HOLIDAY .logo__bottom .logo__text {
  font-size: calc(23 * var(--formula));
  line-height: 1;
  letter-spacing: 0.02em;
  padding: calc(3 * var(--formula)) 0 0 0;
}

@media only screen and (min-width: 768px) {
  .header {
    background-color: #fff;
  }
  #Foot {
    width: 100%;
    background-color: #fff;
  }
  .txt-box {
    background-color: #fff;
    position: relative;
    z-index: 0;
    margin: 0;
  }
  .brandtxt {
    padding: 24px 0 18px !important;
    margin: 0 !important;
  }
  .bredlist.lp {
    width: 100%;
    display: block;
    background-color: #fff;
    margin: 0 auto;
    padding: 0;
    max-width: 100%;
    min-width: 100%;
    position: relative;
    z-index: 1;
  }
  .bredlist.lp .bredlist_inner {
    padding: 20px 0;
    margin: 0 auto;
    min-width: auto;
    max-width: 120rem;
    font-size: 10px;
    background-color: #fff;
    position: relative;
    z-index: 1;
  }
  #MO251120HOLIDAY {
    width: 100%;
    /*background-size: calc(1440 * var(--formula_pc));*/
    overflow-x: clip;
    position: relative;
  }
  #MO251120HOLIDAY .lp_bg {
    position: fixed;
    display: block;
    background-image: url(../img/pc_bg.jpg);
    background-size: cover;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 0;
  }
  #MO251120HOLIDAY::-webkit-scrollbar {
    display: none;
  }
  #MO251120HOLIDAY .contents__wrap {
    display: grid;
    width: calc(1400 * var(--formula_pc));
    grid-template-columns: calc(140 * var(--formula_pc)) calc(560 * var(--formula_pc)) calc(560 * var(--formula_pc)) calc(140 * var(--formula_pc));
    margin: 0 auto;
  }
  #MO251120HOLIDAY .contents__left {
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
    grid-column: 2;
    grid-row: 1;
  }
  #MO251120HOLIDAY .contents__right {
    position: relative;
    overflow: hidden;
    background-color: #fff;
    grid-column: 3;
    grid-row: 1;
  }
  #MO251120HOLIDAY .product__block--mv {
    width: auto;
    height: 100svh;
    overflow: hidden;
  }
  #MO251120HOLIDAY .product__block--mv a {
    width: 100%;
    height: 100vh;
  }
  #MO251120HOLIDAY .product__block--mv #mvVideo {
    width: 100%;
    height: 100vh;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    object-fit: cover;
  }
  #MO251120HOLIDAY .product__block--mv .mv-inner {
    width: 100%;
    height: 100%;
  }
  #MO251120HOLIDAY .product__block--mv .intro__image {
    width: 100%;
    height: 100%;
  }
  #MO251120HOLIDAY .product__block--mv .intro__image a {
    display: block;
    width: 100%;
    height: 100%;
  }
  #MO251120HOLIDAY .product__block--mv .intro__image picture {
    width: 100%;
    height: 100%;
  }
  #MO251120HOLIDAY .product__block--mv .intro__image .intro__text {
    width: 100%;
    height: auto;
    bottom: 0;
    left: 0;
  }
  #MO251120HOLIDAY .product__block--mv .intro__image .intro__text img {
    width: 100%;
    height: 100%;
  }
  #MO251120HOLIDAY .product__block--mv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
}
@media only screen and (max-width: 767px) {
  .footer {
    z-index: 100;
    position: relative;
  }
  .footer .page-top {
    margin: 0;
    position: absolute;
    top: calc(-120 * (100vw/750));
    right: calc(30 * (100vw/750));
  }
  .contents__right {
    width: calc(750 * var(--formula));
    overflow-x: clip;
  }
}
@media (min-width: 1401px) {
  #MO250507VERY .product__block--mv .intro__text img {
    width: 100%;
    height: auto;
  }
  #MO250507VERY .product__block {
    margin: 0 auto;
  }
  #MO250507VERY .product__block--02 {
    margin: calc(150 * var(--formula)) auto 0;
  }
}/*# sourceMappingURL=style.css.map */