@charset "UTF-8";

:root {
  --title-font: "dnp-shuei-mincho-pr6n", sans-serif;
  --eng-font: "Ogg", sans-serif;
  --color-bg: #C10016;
  --color-font: #000;
}

@font-face {
  font-family: "Ogg";
  src:
  url(../font/Ogg-Regular.ttf) format("truetype");
}

/*--------------------------------
            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;
}


/*------------ slider ------------*/

#lp_contents .slick-dots{
  position: static;
  margin: 4rem auto 0;
  line-height: 0;
}

#lp_contents .slick-dots li{
  width: 4rem;
  height: 0.2rem;
  opacity: .3;
}

#lp_contents .slick-dots li.slick-active{
  opacity: 1;
}

#lp_contents .slick-dots li button{
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0 1rem;
  position: relative;
}

#lp_contents .slick-dots li button:before {
  font-family: 'slick';
  font-size: 0;
  line-height: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 1;
}

#lp_contents .slick-dots li:first-child:last-child{
  display: none;
}

#lp_contents .slick-prev, 
#lp_contents .slick-next{
  width: 5rem;
  height: 5rem;
}

#lp_contents .slick-prev{
  left: -10rem;
}

#lp_contents .slick-next{
  right: -10rem;
}

#lp_contents .slick-prev:before, 
#lp_contents .slick-next:before {
  font-size: 0;
  color: #000;
  opacity: 1;

  content: '';
  display: block;
  width: 3rem;
  height: 3rem;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(-135deg);

  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

#lp_contents .slick-next:before{ 
  transform: rotate(45deg);
}

#lp_contents .slick-dotted.slick-slider{
  margin-bottom: 0;
}

@media (max-width: 767px) {
  #lp_contents .slick-dots{
    margin: 2rem auto 0;
  }

  #lp_contents .slick-dots li{
    width: 3rem;
  }

  #lp_contents .slick-prev, 
  #lp_contents .slick-next{
    width: 1.5rem;
    height: 1.5rem;
    top: 14rem;
    z-index: 5;
  }

  #lp_contents .slick-prev{
    left: 2.4rem;
  }

  #lp_contents .slick-next{
    right: 2.5rem;
  }

  #lp_contents .slick-prev:before,
  #lp_contents .slick-next:before{
    width: 1.5rem;
    height: 1.5rem;
  }
}



/*------------ modal ------------*/

#lp_contents .modal{
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
}

#lp_contents .modal__bg{
  background: rgba(0,0,0,0.3);
  height: 100vh;
  position: absolute;
  width: 100%;
}

#lp_contents .modal__content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

#lp_contents .js-modal-close:not(.modal__bg){
  width: 4rem;
  height: 4rem;
  background-color: #000;
  border: 1px solid;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  z-index: 1200;
  cursor: pointer;
}

#lp_contents .js-modal-close .close{
  width: 2rem;
  height: 2rem;
  position: relative;
  pointer-events: none;
}

#lp_contents .js-modal-close .close:before,
#lp_contents .js-modal-close .close:after{
  content: '';
  width: 1.5rem;
  height: 1px;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
}

#lp_contents .js-modal-close .close:after{
  transform: rotate(-45deg);
}


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

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

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

#lp_contents{
  font-family: "Open Sans",游ゴシック体, "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", YuGothic, 'ヒラギノ角ゴシック','Hiragino Sans','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','ヒラギノ角ゴ StdN','Hiragino Kaku Gothic StdN', Meiryo, sans-serif;
  font-feature-settings: "palt";
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;

  color: var(--color-font);
  background-color: var(--color-bg);
  position: relative;
  /*overflow: hidden;*/
}
#lp_contents .sp_only{display: none;}
#lp_contents img{width: 100%;display: block;}
#lp_contents a{display: block;cursor: pointer;transition: all 0.5s;color: inherit;width: 100%;}
#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;line-height: 2;}
#lp_contents sup{
  font-size: 50%;
  margin-top: -0.6rem;
}
#lp_contents small.note{
  display: inline-block;
  margin-top: 2rem;
  font-size: 1.2rem;
  line-height: 1.5;
}
#lp_contents section{
  position: relative;
  padding: 12rem 0;
}
#lp_contents section:not(:last-child) {
    border-bottom: 2rem solid #AA071C;
}

/*text*/
#lp_contents .eng{
  font-family: var(--eng-font);
  font-size: 3.6rem;
}

#lp_contents h2{
  font-family: "Ogg","dnp-shuei-mincho-pr6n", sans-serif;
  font-size: 3.6rem;
  line-height: 1.5;
  letter-spacing: .15em;
  margin: 0 auto 3rem;
  color: #fff;
}

#lp_contents h2 small{
  font-size: 2.4rem;
}

#lp_contents h3{
  width: 90rem;
  padding-bottom: 3rem;
  margin: 0 auto 6rem;
  border-bottom: 1px solid #fff;
  text-align: center;
  font-family: var(--title-font);
  font-size: 2.7rem;
  font-weight: 500;
  letter-spacing: .15em;
  position: relative;
  color: #fff;
}

#lp_contents h3:before{
  content: '';
  display: block;
  width: 1.5rem;
  height: 1.2rem;
  border-top: 1.2rem solid #fff;
  border-left: 0.75rem solid transparent;
  border-right: 0.75rem solid transparent;
  position: absolute;
  bottom: -1.2rem;
  left: 0;
  right: 0;
  margin: auto;
  box-sizing: border-box;
}

#lp_contents .sec_lead{
  font-size: 2.4rem;
  line-height: 1.75;
}

/*btn*/
#lp_contents .link_btn{
  width: 30rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #fff;
  font-family: var(--eng-font);
  font-size: 2rem;
  letter-spacing: 0.15em;
  margin: 3rem auto 0;
}

#lp_contents .link_btn.all{
  width: 36rem;
  height: 6rem;
  font-family: var(--title-font);
  font-size: 2rem;
}

#lp_contents .review_btn{
  width: fit-content;
  font-family: var(--eng-font);
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.15em;
  margin: 3rem auto 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid;
}

#lp_contents .review_btn .plus{
  position: relative;
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  margin-right: 0.6rem;
}

#lp_contents .review_btn .plus:before,
#lp_contents .review_btn .plus:after{
  content: '';
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

#lp_contents .review_btn .plus:after{
  width: 1px;
  height: 100%;
}

/*list*/
#lp_contents .list_wrap{
  margin: auto;
  width: 90rem;
}

#lp_contents .list_wrap ul{
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

#lp_contents .list_wrap li{
  position: relative;
  padding: 2rem;
  background-color: #BC0117;
  width: 100%;
}

#lp_contents .list_wrap li .no{
  width: 5rem;
  display: flex;
  justify-content: center;
  font-family: var(--eng-font);
  font-size: 4.8rem;
  line-height: 1;
  position: absolute;
  top: -1rem; 
  left: 2rem;
}

#lp_contents .list_wrap li p{
  line-height: 1.75;
}

#lp_contents .list_wrap li .text{
  font-size: 2rem;
}

#lp_contents .list_wrap li .text big{
  font-size: 2.4rem;
}

#lp_contents .list_wrap li .note{
  margin-top: 0;
}


/*------------ nav_wrap ------------*/

#lp_contents .nav_wrap{
  position: fixed;
  right: 3rem;
  bottom: 3rem;
  width: 18rem;
  height: 18rem;
  background-color: #000;
  color: #fff;
  padding: 2rem 0;

  opacity: 0;
  transition: all 0.5s;
}

#lp_contents .nav_wrap.fixed{
  opacity: 1;
}

#lp_contents .nav_wrap.none{
  opacity: 0;
}

#lp_contents .nav_wrap:before{
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  margin: auto;
}

#lp_contents .nav_wrap .nav_ttl{
  font-family: var(--eng-font);
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

#lp_contents .nav_wrap .nav_ttl small{
  font-size: 1.2rem;
}

#lp_contents .nav_wrap .nav_txt{
  font-size: 1.3rem;
  line-height: 1.75;
}


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

#lp_contents .sec_mv{
  padding: 0;
}

#lp_contents .sec_mv .mv_lead{
  padding: 10rem 0;
  font-size: 2rem;
  line-height: 2.5;
  color: #fff;
}


/*------------ sec_about ------------*/

#lp_contents .sec_about .about_wrap{
  margin: 5rem auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6rem;
}

#lp_contents .sec_about .about_wrap figure{
  width: 60rem;
}

#lp_contents .sec_about .about_wrap .text_blk{
  width: 54rem;
  text-align: justify;
}

#lp_contents .sec_about .about_wrap .tag_list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 3rem auto 0;
}

#lp_contents .sec_about .about_wrap .tag_list span{
  width: 17rem;
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  font-size: 1.5rem;
}


/*------------ sec_item ------------*/

/*item_wrap*/
#lp_contents .sec_item .item_wrap{
  margin: 8rem auto 0;
}

#lp_contents .sec_item .item_wrap .sec_lead{
  margin-bottom: 4rem;
}

#lp_contents .sec_item .item_wrap ul{
  width: 120rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6rem;
  margin: auto;
}

#lp_contents .sec_item .item_wrap .item_blk{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  width: 36rem;
}

#lp_contents .sec_item .item_wrap .item_category{
  width: fit-content;
  min-width: 12rem;
  height: 2.4rem;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border: 1px solid;
  margin: 0 auto 2rem;
}

#lp_contents .sec_item .item_wrap .item_name{
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 0.6rem;
}

#lp_contents .sec_item .item_wrap .item_price{
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
/*item_1*/
#lp_contents .sec_item .item_wrap .item_1{
  width: 100%;
  gap: 5rem;
}

#lp_contents .sec_item .item_wrap .item_1 figure{
  width: 45rem;
}

#lp_contents .sec_item .item_wrap .item_1 .text_blk{
  width: 40rem;
}

#lp_contents .sec_item .item_wrap .item_1 .item_name{
  font-size: 2.4rem;
  margin-bottom: 0.8rem;
}
}


/*point_wrap*/
#lp_contents .sec_item .point_wrap{
  margin: 12rem auto 0;
}


/*review_wrap*/
#lp_contents .sec_item .review_wrap{
  margin: 12rem auto 0;
}

#lp_contents .sec_item .review_wrap .review_blk{
  width: 90rem;
  margin: auto;
}

#lp_contents .sec_item .review_wrap .review_area{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
}

#lp_contents .sec_item .review_wrap figure{
  width: 36rem;
}

#lp_contents .sec_item .review_wrap .text_blk{
  width: 49rem;
  text-align: justify;
}

#lp_contents .sec_item .review_wrap .prof_text{
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

#lp_contents .sec_item .review_wrap .prof_text img{
  width: 6rem;
}

/*cmnt_wrap*/
#lp_contents .sec_item .cmnt_wrap{
  position: relative;
  width: 90rem;
  padding: 6rem;
  background-color: #fff;
}

#lp_contents .sec_item .lead{
  font-family: var(--title-font);
  font-size: 2.7rem;
  margin-bottom: 2rem;
}


/*------------ sec_cmpn ------------*/

#lp_contents .sec_cmpn .cmpn_date{
  font-family: var(--eng-font);
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
}

#lp_contents .sec_cmpn .cmpn_date small{
  font-size: 1.6rem;
}

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

#lp_contents .sec_cmpn .list_wrap{
  margin: 0 auto 8rem;
}


/*--------------------------------
            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 / 375));
  }

  #share{
    transition: all 0.5s;
  }

  #share.fixed{
    bottom: 8rem;
  }

  #share.none{
    bottom: 5%;
  }

  #lp_contents{
    font-size: 1.4rem;
  }

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

  #lp_contents small.note{
    margin-top: 1.2rem;
    font-size: 1rem;
  }
  #lp_contents section{
    padding: 6rem 1.5rem;
  }
  #lp_contents section:not(:last-child) {
      border-bottom: 1.5rem solid #AA071C;
  }

  /*text*/
  #lp_contents .eng{
    font-size: 2.7rem;
  }

  #lp_contents h2{
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  #lp_contents h2 small{
    font-size: 1.4rem;
  }

  #lp_contents h3{
    width: 100%;
    padding-bottom: 1.8rem;
    font-size: 1.85rem;
  }

  #lp_contents .sec_lead{
    font-size: 1.6rem;
  }

  /*btn*/
  #lp_contents .link_btn{
    width: 25rem;
    font-size: 1.6rem;
    margin: 2.5rem auto 0;
  }

  #lp_contents .link_btn.all{
    width: 34.5rem;
    height: 5.6rem;
    font-size: 1.6rem;
  }

  #lp_contents .review_btn{
    font-size: 1.4rem;
    margin: 2rem auto 0;
  }

  /*list*/
  #lp_contents .list_wrap{
    width: 34.5rem;
  }

  #lp_contents .list_wrap ul{
    gap: 0.8rem;
  }

  #lp_contents .list_wrap li .no{
    left: 0;
  }

  #lp_contents .list_wrap li .text{
    font-size: 1.5rem;
  }

  #lp_contents .list_wrap li .text big{
    font-size: 1.8rem;
  }


  /*------------ nav_wrap ------------*/

  #lp_contents .nav_wrap{
    right: 0;
    bottom: 0;
    width: 100%;
    height: 6rem;
    padding: 1.2rem 0;
  }

  #lp_contents .nav_wrap:before{
    width: 0.6rem;
    height: 0.6rem;
    top: 0;
    bottom: 0;
    left: auto;
    right: 1.5rem;
  }

  #lp_contents .nav_wrap .nav_ttl{
    font-size: 1.4rem;
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  #lp_contents .nav_wrap .nav_ttl small{
    font-size: 1rem;
  }

  #lp_contents .nav_wrap .nav_txt{
    font-size: 1.1rem;
    line-height: 1;
  }


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

  #lp_contents .sec_mv .mv_lead{
    padding: 5rem 0;
    font-size: 1.5rem;
  }


  /*------------ sec_about ------------*/

  #lp_contents .sec_about .about_wrap{
    margin: 4rem auto 0;
    gap: 3rem;
  }

  #lp_contents .sec_about .about_wrap figure,
  #lp_contents .sec_about .about_wrap .text_blk{
    width: 34.5rem;
  }

  #lp_contents .sec_about .about_wrap .tag_list{
    gap: 0.6rem;
    margin: 1.5rem auto 0;
  }

  #lp_contents .sec_about .about_wrap .tag_list span{
    width: 11rem;
    height: 2.7rem;
    font-size: 1.2rem;
  }


  /*------------ sec_item ------------*/

  /*item_wrap*/
  #lp_contents .sec_item .item_wrap{
    margin: 6rem auto 0;
  }

  #lp_contents .sec_item .item_wrap .sec_lead{
    margin-bottom: 4rem;
  }

  #lp_contents .sec_item .item_wrap ul{
    width: 34.5rem;
    gap: 1rem;
  }

  #lp_contents .sec_item .item_wrap .item_blk{
    width: 100%;
  }

  #lp_contents .sec_item .item_wrap figure{
    width: 24rem;
    margin: auto;
  }

  #lp_contents .sec_item .item_wrap .item_category{
    font-size: 1.2rem;
    margin: 0 auto 1.5rem;
  }

  #lp_contents .sec_item .item_wrap .item_name{
    font-size: 1.5rem;
  }

  #lp_contents .sec_item .item_wrap .item_price{
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }


  /*point_wrap*/
  #lp_contents .sec_item .point_wrap{
    margin-top: 8rem;
  }


  /*review_wrap*/
  #lp_contents .sec_item .review_wrap{
    margin-top: 8rem;
    margin-left: -1.5rem;
    width: 37.5rem;
  }

  #lp_contents .sec_item .review_wrap .review_blk{
    width: 100%;
  }

  #lp_contents .sec_item .review_wrap .review_area{
    width: 30rem;
    padding: 0 1.1rem;
    gap: 1.5rem;
    box-sizing: content-box;
  }

  #lp_contents .sec_item .review_wrap figure,
  #lp_contents .sec_item .review_wrap .text_blk{
    width: 100%;
  }

  #lp_contents .sec_item .review_wrap .prof_text{
    gap: 1rem;
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  #lp_contents .sec_item .review_wrap .prof_text img{
    width: 4rem;
  }

  /*cmnt_wrap*/
  #lp_contents .sec_item .cmnt_wrap{
    width: 34.5rem;
    padding: 9rem 0;
  }

  #lp_contents .sec_item .lead{
    font-size: 2rem;
    margin-bottom: 2rem;
  }


  /*------------ sec_cmpn ------------*/

  #lp_contents .sec_cmpn .cmpn_date{
    font-size: 2.1rem;
  }

  #lp_contents .sec_cmpn .cmpn_date small{
    font-size: 1.4rem;
  }

  #lp_contents .sec_cmpn .sec_lead{
    margin-bottom: 4rem;
  }

  #lp_contents .sec_cmpn .list_wrap{
    margin: 0 auto 5rem;
  }
}