@charset "UTF-8";

:root {
  --color-bg: #292220;
  --color-bg_sec1: #19285C;
  --color-bg_sec2: #A3421A;
  --color-sec1: #213A8E;
  --color-sec2: #BA5126;
  --color-point: #5658A5;
  --color-orange: #BA5126;
  --color-navy: #19285C;
  --color-gray: #6F6F6F;
  --color-font: #fff;
}

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

/*------------ fuwafuwa ------------*/

@keyframes fuwafuwa {
  0% {
    transform:translate(0, 0) rotate(-7deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(7deg);
  }
}

@keyframes fuwafuwa2 {
  0% {
    transform:translate(0, 0) rotate(-4deg);
  }
  50% {
    transform:translate(0, -4px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(-4deg);
  }
}


/*------------ star ------------*/

@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}

#lp_contents .star_bg{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  -webkit-animation:blink 3s ease-in-out infinite alternate;
  -moz-animation:blink 3s ease-in-out infinite alternate;
  animation:blink 3s ease-in-out infinite alternate;
}

/*------------ 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 .circle{
  transform: scale(0);
}

#lp_contents .circle.is-show{
  -webkit-transition-duration: 1.2s;
  transition-duration: 1.2s;
  transform: scale(1);
}

#lp_contents .delay{
  transition-delay: 0.5s;
}

/*------------ Coupon Code ------------*/

#lp_contents .coupon-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  width: 45rem;
  height: 5rem;
  margin: 3rem auto 0;
  border-radius: 0.5rem;
  background-color: #fff;
  color: var(--color-navy);
}

#lp_contents .coupon-area dl {
    display: contents;
}

#lp_contents .coupon-area dd {
    padding: 0;
    font-size: 3rem;
    font-weight: 700;
}

#lp_contents #copy-btn {
  width: 10rem;
  height: 4rem;
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--color-navy);
  color: #fff;
  cursor: pointer;
  transition: all 0.5s;
}

#lp_contents #copy-btn:hover {
    opacity: 0.8;
}

@media (max-width: 767px) {
  #lp_contents .coupon-area {
    width: 32rem;
    height: 4.5rem;
    margin: 2rem auto 0;
  }

  #lp_contents .coupon-area dt{
    font-size: 1.2rem;
  }

  #lp_contents .coupon-area dd {
      font-size: 2.5rem;
  }

  #lp_contents #copy-btn {
    width: 8rem;
    height: 3.5rem;
    font-size: 1.4rem;
  }
}


/*------------ accordion ------------*/

/* #lp_contents .accordion {
  height: max-content !important;
}

#lp_contents .accordion.is-hide{
  position: relative;
  overflow: hidden;
  height: 9rem !important;
}

#lp_contents .accordion.is-hide::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 9rem;
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, #fff 100%);
  z-index: 2;
}

#lp_contents .trigger {
  z-index: 3;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  color: var(--color-brown);
  text-align: right;
  font-family: var(--font-eng);
  line-height: 1;
  cursor: pointer;
  transition: .2s ease;
}

#lp_contents .accordion.is-hide .trigger::before {
  content: "View More +";
  text-decoration: underline;
} */


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

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

#lp_contents *{
  box-sizing: border-box;
}
#lp_contents{
  font-family: YakuHanJP_Narrow , var(--font-base);
/*  font-feature-settings: "palt";*/
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  text-align: justify;
  text-align: center;

  color: var(--color-font);
  background-color: var(--color-bg);
  position: relative;
  /*overflow: hidden;*/
}
#lp_contents:before{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

#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 a:hover{opacity: .8}
#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.4rem;
  line-height: 1.75;
}
#lp_contents sup{
  font-size: 50%;
  margin-top: -0.6rem;
}
#lp_contents small.note{
  display: inline-block;
  width: fit-content;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-gray);
  margin: 2.5rem auto 0;
}
#lp_contents section{
  position: relative;
}

#lp_contents section *{
  z-index: 2;
}

#lp_contents .link_btn a{
  position: relative;
  width: 36rem;
  height: 7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-orange);
  box-shadow: 0.7rem 0.7rem 0 #000;
  border-radius: 1rem;
  text-align: center;
  font-size: 2rem;
  margin: 6rem auto 0;
}

#lp_contents .link_btn a:hover{
  transform: translate(0.7rem,0.7rem);
  box-shadow: none !important;
  opacity: 1;
}

#lp_contents .arrow{
  content: '';
  background: #ffffff;
  position: absolute;
  right: 1rem;
  top: 0;
  bottom: 0;
  margin: auto;

/*  下向き*/
  height: calc(tan(60deg) * 0.6rem / 2);
  width: 1rem;
  clip-path: polygon(0 0, 100% 0, 50% 100%);

/*  右向き*/
  height: calc(tan(60deg) * 1rem / 2);
  width: 0.6rem;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}


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

#lp_contents .sec_mv{
  padding-bottom: 20rem;
}

/*-- mv_wrap --*/
#lp_contents .sec_mv .mv_wrap{
  position: relative;
  margin: 0 auto 10rem;
  z-index: 2;
}

/*-- ttl_wrap --*/
#lp_contents .sec_mv .ttl_wrap{
  margin: 0 auto 5rem;
}

#lp_contents .sec_mv .ttl_wrap h2{
  font-size: 7rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.15em;
}

#lp_contents .sec_mv .ttl_wrap span{
  position: relative;
}

#lp_contents .sec_mv .ttl_wrap span:before,
#lp_contents .sec_mv .ttl_wrap span:after{
  content: '';
  width: 30rem;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

#lp_contents .sec_mv .ttl_wrap span:before{
  left: -33rem;
}

#lp_contents .sec_mv .ttl_wrap span:after{
  right: -33rem;
}

#lp_contents .sec_mv .ttl_wrap small{
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-top: 1rem;
}

/*-- campaign_wrap --*/
#lp_contents .sec_mv .campaign_wrap{
  width: 89rem;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap:2rem;
}

#lp_contents .sec_mv .campaign_wrap .campaign_blk{
  position: relative;
  width: 100%;
  padding: 5rem 0;
  background-color: rgba(0, 0, 0, .4);
}

#lp_contents .sec_mv .campaign_wrap .campaign_blk.campaign_1 .star_bg{
  background-image: url(../img/star_1.svg);
  background-position: left 13rem top 8rem;
  background-size: 3rem;
}

#lp_contents .sec_mv .campaign_wrap .campaign_blk.campaign_2 .star_bg{
  background-image: url(../img/star_1.svg),url(../img/star_1.svg),url(../img/star_1.svg);
  background-position: right 18rem top 4rem, left 10rem top 20rem, right 5rem bottom 3rem;
  background-size: 5rem, 3rem, 2.5rem;
  animation-delay: 1s;
}

#lp_contents .sec_mv .campaign_wrap .campaign_num{
  width: 10rem;
  aspect-ratio: 1/1;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-point);
  background-color: #fff;
  box-shadow: 0.5rem 0.5rem 0 rgba(255, 255, 255, 0.5);
  position: absolute;
  top: -1rem;
  left: -1rem;
}

#lp_contents .sec_mv .campaign_wrap .campaign_num small{
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
}

#lp_contents .sec_mv .campaign_wrap .campaign_ttl{
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1;
  color: var(--color-orange);
  margin-bottom: 3rem;
}

#lp_contents .sec_mv .campaign_wrap .campaign_ttl small{
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-top: 1rem;
}

#lp_contents .sec_mv .campaign_wrap .lead{
  font-size: 1.8rem;
  font-weight: 700;
}

#lp_contents .sec_mv .campaign_wrap .date{
  font-size: 2rem;
  line-height: 1;
  margin-top: 3rem;
}

#lp_contents .sec_mv .campaign_wrap .date big{
  font-size: 3rem;
}

#lp_contents .sec_mv .campaign_wrap .date small{
  font-size: 1.4rem;
}

#lp_contents .sec_mv .campaign_wrap .link_btn a{
  width: 30rem;
  height: 5rem;
  background-color: var(--color-navy);
  font-size: 1.8rem;
  margin-top: 3rem;
}

#lp_contents .sec_mv .campaign_wrap .campaign_img{
  width: 15rem;
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
}

/*-- lead_wrap --*/
#lp_contents .sec_mv .lead_wrap{
  position: relative;
  width: 89rem;
  padding: 9rem 0;
  margin: 10rem auto 0;
}

#lp_contents .sec_mv .lead_wrap:before,
#lp_contents .sec_mv .lead_wrap:after{
  content: '';
  width: 100%;
  height: 0.8rem;
  display: block;
  background-image: url(../img/line.svg);
  position: absolute;
  left: 0;
}

#lp_contents .sec_mv .lead_wrap:before{
  top: 0;
}

#lp_contents .sec_mv .lead_wrap:after{
  bottom: 0;
}

#lp_contents .sec_mv .lead_wrap p{
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.5;
}

#lp_contents .sec_mv .lead_wrap .bat_bg{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  animation: fuwafuwa2 3s ease-in-out infinite alternate;

  background-image: url(../img/bat_1.svg),url(../img/bat_2.svg);
  background-size: 5rem, 8rem;
  background-position: right 6.5rem top 5.3rem, left 4.5rem bottom 6rem;
  background-repeat: no-repeat;
}

/*-- nav_wrap --*/
#lp_contents .sec_mv .nav_wrap{
  margin: 10rem auto 0;
}

#lp_contents .sec_mv .nav_wrap ul{
  display: flex;
  justify-content: center;
  gap:3rem;
}

#lp_contents .sec_mv .nav_wrap li{
  position: relative;
  line-height: 1.2;
}

#lp_contents .sec_mv .nav_wrap .link_btn a{
  width: 33rem;
  height: 8.6rem;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding-bottom: 1.5rem;
  margin-top: 0;
}

#lp_contents .sec_mv .nav_wrap .nav_1 a{
  background-color: var(--color-sec1);
  box-shadow: 0.7rem 0.7rem 0 #0C1A4B;
}

#lp_contents .sec_mv .nav_wrap .nav_2 a{
  background-color: var(--color-sec2);
  box-shadow: 0.7rem 0.7rem 0 #7C2E0E;
}

#lp_contents .sec_mv .nav_wrap .arrow{
  top: auto;
  right: auto;
  bottom: 1rem;

  /*  下向き*/
  height: calc(tan(60deg) * 0.6rem / 2);
  width: 1rem;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}


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

#lp_contents .sec_item:before{
  content: '';
  display: block;
  width: 100%;
  height: 36rem;
  position: absolute;
  top: -36rem;
  left: 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: top center;
  z-index: 0;
}

/*-- ttl_wrap --*/
#lp_contents .sec_item .ttl_wrap{
  position: relative;
  padding: 8rem 0 0;
  margin: 0 auto 8rem;
  max-width: 120rem;
}

#lp_contents .sec_item .ttl_wrap h2{
  position: relative;
  font-size: 7rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.15em;
}

#lp_contents .sec_item .ttl_wrap .lead{
  position: relative;
  font-size: 2rem;
  font-weight: 600;
  margin-top: 2rem;
}

#lp_contents .sec_item .ttl_wrap .ghost{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}

#lp_contents .sec_item .ttl_wrap .ghost_1{
  width: 12rem;
  transform: translate(32rem , 3.6rem);
}

#lp_contents .sec_item .ttl_wrap .ghost_2{
  width: 16rem;
  transform: translate(-32rem , 12rem);
}

#lp_contents .sec_item .ttl_wrap .ghost_3{
  width: 16rem;
  transform: translate(-36rem , -2rem);
}

#lp_contents .sec_item .ttl_wrap .ghost_4{
  width: 12rem;
  transform: translate(36rem , 15rem);
}

/*-- item_wrap --*/
#lp_contents .sec_item .item_wrap .item_blk:nth-child(n + 2){
  margin-top: 8rem;
}

#lp_contents .sec_item .item_wrap .item_ttl{
  position: relative;
  width: 60rem;
  padding: 2rem 0;
  margin: 0 auto 5rem;
}

#lp_contents .sec_item .item_wrap .item_ttl:before, 
#lp_contents .sec_item .item_wrap .item_ttl:after{
  content: '';
  width: 100%;
  height: 0.8rem;
  display: block;
  background-image: url(../img/line.svg);
  position: absolute;
  left: 0;
}

#lp_contents .sec_item .item_wrap .item_ttl:before{
  top: 0;
}

#lp_contents .sec_item .item_wrap .item_ttl:after{
  bottom: 0;
}

#lp_contents .sec_item .item_wrap .item_ttl h3{
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.5;
}

#lp_contents .sec_item .item_wrap .item_ttl .bat{
  position: absolute;
  animation: fuwafuwa 3s ease-in-out infinite alternate;
}

#lp_contents .sec_item .item_wrap .item_ttl .bat_2{
  width: 8rem;
  top: -2rem;
}

#lp_contents .sec_item .item_wrap .item_ttl .bat_3{
  width: 5rem;
  top: -3.2rem;
  right: 1rem;
}

#lp_contents .sec_item .item_wrap .item_ttl .bat_4{
  width: 7rem;
  bottom: -0.6rem;
  left: -2rem;
  animation-delay: 1s;
}

#lp_contents .sec_item .item_wrap .item_ttl .bat_5{
  width: 7rem;
  top: -1.5rem;
  right: 1.5rem;
}

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

#lp_contents .sec_item .item_wrap li{
  width: 28rem;
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: left;
}

#lp_contents .sec_item .item_wrap figure{
  margin-bottom: 1rem;
}

#lp_contents .sec_item .item_wrap p:not(.btn_text){
  color: #000;
}

#lp_contents .sec_item .item_wrap .brand,
#lp_contents .sec_item .item_wrap .price{
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.5rem;
}

#lp_contents .sec_item .item_wrap .name{
  margin-bottom: 0.5rem;
}

#lp_contents .sec_item .item_wrap .btn_text{
  width: 10rem;
  height: 3rem;
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-left: auto; */
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 1rem;
}

#lp_contents .cmnt_blk {
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  border-top: 1px solid #cccccc;
}

#lp_contents .sec_item .item_wrap .cmnt{
  line-height: 1.5;
}

#lp_contents .sec_item .item_wrap .review{
  background-color: #f6f6f6;
  padding: 1rem;
  margin-top: 1.5rem;
  font-size: 1.3rem;
  line-height: 1.5;
}

#lp_contents .sec_item .item_wrap .review small{
  text-align: right;
  display: block;
  font-size: 1.1rem;
  color: #b0b0b0;
}


/*-- sec_1 --*/
#lp_contents .sec_item.sec_1{
  background-color: var(--color-bg_sec1);
  padding-bottom: 44rem;
}

#lp_contents .sec_item.sec_1:before{
  background-image: url(../img/sec_1_bg_pc.svg);
}

#lp_contents .sec_item.sec_1 .star_bg{
  background-image: url(../img/star_2.svg), url(../img/star_2.svg);
  background-position: left 32rem top 1.5rem, right 33.5rem bottom 2.5rem;
  background-size: 6rem, 3.5rem;
}

#lp_contents .sec_item.sec_1 .item_wrap .brand{
  color: var(--color-sec1);
}

#lp_contents .sec_item.sec_1 .item_wrap .btn_text{
  background-color: var(--color-sec1);
}

/*-- sec_2 --*/
#lp_contents .sec_item.sec_2{
  background-color: var(--color-bg_sec2);
  padding-bottom: 44rem;
}

#lp_contents .sec_item.sec_2:before{
  background-image: url(../img/sec_2_bg_pc.svg);
}

#lp_contents .sec_item.sec_2 .star_bg{
  background-image: url(../img/star_3.svg), url(../img/star_3.svg);
  background-position: right 34rem top 1rem, left 25rem bottom;
  background-size: 6rem, 3.5rem;
}

#lp_contents .sec_item.sec_2 .item_wrap .brand{
  color: var(--color-sec2);
}

#lp_contents .sec_item.sec_2 .item_wrap .btn_text{
  background-color: var(--color-sec2);
}

/*-- blk_4 --*/
#lp_contents .sec_item .item_wrap .item_blk.blk_4 ul{
  width: 90rem;
}


/*------------ sec_bottom ------------*/

#lp_contents .sec_bottom{
  padding-bottom: 12rem;
}

#lp_contents .sec_bottom:before{
  content: '';
  display: block;
  width: 100%;
  height: 40rem;
  position: absolute;
  top: -39rem;
  left: 0;
  background-image: url(../img/footer_bg_pc.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
  z-index: 0;
}

#lp_contents .sec_bottom .link_btn a{
  margin-top: 0;
}


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

  #FooterWrap {
    margin-top: -4rem;
  }

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

  #lp_contents small.note{
    text-align: left;
    font-size: 1.2rem;
    margin-top: 2rem;
    max-width: 32rem;
  }

  #lp_contents .link_btn a{
    width: 30rem;
    height: 6rem;
    box-shadow: 0.6rem 0.6rem 0 #000;
    font-size: 1.8rem;
    margin: 4rem auto 0;
  }


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

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

  /*-- mv_wrap --*/
  #lp_contents .sec_mv .mv_wrap{
    margin: 0 auto 3rem;
  }

  /*-- ttl_wrap --*/
  #lp_contents .sec_mv .ttl_wrap{
    margin: 0 auto 2.5rem;
  }

  #lp_contents .sec_mv .ttl_wrap h2{
    font-size: 4rem;
  }

  #lp_contents .sec_mv .ttl_wrap span:before,
  #lp_contents .sec_mv .ttl_wrap span:after{
    width: 5rem;
  }

  #lp_contents .sec_mv .ttl_wrap span:before{
    left: -6.3rem;
  }

  #lp_contents .sec_mv .ttl_wrap span:after{
    right: -6.3rem;
  }

  #lp_contents .sec_mv .ttl_wrap small{
    font-size: 1.2rem;
  }

  /*-- campaign_wrap --*/
  #lp_contents .sec_mv .campaign_wrap{
    width: 35rem;
  }

  #lp_contents .sec_mv .campaign_wrap .campaign_blk{
    padding: 3rem 0;
  }

  #lp_contents .sec_mv .campaign_wrap .campaign_blk.campaign_1 .star_bg{
    background-position: left 1rem bottom 2rem;
    background-size: 2.5rem;
  }

  #lp_contents .sec_mv .campaign_wrap .campaign_blk.campaign_2 .star_bg{
    background-position: right 2rem top 2rem, left 2rem top 15rem, right 1.5rem bottom 1.5rem;
    background-size: 3rem, 2rem, 2.5rem;
  }

  #lp_contents .sec_mv .campaign_wrap .campaign_num{
    width: 7.5rem;
    font-size: 3.2rem;
  }

  #lp_contents .sec_mv .campaign_wrap .campaign_num small{
    font-size: 1rem;
  }

  #lp_contents .sec_mv .campaign_wrap .campaign_ttl{
    font-size: 2.7rem;
    margin-bottom: 2rem;
  }

  #lp_contents .sec_mv .campaign_wrap .campaign_ttl small{
    font-size: 1.2rem;
  }

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

  #lp_contents .sec_mv .campaign_wrap .date{
    font-size: 1.6rem;
    margin-top: 2rem;
  }

  #lp_contents .sec_mv .campaign_wrap .date big{
    font-size: 2.2rem;
  }

  #lp_contents .sec_mv .campaign_wrap .date small{
    font-size: 1.2rem;
  }

  #lp_contents .sec_mv .campaign_wrap .link_btn a{
    width: 22rem;
    height: 4.5rem;
    font-size: 1.5rem;
    margin-top: 2rem;
  }

  #lp_contents .sec_mv .campaign_wrap .campaign_img{
    width: 7.8rem;
    right: 0.6rem;
    top: -1rem;
    bottom: auto;
  }

  /*-- lead_wrap --*/
  #lp_contents .sec_mv .lead_wrap{
    width: 35rem;
    padding: 5.2rem 0;
    margin: 5rem auto 0;
  }

  #lp_contents .sec_mv .lead_wrap p{
    font-size: 1.5rem;
  }

  #lp_contents .sec_mv .lead_wrap .bat_bg{
    background-size: 3rem, 6rem;
    background-position: right 1rem top 10rem, left bottom 10rem;
  }

  /*-- nav_wrap --*/
  #lp_contents .sec_mv .nav_wrap{
    margin: 5rem auto 0;
  }

  #lp_contents .sec_mv .nav_wrap ul{
    gap:1.5rem;
  }

  #lp_contents .sec_mv .nav_wrap .link_btn a{
    width: 16.5rem;
    font-size: 2.1rem;
  }

  #lp_contents .sec_mv .nav_wrap .nav_1 a{
    box-shadow: 0.5rem 0.5rem 0 #0C1A4B;
  }

  #lp_contents .sec_mv .nav_wrap .nav_2 a{
    box-shadow: 0.5rem 0.5rem 0 #7C2E0E;
  }


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

  #lp_contents .sec_item:before{
    height: 12rem;
    top: -11.9rem;
  }

  /*-- ttl_wrap --*/
  #lp_contents .sec_item .ttl_wrap{
    padding: 5rem 0 0;
    margin: 0 auto 4rem;
    max-width: 100%;
  }

  #lp_contents .sec_item .ttl_wrap h2{
    font-size: 4rem;
  }

  #lp_contents .sec_item .ttl_wrap .lead{
    font-size: 1.5rem;
    margin-top: 2.5rem;
  }

  #lp_contents .sec_item .ttl_wrap .ghost_1{
    width: 9rem;
    transform: translate(14rem , -1rem);
  }

  #lp_contents .sec_item .ttl_wrap .ghost_2{
    width: 10rem;
    transform: translate(-16rem , 10rem);
  }

  #lp_contents .sec_item .ttl_wrap .ghost_3{
    width: 12rem;
    transform: translate(-14.5rem , -3rem);
  }

  #lp_contents .sec_item .ttl_wrap .ghost_4{
    width: 9rem;
    transform: translate(14.5rem , 9rem);
  }

  /*-- item_wrap --*/
  #lp_contents .sec_item .item_wrap .item_blk:nth-child(n + 2){
    margin-top: 4rem;
  }

  #lp_contents .sec_item .item_wrap .item_ttl{
    width: 35rem;
    margin: 0 auto 2.5rem;
  }

  #lp_contents .sec_item .item_wrap .item_ttl h3{
    font-size: 1.9rem;
  }

  #lp_contents .sec_item .item_wrap .item_ttl .bat_2{
    width: 6rem;
    top: -1.5rem;
  }

  #lp_contents .sec_item .item_wrap .item_ttl .bat_3{
    width: 3rem;
    top: -1.5rem;
  }

  #lp_contents .sec_item .item_wrap .item_ttl .bat_4{
    width: 5rem;
    bottom: -1.5rem;
    left: 1rem;
  }

  #lp_contents .sec_item .item_wrap .item_ttl .bat_5{
    width: 6rem;
    top: -1rem;
    right: 2rem;
  }

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

  #lp_contents .sec_item .item_wrap li{
    width: 100%;
    padding: 1rem;
  }

  #lp_contents .sec_item .item_wrap li a{
    display: flex;
    align-items: center;
    gap:1.5rem;
  }

  #lp_contents .sec_item .item_wrap figure{
    width: 15rem;
    margin-bottom: 0;
  }

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

  #lp_contents .sec_item .item_wrap .brand,
  #lp_contents .sec_item .item_wrap .price{
    font-size: 1.6rem;
  }

  #lp_contents .sec_item .item_wrap .btn_text{
    width: 8rem;
    height: 2.4rem;
    font-size: 1.4rem;
  }

  #lp_contents .cmnt_blk {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #cccccc;
  }

  #lp_contents .sec_item .item_wrap .cmnt{
    line-height: 1.5;
  }

  #lp_contents .sec_item .item_wrap .review{
    background-color: #f6f6f6;
    padding: 1rem;
    margin-top: 1.5rem;
    font-size: 1.3rem;
    line-height: 1.5;
  }

  /*-- sec_1 --*/
  #lp_contents .sec_item.sec_1{
    padding-bottom: 18rem;
  }

  #lp_contents .sec_item.sec_1:before{
    background-image: url(../img/sec_1_bg_sp.svg);
  }

  #lp_contents .sec_item.sec_1 .star_bg{
    background-position: left 3rem top 1rem, right 4rem bottom 6rem;
    background-size: 4rem, 2rem;
  }

  /*-- sec_2 --*/
  #lp_contents .sec_item.sec_2{
    padding-bottom: 25rem;
  }

  #lp_contents .sec_item.sec_2:before{
    background-image: url(../img/sec_2_bg_sp.svg);
  }

  #lp_contents .sec_item.sec_2 .star_bg{
    background-position: right 5rem top 1rem, left 6rem bottom 8rem;
    background-size: 4rem, 2rem;
  }

  /*-- blk_4 --*/
  #lp_contents .sec_item .item_wrap .item_blk.blk_4 ul{
    width: 35rem;
  }


  /*------------ sec_bottom ------------*/

  #lp_contents .sec_bottom{
    padding-bottom: 7rem;
  }

  #lp_contents .sec_bottom:before{
    height: 20rem;
    top: -20rem;
    background-image: url(../img/footer_bg_sp.svg);
  }

}