@charset "UTF-8";


/* ===============================================### 
Common
###=============================================== */
#em240821PUMA{
  margin: 0 auto;
  overflow: hidden;
}

#em240821PUMA .content-wrapper{
  width: 100%;
  margin: 0 auto;
  padding-bottom: 10rem;
  background-color: #FFF1DB;
}

@media screen and (max-width: 767px) {
  #em240821PUMA .content-wrapper{
    padding-bottom: calc(138 * (100vw / 750));
  }
}

:where(#em240821PUMA) img, video{
  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: 768px) {
  #em240821PUMA .pc-visible{
    display: block;
  }

  #em240821PUMA .sp-visible{
    display: none; 
  }

  #footer_emmi {
    margin-top: 100px;
  }
}

/* ===========### SP版設定 ###=========== */
@media screen and (max-width: 767px) {
  #em240821PUMA .pc-visible{
    display: none;
  }

  #em240821PUMA .sp-visible{
    display: block;
  }

  #footer_emmi {
    margin-top: 0;
  }
}




/* ===============================================### 
Animation
###=============================================== */
/************** fade **************/
#em240821PUMA .js-fade-up {
  transition-duration: 0.8s;
  opacity: 0;
  transform: translateY(10rem);
}

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

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  #em240821PUMA .js-fade-up {
    transform: translateY(calc(50 * (100vw / 750)));
  }   
}

/* ===============================================### 
Main-visual
###=============================================== */
#em240821PUMA .mv{
  position: relative;
  width: fit-content;
  margin-inline: auto;
}

/************** image **************/
#em240821PUMA .mv__image{
  width: 56rem;
  /* margin-top: 6rem; */
  margin-right: 34rem;
}

#em240821PUMA .mv__logo{
  position: absolute;
  bottom: 2.9rem;
  right: 2.9rem;
  width: 37.6rem;
}


/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  /************** image **************/
  #em240821PUMA .mv__image{
    width: calc(750 * (100vw / 750));
    margin-top: calc(58 * (100vw / 750));
    margin-right: 0;
  }

  #em240821PUMA .mv__logo{
    position: initial;
    width: calc(599 * (100vw / 750));
    margin-top: calc(60 * (100vw / 750));
    margin-inline: auto;
  }
}



/* ===============================================### 
Content Common setting
###=============================================== */
/************** flex **************/
#em240821PUMA .flex-wrapper{
  display: flex;
  justify-content: space-between;
}

/************** text **************/
#em240821PUMA .credit{
  font-family: "pragmatica", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1.85;
  letter-spacing: 0.05em;
}

#em240821PUMA .content__title{
  position: relative;
  font-family: "minerva-modern", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4.2rem;
  letter-spacing: 0.02em;
  text-align: center;
  color: #914F1E;
}

#em240821PUMA .content__title::before{
  content: '';
  position: absolute;
  display: inline-block;
  height: 0.15rem;
  background-color: #914F1E;
}

#em240821PUMA .content__text{
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "Open Sans", "メイリオ", sans-serif;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: center;
}


/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  /************** flex **************/
  #em240821PUMA .flex-wrapper{
    flex-direction: column;
  }

  /************** text **************/
  #em240821PUMA .credit{
    font-size: calc(22 * (100vw / 750));
    line-height: 1.81;
  }

  #em240821PUMA .content__title{
    font-size: calc(59 * (100vw / 750));
    letter-spacing: 0.07em;
  }

  #em240821PUMA .content__title::before{
    height: calc(2 * (100vw / 750));
  }

  #em240821PUMA .content__text{
    font-size: calc(24 * (100vw / 750));
  }
}



/* ===============================================### 
Content01
###=============================================== */
#em240821PUMA .content01{
  width: 100rem;
  margin-top: 10rem;
  margin-inline: auto;
}

#em240821PUMA .content01 .content__item01{
  position: relative;
  width: fit-content;
}

/************** grid **************/
#em240821PUMA .content01 .grid-wrapper{
  display: grid;
  grid-template-columns: 36rem 28rem 36rem;
  grid-template-rows: 29.9rem 30.1rem 34.2rem;
}

#em240821PUMA .content01 .grid__item01{
  grid-column: 3/4;
  grid-row: 1/3;
}

#em240821PUMA .content01 .grid__item02{
  grid-column: 1/2;
  grid-row: 2/4;
}

/************** text **************/
#em240821PUMA .content01 .content__text{
  position: absolute;
  top: 7.3rem;
  left: -37.3rem;
  font-family: "pragmatica", sans-serif;
  font-weight: 300;
  font-style: normal;
  z-index: 1;
  pointer-events: none;
}

/************** image **************/
#em240821PUMA .content01 .content__item01 .content__image{
  width: 36rem;
}

/************** video **************/
#em240821PUMA .content01 .content__item02 .content__video{
  width: 36rem;
  height: 64rem;
}


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

  #em240821PUMA .content01 .content__item01{
    width: fit-content;
    margin-left: calc(210 * (100vw / 750));
  }

  #em240821PUMA .content01 .content__item02{
    width: fit-content;
    margin-top: calc(79 * (100vw / 750));
    margin-inline: auto;
  }


  /************** grid **************/
  #em240821PUMA .content01 .grid-wrapper{
    display: block;
  }

  /************** text **************/
  #em240821PUMA .content01 .content__text{
    top: calc(-172*(100vw / 750));
    left: calc(-184*(100vw / 750));
    font-size: calc(23*(100vw / 750));
    letter-spacing: 0;
    line-height: 2.08;
  }

  /************** image **************/
  #em240821PUMA .content01 .content__item01 .content__image{
    width: calc(540 * (100vw / 750));
  }

  /************** video **************/
  #em240821PUMA .content01 .content__item02 .content__video{
    width: calc(666 * (100vw / 750));
    height: calc(1184 * (100vw / 750));
  }
}



/* ===============================================### 
Content02
###=============================================== */
#em240821PUMA .content02{
  width: 72.2rem;
  margin-top: 13.8rem;
  margin-inline: auto;
}

#em240821PUMA .content02 .content__item02{
  width: fit-content;
}

/************** flex **************/
#em240821PUMA .content02 .flex-wrapper{
  align-items: end;
  column-gap: 3rem;
}

/************** grid **************/
#em240821PUMA .content02 .grid-wrapper{
  display: grid;
  grid-template-columns: 8.4rem 33.5rem 5.8rem 24.6rem;
  grid-template-rows: 57.9rem 12rem 20rem;
  margin-left: 1rem;
}

#em240821PUMA .content02 .grid__item01{
  grid-column: 1/3;
  grid-row: 1/3;
}

#em240821PUMA .content02 .grid__item02{
  grid-column: 2/5;
  grid-row: 2/4;
}

/************** text **************/
#em240821PUMA .content02 .credit{
  text-align: right;
  margin-bottom: -0.7rem;
}

/*** クレジット位置微調整 ***/
#em240821PUMA .content02 .credit a:nth-last-of-type(2),
#em240821PUMA .content02 .credit a:nth-last-of-type(4){
  margin-left: 0.7rem;
}

#em240821PUMA .content02 .credit a:nth-last-of-type(5){
  margin-right: -0.2rem;
}

/************** image **************/
#em240821PUMA .content02 .content__item01 .content__image{
  width: 42rem;
}

#em240821PUMA .content02 .content__item02 .content__image{
  width: 24rem;
}


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

  #em240821PUMA .content02 .content__item02{
    position: relative;
    width: fit-content;
    margin-top: calc(100 * (100vw / 750));
    margin-left: calc(360 * (100vw / 750));
  }

  /************** grid **************/
  #em240821PUMA .content02 .grid-wrapper{
    display: block;
    margin-left: 0;
  }

  /************** text **************/
  #em240821PUMA .content02 .credit{
    position: absolute;
    bottom: calc(-62*(100vw / 750));
    left: calc(-325*(100vw / 750));
    margin-bottom: 0;
    text-align: left;
    z-index: 1;
  }

  /*** クレジット位置微調整 ***/
  #em240821PUMA .content02 .credit a:nth-last-of-type(2),
  #em240821PUMA .content02 .credit a:nth-last-of-type(4),
  #em240821PUMA .content02 .credit a:nth-last-of-type(5){
    margin-left: 0;
  }

  /************** image **************/
  #em240821PUMA .content02 .content__item01 .content__image{
    width: calc(660 * (100vw / 750));
  }

  #em240821PUMA .content02 .content__item02 .content__image{
    width: calc(390 * (100vw / 750));
  }
}



/* ===============================================### 
Content03
###=============================================== */
#em240821PUMA .content03{
  width: 90rem;
  margin-top: 14.1rem;
  margin-inline: auto;
}

/************** grid **************/
#em240821PUMA .content03 .grid-wrapper{
  display: grid;
  grid-template-columns: 27rem 19.5rem 43.5rem;
  grid-template-rows: 8rem 45.7rem 27.1rem;
}

#em240821PUMA .content03 .grid__item01{
  grid-column: 3/4;
  grid-row: 2/4;
}

#em240821PUMA .content03 .grid__item02{
  grid-column: 1/2;
  grid-row: 1/3;
}

/************** text **************/
#em240821PUMA .content03 .credit{
  margin-top: 2.4rem;
  text-align: left;
}

/************** image **************/
#em240821PUMA .content03 .content__item01 .content__image{
  width: 43.5rem;
}

#em240821PUMA .content03 .content__item02 .content__image{
  width: 27rem;
}

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

  #em240821PUMA .content03 .content__item01{
    width: fit-content;
    margin-inline: auto;
  }

  #em240821PUMA .content03 .content__item02{
    position: relative;
    width: fit-content;
    margin-top: calc(80 * (100vw / 750));
  }


  /************** grid **************/
  #em240821PUMA .content03 .grid-wrapper{
    display: block;
  }

  /************** text **************/
  #em240821PUMA .content03 .credit{
    position: absolute;
    bottom: calc(-168*(100vw / 750));
    right: calc(-321*(100vw / 750));
    margin-top: 0;
    z-index: 1;
  }

  /************** image **************/
  #em240821PUMA .content03 .content__item01 .content__image{
    width: calc(630 * (100vw / 750));
  }

  #em240821PUMA .content03 .content__item02 .content__image{
    width: calc(405 * (100vw / 750));
  }
}


/* ===============================================### 
Content04
###=============================================== */
#em240821PUMA .content04{
  width: 74.8rem;
  margin-top: 13.7rem;
  margin-inline: auto;
}


/************** grid **************/
#em240821PUMA .content04 .grid-wrapper{
  display: grid;
  grid-template-columns: 42rem 5.9rem 27rem;
  grid-template-rows: 46.9rem 33.2rem 2.7rem;
  margin-left: -0.6rem;
}

#em240821PUMA .content04 .grid__item01{
  grid-column: 1/2;
  grid-row: 1/3;
}

#em240821PUMA .content04 .grid__item02{
  grid-column: 3/4;
  grid-row: 2/4;
}

/************** text **************/
#em240821PUMA .content04 .credit{
  margin-top: 1.4rem;
  text-align: left;
}

/*** クレジット位置微調整 ***/
#em240821PUMA .content04 .credit a:nth-of-type(2),
#em240821PUMA .content04 .credit a:nth-of-type(4),
#em240821PUMA .content04 .credit a:nth-of-type(5){
  margin-left: 0.6rem;
}

/************** image **************/
#em240821PUMA .content04 .content__item01 .content__image{
  width: 42rem;
}

#em240821PUMA .content04 .content__item02 .content__image{
  width: 27rem;
}

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

  #em240821PUMA .content04 .content__item01{
    margin-left: calc(90 * (100vw / 750));
  }

  #em240821PUMA .content04 .content__item02{
    margin-top: calc(80 * (100vw / 750));
    margin-left: calc(34 * (100vw / 750));
  }


  /************** grid **************/
  #em240821PUMA .content04 .grid-wrapper{
    display: block;
    margin-left: 0;
  }

  /************** text **************/
  #em240821PUMA .content04 .credit{
    margin-top: calc(42 * (100vw / 750));
  }

  /*** クレジット位置微調整 ***/
  #em240821PUMA .content04 .credit a:nth-of-type(2),
  #em240821PUMA .content04 .credit a:nth-of-type(4),
  #em240821PUMA .content04 .credit a:nth-of-type(5){
    margin-left: calc(10 * (100vw / 750));
  }

  /************** image **************/
  #em240821PUMA .content04 .content__item01 .content__image{
    width: calc(660 * (100vw / 750));
  }

  #em240821PUMA .content04 .content__item02 .content__image{
    width: calc(390 * (100vw / 750));
  }
}




/* ===============================================### 
Content05
###=============================================== */
#em240821PUMA .content05{
  position: relative;
  width: 100rem;
  margin-top: 18.2rem;
  margin-inline: auto;
}

#em240821PUMA .content05 .slide-wrapper{
  width: fit-content;
  margin-top: 4.9rem;
}

/************** flex **************/
#em240821PUMA .content05 .flex-wrapper{
  column-gap: 2rem;
}

/************** text **************/
#em240821PUMA .content05 .content__title{
  padding-top: 5.5rem;
  margin-left: 0.1rem;
}

#em240821PUMA .content05 .content__title::before{
  top: 10rem;
  left: 38rem;
  width: 24rem;
}

#em240821PUMA .content05 .content__text{
  position: relative;
  padding-top: 3.7rem;
  padding-bottom: 7.3rem;
  text-align: center;
  z-index: 1;
}

/************** image **************/
#em240821PUMA .slide__image{
  width: 32rem;
}

#em240821PUMA .slide__image.slick-slide{
  width: 32rem;
}

#em240821PUMA .slide__image.image01.slick-slide{
  margin-top: calc(-56 * (100vw / 750));
}

#em240821PUMA .slide__image.image03.slick-slide{
  margin-top: calc(-28 * (100vw / 750));
}

/************** background **************/
#em240821PUMA .content05 .bg__image{
  position: absolute;
  top: 0;
  left: 0;
  width: 100rem;
}

/* ===========### responsive ###=========== */
@media screen and (max-width: 767px) {
  #em240821PUMA .content05{
    width: calc(690 * (100vw / 750));
    margin-top: calc(130 * (100vw / 750));
  }

  #em240821PUMA .content05 .slide-wrapper{
    width: 100%;
    height: calc(467 * (100vw / 750));
    margin-top: calc(56 * (100vw / 750));
    overflow: hidden;
  }

  /************** text **************/
  #em240821PUMA .content05 .content__title{
    padding-top: calc(75 * (100vw / 750));
    margin-left: 0;
  }

  #em240821PUMA .content05 .content__title::before{
    top: calc(140 *(100vw / 750));
    left: calc(158 *(100vw / 750));
    width: calc(375 *(100vw / 750));
  }

  #em240821PUMA .content05 .content__text{
    padding-top: calc(55 * (100vw / 750));
    padding-bottom: calc(85 * (100vw / 750));
  }

  /************** image **************/
  #em240821PUMA .slide__image.slick-slide{
    width: calc(352 * (100vw / 750));
    margin-inline: calc(5 * (100vw / 750));
  }

  /************** background **************/
  #em240821PUMA .content05 .bg__image{
    width: calc(690 * (100vw / 750));
  }
}


/* ===============================================### 
Content06
###=============================================== */
#em240821PUMA .content06{
  width: 100rem;
  margin-top: 6rem;
  margin-inline: auto;
}

#em240821PUMA .content06 .content__item01{
  position: relative;
  width: 48.3rem;
}

#em240821PUMA .content06 .content__item02{
  position: relative;
  width: 48.3rem;
}

/************** grid **************/
#em240821PUMA .content06 .grid-wrapper{
  display: grid;
  grid-template-columns: 48.5rem 3.6rem 47.9rem;
  grid-template-rows: 17.7rem 70.7rem 12.5rem;
  margin-left: -0.2rem;
}

#em240821PUMA .content06 .grid__item01{
  grid-column: 1/2;
  grid-row: 1/3;
}

#em240821PUMA .content06 .grid__item02{
  grid-column: 3/4;
  grid-row: 2/4;
}

/************** text **************/
#em240821PUMA .content06 .content__item01 .content__title{
  padding-top: 5.6rem;
  margin-left: 0.1rem;
}

#em240821PUMA .content06 .content__item01 .content__title::before{
  width: 24rem;
  top: 10rem;
  left: 12rem;
}

#em240821PUMA .content06 .content__item02 .content__title{
  padding-top: 5.9rem;
}

#em240821PUMA .content06 .content__item02 .content__title::before{
  width: 23rem;
  top: 10.4rem;
  left: 12.7rem;
}

#em240821PUMA .content06 .content__item01 .content__text{
  position: relative;
  margin-top: 3.7rem;
  margin-left: 1.4rem;
  z-index: 1;
}

#em240821PUMA .content06 .content__item02 .content__text{
  position: relative;
  margin-top: 3.7rem;
  margin-left: 1.1rem;
  z-index: 1;
}

/************** image **************/
#em240821PUMA .content06 .content__item01 .content__image{
  width: 38rem;
  margin-top: 4.9rem;
  margin-inline: auto;
}

#em240821PUMA .content06 .content__item02 .content__image{
  width: 38rem;
  margin-top: 4.9rem;
  margin-inline: auto;
}

/************** background **************/
#em240821PUMA .content06 .content__item01 .bg__image,
#em240821PUMA .content06 .content__item02 .bg__image{
  position: absolute;
  top: 0;
  left: 0;
  width: 48rem;
}

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

  #em240821PUMA .content06 .content__item01{
    width: calc(690 * (100vw / 750));
    margin-inline: auto;
  }

  #em240821PUMA .content06 .content__item02{
    width: calc(690 * (100vw / 750));
    margin-top: calc(40 * (100vw / 750));
    margin-inline: auto;
  }

  /************** grid **************/
  #em240821PUMA .content06 .grid-wrapper{
    display: block;
    margin-left: 0;
  }

  /************** text **************/
  #em240821PUMA .content06 .content__title{

  }

  #em240821PUMA .content06 .content__item01 .content__title{
    padding-top: calc(76 * (100vw / 750));
    margin-left: 0;
  }

  #em240821PUMA .content06 .content__item01 .content__title::before{
    width: calc(379 * (100vw / 750));
    top: calc(140 * (100vw / 750));
    left: calc(156 * (100vw / 750));
  }

  #em240821PUMA .content06 .content__item02 .content__title{
    padding-top: calc(73 * (100vw / 750));
  }

  #em240821PUMA .content06 .content__item02 .content__title::before{
    width: calc(360 * (100vw / 750));
    top: calc(138 * (100vw / 750));
    left: calc(165 * (100vw / 750));
  }

  #em240821PUMA .content06 .content__item01 .content__text{
    margin-top: calc(54 * (100vw / 750));
    margin-left: 0;
    padding-bottom: calc(90 * (100vw / 750));
  }

  #em240821PUMA .content06 .content__item02 .content__text{
    margin-top: calc(54 * (100vw / 750));
    margin-left: 0;
    padding-bottom: calc(90 * (100vw / 750));
  }

  /************** image **************/
  #em240821PUMA .content06 .content__item01 .content__image{
    width: calc(564 * (100vw / 750));
    margin-top: calc(56 * (100vw / 750));
  }

  #em240821PUMA .content06 .content__item02 .content__image{
    width: calc(564 * (100vw / 750));
    margin-top: calc(57 * (100vw / 750));
  }

  /************** background **************/
  #em240821PUMA .content06 .content__item01 .bg__image,
  #em240821PUMA .content06 .content__item02 .bg__image{
    width: calc(690 * (100vw / 750));
  }
}



/* ===============================================### 
Others
###=============================================== */
#em240821PUMA .others{
  width: fit-content;
  margin-top: 11.6rem;
  margin-inline: auto;
}

#em240821PUMA .store-info{
  position: relative;
  width: 100%;
}

#em240821PUMA .others .content__title::before{
  content: '';
  position: absolute;
  top: -3.4rem;
  left: -2rem;
  display: inline-block;
  width: 18rem;
  height: 35.3rem;
  background-image: url(../img/pc/info_bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-color: #fff;
  z-index: -1;
}

/************** text **************/
#em240821PUMA .others .content__title{
  font-size: 3.3rem;
}

#em240821PUMA .others .content__text.text01{
  margin-top: 2.8rem;
}

#em240821PUMA .others .content__text.text02{
  margin-top: 1.4rem;
}

#em240821PUMA .others .content__text.text03{
  margin-top: 1.4rem;
}

/************** image **************/
#em240821PUMA .bg__image{
}


/************** button **************/
#em240821PUMA .link__button{
  position: relative;
  width: 32rem;
  margin-top: 13.2rem;
  margin-inline: auto;
  background-color: #7B431A;
}

#em240821PUMA .link__button a{
  display: block;
  padding-top: 1.1rem;
  padding-bottom: 1.3rem;
  font-family: "minerva-modern", sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  font-size: 2.8rem;
  text-align: center;
  color: #fff;
}

/* #em240821PUMA .link__button::after{
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
} */


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

  #em240821PUMA .others .content__title::before{
    top: calc(-72 * (100vw / 750));
    left: calc(-38 * (100vw / 750));
    width: calc(295 * (100vw / 750));
    height: calc(599 * (100vw / 750));
    background-image: url(../img/sp/info_bg.png);
  }

  /************** text **************/
  #em240821PUMA .others .content__title{
    font-size: calc(56 * (100vw / 750));
    letter-spacing: 0.04em;
  }

  #em240821PUMA .others .content__text.text01{
    margin-top: calc(40 * (100vw / 750));
  }

  #em240821PUMA .others .content__text.text02{
    margin-top: calc(24 * (100vw / 750));
  }

  #em240821PUMA .others .content__text.text03{
    margin-top: calc(24 * (100vw / 750));
  }

  /************** button **************/
  #em240821PUMA .link__button{
    width: calc(500 * (100vw / 750));
    margin-top: calc(177 * (100vw / 750));
  }

  #em240821PUMA .link__button a{
    padding-top: calc(16 * (100vw / 750));
    padding-bottom: calc(23 * (100vw / 750));
    font-size: calc(44 * (100vw / 750));
  }
}