@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)); /* 画面幅に基づく可変値 */
  }
}


/* ===============================================### 
初期設定
###=============================================== */
.em250528eco{
  position: relative;
  --font-ja:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "Open Sans", "メイリオ", sans-serif;
  --font-ja02: "ten-mincho-text", serif;
  --font-en: "pragmatica", sans-serif;
  font-style: normal;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --color-white: #ffffff;
  --color-blue: #e4f1fa;
  --color-black: #000000;
  color: #000000;
}

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

.main-area * {
  box-sizing: border-box;
}

body{
  overflow-x: visible;
}

.main-area{
  overflow-x: visible;
}

.main-area::before{
  /* content: '';
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #fff;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  height: 10rem;
  top: -3rem; */
}




/* ===========### PC用設定 ###=========== */
@media screen and (min-width: 768px) {
  #Contents{
    overflow-x: clip;
  }

  .bredlist.lp{
    position: relative;
  
    margin: 0 auto;
    padding: 1.5rem 0;
    min-width: unset;
    max-width: 120rem;
    height: 80px;
    border: none;

    z-index: 1;
    transform: translateZ(1px);
  }
  
  .bredlist.lp::before {
    content: '';
    display: block;
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #fff;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    height: 1000px;
    bottom: 0;
    z-index: -1;
  }

  .bredlist.lp::after {
    content: '';
    display: block;
    position: absolute;
    background-color: #fff;
    width: 100%;
    height: 50px;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: -1;
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
  }

  /* .main-area{
    overflow-x: visible!important;
  } */

  #footer_emmi{
    margin-top: 0;
    background-color: #fff;
  }

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

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

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

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

@media screen and (max-width: 1200px) {
  .bredlist.lp a{
    padding-left: calc(30 * (100vw / 1200));
  }
}

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

  .em250528eco{
    overflow: clip;
  }
  
  .em250528eco .pc-visible{
    display: none;
  }

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


/* ===============================================### 
left-area, right-area, center-area 設定
###=============================================== */
@media screen and (min-width: 768px) {
  /* .em250528eco .main-wrap{
    display: block;
    width: 100%;
    margin: 0 auto;
    background: url(../img/bg_pc.jpg) center top no-repeat;
    background-size: cover;
    background-attachment: fixed;
  } */

  .em250528eco .bg-fixed{
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    background-image: url(../img/bg_pc.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
  }

  .em250528eco .fixed-area{

  }

  .em250528eco .main-wrap.grid-wrapper {
    /* position: relative;
    display: grid;
    grid-template-columns: 1fr calc(750 * var(--formula)) 1fr; */
  }

  /* .em250528eco .main-wrap{
    display: block;
    width: 100%;
    padding: 6rem 0 8rem;
    margin: 0 auto;
    background: url(../img/bg_pc.jpg) center top no-repeat;
    background-size: cover;
    background-attachment: fixed;
  } */

  .em250528eco .left-area {
    /* position: sticky;
    grid-column: 1;
    top: 0;
    height: 100vh;
    display: grid;
    place-content: center; */
  }

  .em250528eco .center-area {
    position: relative;
    z-index: 1;
    display: block;
    width: calc(750 * var(--formula));
    margin-inline: auto;
    background-color: var(--color-blue);
  }

  .em250528eco .right-area {
    /* position: sticky;
    grid-column: 3;
    top: 0;
    height: 100vh;
    display: grid;
    place-content: center; */
  }
}

@media screen and (max-width: 767px) {
  .em250528eco .main-wrap{
    background-color: var(--color-blue);
  }
}



/* ===============================================### 
アニメーション設定
###=============================================== */
.em250528eco .js-fade-up{
  visibility: hidden;
  opacity: 0;
  transition: all 1s ease-in-out;
  transform: translateY(10%);
}

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

.em250528eco .js-fade-in{
  visibility: hidden;
  opacity: 0;
  transition: all 1s ease-in-out;
}

.em250528eco .js-fade-in.show{
  visibility: visible;
  opacity: 1;
}

.em250528eco .js-delay{
  /* transition-delay: 0.2s; */
  transition-delay: 1s;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  /* .em250528eco .js-delay{
    transition-delay: 0.2s;
  } */
}



/* ===============================================### 
コンテンツ共通設定
###=============================================== */
.em250528eco .content-sticky{
  position: sticky;
  top: 0;
}

.em250528eco .content-common{
  width: 100%;
  background-color: var(--color-blue);
}

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

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



/* ===============================================### 
MV
###=============================================== */
.em250528eco .mv{
}

.em250528eco .mv .image-wrap{
  position: relative;
  width: fit-content;
}

/************** image **************/
.em250528eco .mv .mv__image{
  width: calc(750 * var(--formula));
  margin-inline: auto;
}

.em250528eco .mv__text{
  position: absolute;
  bottom: calc(35 * var(--formula));
  right: calc(17 * var(--formula));
  width: calc(376 * var(--formula));
  pointer-events: none;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .em250528eco .mv{
    background-color: transparent;
  }
  
  .em250528eco .mv .image-wrap{
    margin-inline: auto;
  }
  
  /************** image **************/
  .em250528eco .mv .mv__image{
    width: calc(750 * var(--formula));
  }
}



/* ===============================================### 
lead
###=============================================== */
.em250528eco .lead-area{
}

.em250528eco .lead-area .content-inner{
  padding-top: calc(73 * var(--formula));
}

/************** text **************/
.em250528eco .lead__text{
  font-family: var(--font-ja);
  font-size: calc(24 * var(--formula));
  line-height: 2.125;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  text-align: center;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .em250528eco .lead-area .content-inner{
    padding-top: calc(71 * var(--formula));
  }
}


/* ===============================================### 
コンテンツ01
###=============================================== */
.em250528eco .content01{
}

.em250528eco .content01 .content-inner{
  padding-top: calc(86 * var(--formula));
}

/************** video **************/
.em250528eco .content01 .content__video{
  width: calc(675 * var(--formula));
  margin-inline: auto;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .em250528eco .content01 .content-inner{
    padding-top: calc(85 * var(--formula));
  }
}


/* ===============================================### 
コンテンツ02
###=============================================== */
.em250528eco .content02{
}

.em250528eco .content02 .content-inner{
  padding-top: calc(138 * var(--formula));
}

.em250528eco .content02 .content__item01{
  position: relative;
  width: fit-content;
}

.em250528eco .content02 .content__item02{
}

/************** text **************/
.em250528eco .content02 .credit{
  margin-top: calc(32 * var(--formula));
  text-align: center;
}

/*** クレジット位置微調整 ***/
.em250528eco .content02 .credit a.credit03{
  margin-left: calc(10 * var(--formula));
}

/************** image **************/
.em250528eco .content01 .content__item01 .content-bg{
  width: calc(750 * var(--formula));
}

.em250528eco .content02 .content__item01 .image-wrap{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.em250528eco .content02 .content__item01 .content__image{
  width: calc(525 * var(--formula));
}

.em250528eco .content02 .content__item02 .content__image{
  width: calc(750 * var(--formula));
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .em250528eco .content02 .content-inner{
    padding-top: calc(140 * var(--formula));
  }
}



/* ===============================================### 
コンテンツ03
###=============================================== */
.em250528eco .content03{
}

.em250528eco .content03 .content-inner{
  padding-top: calc(80 * var(--formula));
  /* padding-bottom: calc(710 * var(--formula)); */
  padding-bottom: calc(770 * var(--formula));
}

/************** product__item **************/
.em250528eco .content03 .product__item{
  position: sticky;
  top: calc(-240 * var(--formula));
  width: 100%;
  /* height: 100vh; */
  height: calc(1350 * var(--formula));
  max-width: calc(750 * var(--formula));
  margin-inline: auto;
}

.em250528eco .product__image-wrap--03 {
  position: relative;
  height: 100%;
}

.em250528eco .content03 .content-sticky{
  /* position: sticky;
  top: 0; */
  position: relative;

  /* margin-top: 13.4rem; */
  /* min-height: 232.2rem; */
  min-height: calc(5000 * var(--formula));
  /* min-height: calc(1900 * var(--formula)); */
  
  /* width: 50vw; */
  /* height: 100vh; */
  /* z-index: 1; */
}

/************** text **************/
.em250528eco .content03 .credit{
  position: absolute;
  bottom: calc(21 * var(--formula));
  right: calc(31 * var(--formula));
  z-index: 2;
  text-align: right;
  color: var(--color-white);
}

/************** image **************/
.em250528eco .content03 .product__item .product__image01{
  position: absolute;
  /* top: calc(284 * var(--formula)); */
  top: calc(670 * var(--formula));
  right: 0;
  width: calc(660 * var(--formula));
}

@media screen and (min-width: 1450px) {
  .em250528eco .content03 .product__item .product__image01{
    right: calc(-2 * var(--formula));
  }
}

.em250528eco .content03 .product__item .product__image02{
  position: absolute;
  /* top: calc(-234 * var(--formula)); */
  top: calc(151 * var(--formula));
  left: 0;
  width: calc(420 * var(--formula));
  z-index: 1;
}

.em250528eco .content03 .product__item .product__image03{
  position: absolute;
  top: calc(1466 * var(--formula));
  left: calc(26 * var(--formula));
  width: calc(660 * var(--formula));
  z-index: 1;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .em250528eco .content03 .content-inner{
    padding-bottom: calc(220 * var(--formula));
  }
  
  /************** product__item **************/
  .em250528eco .content03 .product__item{
    position: sticky;
    height: calc(1900 * var(--formula));
  }
  
  .em250528eco .product__image-wrap--03 {
    position: relative;
    height: 100%;
  }
  
  .em250528eco .content03 .content-sticky{
    min-height: calc(5000 * var(--formula));
  }
  
  /************** text **************/
  .em250528eco .content03 .credit{
    position: absolute;
    bottom: calc(21 * var(--formula));
    right: calc(31 * var(--formula));
    z-index: 2;
    text-align: right;
    color: var(--color-white);
  }
  
  /************** image **************/
  .em250528eco .content03 .product__item .product__image01{
    position: absolute;
    /* top: calc(284 * var(--formula)); */
    top: calc(670 * var(--formula));
    right: 0;
    width: calc(660 * var(--formula));
  }
  
  .em250528eco .content03 .product__item .product__image02{
    position: absolute;
    /* top: calc(-234 * var(--formula)); */
    top: calc(151 * var(--formula));
    left: 0;
    width: calc(420 * var(--formula));
    z-index: 1;
  }
  
  .em250528eco .content03 .product__item .product__image03{
    position: absolute;
    top: calc(1465 * var(--formula));
    left: calc(24 * var(--formula));
    width: calc(660 * var(--formula));
    z-index: 1;
  }
}



/* ===============================================### 
コンテンツ04
###=============================================== */
.em250528eco .content04{
}

.em250528eco .content04 .content-inner{
}

.em250528eco .content04 .content__item01{
  position: relative;
  width: fit-content;
}

.em250528eco .content04 .content__item02{
}

.em250528eco .content04 .item-wrap{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

/************** text **************/
.em250528eco .content04 .credit{
  margin-top: calc(32 * var(--formula));
  text-align: center;
  color: var(--color-white);
}

/************** image **************/
.em250528eco .content04 .content-bg{
  width: calc(750 * var(--formula));
}

.em250528eco .content04 .content__item01 .content__image{
  width: calc(495 * var(--formula));
  margin-top: calc(64 * var(--formula));
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  .em250528eco .content04 .content__item01 .content__image{
    margin-top: calc(77 * var(--formula));
  }
}



/* ===============================================### 
コンテンツ05
###=============================================== */
.em250528eco .content05{
}

.em250528eco .content05 .content-inner{
}

.em250528eco .content05 .content__item01{
}

.em250528eco .content05 .content__item02{
  margin-top: calc(100 * var(--formula));
}

.em250528eco .content05 .content__item03{
  margin-top: calc(14 * var(--formula));
}

/************** text **************/
.em250528eco .content05 .credit{
  margin-top: calc(32 * var(--formula));
  text-align: center;
}

/************** image **************/
.em250528eco .content05 .content__item01 .content__image{
  width: calc(750 * var(--formula));
}

.em250528eco .content05 .content__item02 .content__image{
  width: calc(480 * var(--formula));
  margin-inline: auto;
}

.em250528eco .content05 .content__item03 .content__image{
  width: calc(480 * var(--formula));
  margin-inline: auto;
}



/* ===============================================### 
コンテンツ06
###=============================================== */
.em250528eco .content06{
}

.em250528eco .content06 .content-inner{
  position: relative;
}

.em250528eco .content06 .content-inner::after{
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  height: calc(100 * var(--formula));
  background-color: var(--color-blue);
}

.em250528eco .content06.content-sticky{
  top: calc(-500 * var(--formula));
}

.em250528eco .content06 .content-inner{
  padding-top: calc(151 * var(--formula));
  padding-bottom: calc(151 * var(--formula));
}

.em250528eco .content06 .content__item01{ 
}

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

/*** クレジット位置微調整 ***/
.em250528eco .content06 .credit a.credit03{
  margin-left: calc(10 * var(--formula));
}


/************** image **************/
.em250528eco .content06 .content__item01 .content__image{
  width: calc(750 * var(--formula));
}



/* ===============================================### 
コンテンツ07
###=============================================== */
.em250528eco .content07{
  position: relative;
}

.em250528eco .content07 .content-inner{
}

.em250528eco .content07 .content__item01{
  position: relative;
  width: fit-content;
  margin-left: calc(126 * var(--formula));
}

/************** text **************/
.em250528eco .content07 .credit{
  margin-top: calc(31 * var(--formula));
}

/************** image **************/
.em250528eco .content07 .content__image{
  width: calc(624 * var(--formula));
}

.em250528eco .content07 .text__image{
  position: absolute;
  top: calc(24 * var(--formula));
  left: calc(-90 * var(--formula));
  width: calc(354 * var(--formula));
  z-index: 1;
  pointer-events: none;
}

/* ===========### responsive ###=========== */
@media screen and (min-width: 768px) {
  .em250528eco .content07{
    transform: translateZ(1px);
    z-index: 1;
  }
}

@media screen and (max-width: 767px) {
  /*** safari用設定 ***/
  _::-webkit-full-page-media, _:future, :root .em250528eco .content07 .text__image {
    width: calc(1416 * var(--formula));
    transform: scale(0.25);
    transform-origin: left top;
  }
}



/* ===============================================### 
コンテンツ08
###=============================================== */
.em250528eco .content08{
  position: relative;
}

.em250528eco .content08 .content-inner{
  padding-top: calc(92 * var(--formula));
  padding-bottom: calc(120 * var(--formula));
}

.em250528eco .content08 .content__item01{
}

.em250528eco .content08 .content__item02{
  margin-top: calc(87 * var(--formula));
}

.em250528eco .content08 .content__item03{
  margin-top: calc(80 * var(--formula));
}

/************** text **************/
.em250528eco .content08 .content__item01 .title-text{
  font-family: var(--font-ja02);
  font-size: calc(40 * var(--formula));
  letter-spacing: 0.085em;
  text-align: center;
  color: #a5accc;
}

.em250528eco .content08 .content__item02 .title-text{
  width: calc(132 * var(--formula));
  margin-inline: auto;
}

.em250528eco .content08 .detail-text{
  margin-top: calc(59 * var(--formula));
  font-family: var(--font-ja);
  font-size: calc(24 * var(--formula));
  font-weight: var(--fw-medium);
  -webkit-font-smoothing: antialiased;
  line-height: 2.125;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  text-align: center;
}

.em250528eco .content08 .point__list{
  margin-top: calc(28 * var(--formula));
  padding-left: calc(30 * var(--formula));
  font-family: var(--font-ja);
  font-size: calc(24 * var(--formula));
  font-weight: var(--fw-medium);
  line-height: 2.83;
  letter-spacing: 0.05em;
  text-align: center;
}

.em250528eco .content08 .point__list li{
  position: relative;
  display: inline-block;
}

.em250528eco .content08 .point__list li::before{
  content: '';
  position: absolute;
  top: 0;
  left: calc(-35 * var(--formula));
  width: calc(31 * var(--formula));
  height: calc(47 * var(--formula));
  background-image: url('../img/check.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.em250528eco .content08 .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 **************/
.em250528eco .content08 .link__button{
  width: calc(460 * var(--formula));
  margin-top: calc(127 * var(--formula));
  margin-inline: auto;
}

/* ===========### responsive ###=========== */
@media screen and (min-width: 768px) {
  .em250528eco .content08{
    transform: translateZ(1px);
    z-index: 1;
  }
}

@media screen and (max-width: 767px) {
  .em250528eco .content08 .content-inner{
    padding-bottom: calc(117 * var(--formula));
  }

  .em250528eco .content08 .content__item01{
    margin-top: calc(-1 * var(--formula));
  }

  .em250528eco .content08 .content__item02{
    margin-top: calc(85 * var(--formula));
  }

  .em250528eco .content08 .point__list{
    margin-top: calc(29 * var(--formula));
  }

  .em250528eco .content08 .link__button{
    margin-top: calc(128 * var(--formula));
  }

  .em250528eco .content08 .staff__text{
    margin-top: calc(108 * var(--formula));
  }
}