@charset "UTF-8";

:root {
  --font-lp_base: pragmatica, "Noto Sans JP","ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN,HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
  --font-lp_serif: "Abril Fatface", serif;;
  --font-lp_mincho: "Cormorant Infant","Zen Old Mincho", serif;
  --color-lp_bg: #182946;
  --color-lp_active_bg: #F8F6ED;
  --color-lp_point_bg: rgba(255,255,255,0.05);
  --color-lp_font: #fff;
  --color-lp_primary: #C3AC6E;
  --color-lp_secondary: #F2D587;
}

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

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

#lp_contents .zoom{
  overflow: hidden;
}

#lp_contents .zoom img{
  opacity: 0;
  transition: all 2s;
  transform: scale(1.2);
  filter: blur(5px);
}

#lp_contents .zoom.is-show img{
  opacity: 1;
  transform: scale(1.0);
  filter: blur(0);
}

#lp_contents .zoom.is-show img:hover{
  transform: scale(1.1);
}


/*------------ modal ------------*/
body.no_scroll {
  height: 100vh;
  overflow: hidden;
}

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

#lp_contents .modal__bg{
  height: 100vh;
  position: absolute;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  filter: drop-shadow(
    0 0 0 rgba(0, 0, 0, 0.3)
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

#lp_contents .modal__content{
  background: #fff;
  color: #000;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 1001;
  max-height: 90svh;
  overflow-y: scroll;
  border-radius: 1rem;
  padding: 4rem 6rem;
  width: 102rem;
}

#lp_contents .close-btn{
  position: sticky;
  height: 0;
  top: 2rem;
  right: 2rem;
  z-index: 100;
}

#lp_contents .close-btn span{
  position: absolute;
  display: block;
  width: 3rem;
  aspect-ratio: 1/1;
  top: -4rem;
  right: -3.5rem;
}

#lp_contents .close-btn span:before,
#lp_contents .close-btn span:after{
  content: '';
  width: 3rem;
  height: 1px;
  background-color: #000;
  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{
    width: 40rem;
    padding: 3.5rem;
  }

  #lp_contents .close-btn span{
    right: -2rem;
  }
}


/*------------ tab_container ------------*/
#lp_contents .js-tab-menu__item:hover,
#lp_contents .anchor:hover {
  cursor: pointer;
}

#lp_contents .js-tab-content__item {
  overflow: hidden;
  height: 0;
  opacity: 0;
}

#lp_contents .js-tab-content__item.is-active {
  overflow: visible;
  height: fit-content;
  opacity: 1;
  transition: opacity .4s ease-in-out;
}


/*------------ follow ------------*/
#lp_contents .follow{
  position: fixed;
  left: 0;
  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%);
}

#lp_contents .follow_2{
  opacity: 0;
  transition: all 0.5s;
  z-index: 100;
}

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

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


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

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

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

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

  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/bg_pc.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;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.4rem;
  line-height: 1.75;
}
#lp_contents sup{
  font-size: 50%;
  margin-top: -0.6rem;
}
#lp_contents small.note{
  display: inline-block;
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}
#lp_contents p small.note{
  margin-top: 0;
}
#lp_contents section{
  position: relative;
  z-index: 2;
}

#lp_contents .ttl_text{
  width: fit-content;
  position: relative;
  font-size: 3rem;
  font-family: var(--font-lp_mincho);
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--color-lp_primary);
  margin: 0 auto 3rem;
}

#lp_contents .ttl_text:before,
#lp_contents .ttl_text:after{
  content: '';
  display: block;
  background-image: url(../img/star.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 1.5rem;
  height: 1.6rem;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

#lp_contents .ttl_text:before{
  left: -3rem;
}

#lp_contents .ttl_text:after{
  right: -3rem;
}

#lp_contents .link_btn{
  width: 25rem;
  height: 4rem;
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-lp_mincho);
  font-size: 2.3rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-lp_bg);
  background: linear-gradient(90deg, #d8bb6c 0%, #d6c57e 22.66%, #fdf9c5 48.28%, #d6c57e 80.3%, #d8bb6c 100%);
  margin: auto;
  padding-top: 0.2rem;
}

 #lp_contents .plus{
  width: 0.8rem;
  aspect-ratio: 1/1;
  position: absolute;
  top: 0;
  right: 1.5rem;
  bottom: 0;
  margin: auto;
}

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

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

#lp_contents .img_blk{
  overflow: hidden;
  border-radius: 1rem;
}


/* nav
==================================*/

#lp_contents .nav_list{
  text-align: center;
  width: 100%;
  background-color: var(--color-lp_primary);
  margin: 7rem auto 0;
}

#lp_contents .nav_list ul{
  width: 120rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
}

#lp_contents .nav_list li{
  position: relative;
  flex: 1;
  font-family: var(--font-lp_serif);
  font-size: 2.4rem;
  line-height: 1.2;
  letter-spacing: 0.025em;
  color: var(--color-lp_bg);
  padding: 1.6rem 0;
}

#lp_contents .nav_list li:before{
  content: '';
  width: 1px;
  height: 2rem;
  background-color: var(--color-lp_bg);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

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

#lp_contents .nav_kit{
  width: fit-content;
  font-family: var(--font-lp_mincho);
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.025em;
  padding: 0.8rem 3rem 0.8rem 2rem;
  margin-right: -1px;
  border-radius: 10rem 0 0 10rem;
  border: 1px solid #fff;
  background-color: var(--color-lp_bg);
  position: fixed;
  right: 0;
  left: auto;
  bottom: 8rem;
}


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

#lp_contents .sec_mv{
  text-align: center;
}

#lp_contents .sec_mv .lead{
  font-family: var(--font-lp_mincho);
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0.05em;
  margin: 5rem auto 0;
}

#lp_contents .sec_mv .staff_text{
  font-family: var(--font-lp_mincho);
  font-size: 1.7rem;
  margin-top: 5rem;
}

#lp_contents .sec_mv .staff_text b{
  font-size: 2rem;
}

#lp_contents .sec_mv .staff_text span{
  display: block;
  margin-top: 1.5rem;
}

#lp_contents .sec_mv .award_list{
  margin-top: 3rem;
  font-family: var(--font-lp_mincho);
  font-size: 1.5rem;
  line-height: 1;
}

#lp_contents .sec_mv .award_list .arrow{
  display: inline-block;
  margin-left: 1rem;
  position: relative;
  width: 0.4rem;
  height: 0.8rem;
}

#lp_contents .sec_mv .award_list .arrow:before{
  content: '';
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}


/* sec_award
==================================*/

#lp_contents .sec_award{
  width: 102rem;
  margin: 12rem auto 0;
  padding-top: 8rem;
}

#lp_contents .sec_award .first_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 4rem;
}

#lp_contents .sec_award .cate_wrap:not(:last-child){
  margin-bottom: 10rem;
}

/*------------ ttl_wrap ------------*/
#lp_contents .sec_award .ttl_wrap{
  position: relative;
  text-align: center;
  margin: 0 auto 5rem;
}

#lp_contents .sec_award .ttl_wrap .ttl_eng{
  font-family: var(--font-lp_serif);
  font-size: 10rem;
  line-height: 1;
  letter-spacing: 0.025em;
  position: absolute;
  top: -8rem;
  left: 0;
  right: 0;
  margin: auto;
  color: var(--color-lp_secondary);
  transition-duration: 1.5s;
  transition-delay: 1s;
}

#lp_contents .sec_award.is-show .ttl_wrap .ttl_eng{
  opacity: 0.1;
  color: #fff;
}

#lp_contents .sec_award .ttl_wrap h2{
  position: relative;
  width: fit-content;
  font-family: var(--font-lp_mincho);
  font-size: 5.4rem;
  line-height: 1;
  letter-spacing: 0.15em;
  color: var(--color-lp_secondary);
  margin: auto;
  transition-duration: 1.5s;
  transition-delay: 1s;
}

#lp_contents .sec_award .ttl_wrap h2:before,
#lp_contents .sec_award .ttl_wrap h2:after{
  content: '';
  width: 1.5rem;
  height: 5rem;
  display: block;
  background-image: url(../img/parentheses.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

#lp_contents .sec_award .ttl_wrap h2:before{
  left: -3.5rem;
}

#lp_contents .sec_award .ttl_wrap h2:after{
  right: -3.5rem;
  transform: scale(-1, 1);
}

#lp_contents .sec_award .ttl_wrap .lead{
  font-family: var(--font-lp_mincho);
  font-size: 2.8rem;
  margin-top: 3rem;
}

#lp_contents .sec_award .ttl_wrap .cate_list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin: 3rem auto 0;
  transition-duration: 1.5s;
  transition-delay: 1s;
}

#lp_contents .sec_award .ttl_wrap .cate_list li{
  padding: 0.9rem 1.5rem 0.7rem;
  border: 1px solid #fff;
  border-radius: 10rem;
  font-family: var(--font-lp_mincho);
  font-size: 1.8rem;
  line-height: 1;
}

#lp_contents .sec_award .ttl_wrap .cate_list li a{
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

#lp_contents .sec_award .ttl_wrap .cate_list li a:after{
  content: '';
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  background-image: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

/*------------ cate_ttl_wrap ------------*/
#lp_contents .sec_award .cate_ttl_wrap{
  margin: 0 auto 5rem;
}

#lp_contents .sec_award .cate_ttl_wrap .line{
  display: block;
  position: relative;
  margin: 0 auto 3rem;
}

#lp_contents .sec_award .cate_ttl_wrap .line:before{
  content: '';
  display: block;
  padding: 0 1rem;
  background-color: var(--color-lp_bg);
  background-image: url(../img/star.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.5rem 1.6rem;
  width: 1.5rem;
  height: 1.6rem;
  position: relative;
  z-index: 2;
  margin: auto;
}

#lp_contents .sec_award .cate_ttl_wrap .line:after{
  content: '';
  height: 1px;
  width: 100%;
  background-image : linear-gradient(to right, #C3AC6E 2px, transparent 2px);
  background-size: 4px 1px;
  background-repeat: repeat-x;
  background-position: left top;
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}

#lp_contents .sec_award .cate_ttl_wrap .cate{
  text-align: center;
  font-family: var(--font-lp_mincho);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--color-lp_secondary);
}

#lp_contents .sec_award .cate_ttl_wrap .cate small{
  display: block;
  font-family: var(--font-lp_serif);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

/*------------ img_wrap ------------*/
#lp_contents .sec_award .img_wrap{
  position: relative;
  display: flex;
  align-items: center;
  width: 48rem;
  border-radius: 1rem;
  padding: 3rem;
  background-color: #fff;
}

#lp_contents .sec_award .img_wrap.full{
  padding: 0;
}

#lp_contents .sec_award .img_wrap.full a,
#lp_contents .sec_award .img_wrap.full .img_blk{
  width: 100%;
  height: 100%;
}

#lp_contents .sec_award .img_wrap img{
  border-radius: 1rem;
}

#lp_contents .sec_award .img_wrap.full a img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#lp_contents .sec_award .emblem{
  width: 12rem;
  position: absolute;
  top: 4rem;
  left: -2.5rem;
  z-index: 2;
}

#lp_contents .sec_award .rank{
  width: 7rem;
  aspect-ratio: 1/1;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-lp_mincho);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  position: absolute;
  top: -1rem;
  left: -1rem;
  color: #fff;
  padding-top: 0.5rem;
  z-index: 2;
}

#lp_contents .sec_award .rank1{
  width: 8rem;
  background-color: #9F7F2B;
  font-size: 1.4rem;
}

#lp_contents .sec_award .rank2{
  background-color: #909090;
}

#lp_contents .sec_award .rank3{
  background-color: #654900;
}

#lp_contents .sec_award .rank big{
  display: block;
  font-size: 3.8rem;
  margin-top: -0.3rem;
}

#lp_contents .sec_award .rank1 big{
  font-size: 4.8rem;
}

#lp_contents .sec_award .rank:before{
  content: '';
  width: calc(100% - 0.8rem);
  aspect-ratio: 1/1;
  border-radius: 100%;
  border: 1px dotted #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0.7;
}

/*------------ text_wrap ------------*/
#lp_contents .sec_award .text_wrap{
  text-align: center;
  width: 50rem;
}

#lp_contents .sec_award .text_wrap .text_blk{
  display: grid;
  gap: 2.5rem;
}

#lp_contents .sec_award .item_lead{
  font-family: var(--font-lp_mincho);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.5;
}

#lp_contents .sec_award .brand_name{
  color: var(--color-lp_primary);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 1rem;
}

#lp_contents .sec_award .item_name{
  font-size: 2.4rem;
  line-height: 1.2;
}

#lp_contents .sec_award .price{
  font-size: 2rem;
  line-height: 1;
  margin-top: 0.6rem;
}

#lp_contents .sec_award .text_wrap .cmnt_wrap{
  margin: 3.6rem auto 0;
}

#lp_contents .sec_award .text_wrap .cmnt_wrap .cmnt_blk{
  width: 100%;
}

/*------------ cmnt_wrap ------------*/
#lp_contents .cmnt_wrap{
  width: 100%;
  padding: 2.5rem;
  background-color: var(--color-lp_point_bg);
  border-radius: 1rem;
  overflow: hidden;
  text-align: justify;
}

#lp_contents .cmnt_wrap ul{
  display: flex;
  flex-wrap: wrap;
}

#lp_contents .cmnt_wrap li{
  position: relative;
  display: flex;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  #lp_contents .cmnt_wrap li:nth-child(even){
    padding-left: 3.5rem;
    margin-left: 3.5rem;
  }

  #lp_contents .cmnt_wrap li:nth-child(n+3){
    padding-top: 3.5rem;
    margin-top: 3.5rem;
  }

  #lp_contents .cmnt_wrap li:before,
  #lp_contents .cmnt_wrap li:after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
  }

  #lp_contents .cmnt_wrap li:nth-child(2):after{
    width: 1px;
    height: 100%;
    background-image : linear-gradient(to bottom, #657184 2px, transparent 2px);
    background-size: 1px 4px;
    background-repeat: repeat-y;
    background-position: left top;
  }

  #lp_contents .cmnt_wrap li:nth-child(n+3):before{
    height: 1px;
    width: 100%;
    background-image : linear-gradient(to right, #657184 2px, transparent 2px);
    background-size: 4px 1px;
    background-repeat: repeat-x;
    background-position: left top;
  }

  #lp_contents .cmnt_wrap li:nth-child(n+4):nth-child(even):before{
    width: calc(100% - 3.5rem);
    left: auto;
    right: 0;
  }

  #lp_contents .cmnt_wrap li:nth-child(n+4):nth-child(even):after{
    width: 1px;
    height: calc(100% - 3.5rem);
    background-image : linear-gradient(to bottom, #657184 2px, transparent 2px);
    background-size: 1px 4px;
    background-repeat: repeat-y;
    background-position: left top;
    top: auto;
    bottom: 0;
  }
}

#lp_contents .cmnt_wrap .img_blk{
  width: 10rem;
  height: fit-content;
  min-width: 10rem;
  aspect-ratio: 1/1;
  border-radius: 100%;
}

#lp_contents .cmnt_wrap .cmnt_blk{
  width: 30rem;
}

#lp_contents .cmnt_wrap .cmnt_blk .name{
  font-family: var(--font-lp_mincho);
  font-size: 2.2rem;
  line-height: 1.5;
  margin-bottom: 0.7rem;
}

#lp_contents .cmnt_wrap .cmnt_blk .name small{
  display: block;
  font-size: 1.3rem;
}

#lp_contents .cmnt_wrap .cmnt_btn{
  position: relative;
  width: 22rem;
  height: 3rem;
  border-radius: 10rem;
  border: 1px solid #fff;
  font-family: var(--font-lp_mincho);
  font-size: 1.4rem;
  line-height: 1;
  margin: 2rem auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#lp_contents .cmnt_wrap .cmnt_inner{
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 4rem;
}

/*------------ all_cmnt_wrap ------------*/
#lp_contents .all_cmnt_wrap ul{
  gap: 1.5rem;
  justify-content: space-between;
}

#lp_contents .all_cmnt_wrap li{
  max-width: 43rem;
  padding: 0 !important;
  margin: 0 !important;
}

#lp_contents .all_cmnt_wrap li:before,
#lp_contents .all_cmnt_wrap li:after{
  content: none;
}

#lp_contents .all_cmnt_wrap .img_blk{
  width: 5rem;
  min-width: 5rem;
}

#lp_contents .all_cmnt_wrap .cmnt_blk{
  width: 100%;
}

#lp_contents .all_cmnt_wrap .cmnt_blk .name{
  font-size: 1.5rem;
}

#lp_contents .all_cmnt_wrap .cmnt_blk .name small{
  display: inline-block;
  margin-right: 0.8rem;
}

#lp_contents .all_cmnt_wrap .staff_blk,
#lp_contents .all_cmnt_wrap .user_blk{
  flex: 1;
}

#lp_contents .all_cmnt_wrap .user_blk .name{
  font-family: var(--font-lp_base);
  font-size: 1.1rem;
  text-align: right;
  color: #909090;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

#lp_contents .all_cmnt_wrap .sub-ttl{
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

#lp_contents .all_cmnt_wrap .sub-ttl:before{
  content: '';
  height: 1px;
  width: 100%;
  background-image: linear-gradient(to right, #172946 2px, transparent 2px);
  background-size: 4px 1px;
  background-repeat: repeat-x;
  background-position: left top;
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}

#lp_contents .all_cmnt_wrap .sub-ttl span{
  padding: 0 1rem;
  background-color: #fff;
  position: relative;
  z-index: 2;
  font-family: var(--font-lp_mincho);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
}

/*------------ tab_container ------------*/
#lp_contents .tab_container {
  width: 102rem;
  margin: 5rem auto 0;
}

#lp_contents .tab_container .item_detail{
  width: 100%;
  padding-bottom: 2rem;
  padding-right: 1rem;
  text-align: center;
}

#lp_contents .tab_container .item_lead{
  text-align: center;
}

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

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

#lp_contents .tab_container .price{
  font-size: 1.5rem;
  margin-top: 1rem;
}

#lp_contents .tab_container .btn_blk{
  display: flex;
  justify-content: center;
  gap: 2rem;
}

#lp_contents .tab_container .btn_blk a{
  margin: 0;
}

#lp_contents .tab_container .anchor{
  width: 25rem;
  height: 4rem;
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-lp_mincho);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--color-lp_bg);
  border: 1px solid var(--color-lp_bg);
  background-color: #fff;
  position: relative;
  padding-top: 0.5rem;
}

#lp_contents .tab_container .plus:before,
#lp_contents .tab_container .plus:after{
  background-color: var(--color-lp_bg);
}

#lp_contents .tab-menu {
  display: flex;
  gap: 2rem;
}

#lp_contents .tab-menu__item {
  position: relative;
  flex: 1;
  height: fit-content;
  background-color: #fff;
  color: #000;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  border-radius: 1rem;
  text-align: center;
}

#lp_contents .tab-menu__item.is-active{
  padding-bottom: 3rem;
  border-radius: 1rem 1rem 0 0;
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(248,246,237,1) 100%);
}

#lp_contents .tab-menu__item:before{
  content: "";
  width: 1rem;
  height: 1rem;
  border-bottom: 1px solid;
  border-left: 1px solid;
  transform: rotate(-45deg);
  position: absolute;
  right: 15rem;
  top: 17rem;
  transition: all 0.5s;
  z-index: 5;
}

#lp_contents .tab-menu__item.is-active:before{
  transform: rotate(135deg);
}

#lp_contents .tab-menu__item.is-active:after{
  content: '';
  width: 2rem;
  height: 2rem;
  background-image: url(../img/corners.svg?v2);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  bottom: 0;
}

#lp_contents .tab-menu__item:nth-of-type(1).is-active:after{
  right: -2rem;
}

#lp_contents .tab-menu__item:nth-of-type(2).is-active:after{
  left: -2rem;
  transform: scale(-1,1);
}

#lp_contents .tab-menu__item .img_blk{
  width: 18rem;
  min-width: 18rem;
  border-radius: 1rem;
  overflow: hidden;
}

#lp_contents .tab-content__item{
  display: grid;
  gap: 3rem;
  background-color: var(--color-lp_active_bg);
  padding: 4rem;
  color: var(--color-lp_bg);
}

#lp_contents .js-tab-content__item:nth-of-type(1) .tab-content__item{
  border-radius: 0 1rem 1rem 1rem;
}

#lp_contents .js-tab-content__item:nth-of-type(2) .tab-content__item{
  border-radius: 1rem 0 1rem 1rem;
}

#lp_contents .tab-content__item .all_cmnt_wrap{
  background-color: #fff;
}

/*------------ grand_prize ------------*/
#lp_contents .sec_grand_prize{
  margin: 15rem auto 0;
}

#lp_contents .sec_grand_prize .first_item{
  align-items: center;
}

#lp_contents .sec_grand_prize .ttl_wrap .lead{
  font-size: 3.6rem;
  transition-duration: 1.5s;
  transition-delay: 1s;
}

#lp_contents .sec_grand_prize .cmnt_wrap{
  margin: 4rem auto 0;
  padding: 3rem 6rem 3.5rem;
}

#lp_contents .sec_grand_prize .emblem{
  top: -5rem;
}

/*------------ sec_special ------------*/
#lp_contents .sec_special .item_wrap{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 6rem;
}

#lp_contents .sec_special .item_blk{
  display: grid;
  gap: 3rem;
}

#lp_contents .sec_special .text_wrap{
  width: 48rem;
}

#lp_contents .sec_special .kit_list{
  border-radius: 1rem;
  background-color: var(--color-lp_point_bg);
  padding: 2rem;
}

#lp_contents .sec_special .kit_list .kit_ttl{
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 1rem;
}

#lp_contents .sec_special .kit_list ul{
  text-align: justify;
  display: grid;
  gap: 0.5rem;
}

#lp_contents .sec_special .kit_list ul li{
  font-size: 1.3rem;
  line-height: 1.5;
  text-indent: -1rem;
  padding-left: 1rem;
}

/*------------ modal__content ------------*/
#lp_contents .modal__content.sec_award{
  margin: auto;
}

#lp_contents .modal__content.sec_award .ttl_wrap{
  margin-bottom: 3rem;
}

#lp_contents .modal__content.sec_special .img_wrap,
#lp_contents .modal__content.sec_special .text_wrap{
  width: 42rem;
}

#lp_contents .modal__content.sec_special .item_lead{
  font-size: 1.8rem;
}

#lp_contents .modal__content.sec_special .item_name{
  font-size: 2rem;
}

#lp_contents .modal__content.sec_special .kit_list{
  background-color: var(--color-lp_active_bg);
}

#lp_contents .modal__content .cmnt_wrap{
  padding: 0;
}

#lp_contents .modal__content.sec_award .close-btn span{
  top: -8rem;
}

#lp_contents .modal__content .ttl_text{
  color: var(--color-lp_bg);
}


/* sec_btm
==================================*/

#lp_contents .sec_btm{
  margin: 12rem auto 0;
  padding-bottom: 8rem;
}

#lp_contents .sec_btm .nav_list{
  margin: 0 auto 8rem;
}

#lp_contents .sec_btm .award_cate_wrap{
  display: flex;
  flex-wrap: wrap;
  gap: 6rem;
  width: 102rem;
  margin: auto;
}

#lp_contents .sec_btm .award_cate_blk{
  width: 48rem;
}

#lp_contents .sec_btm .award_cate_ttl{
  text-align: center;
  font-family: var(--font-lp_serif);
  font-size: 3.6rem;
  line-height: 1;
  color: var(--color-lp_primary);
  margin-bottom: 2rem;
}

#lp_contents .sec_btm .award_cate_list{
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #505F77;
  border-bottom: 1px solid #505F77;
}

#lp_contents .sec_btm .award_cate_list li{
  width: 50%;
  padding: 1.2rem 1.5rem;
  text-align: left;
  font-family: var(--font-lp_mincho);
  font-size: 1.7rem;
  line-height: 1.3;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #505F77;
}

#lp_contents .sec_btm .award_cate_list li:last-child,
#lp_contents .sec_btm .award_cate_list li:nth-last-child(2):nth-child(odd){
  border-bottom-width: 0;
}

#lp_contents .sec_btm .award_cate_list li:nth-child(odd){
  border-right: 1px solid #505F77;
}

#lp_contents .sec_btm .award_cate_list li a{
  position: relative;
  padding-right: 2rem;
}

#lp_contents .sec_btm .award_cate_list li a:hover{
  color: var(--color-lp_primary);
}

#lp_contents .sec_btm .award_cate_list li a:before{
  content: '';
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid var(--color-lp_secondary);
  border-right: 1px solid var(--color-lp_secondary);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  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 / 430));
  }

  #share{
    left: 1rem;
  }

  #share.fixed{
    bottom: 6rem;
    transition: 0.5s
  }

  #share.none{
    bottom: 5%;
  }

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

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

  #lp_contents p {
    font-size: 1.3rem;
  }
  #lp_contents small.note{
    margin-top: 1rem;
    font-size: 1.1rem;
  }

  #lp_contents .ttl_text{
    font-size: 2.8rem;
    margin: 0 auto 2rem;
  }

  #lp_contents .link_btn{
    width: 16rem;
    height: 3rem;
    font-size: 1.8rem;
  }


  /* nav
  ==================================*/

  #lp_contents .nav_list{
    margin: 6rem auto 0;
  }

  #lp_contents .nav_list ul{
    width: 100%;
  }

  #lp_contents .nav_list li{
    font-size: 1.8rem;
    padding: 1.2rem 0;
  }

  #lp_contents .nav_list li:before{
    left: auto;
    right: 0;
  }

  #lp_contents .nav_list li:last-child:before,
  #lp_contents .nav_list li:last-child:after{
    content: none;
  }

  #lp_contents .nav_list.fixed li{
    font-size: 1.6rem;
    padding: 0.4rem 0;
  }

  #lp_contents .nav_kit{
    font-size: 1.4rem;
    bottom: 5.6rem;
  }


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

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

  #lp_contents .sec_mv .staff_text{
    font-size: 1.3rem;
    margin-top: 4rem;
  }

  #lp_contents .sec_mv .staff_text b{
    font-size: 1.5rem;
  }

  #lp_contents .sec_mv .staff_text span{
    margin-top: 0.6rem;
  }

  #lp_contents .sec_mv .award_list{
    margin-top: 2rem;
  }


  /* sec_award
  ==================================*/

  #lp_contents .sec_award{
    width: 40rem;
    margin: 7rem auto 0;
    padding-top: 5rem;
  }

  #lp_contents .sec_award .cate_wrap:not(:last-child){
    margin-bottom: 6rem;
  }

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

  #lp_contents .sec_award .ttl_wrap .ttl_eng{
    font-size: 6rem;
    top: -5rem;
  }

  #lp_contents .sec_award .ttl_wrap h2{
    font-size: 3.5rem;
  }

  #lp_contents .sec_award .ttl_wrap h2:before,
  #lp_contents .sec_award .ttl_wrap h2:after{
    width: 1.2rem;
    height: 4rem;
  }

  #lp_contents .sec_award .ttl_wrap h2:before{
    left: -3rem;
  }

  #lp_contents .sec_award .ttl_wrap h2:after{
    right: -3rem;
  }

  #lp_contents .sec_award .ttl_wrap .lead{
    font-size: 2.2rem;
    margin-top: 2rem;
  }

  #lp_contents .sec_award .ttl_wrap .cate_list li{
    font-size: 1.3rem;
    padding: 0.9rem 1rem 0.7rem;
  }

  #lp_contents .sec_award .ttl_wrap .cate_list li a{
    gap: 0.5rem;
  }

  /*------------ cate_ttl_wrap ------------*/
  #lp_contents .sec_award .cate_ttl_wrap{
    margin: 0 auto 2rem;
  }

  #lp_contents .sec_award .cate_ttl_wrap .cate{
    font-size: 2.8rem;
    line-height: 1.2;
  }

  #lp_contents .sec_award .cate_ttl_wrap .cate small{
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  /*------------ img_wrap ------------*/
  #lp_contents .sec_award .img_wrap{
    width: 36rem;
    margin: auto;
  }

  #lp_contents .sec_award .img_wrap.full{
    max-height: 36rem;
  }

  #lp_contents .sec_award .emblem{
    width: 9rem;
    top: 4rem;
    left: -1.5rem;
  }

  #lp_contents .sec_award .rank{
    width: 5.6rem;
    font-size: 1.1rem;
    padding-top: 0.2rem;
  }

  #lp_contents .sec_award .rank1{
    width: 8rem;
    font-size: 1.4rem;
  }

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

  #lp_contents .sec_award .rank1 big{
    font-size: 4.8rem;
  }

  #lp_contents .sec_award .rank:before{
    width: calc(100% - 0.6rem);
  }

  /*------------ text_wrap ------------*/
  #lp_contents .sec_award .text_wrap{
    width: 100%;
  }

  #lp_contents .sec_award .text_wrap .text_blk{
    gap: 1.5rem;
  }

  #lp_contents .sec_award .item_lead{
    font-size: 1.8rem;
  }

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

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

  #lp_contents .sec_award .price{
    font-size: 1.5rem;
    margin-top: 1rem;
  }

  #lp_contents .sec_award .text_wrap .cmnt_wrap{
    margin: 3rem auto 0;
  }

  /*------------ cmnt_wrap ------------*/
  #lp_contents .cmnt_wrap{
    padding: 2.5rem 2rem;
  }

  #lp_contents .cmnt_wrap li{
    gap: 1rem;
  }

  #lp_contents .cmnt_wrap li:not(:last-child){
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    background-image : linear-gradient(to right, #657184 2px, transparent 2px);
    background-size: 4px 1px;
    background-repeat: repeat-x;
    background-position: left bottom;
  }

  #lp_contents .cmnt_wrap .img_blk{
    width: 7rem;
    min-width: 7rem;
  }

  #lp_contents .cmnt_wrap .cmnt_blk{
    width: 28rem;
  }

  #lp_contents .cmnt_wrap .cmnt_blk .name{
    font-size: 1.8rem;
    margin-bottom: 0;
  }

  #lp_contents .cmnt_wrap .cmnt_blk .name small{
    font-size: 1.2rem;
  }

  /*------------ all_cmnt_wrap ------------*/
  #lp_contents .all_cmnt_wrap li{
    max-width: 100%;
    background-image: none !important;
  }

  #lp_contents .all_cmnt_wrap .img_blk{
    width: 5rem;
    min-width: 5rem;
  }

  #lp_contents .all_cmnt_wrap .cmnt_blk{
    width: 100%;
  }

  #lp_contents .all_cmnt_wrap .cmnt_blk .name{
    font-size: 1.4rem;
  }

  #lp_contents .all_cmnt_wrap .staff_blk,
  #lp_contents .all_cmnt_wrap .user_blk{
    flex: auto;
  }

  #lp_contents .all_cmnt_wrap .user_blk .name{
    font-size: 1.1rem;
    margin-bottom: 0;
  }

  #lp_contents .all_cmnt_wrap .sub-ttl{
    margin-bottom: 1.5rem;
  }

  #lp_contents .all_cmnt_wrap .sub-ttl span{
    font-size: 2.2rem;
  }

  /*------------ tab_container ------------*/
  #lp_contents .tab_container {
    width: 40rem;
    margin: 3rem auto 0;
  }

  #lp_contents .tab_container .item_detail{
    padding:0;
    text-align: center;
  }

  #lp_contents .tab_container .btn_blk{
    gap: 1rem;
  }

  #lp_contents .tab_container .link_btn{
    width: 17.5rem;
    height: 4rem;
  }

  #lp_contents .tab_container .anchor{
    width: 17.5rem;
    font-size: 1.4rem;
    padding-top: 0.2rem;
  }

  #lp_contents .tab-menu {
    gap: 1rem;
  }

  #lp_contents .tab-menu__item {
    padding: 1rem 2.5rem 4rem;
    max-width: 19.5rem;
    width: 19.5rem;
    min-height: 19.5rem;
  }

  #lp_contents .tab-menu__item.full{
    padding: 0;
  }

  #lp_contents .tab-menu__item.is-active{
    padding-bottom: 5rem;
  }

  #lp_contents .tab-menu__item.is-active:after{
    width: 1.4rem;
    height: 1.4rem;
  }

  #lp_contents .tab-menu__item:nth-of-type(1).is-active:after{
    right: -1.3rem;
    bottom: -0.1rem;
  }

  #lp_contents .tab-menu__item:nth-of-type(2).is-active:after{
    left: -1.3rem;
    bottom: -0.1rem;
  }

  #lp_contents .tab-menu__item.full.is-active{
    padding-bottom: 1rem;
  }

  #lp_contents .tab-menu__item.full.is-active .img_blk{
    border-radius: 1rem 1rem 0 0;
  }

  #lp_contents .tab-menu__item:before{
    left: 0;
    right: 0;
    margin: auto;
  }

  #lp_contents .tab-menu__item .img_blk{
    width: 100%;
    min-width: 100%;
    margin: auto;
  }

  #lp_contents .tab-content__item{
    gap: 2rem;
    padding: 2.5rem 2rem;
  }

  /*------------ grand_prize ------------*/
  #lp_contents .sec_grand_prize{
    margin: 10rem auto 0;
  }

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

  #lp_contents .sec_grand_prize .cmnt_wrap{
    margin: 3.6rem auto 0;
    padding: 2.5rem 2rem;
  }

  #lp_contents .sec_grand_prize .emblem{
    top: -3rem;
  }

  /*------------ sec_special ------------*/
  #lp_contents .sec_special .item_wrap{
    gap: 4rem;
  }

  #lp_contents .sec_special .item_blk{
    gap: 2rem;
  }

  #lp_contents .sec_special .text_wrap{
    width: 40rem;
  }

  #lp_contents .sec_special .kit_list ul li{
    font-size: 1.2rem;
  }

  /*------------ modal__content ------------*/
  #lp_contents .modal__content.sec_award{
    padding: 3.5rem 2rem;
  }

  #lp_contents .modal__content.sec_award .ttl_wrap{
    margin-bottom: 2rem;
  }

  #lp_contents .modal__content.sec_special .img_wrap,
  #lp_contents .modal__content.sec_special .text_wrap{
    width: 36rem;
  }

  #lp_contents .modal__content .cmnt_wrap{
    padding: 0;
  }

  #lp_contents .modal__content.sec_award .close-btn span{
    right: 0;
    top: -4rem;
  }


  /* sec_btm
  ==================================*/

  #lp_contents .sec_btm{
    margin: 8rem auto 0;
    padding-bottom: 6rem;
  }

  #lp_contents .sec_btm .award_cate_wrap{
    gap: 3rem;
    width: 100%;
  }

  #lp_contents .sec_btm .award_cate_blk{
    width: 100%;
  }

  #lp_contents .sec_btm .award_cate_ttl{
    font-size: 3rem;
  }

  #lp_contents .sec_btm .award_cate_list li{
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
  }
}