@charset "UTF-8";

:root {
  --font-lp_eng: Optima, "Optima","Marcellus";
  --font-lp_serif: 'ヒラギノ明朝 ProN','Hiragino Mincho ProN','Yu Mincho Light','YuMincho','Yu Mincho','游明朝体',sans-serif;
  --font-lp_base: 'ヒラギノ角ゴシック','Hiragino Sans','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',YuGothic,'Yu Gothic', sans-serif;
  --color-lp_bg: #fff;
  --color-lp_btn-bg: transparent linear-gradient(89deg, #DBF2F0 0%, #E4F1DD 34%, #FFF4C3 100%) 0% 0% no-repeat padding-box;
  --color-lp_font: #555555;
  --color-lp_sub-font: #888888;
  --color-lp_primary: #867B28;
  --color-lp_secondary: #A7985A;
  --color-lp_tertiary: #FFFEE3;
}


/*--------------------------------
                canvas
 --------------------------------*/

html,
body {
  height: 100%;
}

#canvas {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  pointer-events: none;
}

body.o-start #canvas {
  cursor: none;
}

.dg, .ac {
    display: none;
}


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

@keyframes randomMove {
  0% {
    -webkit-transform: translate(-10rem,-10rem) scale(1.2);
            transform: translate(-10rem,-10rem) scale(1.2);
  }
  100% {
    -webkit-transform: translate(10rem,10rem) scale(0.8);
            transform: translate(10rem,10rem) scale(0.8);
  }
}

@keyframes zoom {
   0% {
      transform: scale(1);
   }
   100% {
      transform: scale(1.1);
   }
}

@keyframes blur {
   0% {
      -ms-filter: blur(30px);
      filter: blur(30px);
   }
   100% {
      -ms-filter: blur(0);
      filter: blur(0);
   }
}

/* 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 .fade path{
  opacity: 0;
  transition: 2s;
}

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

#lp_contents .fade.is-show path:nth-child(1) {
  transition-delay: 0.75s;
}

#lp_contents .fade.is-show path:nth-child(2) {
  transition-delay: 0.5s;
}

#lp_contents .fade.is-show path:nth-child(3) {
  transition-delay: 0.25s;
}

#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 .item_slider{
  width: 100%;
  max-width: 120rem;
  position: relative;
}

#lp_contents .slick-list{
  overflow: visible;
}

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

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

#lp_contents .slick-dots li{
  margin: 1.5rem 0.5rem 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 100%;
  background-color: #fff;
  border: 1px solid;
  line-height: 0;
}

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

#lp_contents .slick-dots li.slick-active{
  background-color: #000;
}

#lp_contents .slick-dots li button{
  display: none;
}

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

#lp_contents .slick-prev, 
#lp_contents .slick-next{
  width: 4.5rem;
  height: 4.5rem;
  z-index: 2;
  background-color: rgba(255, 255, 255, .7);
  border-radius: 100%;
  filter: drop-shadow(0 0 1.5rem rgba(0, 0, 0, 0.2));
}

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

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

#lp_contents .slick-prev:before, 
#lp_contents .slick-next:before{
  font-size: 0;
  content: '';
  display: block;
  width: 1rem;
  height: 1rem;
  border-top: 1px solid var(--color-lp_font);
  border-left: 1px solid var(--color-lp_font);
  transform: rotate(-45deg);
  position: absolute;
  left: 0;
  right: -0.5rem;
  top: 0;
  bottom: 0;
  margin: auto;
}

#lp_contents .slick-next:before{
  transform: rotate(135deg);
  right: 0;
  left: -0.5rem;
}

@media (max-width: 767px) {
  #lp_contents .item_slider{
    max-width: 100%;
    padding: 0 4rem;
  }

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

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


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

#lp_contents .follow{
  position: fixed;
  bottom: 0;
  z-index: 101;

  opacity: 0;
  transition: all 0.5s;
  transform: translateY(100%);
}

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

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


/* modal
==================================*/

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

#lp_contents .modal_wrapper{
  padding: 0;
  z-index: 1000;
}

#lp_contents .modal{
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
}

#lp_contents .modal__bg{
  height: 100vh;
  position: absolute;
  width: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.5;

  -webkit-animation: blur 2s 1;
   animation: blur 2s 1;
   animation-fill-mode: forwards;
}

#modal01 .modal__bg{
  background-image: url(../img/item1_2.jpg);
}

#modal02 .modal__bg{
  background-image: url(../img/item2_2.jpg);
}

#modal03 .modal__bg{
  background-image: url(../img/item3_2.jpg);
}

#modal04 .modal__bg{
  background-image: url(../img/item4_2.jpg);
}

#modal05 .modal__bg{
  background-image: url(../img/item5_2.jpg);
}

#modal06 .modal__bg{
  background-image: url(../img/item6_2.jpg);
}

#modal07 .modal__bg{
  background-image: url(../img/item7_2.jpg);
}

#lp_contents .modal__content{
  display: flex;
  align-items: flex-start;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%,0);
  z-index: 1000;
  height: 100%;
  max-height: calc(100vh - 8rem);
  padding: 8rem 0;
  overflow-y: scroll;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
}

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

#lp_contents .close-btn{
  position: fixed;
  width: 5rem;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, .8);
  top: 2rem;
  right: 0;
  z-index: 1001;
}

#lp_contents .close-btn span:before,
#lp_contents .close-btn span:after{
  content: '';
  width: 2rem;
  height: 1px;
  background-color: var(--color-lp_sub-font);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

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

@media (max-width: 767px) {
  #lp_contents .modal__content{
    max-height: calc(100vh - 12rem);
  }
}



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

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

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

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

#lp_contents{
  font-family: YakuHanJP_Narrow , var(--font-lp_base);
  /*font-feature-settings: "palt";*/
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;

  color: var(--color-lp_font);
  background-color: var(--color-lp_bg);
  position: relative;
  /*overflow: hidden;*/
}
#lp_contents:before{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/visual_bg_pc.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  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;}
#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 small.note{
  display: inline-block;
  margin-top: 4rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-lp_sub-font);
}
#lp_contents p small.note{
  margin-top: 0;
}
#lp_contents section{
  padding: 8rem 0;
  position: relative;
  z-index: 2;
}

#lp_contents .main_ttl{
  position: relative;
  margin: 0 auto 3rem;
  padding-top: 3.6rem;
  font-family: var(--font-lp_eng);
  font-size: 4rem;
  line-height: 1;
  color: var(--color-lp_primary);

  background-image: url(../img/crown.svg);
  background-size: 2.5rem 2rem;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: 3;
}

#lp_contents .main_ttl small{
  display: block;
  font-size: 2.8rem;
  margin-top: 1rem;
}

#lp_contents .sub_ttl{
  font-family: var(--font-lp_eng);
  font-size: 3.2rem;
  line-height: 1;
  color: var(--color-lp_primary);
}

#lp_contents .sub_ttl svg{
  display: block;
  margin: 1.5rem auto 0;
}

#lp_contents .lead_wrap{
  position: relative;
  font-family: var(--font-lp_serif);
  z-index: 3;
}

#lp_contents .lead{
  font-family: var(--font-lp_serif);
  font-size: 1.8rem;
}

#lp_contents .lead + .lead{
  margin-top: 3rem;
}

#lp_contents .all_btn{
  position: relative;
  width: 40rem;
  min-height: 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  margin: auto;
  font-family: var(--font-lp_eng), var(--font-lp_serif);
  font-size: 1.7rem;
  line-height: 1.5;
  background: var(--color-lp_btn-bg);
  border-radius: 0.2rem;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
}

#lp_contents .all_btn img{
  width: 8rem;
}


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

#lp_contents .sec_mv{
  padding: 0;
}

#lp_contents .mv_wrap{
  position: relative;
  overflow: hidden;
}

#lp_contents .mv_wrap h1{
  text-align: center;
  position: absolute;
  top: calc(200 *(100vw / 1600));
  left: calc(120 *(100vw / 1600));
  z-index: 3;
  font-family: var(--font-lp_eng);
  font-size: calc(54 *(100vw / 1600));
  line-height: 1;
  color: var(--color-lp_primary);
  display: grid;
  gap: calc(22*(100vw / 1600));
  align-content: center;
  justify-items: center;
}

#lp_contents .mv_wrap .crown{
  width: calc(40 *(100vw / 1600));
}

#lp_contents .mv_wrap .logo{
  width: calc(170 *(100vw / 1600));
}

#lp_contents .mv_wrap .zoom{
  display: block;
  -webkit-animation: zoom 10s 1;
   animation: zoom 10s 1;
   animation-fill-mode: forwards;
}

#lp_contents .mv_wrap:before{
  content: '';
  width: calc(1560 *(100vw / 1600));
  height: calc(610 *(100vw / 1600));
  border: 1px solid #9F9657;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
}


/* nav_list
==================================*/

#lp_contents .nav_list{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 4.5rem;
  background-color: var(--color-lp_secondary);
}

#lp_contents .nav_list ul{
  display: flex;
  align-items: center;
  justify-content: center;
  gap:3rem;
  font-family: var(--font-lp_eng);
  line-height: 1;
  color: #fff;
}

#lp_contents .nav_list li:not(:last-child){
  position: relative;
  padding-right: 3rem;
}

#lp_contents .nav_list li:not(:last-child):after{
  content: '';
  display: block;
  width: 1px;
  height: 1.5rem;
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}


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

#lp_contents .sec_rank{
  background: linear-gradient(144deg, #d3efed 0%, #faf9e7 40.39%, #fff 75.86%, #f8efef 100%);
  overflow: hidden;
}

/*------------ rank_wrap ------------*/
#lp_contents .sec_rank .rank_wrap{
  position: relative;
  padding-top: 8rem;
}

#lp_contents .sec_rank .rank_wrap .item_area{
  width: 100%;
  max-width: 120rem;
  position: relative;
  margin: auto;
  z-index: 3;
}

#lp_contents .sec_rank .rank_wrap .item{
  position: relative;
  max-width: 35rem;
  width: 35rem;
  height: auto !important;
  padding: 2.5rem;
  margin: 0 1rem;
  background-color: #fff;
  box-shadow: 0 0 0.5rem #0000000D;
}

#lp_contents .sec_rank .rank_wrap .item:nth-of-type(1){
  transition-delay: 0.25s;
}

#lp_contents .sec_rank .rank_wrap .item:nth-of-type(2){
  transition-delay: 0.5s;
}

#lp_contents .sec_rank .rank_wrap .item:nth-of-type(3){
  transition-delay: 0.75s;
}

#lp_contents .sec_rank .rank_wrap .item:nth-of-type(4){
  transition-delay: 1s;
}

#lp_contents .sec_rank .rank_wrap .item:nth-of-type(5){
  transition-delay: 1.25s;
}

#lp_contents .sec_rank .rank_wrap .item:nth-of-type(6){
  transition-delay: 1.5s;
}

#lp_contents .sec_rank .rank_wrap .item:nth-of-type(7){
  transition-delay: 1.75s;
}

#lp_contents .sec_rank .rank_wrap .frame{
  position: absolute;
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  pointer-events: none;

  background-image: url("../img/line_top.svg"), url("../img/line_btm.svg");
  background-size: 100%, 100%;
  background-position: left top, left bottom;
  background-repeat: no-repeat, no-repeat;
}

#lp_contents .sec_rank .rank_wrap .frame:before,
#lp_contents .sec_rank .rank_wrap .frame:after{
  content: '';
  width: 1px;
  height: calc(100% - 3.5rem);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(../img/line.svg);
  background-repeat: repeat-y;
  background-size: 100%;
}

#lp_contents .sec_rank .rank_wrap .frame:before{
  left: 0;
}

#lp_contents .sec_rank .rank_wrap .frame:after{
  right: 0;
}

#lp_contents .sec_rank .rank_wrap .rank{
  font-family: var(--font-lp_eng);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--color-lp_primary);
  margin-bottom: 1.2rem;
}

#lp_contents .sec_rank .rank_wrap .rank big{
  font-size: 3rem;
}

#lp_contents .sec_rank .rank_wrap .name{
  font-family: var(--font-lp_serif);
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

#lp_contents .sec_rank .rank_wrap .img{
  position: relative;
  width: 27rem;
  margin: 0 auto 2rem;
}

#lp_contents .sec_rank .rank_wrap .review_btn{
  padding: 0.3rem 0.8rem;
  font-family: var(--font-lp_eng);
  font-size: 1.1rem;
  line-height: 1;
  border-radius: 10rem;
  border: 1px solid #D1D1D1;
  background-color: rgba(255, 255, 255, .7);
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
}

#lp_contents .sec_rank .rank_wrap .item_lead{
  font-family: var(--font-lp_serif);
  font-size: 1.5rem;
  line-height: 1.75;
  margin-bottom: 0.8rem;
}

#lp_contents .sec_rank .rank_wrap .item_text{
  text-align: justify;
  font-size: 1.2rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  color: var(--color-lp_sub-font);
}

#lp_contents .sec_rank .rank_wrap .cv_area{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#lp_contents .sec_rank .rank_wrap .price{
  font-family: var(--font-lp_eng), var(--font-lp_base);
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-size: 1.4rem;
  line-height: 1;
}

#lp_contents .sec_rank .rank_wrap .price big{
  font-size: 2rem;
}

#lp_contents .sec_rank .rank_wrap .link_btn{
  font-family: var(--font-lp_eng);
  font-size: 1.2rem;
  line-height: 1;
  color: #fff;
  width: fit-content;
  padding: 0.8rem 1.8rem;
  background-color: var(--color-lp_secondary);
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

#lp_contents .sec_rank .rank_wrap .circle{
  width: 50rem;
  aspect-ratio: 1/1;
  position: absolute;
  z-index: 2;
}

#lp_contents .sec_rank .rank_wrap .circle_1{
  right: 0;
  top: -10rem;
  background: transparent radial-gradient(closest-side at 50% 50%, #FFEEEC 0%, #FFEEEC00 100%) 0% 0% no-repeat padding-box;
  animation: randomMove 5s linear infinite alternate;
  animation-delay: 2s;
}

#lp_contents .sec_rank .rank_wrap .circle_2{
  left: 0;
  top: 5rem;
  background: transparent radial-gradient(closest-side at 50% 50%, #D8BBE0 0%, #F8E9FC00 100%) 0% 0% no-repeat padding-box;
  animation: randomMove 5s linear infinite alternate;
  animation-delay: 1s;
  opacity: 0.8;
}

#lp_contents .sec_rank .rank_wrap .circle_3{
  left: 28rem;
  bottom: -14rem;
  background: transparent radial-gradient(closest-side at 50% 50%, #CFE2CC 0%, #EBFEE800 100%) 0% 0% no-repeat padding-box;
  animation: randomMove 5s linear infinite alternate;
}

/*------------ cmnt_wrap ------------*/
#lp_contents .sec_rank .cmnt_wrap{
  width: 54rem;
}

#lp_contents .sec_rank .cmnt_wrap ul{
  display: grid;
  gap: 2rem;
}

#lp_contents .sec_rank .cmnt_wrap li{
  display: flex;
  gap: 3rem;
}

#lp_contents .sec_rank .cmnt_wrap .icon{
  width: 6rem;
}

#lp_contents .sec_rank .cmnt_wrap .cmnt_blk{
  text-align: left;
  width: 45rem;
}

#lp_contents .sec_rank .cmnt_wrap .cmnt_blk .name{
  font-size: 1.2rem;
  color: var(--color-lp_sub-font);
  line-height: 1;
  margin-bottom: 1rem;
}

#lp_contents .sec_rank .cmnt_wrap .cmnt_blk .cmnt{
  position: relative;
  width: 100%;
  padding: 2rem 1.5rem;
  background-color: rgba(255, 255, 255, .8);
  border-radius: 0.5rem;
  font-size: 1.4rem;
  line-height: 1.75;
  color: var(--color-lp_sub-font);
}

#lp_contents .sec_rank .cmnt_wrap .cmnt_blk .cmnt:before{
  content: '';
  background: rgba(255, 255, 255, .8);
  height: calc(tan(60deg) * 1.2rem / 2);
  width: 1.5rem;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  position: absolute;
  top: 1rem;
  left: -1.5rem;
}

/*------------ modal ------------*/
#lp_contents .sec_rank .modal .rank_wrap{
  position: fixed;
  bottom: 0;
  width: 100%;
  min-height: 8rem;
  background-color: #fff;
  padding: 2rem;
  filter: drop-shadow(0 -0.5rem 1rem rgba(0, 0, 0, 0.05));
}

#lp_contents .sec_rank .modal .cv_area{
  justify-content: center;
  gap: 5rem;
}

#lp_contents .sec_rank .modal .item_detail{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

#lp_contents .sec_rank .modal .rank{
  margin-bottom: 0;
  font-size: 2.4rem;
}

#lp_contents .sec_rank .modal .rank big{
  font-size: 3.6rem;
}

#lp_contents .sec_rank .modal .name{
  margin-bottom: 0;
}

#lp_contents .sec_rank .modal .link_btn{
  font-size: 1.4rem;
  padding: 1rem 2rem;
}


/* sec_bg
==================================*/

#lp_contents .sec_bg{
  padding: 0;
  height: 60rem;
}


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

#lp_contents .sec_cmpn{
  background-image: url(../img/bg_pc.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#lp_contents .sec_cmpn .day_txt{
  font-family: var(--font-lp_eng);
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 4rem;
}

#lp_contents .sec_cmpn .day_txt big{
  font-size: 2.8rem;
}

#lp_contents .sec_cmpn .cmpn_blk{
  position: relative;
  width: 60rem;
  padding: 4rem 0;
  margin: auto;
  background-color: rgba(255, 255, 255, .6);
}

#lp_contents .sec_cmpn .cmpn_blk p{
  font-family: var(--font-lp_eng), var(--font-lp_serif);
  font-size: 1.7rem;
  line-height: 1.75;
}

#lp_contents .sec_cmpn .cmpn_blk big{
  font-size: 1.8rem;
}

#lp_contents .sec_cmpn .cmpn_blk a{
  width: fit-content;
  display: inline-block;
  text-decoration: underline;
  color: var(--color-lp_primary);
}

#lp_contents .sec_cmpn .cmpn_blk .emphasis{
  color: var(--color-lp_primary);
  font-weight: 600;
}

#lp_contents .sec_cmpn .cmpn_blk .emphasis big{
  font-size: 2.2rem;
}

#lp_contents .sec_cmpn .cmpn_blk .mask_img{
  width: 58.5rem;
  position: absolute;
  top: -1.7rem;
  left: 0;
  pointer-events: none;
}

#lp_contents .sec_cmpn .anker_btn_blk{
  position: relative;
  padding-bottom: 4rem;
}

#lp_contents .sec_cmpn .anker_btn_blk .anker_btn{
  width: fit-content;
  min-width: 25rem;
  padding: 0.4rem 2rem;
  margin: 4rem auto 0;
  border-radius: 10rem;
  background-color: var(--color-lp_primary);
  font-family: var(--font-lp_serif);
  color: #fff;
}

#lp_contents .sec_cmpn .anker_btn_blk:before{
  content: '';
  width: 2rem;
  height: 2rem;
  border-right: 1px solid var(--color-lp_font);
  border-bottom: 1px solid var(--color-lp_font);
  transform: rotate(45deg);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.5rem;
  margin: auto;
}

#lp_contents .sec_cmpn:after{
  content: '';
  width: 100%;
  height: 6rem;
  background: transparent linear-gradient(180deg, #FFFBE700 0%, #FFFBE7 100%) 0% 0% no-repeat padding-box;
  position: absolute;
  left: 0;
  bottom: 0;
}


/* sec_set
==================================*/

#lp_contents .sec_set{
  background-color: #FFFBE7;
  display: grid;
  gap: 5rem;
}

#lp_contents .sec_set .lead{
  font-size: 2rem;
  margin-top: 1.5rem;
}

#lp_contents .sec_set .set_area{
  width: 72rem;
  margin: 3rem auto 0;
  padding: 2.5rem 0 3rem;
  background-color: #fff;
  display: grid;
  gap: 2.5rem;
}

#lp_contents .sec_set .status_txt{
  display: flex;
}

#lp_contents .sec_set .status_txt span{
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-lp_serif);
}

#lp_contents .sec_set .status_txt .normal{
  width: 47rem;
  background-color: #E2D49E;
}

#lp_contents .sec_set .status_txt .collabo{
  width: 25rem;
  color: #fff;
  background-color: var(--color-lp_primary);
}

#lp_contents .sec_set .item_list{
  position: relative;
}

#lp_contents .sec_set .item_list ul{
  display: flex;
  justify-content: center;
  gap: 4rem;
}

#lp_contents .sec_set .item_list li{
  position: relative;
  width: 20rem;
}

#lp_contents .sec_set .item_list li:not(:last-child):after{
  content: '';
  width: 3rem;
  aspect-ratio: 1/1;
  background-image: url(../img/multiply.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: 8rem;
  right: -3.5rem;
  z-index: 2;
}

#lp_contents .sec_set .item_detail{
  margin-top: 1.5rem;
  display: grid;
  gap: 0.6rem;
  padding-bottom: 3.5rem;
}

#lp_contents .sec_set .item_detail .name{
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-lp_sub-font);
}

#lp_contents .sec_set .item_detail .price{
  font-family: var(--font-lp_eng), var(--font-lp_base);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem 1rem;
  font-size: 1.3rem;
  line-height: 1;
  margin: auto;
}

#lp_contents .sec_set .item_detail .price big{
  font-size: 1.9rem;
}

#lp_contents .sec_set .item_detail .detail_btn{
  font-family: var(--font-lp_eng);
  font-size: 1.3rem;
  line-height: 1;
  width: fit-content;
  min-width: 10rem;
  padding: 0.5rem 1.2rem;
  margin: auto;
  border: 1px solid #D1D1D1;
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

#lp_contents .sec_set .total{
  width: fit-content;
  border-bottom: 0.2rem solid #E2D49E;
  padding-bottom: 0.4rem;
  margin: auto;
  font-family: var(--font-lp_eng);
  font-size: 2rem;
  line-height: 1;
}

#lp_contents .sec_set .total big{
  font-size: 2.8rem;
}

#lp_contents .sec_set .cart_btn{
  position: relative;
  width: 40rem;
  padding: 1rem 1.5rem;
  margin: auto;
  font-family: var(--font-lp_eng), var(--font-lp_serif);
  font-size: 1.3rem;
  line-height: 1.5;
  background: var(--color-lp_btn-bg);
  border-radius: 0.2rem;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
}

#lp_contents .sec_set .cart_btn:before{
  content: '';
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1px solid var(--color-lp_font);
  border-left: 1px solid var(--color-lp_font);
  transform: rotate(135deg);
  position: absolute;
  right: 2rem;
  top: 0;
  bottom: 0;
  margin: auto;
}

#lp_contents .sec_set .cart_btn img{
  width: 4rem;
  transform: rotate(-10deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1rem;
  margin: auto;
}

#lp_contents .sec_set .cart_btn .emphasis{
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-lp_primary);
}

#lp_contents .sec_set .cart_btn big{
  display: inline-block;
  font-size: 2.1rem;
  margin-top: 0.2rem;
}

#lp_contents .sec_set .set_3 .set_area{
  padding-top: 0;
}

#lp_contents .sec_set .set_3 .item_list ul{
  gap: 2rem;
}

#lp_contents .sec_set .set_3 .item_list li:not(:last-child):after{
  right: -2.5rem;
}


/* sec_feature
==================================*/

#lp_contents .sec_feature{
  background-color: #fff;
}

#lp_contents .sec_feature .feature_list{
  width: 104rem;
  margin: 8rem auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8rem;
}

#lp_contents .sec_feature .feature_list li{
  width: 48rem;
  display: grid;
  gap: 2rem;
}

#lp_contents .sec_feature .feature_ttl{
  font-family: var(--font-lp_eng);
  font-size: 3rem;
  line-height: 1.5;
  color: var(--color-lp_primary);
}

#lp_contents .sec_feature .feature_list .lead{
  font-size: 1.4rem;
}

#lp_contents .sec_feature .all_btn{
  margin-top: 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 / 430));
  }

  #share.fixed {
    bottom: 6rem !important;
    z-index: 101 !important;
  }

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

  #lp_contents{
    font-size: 1.3rem;
  }
  #lp_contents:before{
    background-image: url(../img/visual_bg_sp.jpg);
  }
  #lp_contents .sp_only{display: block;}
  #lp_contents .pc_only{display: none;}

  #lp_contents p {
    font-size: 1.3rem;
  }
  #lp_contents section{
    padding: 6rem 0;
  }

  #lp_contents .main_ttl{
    font-size: 3.2rem;
  }

  #lp_contents .main_ttl small{
    font-size: 2rem;
  }

  #lp_contents .sub_ttl{
    font-size: 2rem;
  }

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

  #lp_contents .lead + .lead{
    margin-top: 2rem;
  }

  #lp_contents .all_btn{
    width: 35rem;
    min-height: 8rem;
  }


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

  #lp_contents .mv_wrap h1{
    top: calc(40 *(100vw / 430));
    left: 0;
    right: 0;
    margin: auto;
    font-size: calc(32 *(100vw / 430));
    gap: calc(12*(100vw / 430));
  }

  #lp_contents .mv_wrap .crown{
    width: calc(25 *(100vw / 430));
  }

  #lp_contents .mv_wrap .logo{
    width: calc(100 *(100vw / 430));
  }

  #lp_contents .mv_wrap:before{
    width: calc(410 *(100vw / 430));
    height: calc(410 *(100vw / 430));
  }


  /* nav_list
  ==================================*/

  #lp_contents .nav_list ul{
    font-size: 1.2rem;
    gap:1.5rem;
  }

  #lp_contents .nav_list li:not(:last-child){
    padding-right: 1.5rem;
  }


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

  /*------------ rank_wrap ------------*/
  #lp_contents .sec_rank .rank_wrap{
    padding-top: 6rem;
  }

  #lp_contents .sec_rank .rank_wrap .item_area{
    max-width: 100%;
  }

  #lp_contents .sec_rank .rank_wrap .item{
    padding: 2rem;
    margin: 0 0.5rem;
  }

  #lp_contents .sec_rank .rank_wrap .circle{
    width: 40rem;
  }

  #lp_contents .sec_rank .rank_wrap .circle_1{
    right: -14rem;
    top: -6rem;
  }

  #lp_contents .sec_rank .rank_wrap .circle_2{
    left: -12rem;
    top: 18rem;
  }

  #lp_contents .sec_rank .rank_wrap .circle_3{
    left: auto;
    right: 0;
    bottom: -15rem;
  }

  /*------------ cmnt_wrap ------------*/
  #lp_contents .sec_rank .cmnt_wrap{
    width: 39rem;
  }

  #lp_contents .sec_rank .cmnt_wrap li{
    gap: 2.5rem;
  }

  #lp_contents .sec_rank .cmnt_wrap .icon{
    width: 4.5rem;
  }

  #lp_contents .sec_rank .cmnt_wrap .cmnt_blk{
    width: 32rem;
  }

  #lp_contents .sec_rank .cmnt_wrap .cmnt_blk .name{
    font-size: 1rem;
  }

  #lp_contents .sec_rank .cmnt_wrap .cmnt_blk .cmnt{
    font-size: 1.3rem;
    padding: 1.5rem;
  }

  /*------------ modal ------------*/
  #lp_contents .sec_rank .modal .rank_wrap{
    min-height: 12rem;
    padding: 1.2rem 2rem;
  }

  #lp_contents .sec_rank .modal .cv_area{
    gap: 1rem;
    justify-content: space-between;
    width: 39rem;
  }

  #lp_contents .sec_rank .modal .item_detail{
    display: grid;
    justify-content: flex-start;
    gap: 0.6rem;
    text-align: left;
  }

  #lp_contents .sec_rank .modal .rank{
    font-size: 1.6rem;
    width: 39rem;
  }

  #lp_contents .sec_rank .modal .rank big{
    font-size: 2.5rem;
  }

  #lp_contents .sec_rank .modal .link_btn{
    font-size: 1.3rem;
  }


  /* sec_bg
  ==================================*/

  #lp_contents .sec_bg{
    height: 43rem;
  }


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

  #lp_contents .sec_cmpn{
    background-image: url(../img/bg_sp.jpg);
  }

  #lp_contents .sec_cmpn .day_txt{
    font-size: 1.6rem;
    margin-bottom: 3rem;
  }

  #lp_contents .sec_cmpn .day_txt big{
    font-size: 2.7rem;
  }

  #lp_contents .sec_cmpn .cmpn_blk{
    width: 39rem;
    padding: 3rem 0;
  }

  #lp_contents .sec_cmpn .cmpn_blk p{
    font-size: 1.6rem;
  }

  #lp_contents .sec_cmpn .cmpn_blk .mask_img{
    width: 9rem;
    top: auto;
    left: 1rem;
    bottom: -1.8rem;
  }

  #lp_contents .sec_cmpn .anker_btn_blk .anker_btn{
    margin: 3rem auto 0;
    font-size: 1.4rem;
  }


  /* sec_set
  ==================================*/

  #lp_contents .sec_set{
    gap: 4rem;
  }

  #lp_contents .sec_set .lead{
    font-size: 1.8rem;
  }

  #lp_contents .sec_set .set_area{
    width: 39rem;
    margin: 3rem auto 0;
  }

  #lp_contents .sec_set .status_txt span{
    height: 2.2rem;
  }

  #lp_contents .sec_set .status_txt .normal{
    width: 25.5rem;
  }

  #lp_contents .sec_set .status_txt .collabo{
    width: 13.5rem;
  }

  #lp_contents .sec_set .item_list ul{
    gap: 1rem;
  }

  #lp_contents .sec_set .item_list li{
    width: 18rem;
  }

  #lp_contents .sec_set .item_list li:not(:last-child):after{
    width: 3rem;
    top: 7rem;
    right: -2rem;
  }

  #lp_contents .sec_set .item_detail{
    margin-top: 1rem;
  }

  #lp_contents .sec_set .item_detail .name{
    font-size: 1.1rem;
  }

  #lp_contents .sec_set .item_detail .price{
    font-size: 1.1rem;
  }

  #lp_contents .sec_set .item_detail .price big{
    font-size: 1.6rem;
  }

  #lp_contents .sec_set .item_detail .detail_btn{
    font-size: 1.2rem;
  }

  #lp_contents .sec_set .total{
    font-size: 1.7rem;
  }

  #lp_contents .sec_set .total big{
    font-size: 2.4rem;
  }

  #lp_contents .sec_set .cart_btn{
    width: 35rem;
    font-size: 1.2rem;
  }

  #lp_contents .sec_set .set_3 .item_list ul{
    gap: 0;
  }

  #lp_contents .sec_set .set_3 .item_list li{
    width: 12.3rem;
  }

  #lp_contents .sec_set .set_3 .item_list li:not(:last-child):after{
    width: 2rem;
    top: 5.5rem;
    right: -1.25rem;
  }


  /* sec_feature
  ==================================*/

  #lp_contents .sec_feature .feature_list{
    width: 39rem;
    margin: 6rem auto 0;
    gap: 6rem;
  }

  #lp_contents .sec_feature .feature_list li{
    width: 100%;
  }

  #lp_contents .sec_feature .feature_ttl{
    font-size: 2.4rem;
  }

  #lp_contents .sec_feature .feature_list .lead{
    font-size: 1.3rem;
  }

  #lp_contents .sec_feature .all_btn{
    margin-top: 6rem;
  }
}