@charset "UTF-8";

:root {
  --color-bg: #fff;
  --color-font: #1F1F1F;
  --color-line: #4c4c4c;
}

/*--------------------------------
            CSS Animation
 --------------------------------*/

/*------------ Fade In ------------*/

#lp_contents .fadeIn {
  opacity: 0;
  transition: 2s;
}

#lp_contents .fadeIn.is-show {
  opacity: 1;
}

#lp_contents .fadeInUp {
  opacity: 0;
  transform: translate(0, 5rem);
  transition: 2s;
}

#lp_contents .fadeInUp.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

#lp_contents .delay1{
  transition-delay: 0.25s;
}
#lp_contents .delay2{
  transition-delay: 0.5s;
}
#lp_contents .delay3{
  transition-delay: 0.75s;
}
#lp_contents .delay4{
  transition-delay: 1s;
}


/*--------------------------------
                共 通
 --------------------------------*/

main,#Wrap,.wrapBottom,.wrapTop{
  width: 100%;
  max-width: 100%;
}

#lp_contents *{
  box-sizing: border-box;
}

#lp_contents{
  font-feature-settings: "palt";
  font-size: 2rem;
  letter-spacing: 0.125em;
  line-height: 2.2;
  text-align: justify;

  color: var(--color-font);
  background-color: var(--color-bg);
  position: relative;
  /*overflow: hidden;*/
}
#lp_contents .sp_only{display: none !important;}
#lp_contents img{width: 100%;display: block;}
#lp_contents a{display: block;cursor: pointer;transition: all 0.5s;color: inherit;}
#lp_contents ul li,#LP_page ol li{list-style: none;}
#lp_contents h1,#lp_contents h2,#lp_contents h3{padding: 0;float: none;font-weight: normal;}
#lp_contents p {
  display: block;
  margin: 0;
  font-size: 2rem;
  line-height: 2.2;
}
#lp_contents p:not(:nth-of-child(1)){
  margin-top: 5rem;
}
#lp_contents big{
  display: block;
  font-size: 3.2rem;
  line-height: 2;
}
#lp_contents section{
  position: relative;
  border-bottom: 1px solid var(--color-line);
}

#lp_contents ._inner{
  width: 92rem;
  padding: 10.5rem 0 14.5rem;
  margin: auto;
}

#lp_contents .sec_blk{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap:4rem 6rem;
  margin-top: 16rem;
}

#lp_contents .sec_blk:nth-child(odd){
  flex-direction: row-reverse;
}

#lp_contents .sec_blk .img_blk{
  width: 44rem;
}

#lp_contents .sec_blk .text_blk{
  width: 42rem;
}

#lp_contents .sec_ttl{
  font-size: 3.6rem;
  line-height: 2;
}

#lp_contents p:not(:first-child){
  margin-top: 4rem;
}

#lp_contents .link_text{
  display: flex;
  align-items: center;
  width: fit-content;
  margin-top: 4rem;
  font-size: 1.6rem;
  border-bottom: 1px solid var(--color-line);
}

#lp_contents .link_text .arrow{
  position: relative;
  display: inline-block;
  width: 0.8rem;
  height: 1.6rem;
  margin-left: 1.7rem;
}

#lp_contents .link_text .arrow:before{
  content: '';
  width: 1rem;
  height: 1rem;
  border-top: 1px solid var(--color-line);
  border-right: 1px solid var(--color-line);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: -0.5rem;
  margin: auto;
}


/*------------ bnr_list ------------*/

#lp_contents .bnr_list{
  padding: 16rem 0 6rem;
}

#lp_contents .bnr_list ul{
  width: 84rem;
  margin: auto;
}

#lp_contents .bnr_list li{
  width: 24rem;
  padding: 0 2rem;
  box-sizing: content-box;
}

#lp_contents .bnr_list p{
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.8;
  margin-top: 2.5rem;
}

#lp_contents .bnr_list .slick-prev,
#lp_contents .bnr_list .slick-next{
  width: 2rem;
  height: 5rem;
  top: 15rem;
  background-size: 100% 100%;
}

#lp_contents .bnr_list .slick-prev{
  left: -5rem;
  background-image: url(/Page/Lp/sb_sustainability/img/arrow-left.svg);
}

#lp_contents .bnr_list .slick-next{
  right: -5rem;
  background-image: url(/Page/Lp/sb_sustainability/img/arrow-right.svg);
}

#lp_contents .bnr_list .slick-prev:before,
#lp_contents .bnr_list .slick-next:before{
  content: '';
}


/*------------ lp_main ------------*/

#lp_contents.lp_main section{
  border-style: none;
}

@media screen and (min-width: 768px){
  #lp_contents.lp_main ._inner{
    width: 88rem;
  }

  #lp_contents.lp_main p{
    font-size: 2.4rem;
  }
}


/*------------ lp_shopper ------------*/

@media screen and (min-width: 768px){
  #lp_contents.lp_shopper .sec_blk{
    margin-top: 14.5rem;
  }

  #lp_contents.lp_shopper .sec_blk .img_blk{
    width: 100%;
    display: flex;
  }

  #lp_contents.lp_shopper .sec_blk .img_blk img{
    width: 50%;
  }

  #lp_contents.lp_shopper .sec_blk .text_blk{
    width: 74rem;
    margin: auto;
  }
}


/*------------ lp_materials ------------*/

#lp_contents.lp_materials .sec_blk:nth-child(odd){
  flex-direction: row;
}

#lp_contents.lp_materials .sec_blk:nth-child(even){
  flex-direction: row-reverse;
}


/*------------ lp_ingredient ------------*/

#lp_contents.lp_ingredient .sec_ingredient p img{
  width: 13rem;
}



/*--------------------------------
            Responsive
 --------------------------------*/

@media screen and (max-width: 1400px){
  html {
    font-size: calc(10 * (100vw / 1400));
  }
}

/*--------------------------------
            Layout  SP
 --------------------------------*/
@media (max-width: 767px) {

  html {
    font-size: calc(10 * (100vw / 780));
  }

  #FooterWrap {
    margin-top: -4rem;
  }

  #lp_contents{
    font-size: 2.8rem;
  }

  #lp_contents .sp_only{display: block !important;}
  #lp_contents .pc_only{display: none !important;}

  #lp_contents p {
    font-size: 2.8rem;
  }
  #lp_contents big{
    font-size: 4rem;
  }

  #lp_contents ._inner{
    width: 69rem;
    padding: 6.8rem 0 14.2rem;
  }

  #lp_contents .sec_blk{
    gap:6.8rem;
    margin-top: 15rem;
  }

  #lp_contents .sec_blk:nth-child(odd){
    flex-direction: row-reverse;
  }

  #lp_contents .sec_blk .img_blk,
  #lp_contents .sec_blk .text_blk{
    width: 100%;
  }

  #lp_contents .sec_ttl{
    font-size: 4.4rem;
  }

  #lp_contents p:not(:first-child){
    margin-top: 4.2rem;
  }

  #lp_contents .link_text{
    margin-top: 5rem;
    font-size: 2.4rem;
  }

  #lp_contents .link_text .arrow{
    width: 1.3rem;
    height: 2.6rem;
    margin-left: 2.4rem;
  }

  #lp_contents .link_text .arrow:before{
    width: 2rem;
    height: 2rem;
    left: -1rem;
  }


  /*------------ bnr_list ------------*/

  #lp_contents .bnr_list{
  }

  #lp_contents .bnr_list ul{
    width: 48rem;
  }

  #lp_contents .bnr_list li{
    width: 48rem;
    padding: 0;
  }

  #lp_contents .bnr_list p{
    font-size: 2.8rem;
    margin-top: 4.5rem;
  }

  #lp_contents .bnr_list .slick-prev,
  #lp_contents .bnr_list .slick-next{
    width: 4rem;
    height: 10rem;
    top: 30rem;
  }

  #lp_contents .bnr_list .slick-prev{
    left: -10rem;
  }

  #lp_contents .bnr_list .slick-next{
    right: -10rem;
  }


  /*------------ lp_main ------------*/

  #lp_contents.lp_main ._inner{
    padding: 10.5rem 0 16rem;
  }


  /*------------ lp_shopper ------------*/

  #lp_contents.lp_shopper .sec_shopper p:not(.sec_ttl){
    margin-top: 0;
  }


  /*------------ lp_ingredient ------------*/

  #lp_contents.lp_ingredient .sec_ingredient p img{
    width: 17rem;
  }

}