@charset "UTF-8";

:root {
  --title-font: "dnp-shuei-mincho-pr6n", sans-serif;
  --eng-font: "freight-neo-pro", sans-serif;
  --bg-color: #C70016;
  --base-color: #000;
}

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

/*------------ 点滅 ------------*/

@-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;}
}

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


/*------------ tab ------------*/

#lp_contents .tab-panel {
  display: none;
}

/*ラジオボタンを全て消す*/
#lp_contents .tab_wrap input[name="tab_item"] {
  display: none;
}

/*選択されているタブのコンテンツのみを表示*/
#tab01:checked ~ #tab-panel1,
#tab02:checked ~ #tab-panel2,
#tab03:checked ~ #tab-panel3,
#tab04:checked ~ #tab-panel4 {
  display: block;
}


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

#lp_contents .slick-dots{
  position: static;
  margin: 5rem auto 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: -5rem;
}

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

#lp_contents .slick-prev:before, 
#lp_contents .slick-next:before {
  font-size: 0;
  color: var(--base-color);
  opacity: 1;

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

#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;
  }
}



/*------------ 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: var(--base-color);
  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);
}


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

/*common*/

body.no_scroll {
  height: 100vh;
  overflow: hidden;
}

header.hide {
  opacity: 0;
  pointer-events: none;
}

#lp_contents .modal_outside.hide {
  opacity: 0;
  pointer-events: none;
}

#lp_contents .modal_outside {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .4);
  transition: opacity .3s;
}

#lp_contents .modal_inner {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background: var(--bg-color);
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 6rem 0;
  box-sizing: border-box;
  overflow-y: scroll;
}

#lp_contents .modal_inner::-webkit-scrollbar {
  display: none;
}

#lp_contents .modal_inner .slick-prev{
  width: 4rem;
  height: 4rem;
  left: -7rem;
  z-index: 5;
}

#lp_contents .modal_inner .slick-next{
  width: 4rem;
  height: 4rem;
  right: -7rem;
  z-index: 5;
}

#lp_contents .modal_inner .slick-track {
  display: flex;
}

#lp_contents .modal_inner .slick-slide {
  height: auto !important;
}

@media (max-width: 767px) {
  #lp_contents .modal_inner{
    padding: 6rem 1.5rem;
  }
}


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

 #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";
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: var(--base-color);
  background-color: var(--bg-color);
  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;}
#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.6rem;
  line-height: 1.75;
  text-align: justify;
}
#lp_contents sup{
  font-size: 50%;
  margin-top: -0.6rem;
}

#lp_contents .ttl_wrap{
  margin: 0 auto 7rem;
}

#lp_contents .ttl_wrap .lead{
  font-size: 2rem;
  text-align: center;
}

#lp_contents h2{
  text-align: center;
  font-family: var(--title-font);
  font-size: 3.6rem;
  letter-spacing: .05em;
  margin: 0 auto 4rem;
  color: #fff;
}

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

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

#lp_contents h3:before{
  content: '';
  display: block;
  width: 1.5rem;
  height: 1.2rem;
  border-top: 1.2rem solid;
  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 h3 .note{
  margin: 1rem auto 0;
}


#lp_contents section{
  position: relative;
  padding: 10rem 0;
}

#lp_contents .sec{
  border-bottom: 2rem solid #AA071C;
}

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

#lp_contents .note{
  text-align: center;
  display: block;
  font-size: 1rem;
  line-height: 1.5;
  margin: 2.5rem auto 0;
}


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

#lp_contents .sec_mv{
  padding: 0;
  background: linear-gradient(26.060deg,#8f1d22 0%, #9b171f 39.41%, #c70016 100%);
}

#lp_contents .sec_mv .mv_wrap{
  width: 120rem;
  padding-left: 4rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: auto;
}

#lp_contents .sec_mv .mv_wrap img{
  width: 60rem;
}

#lp_contents .sec_mv .mv_wrap .lead_blk{
  width: 56rem;
  text-align: center;
}

#lp_contents .sec_mv .mv_wrap .lead_blk h1{
  font-family: var(--title-font);
  color: #fff;
  font-size: 3.2rem;
  line-height: 2;
  letter-spacing: .05em;
  margin: 0 auto 6rem;
}

#lp_contents .sec_mv .mv_wrap .lead_blk h1 img{
  width: 30rem;
  margin: 0 auto 3rem;
}

#lp_contents .sec_mv .mv_wrap .lead_blk .lead{
  width: 36rem;
  margin: auto;
  padding: 2rem 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  text-align: center;
  font-size: 1.7rem;
  line-height: 2;
  color: #fff;
}


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

#lp_contents .sec_cmpn .cmpn_wrap{
  width: 90rem;
  padding: 4rem;
  background-color: #fff;
  margin: auto;
}

#lp_contents .sec_cmpn .cmpn_wrap p{
  text-align: center;
}

#lp_contents .sec_cmpn .cmpn_wrap .cmpn_ttl{
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1;
  color: #AA071C;
  margin-bottom: 1.5rem;
}

#lp_contents .sec_cmpn .cmpn_wrap .cmpn_date{
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  color: #AA071C;
  margin-bottom: 3rem;
}

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

#lp_contents .sec_cmpn .cmpn_wrap .cmpn_blk{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin: 3rem auto 0;
}

#lp_contents .sec_cmpn .cmpn_wrap .cmpn_blk table{
  width: 40rem;
  border-spacing: 0 2rem;
}

#lp_contents .sec_cmpn .cmpn_wrap .cmpn_blk th{
  color: #AA071C;
  font-size: 2.5rem;
  width: 4rem;
}

#lp_contents .sec_cmpn .cmpn_wrap .cmpn_blk td{
  font-size: 1.7rem;
  line-height: 1.75;
}

#lp_contents .sec_cmpn .cmpn_wrap .cmpn_blk td a{
  display: inline-block;
  font-weight: bold;
  text-decoration: underline;
}

#lp_contents .sec_cmpn .cmpn_wrap figure{
  width: 4rem;
}


/*------------ sec_pick ------------*/

/*pick_wrap*/
#lp_contents .sec_pick .pick_wrap{
  width: 90rem;
  margin: auto;
}

#lp_contents .sec_pick .pick_wrap:not(:last-child){
  margin: 0 auto 10rem;
}

#lp_contents .sec_pick .pick_blk{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

#lp_contents .sec_pick .pick_blk figure{
  max-width: 42rem;
  position: relative;
  transition: all 0.5s;
  margin: auto;
  filter: drop-shadow(1.5rem 1.5rem 1.5rem rgba(0, 0, 0, 0.4));
}

#lp_contents .sec_pick .pick_blk figure:hover:before{
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
}

#lp_contents .sec_pick .pick_blk figure:hover {
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

#lp_contents .sec_pick .pick_blk .detail_btn{
  width: 10rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100rem;
  border: 1px solid;
  background-color: #fff;
  font-family: var(--eng-font);
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.1em;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
}

#lp_contents .sec_pick .pick_blk figure:hover .detail_btn{
  opacity: 1;
}

#lp_contents .sec_pick .pick_blk .detail_btn .plus{
  position: relative;
  width: 1rem;
  height: 1rem;
  margin-right: 0.6rem;
}

#lp_contents .sec_pick .pick_blk .detail_btn .plus:before,
#lp_contents .sec_pick .pick_blk .detail_btn .plus:after{
  content: '';
  display: block;
  width: 1rem;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

#lp_contents .sec_pick .pick_blk .detail_btn .plus:after{
  transform: rotate(90deg);
}

#lp_contents .sec_pick .pick_blk .text_blk{
  width: 45rem;
}

#lp_contents .sec_pick .pick_blk .text_blk .name{
  text-align: center;
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 1.5rem;
}

#lp_contents .sec_pick .pick_blk .text_blk .price{
  text-align: center;
  font-size: 1.8rem;
  line-height: 1;
}

#lp_contents .sec_pick .pick_blk .text_blk ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 3rem auto;
}

#lp_contents .sec_pick .pick_blk .text_blk li{
  width: 14rem;
  height: 14rem;
  border-radius: 100%;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
}

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

#lp_contents .sec_pick .cmnt_wrap p{
  text-align: center;
}

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


/*------------ sec_kit ------------*/

/*kit_wrap*/
#lp_contents .sec_kit .kit_wrap{
  width: 120rem;
  margin: auto;
}

#lp_contents .sec_kit .kit_wrap ul{
  display: flex;
  flex-wrap: wrap;
  gap: 10rem;
}

#lp_contents .sec_kit .kit_wrap li{
  width: 50rem;
}

#lp_contents .sec_kit .kit_wrap .name{
  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;
  text-align: center;
  font-size: 2rem;
}

#lp_contents .sec_kit .kit_wrap .price{
  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;
  text-align: center;
  font-size: 1.8rem;
}

#lp_contents .sec_kit .kit_wrap figure{
  position: relative;
  border: 1px solid;
  margin: 3rem auto;
}

#lp_contents .sec_kit .kit_wrap figure .icon{
  width: 9rem;
  height: 9rem;
  border-radius: 100%;
  background-color: var(--base-color);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: var(--eng-font);
  font-size: 2.2rem;
  line-height: 1.2;
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
}

#lp_contents .sec_kit .kit_wrap figure .icon big{
  font-size: 3.6rem;
}

#lp_contents .sec_kit .kit_wrap .modal-btn a{
  width: 1.5em;
  height: 1.5em;
  border-radius: 100%;
  background: #fff;
  position: absolute;
  -webkit-animation: blink 1.5s ease-in-out infinite alternate;
  -moz-animation: blink 1.5s ease-in-out infinite alternate;
  animation: blink 1.5s ease-in-out infinite alternate;
  -webkit-filter: blur(2px);
  -moz-filter: blur(2px);
  -o-filter: blur(2px);
  -ms-filter: blur(2px);
  filter: blur(2px);
}

#lp_contents .sec_kit .kit_wrap .modal-btn a.dot_1{
  top: 28rem;
  left: 11rem;
}

#lp_contents .sec_kit .kit_wrap .modal-btn a.dot_2{
  top: 25rem;
  left: 21rem;
}

#lp_contents .sec_kit .kit_wrap .modal-btn a.dot_3{
  top: 33rem;
  left: 30rem;
}

#lp_contents .sec_kit .kit_wrap .modal-btn a.dot_4{
  top: 33rem;
  left: 38rem;
}

#lp_contents .sec_kit .kit_wrap .modal-btn a.dot_5{
  top: 27rem;
  left: 13rem;
}

#lp_contents .sec_kit .kit_wrap .modal-btn a.dot_6{
  top: 34rem;
  left: 25rem;
}

#lp_contents .sec_kit .kit_wrap .modal-btn a.dot_7{
  top: 30rem;
  left: 36rem;
}

/*modal_area*/
#lp_contents .sec_kit .modal_area h3 .name{
  margin-top: 2rem;
}

#lp_contents .sec_kit .modal_area .modal_list li{
  width: 40rem;
  margin: 0 7rem;
}

#lp_contents .sec_kit .modal_area .item_no{
  text-align: center;
  font-family: var(--eng-font);
  font-size: 2.7rem;
  line-height: 1;
  margin-bottom: 1.5rem;
}

#lp_contents .sec_kit .modal_area .item_no big{
  font-size: 5rem;
}

#lp_contents .sec_kit .modal_area .modal_list figure{
  width: 35rem;
  margin: 0 auto 3rem;
  border: none;
}

#lp_contents .sec_kit .modal_inner .slick-prev{
  left: 0;
  right: 0;
  margin: auto;
  transform: translateX(-30rem);
}

#lp_contents .sec_kit .modal_inner .slick-next{
  left: 0;
  right: 0;
  margin: auto;
  transform: translateX(30rem);
}

#lp_contents .sec_kit .modal_inner .js-modal-close{
  position: fixed;
}



/*------------ sec_chart ------------*/

/*ttl_wrap*/
#lp_contents .sec_chart .ttl_wrap img{
  width: 20rem;
  margin: 0 auto 2rem;
}

#lp_contents .sec_chart .ttl_wrap h2{
  font-size: 3.2rem;
}

/*tab_wrap*/
#lp_contents .sec_chart .tab_wrap {
  width: 120rem;
  margin: auto;
}

#lp_contents .sec_chart .tab {
  display: inline-block;
  width: 25rem;
  cursor: pointer;
  text-align: center;
  font-family: var(--title-font);
  font-size: 2rem;
  line-height: 1.5;
  padding-bottom: 2rem;
  border: none;
  border-bottom: 1px solid;
  position: relative;
  background: none;
  margin: 0 2rem;
}

#lp_contents .sec_chart .tab span{
  display: block;
}

#lp_contents .sec_chart .tab_wrap input:checked + .tab{
  border-bottom: 1px solid #fff;
  color: #fff;
}

#lp_contents .sec_chart .tab_wrap input:checked + .tab: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_chart .tab-panel {
  margin: 6rem auto 0;
}

#lp_contents .sec_chart .tab-panel .item{
  width: 25rem;
  margin: 0 1.5rem;
}

#lp_contents .sec_chart .tab-panel .item img{
  filter: drop-shadow(1.5rem 1.5rem 1.5rem rgba(0, 0, 0, 0.4));
}

#lp_contents .sec_chart .cate{
  font-size: 2rem;
  text-align: center;
  line-height: 1;
  margin-bottom: 2rem;
}

#lp_contents .sec_chart .name{
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.5;
  margin-top: 2rem;
}

#lp_contents .sec_chart .price{
  font-size: 1.6rem;
  text-align: center;
  line-height: 1;
  margin-top: 1rem;
}

#lp_contents .sec_chart .link_btn{
  width: 15rem;
  height: 3rem;
  font-size: 1.6rem;
}

/*item_wrap*/
#lp_contents .sec_chart .item_wrap{
  width: 36rem;
  padding: 3rem 2.5rem;
  background-color: #fff;
}


/*------------ btn_wrap ------------*/

#lp_contents .btn_wrap{
  padding-bottom: 10rem;
}

#lp_contents .btn_wrap .link_btn{
  width: 36rem;
  height: 6rem;
  font-size: 2.5rem;
  margin: auto;
}




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

  #footer{
    margin-top: -2.5rem;
  }

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

  #lp_contents p {
    font-size: 1.4rem;
  }

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

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

  #lp_contents h2{
    font-size: 2.2rem;
    margin: 0 auto 2rem;
  }

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

  #lp_contents h3{
    padding-bottom: 1.8rem;
    font-size: 1.9rem;
  }

  #lp_contents section{
    padding: 6rem 0;
  }

  #lp_contents .sec{
    border-bottom: 1.5rem solid #AA071C;
  }

  #lp_contents .link_btn{
    width: 25rem;
    font-size: 1.8rem;
    margin: 2rem auto 0;
  }


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

  #lp_contents .sec_mv .mv_wrap{
    width: 100%;
    padding-left: 0;
  }

  #lp_contents .sec_mv .mv_wrap img{
    width: 100%;
  }

  #lp_contents .sec_mv .mv_wrap .lead_blk{
    width: 100%;
    padding: 6rem 0;
    background: linear-gradient(26.060deg,#8f1d22 0%, #9b171f 39.41%, #c70016 100%);
  }

  #lp_contents .sec_mv .mv_wrap .lead_blk h1{
    font-size: 2.4rem;
    margin: 0 auto 2.5rem;
  }

  #lp_contents .sec_mv .mv_wrap .lead_blk h1 img{
    position: absolute;
    width: 27rem;
    top: 40rem;
    left: 0;
    right: 0;
    margin: auto;
  }

  #lp_contents .sec_mv .mv_wrap .lead_blk .lead{
    width: 30rem;
    font-size: 1.4rem;
  }


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

  #lp_contents .sec_cmpn .cmpn_wrap{
    width: 34.5rem;
    padding: 3rem 0;
  }

  #lp_contents .sec_cmpn .cmpn_wrap .cmpn_ttl{
    font-size: 2.7rem;
    margin-bottom: 1rem;
  }

  #lp_contents .sec_cmpn .cmpn_wrap .cmpn_date{
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

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

  #lp_contents .sec_cmpn .cmpn_wrap .cmpn_blk{
    margin: auto;
    gap: 1rem;
  }

  #lp_contents .sec_cmpn .cmpn_wrap .cmpn_blk table{
    width: fit-content;
  }

  #lp_contents .sec_cmpn .cmpn_wrap .cmpn_blk th{
    font-size: 2rem;
    width: 3rem;
    display: flex;
    padding-top: 0.5rem;
  }

  #lp_contents .sec_cmpn .cmpn_wrap .cmpn_blk td{
    font-size: 1.5rem;
  }

  #lp_contents .sec_cmpn .cmpn_wrap figure{
    width: 5rem;
    margin: 0 5rem;
  }


  /*------------ sec_pick ------------*/

  /*pick_wrap*/
  #lp_contents .sec_pick .pick_wrap{
    width: 34.5rem;
  }

  #lp_contents .sec_pick .pick_wrap:not(:last-child){
    margin: 0 auto 6rem;
  }

  #lp_contents .sec_pick .pick_blk{
    gap: 2rem;
  }

  #lp_contents .sec_pick .pick_blk figure{
    max-width: 27rem;
    filter: drop-shadow(1rem 0.5rem 1rem rgba(0, 0, 0, 0.4))
  }

  #lp_contents .sec_pick .pick_blk .text_blk{
    width: 100%;
  }

  #lp_contents .sec_pick .pick_blk .text_blk .name{
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  #lp_contents .sec_pick .pick_blk .text_blk .price{
    font-size: 1.4rem;
  }

  #lp_contents .sec_pick .pick_blk .text_blk ul{
    margin: 2rem auto;
  }

  #lp_contents .sec_pick .pick_blk .text_blk li{
    width: 9rem;
    height: 9rem;
    font-size: 1.4rem;
  }

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

  #lp_contents .sec_pick .cmnt_wrap p{
    text-align: center;
  }

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


  /*------------ sec_kit ------------*/

  /*kit_wrap*/
  #lp_contents .sec_kit .kit_wrap{
    width: 34.5rem;
  }

  #lp_contents .sec_kit .kit_wrap ul{
    gap: 6rem;
  }

  #lp_contents .sec_kit .kit_wrap li{
    width: 100%;
  }

  #lp_contents .sec_kit .kit_wrap .name{
    font-size: 1.8rem;
    line-height: 1.5;
  }

  #lp_contents .sec_kit .kit_wrap .price{
    font-size: 1.4rem;
  }

  #lp_contents .sec_kit .kit_wrap figure{
    margin: 2rem auto;
  }

  #lp_contents .sec_kit .kit_wrap figure .icon{
    width: 7rem;
    height: 7rem;
    font-size: 1.4rem;
    top: -1rem;
    left: -1rem;
  }

  #lp_contents .sec_kit .kit_wrap figure .icon big{
    font-size: 2.3rem;
  }

  #lp_contents .sec_kit .kit_wrap .modal-btn a.dot_1{
    top: 19.5rem;
    left: 7.5rem;
  }

  #lp_contents .sec_kit .kit_wrap .modal-btn a.dot_2{
    top: 17rem;
    left: 14.5rem;
  }

  #lp_contents .sec_kit .kit_wrap .modal-btn a.dot_3{
    top: 23rem;
    left: 21rem;
  }

  #lp_contents .sec_kit .kit_wrap .modal-btn a.dot_4{
    top: 23rem;
    left: 26.5rem;
  }

  #lp_contents .sec_kit .kit_wrap .modal-btn a.dot_5{
    top: 19rem;
    left: 9.5rem;
  }

  #lp_contents .sec_kit .kit_wrap .modal-btn a.dot_6{
    top: 23rem;
    left: 17.25rem;
  }

  #lp_contents .sec_kit .kit_wrap .modal-btn a.dot_7{
    top: 21rem;
    left: 24.5rem;
  }

  /*modal_area*/

  #lp_contents .sec_kit .modal_area .modal_list li{
    width: 34.5rem;
    margin: 0 1.5rem;
  }

  #lp_contents .sec_kit .modal_area .modal_list figure{
    width: 27rem;
    margin: 0 auto 2rem;
        filter: drop-shadow(1rem 0.5rem 1rem rgba(0, 0, 0, 0.4));
  }

  #lp_contents .sec_kit .modal_inner .slick-prev{
    transform: translateX(-14rem);
  }

  #lp_contents .sec_kit .modal_inner .slick-next{
    transform: translateX(14rem);
  }


  /*------------ sec_chart ------------*/

  /*ttl_wrap*/
  #lp_contents .sec_chart .ttl_wrap img{
    width: 14rem;
    margin: 0 auto 1rem;
  }

  #lp_contents .sec_chart .ttl_wrap h2{
    font-size: 2.2rem;
  }

  /*tab_wrap*/
  #lp_contents .sec_chart .tab_wrap {
    width: 100%;
  }

  #lp_contents .sec_chart .tab {
    width: 16.75rem;
    font-size: 1.8rem;
    padding-bottom: 0.8rem;
    margin: 0 0 3rem;
  }

  #lp_contents .sec_chart #tab01 + .tab,
  #lp_contents .sec_chart #tab03 + .tab{
    margin-right: 1rem;
    margin-left: 1.5rem;
  }

  #lp_contents .sec_chart .tab span{
    font-size: 1.3rem;
  }

  #lp_contents .sec_chart .tab-panel {
    margin: 2rem auto 0;
    padding: 0 1rem;
  }

  #lp_contents .sec_chart .tab-panel .item{
    width: 16.75rem;
    padding: 0 0.75rem;
    margin: 0;
  }

  #lp_contents .sec_chart .tab-panel .item img{
    filter: drop-shadow(1rem 0.5rem 1rem rgba(0, 0, 0, 0.4))
  }

  #lp_contents .sec_chart .cate{
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  #lp_contents .sec_chart .name,
  #lp_contents .sec_chart .price{
    font-size: 1.3rem;
  }

  #lp_contents .sec_chart .link_btn{
    width: 10rem;
    height: 2.4rem;
    font-size: 1.4rem;
  }


  /*------------ btn_wrap ------------*/

  #lp_contents .btn_wrap{
    padding-bottom: 6rem;
  }

  #lp_contents .btn_wrap .link_btn{
    width: 25rem;
    height: 4.5rem;
    font-size: 1.8rem;
  }

}