@charset "UTF-8";

:root {
  --white-color: #fff;
  --black-color: #000;
  --darkgray-color: #333;
  --gray-color: #F7F7F7;
  --yellow-color: #E2CAA2;
  --green-color: #095437;
  --eng-font: "Josefin Sans", sans-serif;
  --ttl-font: "Zen Kaku Gothic New", sans-serif;
}

/*--------------------------------
            CSS Animation
 --------------------------------*/

/*------------ Fade In ------------*/

@keyframes fadeInDown {
  0% {opacity: 0;}
  100% {
    opacity: 1;
  }
}

#lp_contents .fadeIn {
  opacity: 0;
  transition: 2s;
}

#lp_contents .fadeIn.is-show {
  opacity: 1;
}

#lp_contents .fade{
  transition: 2s;
  opacity: 0;
}

#lp_contents .fade.is-show {
  opacity: 1;
  animation-name: fadeInDown;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

#lp_contents .fadeDown {
  transform: translate(0, -2rem);
}

#lp_contents .fadeDown.is-show {
  transform: translate(0, 0);
}


/*------------ navi ------------*/

.navi{
  transition: all 0.5s;
  transform: translateY(100%);
  position: fixed !important;
  bottom: 0;
  z-index: 100;
}

.navi.fixed{
  transform: translateY(0);
}

.navi.none{
  transform: translateY(100%);
}


/*--------------------------------
                共 通
 --------------------------------*/

#Wrap,.wrapBottom,.wrapTop{
  width: 100%;
}

#lp_contents *{
  box-sizing: border-box;
}

#lp_contents{
  font-family: var(--eng-font),"ヒラギノ角ゴ ProN W3", HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  color: var(--black-color)000;
  /*overflow: hidden;*/
  position: relative;
  padding-bottom: 8rem;
}
#lp_contents .sp_only{display: none;}
#lp_contents img{width: 100%;display: block;}
#lp_contents a{display: block;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: 1.5rem;
  line-height: 2;
}
#lp_contents sup{
  font-size: 50%;
  margin-top: -0.6rem;
}
#lp_contents section{
  margin: 0 auto 10rem;
}
#lp_contents .main-ttl{
  text-align: center;
  font-family: "Josefin Sans",var(--ttl-font),"ヒラギノ角ゴ ProN W3", HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 3.6rem;
  line-height: 1.34;
  margin: 0 auto 6rem;
  padding: 2.5rem 0 3rem;
  position: relative;
}
#lp_contents .main-ttl .sub-ttl{
  font-family: var(--eng-font);
  font-style: italic;
  font-weight: 300;
  font-size: 5rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0.1;
}
#lp_contents .main-ttl .point{
  color: var(--green-color);
}
#lp_contents .main-ttl:after{
  content: '';
  width: 10rem;
  height: 1px;
  background: var(--black-color);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
#lp_contents .note{
  display: block;
  margin-top: 2rem;
  font-size: 1rem;
  line-height: 1.5;
}


/*------------ navi_wrap ------------*/

#lp_contents .navi_wrap{
  width: 100%;
  margin: 0 auto 10rem;
}

#lp_contents .navi_wrap.navi{
  margin: 0;
  overflow-x: scroll;
}

#lp_contents .navi_wrap .ttl{
  text-align: center;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 2rem;
}

#lp_contents .navi_wrap ul{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  padding: 2rem;
  position: relative;
}

#lp_contents .navi_wrap ul:before{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: var(--black-color);
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.8;
}

#lp_contents .navi_wrap.navi ul{
  padding: 1rem 0;
}

#lp_contents .navi_wrap li{
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--white-color);
  padding: 0.4rem 5rem 0;
  position: relative;
}

#lp_contents .navi_wrap li:not(:last-child):before{
  content: '';
  display: block;
  width: 1px;
  height: 4rem;
  background: var(--white-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

#lp_contents .navi_wrap li a:hover{
  color: var(--yellow-color);
  opacity: 1;
  cursor: pointer;
}


/*------------ sec_mv ------------*/

#lp_contents .sec_mv{
  margin-bottom: 8rem;
}

#lp_contents .sec_mv .campaign_wrap{
  width: 60rem;
  padding: 3rem 0 3.2rem;
  margin: 8rem auto 0;
  background: var(--darkgray-color);
  position: relative;
  text-align: center;
}

#lp_contents .sec_mv .campaign_wrap:before{
  content: '';
  width: calc(100% - 0.8rem);
  height: calc(100% - 0.8rem);
  border: 1px solid var(--white-color);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

#lp_contents .sec_mv .lead{
  text-align: center;
  font-size: 1.6rem;
  line-height: 2.5;
  margin: 8rem auto 0;
}

#lp_contents .sec_mv .lead b{
  font-weight: bold;
  font-size: 1.7rem;
  color: var(--green-color);
}

/*campaign_wrap*/
#lp_contents .sec_mv .campaign_wrap .main-ttl{
  color: var(--yellow-color);
  font-size: 1.8rem;
  line-height: 1;
  margin: 0 auto 2rem;
  padding-top: 2rem;
  padding-bottom: 0;
}

#lp_contents .sec_mv .campaign_wrap .main-ttl:after{
  content: none;
}

#lp_contents .sec_mv .campaign_wrap .text{
  font-size: 2rem;
  line-height: 1.5;
  color: var(--white-color);
}

#lp_contents .sec_mv .campaign_wrap .text big{
  font-size: 2.4rem;
}

#lp_contents .sec_mv .campaign_wrap .text small{
  font-size: 1.5rem;
}

/*navi_wrap*/
#lp_contents .sec_mv .navi_wrap{
  margin: 8rem auto 0;
}


/*------------ sec_reedle ------------*/

/*text_wrap*/
#lp_contents .sec_reedle .text_wrap{
  text-align: center;
}

#lp_contents .sec_reedle .text_wrap .lead{
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 4rem;
}

#lp_contents .sec_reedle .text_wrap .line_text{
  margin-top: 1rem;
}

#lp_contents .sec_reedle .text_wrap .line_text span{
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  background: linear-gradient(transparent 50%, rgba(9,84,55,0.4) 50%);
  padding-bottom: 0.2em;
}

#lp_contents .sec_reedle .text_wrap figure{
  width: 6rem;
  margin: 3rem auto;
}

/*feature_wrap*/
#lp_contents .sec_reedle .feature_wrap{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem 4rem;
  padding: 4rem;
  background: var(--gray-color);
  width: 80rem;
  margin: 6rem auto 0;
}

#lp_contents .sec_reedle .feature_wrap figure{
  position: relative;
  width: 22rem;
}

#lp_contents .sec_reedle .feature_wrap figure p{
  text-align: center;
  font-weight: bold;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3rem;
}

#lp_contents .sec_reedle .feature_wrap .ttl{
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 2.4rem;
}

#lp_contents .sec_reedle .feature_wrap li{ 
  margin-bottom: 2rem;
}

#lp_contents .sec_reedle .feature_wrap li p{
  line-height: 1.5;
  text-indent: -1rem;
  padding-left: 1rem;
}

#lp_contents .sec_reedle .feature_wrap li b{
  font-size: 1.6rem;
  color: var(--green-color);
}


/*------------ sec_selfcare ------------*/

#lp_contents .sec_selfcare{
  padding-top: 10rem;
  border-top: 1px solid;
}

/*point_wrap*/
#lp_contents .sec_selfcare .point_wrap:not(:first-child){
  margin: 4rem auto 0;
}

#lp_contents .sec_selfcare .point_wrap .point_ttl{
  background: var(--darkgray-color);
  width: fit-content;
  margin: 0 auto 2rem;
  padding: 0.8rem 3rem 0.4rem;
  border-radius: 100rem;
  text-align: center;
  color: var(--white-color);
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
}

#lp_contents .sec_selfcare .point_wrap .point_ttl big{
  font-size: 2.5rem;
}

#lp_contents .sec_selfcare .point_wrap .text{
  text-align: center;
  font-size: 1.6rem;
}

#lp_contents .sec_selfcare .point_wrap .point_blk{
  width: 60rem;
  margin: 2rem auto 0;
  padding: 2.5rem;
  background: var(--gray-color);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

#lp_contents .sec_selfcare .point_wrap .img_blk ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

#lp_contents .sec_selfcare .point_wrap .img_blk figure{
  width: 15rem;
  position: relative;
}

#lp_contents .sec_selfcare .point_wrap .img_blk figure p{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: fit-content;
  height: fit-content;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  text-shadow: 0px 0px 10px var(--black-color);
  color: var(--white-color);
}

#lp_contents .sec_selfcare .point_wrap .img_blk .tag{
  width: fit-content;
  margin: 1.5rem auto 0;
  padding: 0.8rem 1.5rem 0.4rem;
  border-radius: 100rem;
  text-align: center;
  background: var(--white-color);
  font-size: 1.3rem;
  line-height: 1;
}

#lp_contents .sec_selfcare .point_wrap .img_blk .text{
  font-size: 1.3rem;
  line-height: 1.5;
  margin-top: 1.5rem;
}

#lp_contents .sec_selfcare .point_wrap .text_blk p{
  width: 38rem;
  font-size: 1.4rem;
}


/*------------ sec_lineup ------------*/

#lp_contents .sec_lineup{
  background: var(--darkgray-color);
  padding: 10rem 0 ;
  margin: 0 auto 8rem;
}

#lp_contents .sec_lineup .main-ttl{
  color: var(--yellow-color);
}

#lp_contents .sec_lineup .main-ttl:after{
  background: var(--yellow-color);
}

/*item_blk*/
#lp_contents .sec_lineup .item_blk ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6rem 4rem;
}

#lp_contents .sec_lineup .item_blk li{
  width: calc(calc(100% - 8rem) / 3);
}

#lp_contents .sec_lineup .item_blk .ttl{
  width: 100%;
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-color);
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 auto 2rem;
  padding-top: 0.5rem;
  border-radius: 100rem;
  color: var(--black-color);
}

#lp_contents .sec_lineup .item_blk .ttl big{
  font-size: 2.5rem;
}


#lp_contents .sec_lineup .item_blk .price{
  text-align: center;
  font-size: 1.8rem;
  line-height: 1;
}

#lp_contents .sec_lineup .item_blk .price small{
  font-size: 1.2rem;
}

#lp_contents .sec_lineup .item_blk li > p a{
  display: inline;
  color: var(--green-color);
  text-decoration: underline;
}

#lp_contents .sec_lineup .item_blk figure{
  margin: 2rem auto 0;
  position: relative;
}

#lp_contents .sec_lineup .item_blk figure .icon{
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  background: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  color: var(--black-color);
}

#lp_contents .sec_lineup .item_blk .text_blk{
  position: relative;
  padding: 2rem 2rem 4rem;
  background: rgba(255, 255, 255, .1);
}

#lp_contents .sec_lineup .item_blk .text_blk p{
  text-indent: -1rem;
  padding-left: 1rem;
  font-size: 1.3rem;
}

#lp_contents .sec_lineup .item_blk .link_btn{
  width: 22rem;
  height: 4rem;
  background: var(--black-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-color);
  font-size: 1.8rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform: translateY(50%);
}

#lp_contents .sec_lineup .item_blk .link_btn:hover{
  background: var(--yellow-color);
  color: var(--black-color);
  opacity: 1;
}

#lp_contents .sec_lineup .item_blk .item_list{
  margin: 2rem auto 0;
}

#lp_contents .sec_lineup .item_blk .item_list p{
  font-size: 1.3rem;
  line-height: 1.75;
}

#lp_contents .sec_lineup .item_blk .item_list span{
  display: inline-block;
  font-weight: bold;
  text-decoration: underline;
  margin-left: 1rem;
}

/*item_wrap*/
#lp_contents .sec_lineup .item_wrap{
  width: 110rem;
  color: var(--white-color);
  margin: auto;
}

#lp_contents .sec_lineup .item_wrap .lead{
  text-align: center;
  font-size: 1.8rem;
  margin: 0 auto 6rem;
}

#lp_contents .sec_lineup .item_wrap .lead span{
  display: block;
  width: fit-content;
  margin: 2rem auto 0;
  padding: 1.3rem 1.5rem 1rem;
  line-height: 1;
  border-radius: 100rem;
  border: 1px solid var(--white-color);
}

/*rcmd_wrap*/
#lp_contents .sec_lineup .rcmd_wrap{
  width: 110rem;
  margin: 10rem auto 0;
}
#lp_contents .sec_lineup .rcmd_wrap .rcmd_blk{
  border-radius: 2rem;
  background: var(--white-color);
  overflow: hidden;
}

#lp_contents .sec_lineup .rcmd_wrap .rcmd_blk:not(:first-child){
  margin: 6rem auto 0;
}

#lp_contents .sec_lineup .rcmd_wrap .rcmd_ttl{
  background: var(--black-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 2.4rem;
  font-weight: bold;
  width: 100%;
  height: 6rem;
}

#lp_contents .sec_lineup .rcmd_wrap .item_blk{
  padding: 3rem 3rem 5rem;
}

#lp_contents .sec_lineup .rcmd_wrap .item_blk .ttl{
  background: var(--gray-color);
}


/*------------ sec_review ------------*/

/*graph_wrap*/
#lp_contents .sec_review .graph_wrap{
  position: relative;
  width: 28rem;
  margin: 0 auto 6rem;
}

#lp_contents .sec_review .graph_wrap p{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  font-size: 2rem;
  line-height: 1.2;
  text-align: center;
  height: fit-content;
}

#lp_contents .sec_review .graph_wrap p big{
  font-size: 3rem;
}

/*review_wrap*/
#lp_contents .sec_review .review_wrap ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  width: 110rem;
  margin: auto;
}

#lp_contents .sec_review .review_wrap li{
  width: 54rem;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #F7F4F0;
}

#lp_contents .sec_review .review_wrap .prof_blk{
  background-color: #EAE3DE;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

#lp_contents .sec_review .review_wrap .prof_blk img{
  width: 10rem;
}

#lp_contents .sec_review .review_wrap .prof_blk p{
  font-size: 1.3rem;
  line-height: 1.75;
}

#lp_contents .sec_review .review_wrap .review_blk{
  padding: 2rem;
}

#lp_contents .sec_review .review_wrap .review_blk p{
  text-align: justify;
  font-size: 1.4rem;
}

#lp_contents .sec_review .review_wrap .review_blk p b{
  font-size: 1.6rem;
  color: var(--green-color);
}


/*------------ all_btn ------------*/

#lp_contents .all_btn a{
  width: 50rem;
  height: 6.5rem;
  margin: auto;
  padding-top: 0.6rem;
  background: var(--black-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-color);
  font-size: 1.8rem;
}

#lp_contents .all_btn a:hover{
  background: var(--yellow-color);
  color: var(--black-color);
  opacity: 1;
}



/*--------------------------------
            Responsive
 --------------------------------*/

@media screen and (max-width: 1600px){
  html {
    font-size: calc(10 * (100vw / 1600));
  }
}

/*--------------------------------
            Layout  SP
 --------------------------------*/
@media (max-width: 767px) {

  html {
    font-size: calc(10 * (100vw / 430));
  }

  #share{
    transition: all 0.5s;
  }

  #share.fixed{
    bottom: 7.6rem;
  }

  #share.none{
    bottom: 5%;
  }

  #lp_contents{
    padding-bottom: calc(60 *(100vw / 428));
  }

  #lp_contents .sp_only{display: block;}
  #lp_contents .pc_only{display: none;}

  #lp_contents section{
    margin: 0 auto 6rem;
  }
  #lp_contents .main-ttl{
    font-size: 2.9rem;
    margin: 0 auto 5rem;
    padding: 2.5rem 0 3rem;
  }
  #lp_contents .main-ttl .sub-ttl{
    font-size: 4rem;
  }


  /*------------ navi_wrap ------------*/

  #lp_contents .navi_wrap{
    margin: 0 auto 6rem;
  }

  #lp_contents .navi_wrap .ttl{
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }

  #lp_contents .navi_wrap ul{
    padding: 0;
  }

  #lp_contents .navi_wrap li{
    text-align: left;
    font-size: 1.5rem;
    padding: 2rem;
    width: 100%;
  }

  #lp_contents .navi_wrap:not(.navi) ul li:after{
    content: '';
    display: block;
    width: 1.2rem;
    height: 1rem;
    background-image: url(../img/arrow.png);
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 2rem;
    margin: auto;
  }

  #lp_contents .navi_wrap:not(.navi) ul li:not(:last-child):before{
    content: '';
    width: 100%;
    height: 1px;
    top: auto;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
  }

  #lp_contents .navi_wrap.navi ul{
    padding: 0;
    width: max-content;
  }

  #lp_contents .navi_wrap.navi li{
    text-align: center;
    width: fit-content;
    padding: 1.5rem 2rem 1rem;
    font-size: 1.4rem;
  }

  #lp_contents .navi_wrap.navi li .pc_only{
    display: block !important;
  }


  /*------------ sec_mv ------------*/

  #lp_contents .sec_mv{
    margin-bottom: 6rem;
  }

  #lp_contents .sec_mv .campaign_wrap{
    width: 40rem;
    padding: 2rem 0 3rem;
    margin: 6rem auto 0;
  }

  #lp_contents .sec_mv .campaign_wrap:before{
    width: calc(100% - 0.8rem);
    height: calc(100% - 0.8rem);
  }

  #lp_contents .sec_mv .lead{
    font-size: 1.5rem;
    line-height: 2;
    margin: 6rem auto 0;
  }

  /*campaign_wrap*/
  #lp_contents .sec_mv .campaign_wrap .text{
    font-size: 1.8rem;
  }

  #lp_contents .sec_mv .campaign_wrap .text big{
    font-size: 2.1rem;
  }

  #lp_contents .sec_mv .campaign_wrap .text small{
    font-size: 1.3rem;
  }

  /*navi_wrap*/
  #lp_contents .sec_mv .navi_wrap{
    margin: 6rem auto 0;
  }


  /*------------ sec_reedle ------------*/

  /*text_wrap*/
  #lp_contents .sec_reedle .text_wrap .lead{
    font-size: 1.8rem;
    margin-bottom: 3rem;
  }

  #lp_contents .sec_reedle .text_wrap .line_text{
    margin-top: 1.5rem;
  }

  #lp_contents .sec_reedle .text_wrap figure{
    margin: 2.5rem auto;
  }

  /*feature_wrap*/
  #lp_contents .sec_reedle .feature_wrap{
    padding: 2.5rem;
    width: 40rem;
    margin: 5rem auto 0;
  }

  #lp_contents .sec_reedle .feature_wrap figure{
    width: 20rem;
    margin: 4rem auto 0;
  }

  #lp_contents .sec_reedle .feature_wrap .ttl{
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    position: absolute;
    top: 2.5rem;
    left: 0;
    right: 0;
    margin: auto;
  }

  #lp_contents .sec_reedle .feature_wrap li p{
    font-size: 1.7rem;
    text-indent: -1.5rem;
    padding-left: 1.5rem;
  }

  #lp_contents .sec_reedle .feature_wrap li{
    margin-bottom: 1rem;
  }

  #lp_contents .sec_reedle .feature_wrap li b{
    font-size: 1.8rem;
  }


  /*------------ sec_selfcare ------------*/

  #lp_contents .sec_selfcare{
    padding-top: 6rem;
  }

  /*point_wrap*/

  #lp_contents .sec_selfcare .point_wrap .point_ttl{
    margin: 0 auto 1rem;
    padding: 0.6rem 3rem 0.3rem;
    font-size: 1.4rem;
  }

  #lp_contents .sec_selfcare .point_wrap .point_ttl big{
    font-size: 2.2rem;
  }

  #lp_contents .sec_selfcare .point_wrap .point_blk{
    width: 40rem;
    padding: 2.5rem 1.5rem;
  }

  #lp_contents .sec_selfcare .point_wrap .img_blk ul{
    gap: 0 5rem;
  }

  #lp_contents .sec_selfcare .point_wrap .img_blk figure{
    width: 13rem;
  }

  #lp_contents .sec_selfcare .point_wrap .img_blk .tag{
    padding: 0.4rem 1.5rem 0.2rem;
    font-size: 1.4rem;
  }

  #lp_contents .sec_selfcare .point_wrap .img_blk .text{
    font-size: 1.4rem;
  }

  #lp_contents .sec_selfcare .point_wrap .text_blk p{
    width: 22rem;
    font-size: 1.3rem;
  }


  /*------------ sec_lineup ------------*/

  #lp_contents .sec_lineup{
    padding: 6rem 0 ;
    margin: 0 auto 5rem;
  }

  /*item_blk*/

  #lp_contents .sec_lineup .item_blk li{
    width: 100%;
  }

  #lp_contents .sec_lineup .item_blk .text_blk p{
    text-indent: -1.2rem;
    padding-left: 1.2rem;
    font-size: 1.5rem;
  }

  #lp_contents .sec_lineup .item_blk .item_list{
    margin: 1.5rem auto 0;
  }

  /*item_wrap*/
  #lp_contents .sec_lineup .item_wrap{
    width: 37rem;
  }

  #lp_contents .sec_lineup .item_wrap .lead{
    font-size: 1.6rem;
    margin: 0 auto 4rem;
  }

  /*rcmd_wrap*/
  #lp_contents .sec_lineup .rcmd_wrap{
    width: 37rem;
  }
  #lp_contents .sec_lineup .rcmd_wrap .rcmd_blk{
    border-radius: 1rem;
  }

  #lp_contents .sec_lineup .rcmd_wrap .rcmd_blk:not(:first-child){
    margin: 4rem auto 0;
  }

  #lp_contents .sec_lineup .rcmd_wrap .rcmd_ttl{
    font-size: 1.8rem;
    height: 5rem;
  }

  #lp_contents .sec_lineup .rcmd_wrap .item_blk{
    padding: 2.5rem 2rem;
  }


  /*------------ sec_review ------------*/

  /*graph_wrap*/
  #lp_contents .sec_review .graph_wrap{
    width: 25rem;
    margin: 0 auto 4rem;
  }

  /*review_wrap*/
  #lp_contents .sec_review .review_wrap ul{
    width: 40rem;
  }

  #lp_contents .sec_review .review_wrap li{
    width: 100%;
  }

  #lp_contents .sec_review .review_wrap .prof_blk{
    gap: 1.5rem;
    padding: 1.5rem;
  }

  #lp_contents .sec_review .review_wrap .prof_blk img{
    width: 9rem;
  }

  #lp_contents .sec_review .review_wrap .review_blk{
    padding: 2.5rem 1.5rem;
  }


  /*------------ all_btn ------------*/

  #lp_contents .all_btn a{
    width: 39rem;
    height: 6rem;
    padding-top: 0.4rem;
  }

}