@charset "UTF-8";

/* ===============================================### 
可変設定
###=============================================== */
.lp_variable {
  /*デザインの値*/
  --pc-width: 1400;/*PCデザイン幅*/
  --sp-width: 750;/*SPデザイン幅*/
  --pc-artboard-width: 500;/*SP共通デザイン幅*/
  --sp-artboard-width: 750;/*PC共通デザイン幅*/
  /*可変率の計算式*/
  --formula: calc(var(--variable) * var(--ratio));/*SP,PC共通箇所の可変割合の計算式*/
  --formula_pc: calc(var(--variable) * 1);/*PCデザインの可変割合の計算式*/
}

/* PC画面幅 1400px以上 固定 */
@media (min-width: 1401px) {
  .lp_variable {
  --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width)); /* PCとSPのデザイン幅の比 */
  --variable: 1px; /* 固定値（可変しない） */
  }
}

/* PC画面幅 768～1400px 可変 */
@media (min-width: 768px) and (max-width: 1400px) {
  .lp_variable {
  --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width)); /* PCとSPのデザイン幅の比 */
  --variable: calc(100vw / var(--pc-width)); /* 画面幅に基づく可変値 */
  }
}

/* SP画面幅 767px以下 可変 */
@media (max-width: 767px) {
  .lp_variable {
  --ratio: 1; /* 比率は1（変わらない） */
  --variable: calc(100vw / var(--sp-width)); /* 画面幅に基づく可変値 */
  }
}


/* ===============================================### 
初期設定
###=============================================== */
.em25051410off{
  --font-ja:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "Open Sans", "メイリオ", sans-serif;
  --font-en: "pragmatica", sans-serif;
  --font-en02: "operetta-18", serif;
  font-weight: 400;
  font-style: normal;
  --color-black: #000000;
  color: #000000;
}

.em25051410off img,
.em25051410off video{
  width: 100%;
  height: auto;
}


/* ===========### PC用設定 ###=========== */
@media screen and (min-width: 768px) {
  .main-area{
    overflow-x: visible!important;
  }

  #footer_emmi{
    margin-top: 0;
  }

  .em25051410off .pc-visible{
    display: block;
  }

  .em25051410off .sp-visible{
    display: none;
  }
}

/* ===========### SP用設定 ###=========== */
@media screen and (max-width: 767px) {
  #footer_emmi{
    padding-top: 0;
  }

  .em25051410off{
    overflow: hidden;
  }
  
  .em25051410off .pc-visible{
    display: none;
  }

  .em25051410off .sp-visible{
    display: block;
  }
}


/* ===============================================### 
アニメーション設定
###=============================================== */
/************** fade **************/
.em25051410off .js-fade-in {
  opacity: 0;
  transition: opacity 1s ease;
}

.em25051410off .js-fade-in.show {
  opacity: 1;
}

/************** side-text **************/
.em25051410off .side-text {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: calc(38 * var(--formula));
  z-index: 20;
  pointer-events: none;
}

.em25051410off .side-text__image{
  width: calc(47 * var(--formula));
}

.em25051410off .js-side-text {
  opacity: 0;
  visibility: hidden;
  /* transition: opacity 1s ease; */
  transition: opacity 1.1s ease-in-out, visibility 1.1s ease-in-out;
}

.em25051410off .js-side-text.show {
  opacity: 1;
  visibility: visible;
  /* transition: opacity 1s ease; */
  transition: opacity 1.1s ease-in-out, visibility 1.1s ease-in-out;
}

/* ===========### responsive ###=========== */
/* @media screen and (max-width: 767px) {
  .em25051410off .side-text {
    right: calc(26 * var(--formula));
  }

  .em25051410off .side-text__image{
    width: calc(18 * var(--formula));
  }
} */



/* ===============================================### 
コンテンツ共通設定
###=============================================== */
.em25051410off .content-common .content-inner{
  position: relative;
  width: 50rem;
  margin-inline: auto;
}

/************** text **************/
.em25051410off .credit{
  font-family: var(--font-en);
  font-weight: 300;
  line-height: 1.75;
  font-size: calc(22 * var(--formula));
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.em25051410off .credit a{
  display: inline-block;
}

/************** image **************/
.em25051410off .number__image{
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

/* ===========### responsive ###=========== */
/*** PC ***/
@media screen and (min-width: 768px) {
  .em25051410off .flex-wrapper{
    display: flex;
  }

  .em25051410off .left-area,
  .em25051410off .right-area{
    width: 50%;
  }

  .em25051410off .right-area{
    overflow: hidden;
  }

  .em25051410off .content-sticky{
    position: sticky;
    top: 0;

    width: 50vw;
    height: 100vh;
    z-index: 1;
  }
}

/*** SP ***/
@media screen and (max-width: 767px) {
  .em25051410off .content-common .content-inner{
    width: calc(750 * var(--formula));
  }
}


/* ===============================================### 
mv
###=============================================== */
.em25051410off .mv .video-inner{
  position: relative;
  width: 100%;
}

.em25051410off .mv .play-btn{
  cursor: pointer;
}

.em25051410off .mv .movie__button{
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: calc(100 * var(--formula));
}

.em25051410off .mv .play-btn.hidden .movie__button{
  display: none;
}

@media screen and (min-width: 768px) {
  .em25051410off .mv .video-wrap {
    height: 100vh;
    overflow: hidden;
    position: relative;
  }

  .em25051410off .mv .content__video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}


@media screen and (max-width: 767px) {
  .em25051410off .mv{
    position: relative;
  }

  .em25051410off .mv .content__video{
    width: calc(675 * var(--formula));
    margin-inline: auto;
  }

  .em25051410off .lp__title{
    position: absolute;
    bottom: calc(-60 * var(--formula));
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    font-family: var(--font-en02);
    font-weight: 400;
    font-size: calc(94 * var(--formula));
    text-align: center;
  }

  .em25051410off .lp__title span{
    font-size: calc(72 * var(--formula));
  }
}


/* ===============================================### 
left-area
###=============================================== */


/* ===============================================### 
right-area
###=============================================== */


/* ===============================================### 
lead__text
###=============================================== */
.em25051410off .lead__text{
  margin-top: calc(88 * var(--formula));
  font-family: var(--font-ja);
  font-size: calc(24 * var(--formula));
  line-height: 2;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  text-align: center;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .em25051410off .lead__text{
    margin-top: calc(131 * var(--formula));
  }
}



/* ===============================================### 
コンテンツ01
###=============================================== */
.em25051410off .content01{
  margin-top: calc(127 * var(--formula));
}

.em25051410off .content01 .content-inner{
  position: relative;
}

.em25051410off .content01 .content__item01{
}

.em25051410off .content01 .content__item02{
  margin-top: calc(24 * var(--formula));
  overflow: hidden;
}

.em25051410off .content01 .infinite-center-slide{
  width: 100%;
}

.em25051410off .content01 .infinite-center-slide .swiper-slide{
  width: calc(450 * var(--formula))!important;
}

/************** text **************/
.em25051410off .content01 .credit{
  margin-top: calc(34 * var(--formula));
  text-align: center;
}

/*** クレジット微調整 ***/
.em25051410off .content01 .credit a:nth-of-type(2){
  margin-left: calc(13 * var(--formula));
}

/************** image **************/
.em25051410off .content01 .number__image{
  top: calc(-43 * var(--formula));
  right: calc(70 * var(--formula));
  width: calc(105 * var(--formula));
}

.em25051410off .content01 .content__item01 .content__image{
  width: calc(700 * var(--formula));
  margin-inline: auto;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .em25051410off .content01 .credit{
    margin-top: calc(33 * var(--formula));
  }
}


/* ===============================================### 
コンテンツ02
###=============================================== */
.em25051410off .content02{
  margin-top: calc(152 * var(--formula));
}

.em25051410off .content02 .content__item01{
}

.em25051410off .content02 .content__item02{
  position: relative;
  width: fit-content;
  margin-top: calc(25 * var(--formula));
  margin-left: calc(25 * var(--formula));
}

.em25051410off .content02 .fade-slide{
  width: calc(490 * var(--formula))
}

/************** text **************/
.em25051410off .content02 .credit{
  position: absolute;
  bottom: calc(25 * var(--formula));
  left: calc(460 * var(--formula));
  z-index: 1;
}

/************** image **************/
.em25051410off .content02 .number__image{
  top: calc(-3 * var(--formula));
  left: calc(1 * var(--formula));
  width: calc(176 * var(--formula));
}

.em25051410off .content02 .content__item01 .content__image{
  width: calc(750 * var(--formula));
  margin-inline: auto;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .em25051410off .content02 .credit{
    bottom: calc(21 * var(--formula));
    line-height: 1.8;
  }
}



/* ===============================================### 
コンテンツ03
###=============================================== */
.em25051410off .content03{
  margin-top: calc(160 * var(--formula));
}

.em25051410off .content03 .content__item01{
}

.em25051410off .content03 .content__item02{
  margin-top: calc(24 * var(--formula));
}

/************** text **************/
.em25051410off .content03 .credit{
  margin-top: calc(35 * var(--formula));
  text-align: center;
}

/*** クレジット微調整 ***/
.em25051410off .content03 .credit a:nth-of-type(2),
.em25051410off .content03 .credit a:nth-of-type(5){
  margin-left: calc(10 * var(--formula));
}

/************** image **************/
.em25051410off .content03 .number__image{
  top: calc(-40 * var(--formula));
  right: calc(18 * var(--formula));;
  width: calc(119 * var(--formula));
}

.em25051410off .content03 .content__image{
  width: calc(575 * var(--formula));
  margin-inline: auto;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
    .em25051410off .content03{
    margin-top: calc(162 * var(--formula));
  }
}



/* ===============================================### 
コンテンツ04
###=============================================== */
.em25051410off .content04{
  margin-top: calc(153 * var(--formula));
}

.em25051410off .content04 .content__item01{
}

/************** text **************/
.em25051410off .content04 .credit{
  margin-top: calc(34 * var(--formula));
  text-align: center;
}

/*** クレジット微調整 ***/
.em25051410off .content04 .credit a:nth-of-type(2),
.em25051410off .content04 .credit a:nth-of-type(3),
.em25051410off .content04 .credit a:nth-of-type(5){
  margin-left: calc(10 * var(--formula));
}

/************** image **************/
.em25051410off .content04 .number__image{
  bottom: calc(109 * var(--formula));
  left: calc(30 * var(--formula));
  width: calc(187 * var(--formula));
}

.em25051410off .content04 .content__image{
  width: calc(750 * var(--formula));
  margin-inline: auto;
}



/* ===============================================### 
コンテンツ05
###=============================================== */
.em25051410off .content05{
  margin-top: calc(152 * var(--formula));
}

.em25051410off .content05 .content__item01{
  margin-left: calc(100 *var(--formula));
}

.em25051410off .content05 .content__item02{
  position: relative;
  width: fit-content;
  margin-top: calc(25 * var(--formula));
}

/************** text **************/
.em25051410off .content05 .credit{
  position: absolute;
  bottom: calc(22 * var(--formula));
  left: calc(501 * var(--formula));
  z-index: 1;
  line-height: 1.8;
}

/************** image **************/
.em25051410off .content05 .number__image{
  top: calc(-42 * var(--formula));
  right: calc(43 * var(--formula));
  width: calc(117 * var(--formula));
}

.em25051410off .content05 .content__item01 .content__image{
  width: calc(650 * var(--formula));
}

.em25051410off .content05 .content__item02 .content__image{
  width: calc(530 * var(--formula));
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .em25051410off .content05 .credit{
    bottom: calc(21 * var(--formula));
  }
}


/* ===============================================### 
コンテンツ06
###=============================================== */
.em25051410off .content06{
  margin-top: calc(160 * var(--formula));
}

.em25051410off .content06 .content__item01{
}

/************** text **************/
.em25051410off .content06 .credit{
  margin-top: calc(33 * var(--formula));
  text-align: center;
}

/*** クレジット微調整 ***/
.em25051410off .content06 .credit a:nth-of-type(2){
  margin-left: calc(14 * var(--formula));
}

/************** image **************/
.em25051410off .content06 .number__image{
  bottom: calc(69 * var(--formula));
  right: calc(23 * var(--formula));
  width: calc(181 * var(--formula));
}

.em25051410off .content06 .content__image{
  width: calc(700 * var(--formula));
  margin-inline: auto;
}



/* ===============================================### 
コンテンツ07
###=============================================== */
.em25051410off .content07{
  margin-top: calc(150 * var(--formula));
}

.em25051410off .content07 .content__item01{
}

.em25051410off .content07 .infinite-slide{
  width: 100%;
  overflow: hidden;
}

.em25051410off .content07 .infinite-slide .swiper-slide{
  width: calc(600 * var(--formula))!important;
}

/************** text **************/
.em25051410off .content07 .credit{
  margin-top: calc(35 * var(--formula));
  margin-left: calc(39 * var(--formula));
}

/*** クレジット微調整 ***/
.em25051410off .content07 .credit a:nth-of-type(2){
  margin-left: calc(15 * var(--formula));
}

/************** image **************/
.em25051410off .content07 .number__image{
  top: calc(-40 * var(--formula));
  left: calc(14 * var(--formula));
  width: calc(121 * var(--formula));
  z-index: 2;
}

.em25051410off .content07 .content__image{
}



/* ===============================================### 
コンテンツ08
###=============================================== */
.em25051410off .content08{
  margin-top: calc(150 * var(--formula));
}

.em25051410off .content08 .content__item01{
  margin-left: calc(110 * var(--formula));
}

.em25051410off .content08 .content__item02{
  position: relative;
  width: fit-content;
  margin-top: calc(25 * var(--formula));
  margin-left: calc(25 * var(--formula));
}

.em25051410off .content08 .fade-slide{
  width: calc(640 * var(--formula))
}

/************** text **************/
.em25051410off .content08 .credit{
  position: absolute;
  bottom: calc(22 * var(--formula));
  left: calc(490 * var(--formula));
  z-index: 1;
}

/************** image **************/
.em25051410off .content08 .number__image{
  top: calc(773 * var(--formula));
  left: calc(130 * var(--formula));
  width: calc(178 * var(--formula));
  z-index: 2;
}

.em25051410off .content08 .content__item02 .content__image{
  width: calc(520 * var(--formula));
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .em25051410off .content08{
    margin-top: calc(152 * var(--formula));
  }

  .em25051410off .content08 .credit{
    bottom: calc(23 * var(--formula));
  }
}




/* ===============================================### 
コンテンツ09
###=============================================== */
.em25051410off .content09{
  margin-top: calc(160 * var(--formula));
  margin-bottom: calc(145 * var(--formula));
}

.em25051410off .content09 .content__item01{
  position: relative;
  width: fit-content;
  margin-inline: auto;
}

.em25051410off .content09 .content__item02{
  margin-top: calc(120 * var(--formula));
}

/************** text **************/
.em25051410off .content09 .credit{
  margin-top: calc(33 * var(--formula));
  text-align: center;
}

.em25051410off .content09 .credit a:nth-of-type(2){
  margin-left: calc(10 * var(--formula));
}

.em25051410off .content09 .staff__text{
  margin-top: calc(105 * var(--formula));
  font-family: var(--font-en);
  font-size: calc(22 * var(--formula));
  font-weight: 300;
  line-height: 2.2;
  font-feature-settings: "pwid";
  letter-spacing: 0.05em;
  text-align: center;
}

/************** image **************/
.em25051410off .content09 .number__image{
  bottom: calc(50 * var(--formula));
  left: calc(50 * var(--formula));
  width: calc(178 * var(--formula));
}

.em25051410off .content09 .text__image{
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.em25051410off .content09 .text__image.image01{
  top: calc(-24 * var(--formula));
  right: calc(-80 * var(--formula));
  width: calc(332 * var(--formula));
}

.em25051410off .content09 .text__image.image02{
  bottom: calc(125 * var(--formula));
  left: calc(-77 * var(--formula));
  width: calc(367 * var(--formula));
}

/*** safari用設定 ***/
_::-webkit-full-page-media, _:future, :root .em25051410off .content09 .text__image.image01 {
  width: calc(1328 * var(--formula));
  transform: scale(0.25);
  transform-origin: right top;
}

_::-webkit-full-page-media, _:future, :root .em25051410off .content09 .text__image.image02 {
  width: calc(1468 * var(--formula));
  transform: scale(0.25);
  transform-origin: left bottom;
}

.em25051410off .content09 .content__item01 .content__image{
  width: calc(525 * var(--formula));
  margin-inline: auto;
}

/************** button **************/
.em25051410off .link__button{
  width: calc(560 * var(--formula));
  height: calc(110 * var(--formula));
  margin-inline: auto;
  border: 0.1rem solid var(--color-black);
}

.em25051410off .link__button a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-family: var(--font-en02);
  font-weight: 300;
  font-size: calc(56 * var(--formula));
  font-feature-settings: "palt";
  letter-spacing: 0.03em;
}


/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .em25051410off .content09 .content__item02{
    margin-top: calc(124 * var(--formula));
  }
}