@charset "UTF-8";

/* ===============================================### 
共通設定
###=============================================== */
.em241122ON{
  --font-ja:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "Open Sans", "メイリオ", sans-serif;
  --font-en: "pragmatica", sans-serif;
  --color-gray: #CED4D7;
  --color-black: #2E2E2E;
  --color-blue: rgba(42, 45, 99, 0.8);
  /* --color-blue: #2A3663; */
  overflow: hidden;
}

:where(.em241122ON) img{
  width: 100%;
  height: auto;
}

/* ===========### PC版用設定 ###=========== */
@media (max-width: 1400px) and (min-width: 768px) {
  html {
    font-size: calc(10 * (100vw / 1400));
  }
}
@media screen and (min-width: 767px) {
  #footer_emmi {
    margin-top: 127px;
  }

  .pc-visible{
    display: block;
  }

  .sp-visible{
    display: none;
  }

  .em241122ON .image-bg{
    background-color: #fff;
  }

  .em241122ON .image-bg a:hover{
    opacity: 0.7;
  }
}

/* ===========### SP版用設定 ###=========== */
@media screen and (max-width: 767px) {
  html {
    font-size: calc(10 * (100vw/750));
  }

  #footer_emmi {
    margin-top: 0;
    padding-top: calc(149 * (100vw / 750));
  }

  .pc-visible{
    display: none;
  }

  .sp-visible{
    display: block;
  }
}


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

/*** 微調整 ***/
.em241122ON .js-fade-in-grid .fade-delay01,
.em241122ON .js-fade-in-grid .fade-delay02,
.em241122ON .js-fade-in-grid .fade-delay03,
.em241122ON .js-fade-in-grid .fade-delay04{
  opacity: 0;
  transition: ease-in, opacity 1s;
}

.em241122ON .js-fade-in-grid.show .fade-delay01{
  opacity: 1;
}

.em241122ON .js-fade-in-grid.show .fade-delay02 {
  opacity: 1;
  transition-delay: 0.5s;
}

.em241122ON .js-fade-in-grid.show .fade-delay03 {
  opacity: 1;
  transition-delay: 0.8s;
}

.em241122ON .js-fade-in-grid.show .fade-delay04 {
  opacity: 1;
  transition-delay: 1.2s;
}

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

.em241122ON .js-fade-up {
  opacity: 0;
  transform: translateY(5%);
  transition: ease-in, opacity 1s, transform 1s;
}

.em241122ON .js-fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.em241122ON .js-fade-in-rtl {
  opacity: 0;
  transform: translateX(5%);
  transition: ease-in, opacity 1s, transform 1s;
}

.em241122ON .js-fade-in-rtl.show {
  opacity: 1;
  transform: translateX(0);
}

.em241122ON .js-fade-in-ltr {
  opacity: 0;
  transform: translateX(-5%);
  transition: ease-in, opacity 1s, transform 1s;
}

.em241122ON .js-fade-in-ltr.show {
  opacity: 1;
  transform: translateX(0);
}


/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  /************** fade **************/
  .em241122ON .js-fade-in {
    opacity: 0;
    transition: ease-in, opacity 1s;
  }

  /*** 微調整 ***/
  .em241122ON .js-fade-in-grid .fade-delay01,
  .em241122ON .js-fade-in-grid .fade-delay02,
  .em241122ON .js-fade-in-grid .fade-delay03,
  .em241122ON .js-fade-in-grid .fade-delay04{
    opacity: 0;
    transition: ease-in, opacity 1s;
  }

  .em241122ON .js-fade-in-grid.show .fade-delay01{
    opacity: 1;
  }

  .em241122ON .js-fade-in-grid.show .fade-delay02 {
    opacity: 1;
    transition-delay: 0.5s;
  }

  .em241122ON .js-fade-in-grid.show .fade-delay03 {
    opacity: 1;
    transition-delay: 0.8s;
  }

  .em241122ON .js-fade-in-grid.show .fade-delay04 {
    opacity: 1;
    transition-delay: 1.2s;
  }

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

  .em241122ON .js-fade-up {
    opacity: 0;
    transform: translateY(5%);
    transition: ease-in, opacity 1s, transform 1s;
  }

  .em241122ON .js-fade-up.show {
    opacity: 1;
    transform: translateY(0);
  }

  .em241122ON .js-fade-in-rtl {
    opacity: 0;
    transform: translateX(5%);
    transition: ease-in, opacity 1s, transform 1s;
  }

  .em241122ON .js-fade-in-rtl.show {
    opacity: 1;
    transform: translateX(0);
  }

  .em241122ON .js-fade-in-ltr {
    opacity: 0;
    transform: translateX(-5%);
    transition: ease-in, opacity 1s, transform 1s;
  }

  .em241122ON .js-fade-in-ltr.show {
    opacity: 1;
    transform: translateX(0);
  }
}



/* ===============================================### 
MV
###=============================================== */
.em241122ON .mv{

}

.em241122ON .mv .content-inner{
  width: 100rem;
  margin-top: 5.9rem;
  margin-inline: auto;
}

/************** text **************/
.em241122ON .mv__text{
  margin-top: 5.8rem;
  font-family: var(--font-ja);
  font-size: 1.4rem;
  line-height: 2;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--color-black);
}

/************** image **************/
.em241122ON .mv__image{
  width: 100%;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .em241122ON .mv .content-inner{
    width: calc(750 * (100vw / 750));
    margin-top: calc(78 * (100vw / 750));
  }

  /************** text **************/
  .em241122ON .mv__text{
    margin-top: calc(88 * (100vw / 750));
    font-size: calc(24 * (100vw / 750));
  }
}



/* ===============================================### 
コンテンツ共通設定
###=============================================== */
.em241122ON .section-inner{
  position: relative;
}

.em241122ON .flex-wrapper{
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.em241122ON a{
  display: block;
}

/************** slide **************/
.em241122ON .slick-dotted.slick-slider{
  margin-bottom: 0;
}

.em241122ON .slick-dots{
  width: fit-content;
}

.em241122ON .slick-dots li button:before{
  content: ''!important;
  width: 0.7rem!important;
  height: 0.7rem!important;
  border-radius: 50%;
}

.em241122ON .slick-dots li{
  display: inline-block;
  width: 0.7rem!important;
  height: 0.7rem!important;
  border-radius: 50%;
  margin: 0 0.5rem!important;
}

.em241122ON .slick-dots li button{
  width: 0.7rem!important;
  height: 0.7rem!important;
  padding: 0;
  border-radius: 50%;
  border: 0.1rem solid var(--color-blue);
}

.em241122ON .slick-dots li.slick-active button:before{
  background-color: var(--color-blue);
  opacity: 1;
}

/*** ドット微調整 ***/
.em241122ON .section01 .section__item01 .slick-dots{
  bottom: inherit;
  top: 0.4rem;
  right: 0.7rem;
}

.em241122ON .section01 .section__item03 .slick-dots{
  bottom: 1rem;
  left: 0.8rem;
}

.em241122ON .section02 .slick-dots{
  top: 0.4rem;
  left: 0.8rem;
  bottom: inherit;
}

.em241122ON .section03 .slick-dots{
  top: 0.4rem;
  right: 0.8rem;
  bottom: inherit;
}

/************** text **************/
.em241122ON .credit{
  font-family: var(--font-en);
  font-size: 1.4rem;
  line-height: 1.85;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  color: #000;
  white-space: nowrap;
}

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

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

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .em241122ON .flex-wrapper{
    justify-content: space-between;
    align-items: end;
    flex-direction: column;
  }

  /************** slide **************/
  .em241122ON .slick-dots li button:before{
    width: calc(10 * (100vw / 750))!important;
    height: calc(10 * (100vw / 750))!important;
  }

  .em241122ON .slick-dots li{
    width: calc(10 * (100vw / 750))!important;
    height: calc(10 * (100vw / 750))!important;
    margin: 0 calc(9 * (100vw / 750))!important;
  }

  .em241122ON .slick-dots li button{
    width: calc(10 * (100vw / 750))!important;
    height: calc(10 * (100vw / 750))!important;
    border: calc(1 * (100vw / 750)) solid var(--color-blue);
  }

  /*** ドット微調整 ***/
  .em241122ON .section01 .section__item01 .slick-dots{
    top: calc(16 * (100vw / 750));
    right: calc(5 * (100vw / 750));
  }

  .em241122ON .section01 .section__item03 .slick-dots{
    bottom: calc(13 * (100vw / 750));
    left: calc(23 * (100vw / 750));
  }

  .em241122ON .section02 .slick-dots{
    top: calc(15 * (100vw / 750));
    left: calc(2 * (100vw / 750));
  }

  .em241122ON .section03 .slick-dots{
    top: calc(15 * (100vw / 750));
    right: calc(12 * (100vw / 750));
  }

  /************** text **************/
  .em241122ON .credit{
    font-size: calc(22 * (100vw / 750));
  }
}



/* ===============================================### 
モデル
###=============================================== */
.em241122ON .model_area{
  width: fit-content;
  margin-top: 5.2rem;
  margin-inline: auto;
}

.em241122ON .model__image{
  width: 30rem;
}

.em241122ON .link__text{
  width: 11.8rem;
  margin-top: 2rem;
  margin-left: 9.5rem;
  margin-right: auto;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .em241122ON .model_area{
    margin-top: calc(68 * (100vw / 750));
  }

  .em241122ON .model__image{
    width: calc(420 * (100vw / 750));
  }

  .em241122ON .link__text{
    width: calc(172 * (100vw / 750));
    margin-top: calc(39 * (100vw / 750));
    margin-left: calc(125 * (100vw / 750));
  }
}



/* ===============================================### 
セクション01
###=============================================== */
.em241122ON .section01{
  width: 100%;
  margin-top: 8rem;
  background-color: var(--color-gray);
}

.em241122ON .section01 .section-inner{
  width: 85rem;
  padding-top: 8rem;
  padding-bottom: 5.3rem;
  margin-inline: auto;
}

.em241122ON .section01 .slide-wrapper{
  width: 42rem;
}

/************** grid **************/
.em241122ON .section01 .grid-wrapper{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
}

/************** text **************/
.em241122ON .section01 .credit{
  margin-top: 2.5rem;
  text-align: center;
}

/*** 微調整 ***/
.em241122ON .section01 .credit02{
  margin-left: 0.7rem;
}

.em241122ON .section01 .credit04{
  margin-left: 0.5rem;
}

/************** image **************/
.em241122ON .section01 .section__text{
  width: 4.6rem;
}

.em241122ON .section01 .section__text.text01{
  top: 7.7rem;
  right: -4.7rem;
}

.em241122ON .section01 .section__text.text02{
  bottom: 12.6rem;
  left: -4.6rem;
}

.em241122ON .section01 .section__image{
  width: 42rem;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .em241122ON .section01{
    margin-top: calc(98 * (100vw / 750));
  }

  .em241122ON .section01 .section-inner{
    width: calc(770 * (100vw / 750));
    padding-top: calc(120 * (100vw / 750));
    padding-bottom: calc(109 * (100vw / 750));
  }

  .em241122ON .section01 .slide-wrapper{
    width: calc(390 * (100vw / 750));
  }

  /************** grid **************/
  .em241122ON .section01 .grid-wrapper{
    gap: calc(10 * (100vw / 750));
    margin-left: calc(-18 * (100vw / 750));
  }

  /************** text **************/
  .em241122ON .section01 .credit{
    margin-top: calc(31 * (100vw / 750));
    margin-left: calc(-16 * (100vw / 750));
    letter-spacing: 0;
  }

  /*** 微調整 ***/
  .em241122ON .section01 .credit02{
    margin-left: calc(10 * (100vw / 750));
  }

  .em241122ON .section01 .credit04{
    margin-left: calc(8 * (100vw / 750));
  }

  /************** image **************/
  .em241122ON .section01 .section__text{
    width: calc(215 * (100vw / 750));
  }

  .em241122ON .section01 .section__text.text01{
    top: calc(54 * (100vw / 750));
    right: calc(26 * (100vw / 750));
  }

  .em241122ON .section01 .section__image{
    width: calc(390 * (100vw / 750));
  }
}



/* ===============================================### 
セクション02
###=============================================== */
.em241122ON .section02{
  margin-top: 12rem;
}

.em241122ON .section02 .section-inner{
  width: fit-content;
  margin-inline: auto;
}

.em241122ON .section02 .slide-wrapper{
  width: 42rem;
}

.em241122ON .section02 .section__item01{
  position: relative;
  width: fit-content;
  margin-inline: auto;
}

.em241122ON .section02 .section__item02{
  width: fit-content;
  margin-top: 10rem;
  margin-inline: auto;
}

/************** text **************/
.em241122ON .section02 .credit{
  margin-top: 2.5rem;
  text-align: left;
}

/*** 微調整 ***/
.em241122ON .section02 .credit02{
  margin-left: 0.4rem;
}

.em241122ON .section02 .credit04{
  margin-left: 0.7rem;
}

/************** image **************/
.em241122ON .section02 .section__text{
  width: 13.5rem;
}

.em241122ON .section02 .section__text.text01{
  top: 0.6rem;
  left: 1.1rem;
}

.em241122ON .section02 .section__text.text02{
  bottom: 0.6rem;
  right: 1.1rem;
}

.em241122ON .section02 .section__item01 .section__image{
  width: 54rem;
}


/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .em241122ON .section02{
    margin-top: calc(122 * (100vw / 750));
  }

  .em241122ON .section02 .slide-wrapper{
    width: calc(540 * (100vw / 750));
  }

  .em241122ON .section02 .section__item02{
    margin-top: calc(65 * (100vw / 750));
  }

  /************** text **************/
  .em241122ON .section02 .credit{
    margin-top: calc(33 * (100vw / 750));
    text-align: center;
  }

  /*** 微調整 ***/
  .em241122ON .section02 .credit02{
    margin-left: calc(10 * (100vw / 750));
  }

  .em241122ON .section02 .credit04{
    margin-left: calc(8 * (100vw / 750));
  }

  /************** image **************/
  .em241122ON .section02 .section__text{
    width: calc(61 * (100vw / 750));
  }

  .em241122ON .section02 .section__text.text01{
    top: calc(16 * (100vw / 750));
    right: calc(10 * (100vw / 750));
    left: initial;
  }

  .em241122ON .section02 .section__text.text02{
    bottom: calc(12 * (100vw / 750));
    right: initial;
    left: calc(10 * (100vw / 750));
  }

  .em241122ON .section02 .section__item01 .section__image{
    width: calc(660 * (100vw / 750));
  }
}



/* ===============================================### 
セクション03
###=============================================== */
.em241122ON .section03{
  width: 100%;
  margin-top: 9.4rem;
  background-color: var(--color-gray);
}

.em241122ON .section03 .section-inner{
  width: 93rem;
  padding-top: 8rem;
  padding-bottom: 8.1rem;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .em241122ON .section03 .slide-wrapper{
    width: 32.9rem;
    height: 45.4rem;
    overflow: hidden;
  }
}

.em241122ON .section03 .section__item01{

}

.em241122ON .section03 .section__item02{
}

/************** grid **************/
.em241122ON .section03 .grid-wrapper{
  display: grid;
  grid-template-columns: 60rem 21.6rem 11.4rem;
  grid-template-rows: 9.9rem 35.6rem 30.7rem;
  margin-left: -3.5rem;
}

.em241122ON .section03 .grid__item01{
  grid-column: 1/3;
  grid-row: 2/4;
}

.em241122ON .section03 .grid__item02{
  grid-column: 2/4;
  grid-row: 1/3;
}

/************** text **************/
.em241122ON .section03 .credit{
  margin-bottom: -0.6rem;
}

/************** image **************/
.em241122ON .section03 .section__text{
  width: 4.6rem;
  top: 7.5rem;
  left: 52rem;
}

.em241122ON .section03 .section__item01 .section__image{
  width: 48rem;
}


/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .em241122ON .section03{
    margin-top: calc(108 * (100vw / 750));
  }

  .em241122ON .section03 .section-inner{
    width: calc(750 * (100vw / 750));
    padding-top: calc(100 * (100vw / 750));
    padding-bottom: calc(120 * (100vw / 750));
  }

  .em241122ON .section03 .slide-wrapper{
    width: calc(480 * (100vw / 750));
  }

  .em241122ON .section03 .section__item01{
    width: fit-content;
  }

  .em241122ON .section03 .section__item02{
    position: relative;
    width: fit-content;
    margin-top: calc(48 * (100vw / 750));
    margin-left: calc(280 * (100vw / 750));
  }

  /************** grid **************/
  .em241122ON .section03 .grid-wrapper{
    display: block;
    margin-left: 0;
  }

  /************** text **************/
  .em241122ON .section03 .credit{
    position: absolute;
    bottom: calc(28 * (100vw / 750));
    left: calc(-250 * (100vw / 750));
    margin-bottom: initial;
    letter-spacing: 0;
    z-index: 1;
  }

  /************** image **************/
  .em241122ON .section03 .section__text{
    width: calc(218 * (100vw / 750));
    top: calc(30 * (100vw / 750));
    left: calc(503 * (100vw / 750));
  }

  .em241122ON .section03 .section__item01 .section__image{
    width: calc(690 * (100vw / 750));
  }
}



/* ===============================================### 
その他コンテンツ
###=============================================== */
.em241122ON .others{
  margin-top: 12rem;
}

.em241122ON .others .content-inner{
  width: fit-content;
  margin-inline: auto;
}

/************** text **************/
.em241122ON .others .product__text{
  margin-top: 5.3rem;
  font-family: var(--font-ja);
  font-size: 1.4rem;
  line-height: 2;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--color-black);
}

/************** image **************/
.em241122ON .others .product__image{
  width: 33rem;
  margin-inline: auto;
}

.em241122ON .others .text__image{
  width: 27.8rem;
  margin-top: 3.5rem;
  margin-inline: auto;
}

/************** button **************/
.em241122ON .link__button{
  width: 32rem;
  margin-top: 8.3rem;
  margin-inline: auto;
}

/************** sns__area **************/
.em241122ON .sns__area{
  margin-top: 12rem;
  margin-inline: auto;

  width: 39.5rem;
  /* height: 69.9rem; */
  /* border: 0.1rem solid #000; */
}


/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .em241122ON .others{
    margin-top: calc(120 * (100vw / 750));
  }

  /************** text **************/
  .em241122ON .others .product__text{
    margin-top: calc(89 * (100vw / 750));
    font-size: calc(24 * (100vw / 750));
  }

  /************** image **************/
  .em241122ON .others .product__image{
    width: calc(450 * (100vw / 750));
  }

  .em241122ON .others .text__image{
    width: calc(529 * (100vw / 750));
    margin-top: calc(59 * (100vw / 750));
    margin-inline: auto;
  }

  /************** button **************/
  .em241122ON .link__button{
    width: calc(480 * (100vw / 750));
    margin-top: calc(107 * (100vw / 750));
  }

  /************** sns__area **************/
  .em241122ON .sns__area{
    margin-top: calc(150 * (100vw / 750));

    width: calc(677 * (100vw / 750));
    /* height: calc(1198 * (100vw / 750)); */
    /* border: calc(1 * (100vw / 750)) solid #000; */
  }
}