@charset "UTF-8";

:root {
  --font-lp_base: "Roboto","Noto Sans JP","ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN,HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
  --font-lp_title: "Raleway", sans-serif;
  --color-lp_bg: #fff;
  --color-lp_font: #333333;
  --color-lp_primary: #F2F0EB;
  --color-lp_secondary: #E3E3E3;
  --color-lp_tertiary: #F2F2F2;
}

/*--------------------------------
            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
==================================*/

/*------------ swiper ------------*/
#lp_contents .swiper-slide{
  position: absolute;
  top: 0;
}

#lp_contents .swiper-container-initialized .swiper-slide{
  position: static;
}

#lp_contents .swiper-container-initialized{
  max-width: calc(430 * (60rem / 430));
  overflow: hidden;
}

#lp_contents .swiper-pagination{
  position: static;
  line-height: 1;
  margin-top: calc(20 * (60rem / 430));
}

#lp_contents .swiper-pagination-bullet{
  width: calc(6 * (60rem / 430));
  height: calc(6 * (60rem / 430));
  background: #888888;
  opacity: 0.2;
  border-radius: 0;
}

#lp_contents .swiper-pagination-bullet-active{
  opacity: 1;
  background: #888888;
}

#lp_contents .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{
  margin: 0 calc(10 * (60rem / 430));
}


/* follow
==================================*/

#lp_contents .follow{
  position: fixed;
  bottom: 0;
  z-index: 100;
  transition: all 0.5s;
  transform: translateY(100%);
}

#lp_contents .follow.fixed{
  transform: translateY(0%);
}

#lp_contents .follow.none{
  transform: translateY(100%);
}

#share{
  transition: all 0.5s;
}

#share.fixed {
  bottom: calc(70 * (60rem / 430)) !important;
  z-index: 101 !important;
}

#share.none {
  bottom: 5% !important;
}


/* tab
==================================*/

#lp_contents .tab-area {
  display: flex;
  cursor: pointer;/* カーソルポインターに */
}

#lp_contents .tab{
  width: 100%;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(15 * (60rem / 430));
  letter-spacing: 0.1em;
}

#lp_contents .tab.active {
  background-color: var(--color-lp_bg);
  font-weight: bold;
}

#lp_contents .panel {
  display: none;
  background-color: var(--color-lp_bg);
  padding: calc(40 * (60rem / 430)) 0;
}

#lp_contents .panel.active {
  display: block;
}


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

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

#FooterWrap{
  position: relative;
  z-index: 100;
  background-color: #fff;
}

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

#lp_contents{
  font-family: var(--font-lp_base);
  font-feature-settings: "palt";
  font-size: calc(14 * (60rem / 430));
  letter-spacing: 0.075em;
  line-height: 2;
  text-align: center;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--color-lp_font);
  background-color: var(--color-lp_primary);
  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;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
#lp_contents .sp_only{display: none;}
#lp_contents img{width: 100%;display: block;height: auto;}
#lp_contents a{display: block;width: 100%;cursor: pointer;transition: all 0.5s;color: inherit;}
#lp_contents a:hover{opacity: .8}
#lp_contents ul li,#lp_contents ol li{list-style: none;}

/*------------ Text ------------*/
#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: calc(14 * (60rem / 430));
  line-height: 2;
}
#lp_contents sup{
  font-size: 50%;
  margin-top: -0.6rem;
}
#lp_contents small.note{
  display: inline-block;
  font-size: calc(10 * (60rem / 430));
  line-height: 1.75;
}
#lp_contents .bold{
  font-weight: bold;
}

#lp_contents .ttl_wrap{
  margin: 0 auto calc(35 * (60rem / 430));
  display: grid;
  gap: calc(25 * (60rem / 430));
}

#lp_contents .main_ttl{
  font-family: var(--font-lp_title);
  font-size: calc(27 * (60rem / 430));
  letter-spacing: 0.1em;
  line-height: 1;
}

#lp_contents .main_ttl span{
  display: block;
  font-size: calc(14 * (60rem / 430));
  margin-bottom: calc(12 * (60rem / 430));
}

#lp_contents .sub_ttl{
  font-family: var(--font-lp_title);
  font-size: calc(23 * (60rem / 430));
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: calc(20 * (60rem / 430));
}

#lp_contents .num_ttl{
  font-family: var(--font-lp_title);
  font-size: calc(16 * (60rem / 430));
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: calc(10 * (60rem / 430));
}

#lp_contents .num_ttl .num{
  font-family: var(--font-lp_base);
  font-size: calc(25 * (60rem / 430));
}

#lp_contents .lead{
  font-size: calc(22 * (60rem / 430));
  line-height: 1.75;
  letter-spacing: 0.1em;
}

#lp_contents .text{
  font-size: calc(13 * (60rem / 430));
}

#lp_contents .item_ttl{
  background-color: var(--color-lp_tertiary);
  width: 100%;
  min-height: calc(75 * (60rem / 430));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(20 * (60rem / 430));
  margin: 0 auto calc(20 * (60rem / 430));
}

#lp_contents .item_ttl img{
  width: calc(75 * (60rem / 430));
  mix-blend-mode: multiply;
}

#lp_contents .item_ttl .ttl{
  font-family: var(--font-lp_title);
  font-size: calc(27 * (60rem / 430));
  line-height: 1;
  letter-spacing: 0.1em;
}

#lp_contents .item_ttl .ttl .jpn{
  display: block;
  margin-top: calc(6 * (60rem / 430));
  font-size: calc(12 * (60rem / 430));
}

#lp_contents .item_name{
  font-size: calc(17 * (60rem / 430));
  font-weight: 500;
  line-height: 1.5;
}

#lp_contents .item_variation{
  font-size: calc(13 * (60rem / 430));
  line-height: 1;
  margin-top: calc(10 * (60rem / 430));
}

#lp_contents .price_area{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(15 * (60rem / 430));
  margin-top: calc(10 * (60rem / 430));
}

#lp_contents .item_price{
  font-size: calc(19 * (60rem / 430));
  line-height: 1;
}

#lp_contents .tax{
  display: inline-block;
  font-size: calc(13 * (60rem / 430));
  margin-left: calc(5 * (60rem / 430));
}

#lp_contents .link_btn{
  width: calc(300 * (60rem / 430));
  height: calc(50 * (60rem / 430));
  background-color: var(--color-lp_secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

#lp_contents .buy_btn{
  width: calc(50 * (60rem / 430));
  height: calc(20 * (60rem / 430));
  font-size: calc(13 * (60rem / 430));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-lp_font);
}


/* section
==================================*/

#lp_contents section{
  position: relative;
}

#lp_contents .lp_inner{
  position: relative;
  z-index: 3;
  width: 60rem;
  background-color: var(--color-lp_bg);
  box-shadow: 0 0 3rem rgba(0, 0, 0, 0.16);
  display: grid;
  gap: calc(80 * (60rem / 430));
  padding-bottom: calc(80 * (60rem / 430));
}

#lp_contents .full_area{
  position: fixed;
  top: 0;
  bottom: 0;
  margin: auto;
  padding: 3rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(calc(100% - 60rem) / 2);
}

#lp_contents .left_area{
  left: 0;
}

#lp_contents .left_area img{
  width: 25rem;
}

#lp_contents .right_area{
  right: 0;
}

#lp_contents .right_area .nav_list{
  display: grid;
  gap: 2.5rem;
  font-family: var(--font-lp_title);
  font-size: 2rem;
}

#lp_contents .right_area .nav_list a{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

#lp_contents .right_area .nav_list img{
  width: 9rem;
}


/* sec_mv
==================================*/

#lp_contents .sec_mv .mv_wrap{
  margin: 0 auto calc(50 * (60rem / 430));
}

/*------------ cmpn_area ------------*/
#lp_contents .cmpn_area{
  position: relative;
  border: 1px solid var(--color-lp_font);
  padding: calc(25 * (60rem / 430));
  display: grid;
  gap: calc(20 * (60rem / 430));
  width: calc(390 * (60rem / 430));
  margin: auto;
}

#lp_contents .cmpn_area .cmpn_ttl{
  width: fit-content;
  padding: 0 calc(15 * (60rem / 430));
  background-color: var(--color-lp_bg);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateY(-50%);
  z-index: 2;
}

#lp_contents .cmpn_area .cmpn_ttl span{
  display: flex;
  align-items: center;
  gap: calc(15 * (60rem / 430));
}

#lp_contents .cmpn_area .cmpn_ttl span:before,
#lp_contents .cmpn_area .cmpn_ttl span:after{
  content: '';
  display: block;
  width: 1px;
  height: calc(15 * (60rem / 430));
  background-color: var(--color-lp_font);
}

#lp_contents .cmpn_area .cmpn_ttl span:before{
  transform: rotate(-15deg);
}

#lp_contents .cmpn_area .cmpn_ttl span:after{
  transform: rotate(15deg);
}

#lp_contents .cmpn_area .cmpn_1 p:not(.num_ttl){
  line-height: 1.5;
}

#lp_contents .cmpn_area .cmpn_1 .big{
  font-size: calc(35 * (60rem / 430));
  font-weight: 400;
}

#lp_contents .cmpn_area .cmpn_2 img{
  width: calc(140 * (60rem / 430));
  margin: calc(20 * (60rem / 430)) auto 0;
}


/* sec_brand
==================================*/

#lp_contents .sec_brand .ttl_wrap{
  margin-top: calc(40 * (60rem / 430));
  margin-bottom: calc(20 * (60rem / 430));
}


/* sec_item
==================================*/

/*------------ item_wrap ------------*/
#lp_contents .sec_item .item_wrap{
  background-image: url(../img/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: calc(60 * (60rem / 430)) 0;
}

#lp_contents .sec_item .item_wrap .best_list{
  margin: 0 auto calc(20 * (60rem / 430));
  width: fit-content;
}

#lp_contents .sec_item .item_wrap .best_list ul{
  text-align: left;
  display: grid;
  gap: calc(10 * (60rem / 430));
  width: fit-content;
}

#lp_contents .sec_item .item_wrap .best_list li{
  padding-left: calc(20 * (60rem / 430));
  background-image: url(../img/crown.svg);
  background-size: calc(15 * (60rem / 430));
  background-repeat: no-repeat;
  background-position: top calc(5 * (60rem / 430)) left;
  width: fit-content;
}

#lp_contents .sec_item .item_wrap .best_item{
  width: calc(370 * (60rem / 430));
  margin: calc(30 * (60rem / 430)) auto 0;
}

/*------------ detail_wrap ------------*/
#lp_contents .sec_item .detail_wrap{
  display: grid;
  gap: calc(60 * (60rem / 430));
}

#lp_contents .sec_item .detail_wrap .item_list{
  display: grid;
  gap: calc(50 * (60rem / 430));
}

#lp_contents .sec_item .detail_wrap .rifill_blk .img{
  margin-bottom: calc(20 * (60rem / 430));
}

#lp_contents .sec_item .detail_wrap .item_blk{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(15 * (60rem / 430));
}

#lp_contents .sec_item .detail_wrap .item_blk .img{
  width: calc(160 * (60rem / 430));
}

#lp_contents .sec_item .detail_wrap .cmnt_area ul{
  display: grid;
  gap: calc(10 * (60rem / 430));
  width: calc(390 * (60rem / 430));
  margin: auto;
}

#lp_contents .sec_item .detail_wrap .cmnt_area li{
  position: relative;
  width: calc(370 * (60rem / 430));
  padding: calc(20 * (60rem / 430)) calc(25 * (60rem / 430));
  background-color: var(--color-lp_primary);
  text-align: justify;
  margin-left: auto;
}

#lp_contents .sec_item .detail_wrap .cmnt_area li:before{
  content: '';
  display: block;
  width: calc(20 * (60rem / 430));
  height: calc(10 * (60rem / 430));
  background-color: var(--color-lp_primary);
  position: absolute;
  left: calc(-20 * (60rem / 430));
  bottom: calc(20 * (60rem / 430));
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

#lp_contents .sec_item .detail_wrap .cmnt_area .text{
  font-size: calc(12 * (60rem / 430));
}

#lp_contents .sec_item .detail_wrap .cmnt_area .name{
  text-align: right;
  font-size: calc(12 * (60rem / 430));
  font-weight: 500;
  line-height: 1;
  margin-top: calc(5 * (60rem / 430));
}

/*------------ item-slider ------------*/
#lp_contents .sec_item .item-slider{
  position: relative;
}

#lp_contents .sec_item .item-slider:before{
  content: '';
  display: block;
  width: calc(250 * (60rem / 430));
  height: calc(340 * (60rem / 430));
  border-radius: calc(125 * (60rem / 430));
  background-color: rgba(255, 255, 255, .5);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}

#lp_contents .sec_item .item-slider .img{
  padding: calc(70 * (60rem / 430)) 0;
}

#lp_contents .sec_item .item-slider .img img{
  width: calc(200 * (60rem / 430));
  margin: auto;
  position: relative;
  z-index: 2;
}

#lp_contents .sec_item .item-slider .item_detail{
  margin-top: calc(20 * (60rem / 430));
}

#lp_contents .sec_item .item-slider .swiper-slide .item_detail{
  opacity: 0;
  transition: all 0.5s;
}

#lp_contents .sec_item .item-slider .swiper-slide.swiper-slide-active .item_detail{
  opacity: 1;
}

/*------------ swiper_thumbnail ------------*/
#lp_contents .sec_item .swiper_thumbnail{
  max-width: calc(400 * (60rem / 430));
  margin: calc(30 * (60rem / 430)) auto 0;
}

#lp_contents .sec_item .swiper_thumbnail .swiper-slide{
  position: relative;
  max-width: calc(52 * (60rem / 430));
  margin: 0 calc(2.5 * (60rem / 430));
}

#lp_contents .sec_item .swiper_thumbnail .swiper-slide-thumb-active:before{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, .5);
  border-radius: calc(10 * (60rem / 430));
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

#lp_contents .sec_item .swiper_thumbnail .swiper-slide img{
  position: relative;
  z-index: 2;
}

/*------------ point_list ------------*/
#lp_contents .sec_item .point_list .point_1{
  display: flex;
  align-items: center;
  justify-content: center;
}

#lp_contents .sec_item .point_list .point_1 .img{
  width: calc(250 * (60rem / 430));
}

#lp_contents .sec_item .point_list .point_2{
  margin-top: calc(25 * (60rem / 430));
  display: grid;
  gap: calc(20 * (60rem / 430));
}

#lp_contents .sec_item .point_list .cmpt_list{
  display: flex;
  justify-content: center;
  gap: calc(20 * (60rem / 430));
}

#lp_contents .sec_item .point_list .cmpt_list li{
  display: grid;
  gap: calc(10 * (60rem / 430));
  width: calc(80 * (60rem / 430));
  font-size: calc(12 * (60rem / 430));
}


/* sec_make
==================================*/

#lp_contents .sec_make{
  background-color: var(--color-lp_tertiary);
  padding: calc(60 * (60rem / 430)) 0;
}

#lp_contents .sec_make .ttl_wrap{
  gap: calc(15 * (60rem / 430));
}

#lp_contents .sec_make .make_wrap{
  width: calc(390 * (60rem / 430));
  margin: auto;
}

#lp_contents .sec_make .make_ttl{
  font-size: calc(18 * (60rem / 430));
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  border-bottom: 2px solid #B9D6E8;
  width: fit-content;
  margin: 0 auto calc(25 * (60rem / 430));
  padding-bottom: calc(6 * (60rem / 430));
}

#lp_contents .sec_make .panel_2 .make_ttl{
  border-color: #E3D9B2;
}

#lp_contents .sec_make .make_img{
  width: 30rem;
  margin: auto;
}

#lp_contents .sec_make .text{
  text-align: justify;
  font-size: calc(13 * (60rem / 430));
  margin: calc(30 * (60rem / 430)) auto 0;
  padding: 0 calc(20 * (60rem / 430));
}

#lp_contents .sec_make .item_used{
  margin: calc(40 * (60rem / 430)) auto 0;
}

#lp_contents .sec_make .item_used_ttl{
  font-weight: bold;
  line-height: 1;
  margin-bottom: calc(20 * (60rem / 430));
}

#lp_contents .sec_make .swiper_ranking .swiper-slide{
  width: calc(160 * (60rem / 430));
}

#lp_contents .sec_make .swiper_ranking .item_detail{
  margin-top: calc(15 * (60rem / 430));
}

#lp_contents .sec_make .swiper_ranking .item_name{
  font-size: calc(12 * (60rem / 430));
  margin-bottom: calc(15 * (60rem / 430));
}



/* sec_rank
==================================*/

#lp_contents .sec_rank{
  background-color: var(--color-lp_primary);
  padding: calc(60 * (60rem / 430)) 0;
  margin-top: calc(-80 * (60rem / 430));
}

#lp_contents .sec_rank .swiper_ranking .swiper-slide{
  width: calc(180 * (60rem / 430));
}

#lp_contents .sec_rank .swiper_ranking .img{
  position: relative;
}

#lp_contents .sec_rank .swiper_ranking .icn_rank{
  position: absolute;
  top: calc(10 * (60rem / 430));
  left: calc(10 * (60rem / 430));
  font-size: calc(18 * (60rem / 430));
  line-height: 1;
}

#lp_contents .sec_rank .swiper_ranking .item_detail{
  margin-top: calc(15 * (60rem / 430));
}

#lp_contents .sec_rank .swiper_ranking .item_name{
  font-size: calc(12 * (60rem / 430));
  margin-bottom: calc(15 * (60rem / 430));
}


/* sec_cmpn
==================================*/

#lp_contents .sec_cmpn .all_btn{
  width: calc(390 * (60rem / 430));
  height: calc(80 * (60rem / 430));
  gap: calc(15 * (60rem / 430));
  margin-top: calc(80 * (60rem / 430));
}

#lp_contents .sec_cmpn .all_btn img{
  width: calc(90 * (60rem / 430));
}



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

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

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

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

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

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

  #lp_contents .lp_inner{
    box-shadow: none;
  }
  #lp_contents .sp_only{display: block;}
  #lp_contents .pc_only{display: none;}

  #lp_contents a:hover{opacity: 1}
  
  #lp_contents .nav_list{
    background-color: var(--color-lp_primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(20 * (60rem / 430));
    width: calc(430 * (60rem / 430));
    height: calc(60 * (60rem / 430));
    font-family: var(--font-lp_title);
    font-size: calc(12 * (60rem / 430));
  }

  #lp_contents .nav_list li:not(:last-child){
    position: relative;
    padding-right: calc(20 * (60rem / 430));
  }

  #lp_contents .nav_list li:not(:last-child):before{
    content: '';
    display: block;
    width: 1px;
    height: calc(15 * (60rem / 430));
    background-color: #D3D3D3;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
}