@charset "UTF-8";

:root {
  --font-serif: "Noto Serif JP", serif;
  --font-eng: "Oranienbaum", serif;
  --color-bg: #901D2E;
  --color-bg_beige: #FBEEE3;
  --color-font: #fff;
  --color-main: #901D2E;
  --color-point: #FBEEE3;
  --color-btn: #E8DED6;
}

/*--------------------------------
            CSS Animation
 --------------------------------*/

@keyframes mvAnimeStarTitle {
  0% {
    top: -30px;
  }

  100% {
    top: 0;
  }
}

@keyframes rotation {
  0% { transform:rotate(0);}
  100% { transform:rotate(85deg); }
}

@keyframes opa1 {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes rotation{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(360deg); }
}


/*------------ inview ------------*/

#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 .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 .SlideUp{
  overflow: hidden;
}

#lp_contents .SlideUp span{
  display: block;
  opacity: 0;
  transform: translateY(5rem);
  transition: transform 1s ease-in-out, opacity 1.5s ease-in-out;
}

#lp_contents .SlideUp span:nth-of-type(2){
  transition-delay: 0.2s;
}

#lp_contents .SlideUp.is-show span{
  opacity: 1;
  transform: translateY(0);
}

#lp_contents .star{
  padding-top: 7rem;
}

#lp_contents .star:before{
  opacity: 0;
  position: absolute;
  top: -3rem;
  left: 0;
  right: 0;
  margin: auto;
  width: 2.4rem;
  height: 2.7rem;
  background: url(../img/star.svg) no-repeat center 0;
  background-size: 100%;
  content: "";
}
#lp_contents .star.is-show:before {
  animation: mvAnimeStarTitle 1.5s cubic-bezier(0.51, 0.21, 0.41, 1) .2s 1 forwards, rotation 2.2s cubic-bezier(0.51, 0.21, 0.41, 1) .2s 1 forwards, opa1 0.8s cubic-bezier(0.51, 0.21, 0.41, 1) .2s 1 forwards;
}

@media (max-width: 767px) {
  #lp_contents .star{
    padding-top: 5rem;
  }
}


/*------------ line ------------*/

#lp_contents .line,
#lp_contents .line-sp{
  position: relative;
}

#lp_contents .line:before,
#lp_contents .line-sp:before,
#lp_contents .line:after,
#lp_contents .line-sp:after{
  height: 0;
  background-color: #fff;
  position: absolute;
  transition: 1.5s;
}

#lp_contents .line:before,
#lp_contents .line-sp:before{
  width: 0;
  height: 1px;
  left: 0;
}

#lp_contents .line.is-show:before,
#lp_contents .line-sp.is-show:before{
  width: 100%;
}

#lp_contents .line:after,
#lp_contents .line-sp:after{
  width: 1px;
  height: 0;
  top: 0;
}

#lp_contents .line.is-show:after,
#lp_contents .line-sp.is-show:after{
  height: 100%;
}

#lp_contents .navi_area .line.is-show:before,
#lp_contents .navi_area .line.is-show:after,
#lp_contents .navi_area .line-sp.is-show:before {
    background-color: var(--color-main);
}

#lp_contents .navi_area ul.line:before,
#lp_contents .navi_area ul.line:after {
    content: '';
    width: 0;
    height: 1px;
    left: 0;
    transform: scaleX(0);
}

#lp_contents .navi_area ul.line.is-show:before,
#lp_contents .navi_area ul.line.is-show:after {
    width: 100%;
    transform: scaleX(1);
    background-color: var(--color-main);
}

#lp_contents .navi_area ul.line.is-show:before{
  top: 0;
}

#lp_contents .navi_area ul.line.is-show:after {
    bottom: 0;
    top: auto;
}

#lp_contents .navi_area li.line:after {
    content: '';
    top: 0;
    right: 0;
}


#lp_contents .navi_area li:nth-child(n+5){
  padding-top: 1rem;
}

#lp_contents .navi_area li:nth-child(n+5):before {
  content: '';
  top: 0;
}

#lp_contents .navi_area li:nth-child(n+5).is-show:before {
  width: calc(100% - 2rem);
  left: 1rem;
}

#lp_contents .navi_area li:nth-child(n+5).line.is-show:after{
  height: calc(100% - 1rem);
  top: 1rem;
}

@media (max-width: 767px) {
  #lp_contents .line.SpNone:before,
  #lp_contents .line.SpNone:after,
  #lp_contents .navi_area li.line.SpNone:after{
    content: none;
  }

  #lp_contents .navi_area li:nth-child(n+3){
    padding-top: 1.5rem;
  }

  #lp_contents .navi_area li:nth-child(n+3):before {
      content: '';
      width: calc(100% - 1.5rem);
      transform: scaleX(0);
      left: 0.7rem;
      top: 0;
      background-color: var(--color-main);
  }

  #lp_contents .navi_area li:nth-child(n+3).is-show:before{
    transform: scaleX(1);
  }

  #lp_contents .navi_area li:nth-child(n+3):after {
      top: 1.5rem;
  }

  #lp_contents .navi_area li:nth-child(n+3).is-show:after {
      height: calc(100% - 1.5rem);
  }
}


/*------------ follow ------------*/

#lp_contents .follow{
  opacity: 0;
  transition: all 1s;
}

#lp_contents .follow.fixed{
  position: fixed;
  opacity: 1;
}

#lp_contents .follow.none{
  opacity: 0;
}

/*bg_wrap*/
#lp_contents .bg_wrap{
  position: relative;
  width: 100%;
  height: 100%;
  pointer-events: none;
  max-width: 160rem;
  margin: auto;
}

#lp_contents .bg_wrap:before{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../imgXmas/bg_pc.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  z-index: 1;
  pointer-events: none;
  transition: all 1s;
}

#lp_contents .bg_wrap.follow{
  opacity: 0;
  transition: all 1s;
}

#lp_contents .bg_wrap.follow.fixed{
  opacity: 0.05;
  top: 0;
  left: 0;
  right: 0;
}

#lp_contents .bg_wrap.follow.none{
  opacity: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

#lp_contents .bg_wrap.follow.none:before{
  background-size: contain;
  transition: all 1s;
}


@media (max-width: 767px) {
  #lp_contents .bg_wrap:before{
    background-image: url(../imgXmas/bg_sp.svg);
  }

  #lp_contents .bg_wrap.follow.none{
    bottom: -45rem;
  }
}


/*------------ slider ------------*/

#lp_contents .slider {
    width: 100%;
    max-width: 120rem;
    position: relative;
    @include breakpoint(500px) {
        margin: 5% auto;
    }
}

#lp_contents .slider .slide_item {
    margin: 0 0.5rem;
    width: 36rem;
}

#lp_contents .slider .slick-list{
    overflow: visible;
}

#lp_contents .thumbnail-slider {
    width: 100%;
    width: fit-content;
    max-width: 44rem;
    margin: 2.5rem auto 0;
    @include breakpoint(500px) {
        margin: 5% auto;
    }
}

#lp_contents .thumbnail-slider .slick-list{
    padding: 1rem;
}

#lp_contents .thumbnail-slider .slide_item {
  width: 7.8rem !important;
  aspect-ratio: 1/1;
  margin: 0 0.25rem;
}

#lp_contents .thumbnail-slider .slick-current{
  border: 1px solid #fff;
  box-shadow: 0px 0px 1rem #fff;
  opacity: 0.7;
}

#lp_contents .thumbnail-slider .slick-track {
  transform: unset !important;
}

@media (min-width: 768px) {
  #lp_contents .thumbnail-slider .slick-track {
    width: fit-content!important;
  }
}

#lp_contents .slick-prev,
#lp_contents .slick-next{
  width: 3.6rem;
  height: 3.6rem;
}

#lp_contents .slick-prev{
  left: -5rem;
}

#lp_contents .slick-next{
  right: -5rem;
}

#lp_contents .slick-prev:before,
#lp_contents .slick-next:before{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#lp_contents .slick-prev:before{
  background-image: url(../img/arrow-left.svg);
}

#lp_contents .slick-next:before{
  background-image: url(../img/arrow-right.svg);
}

@media (max-width: 767px) {
  #lp_contents .slider {
    max-width: 100%;
    margin-left: 1rem;
  }

  #lp_contents .slider .slide_item{
    width: 26rem;
  }

  #lp_contents .thumbnail-slider{
    max-width: 100%;
  }
}


/*--------------------------------
                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;
}


/*--------------------------------
                共 通
 --------------------------------*/

main,#Wrap,.wrapBottom,.wrapTop{
  width: 100%;
  max-width: 100%;
}

#FooterWrap {
  position: relative;
  z-index: 2;
}

#lp_contents *{
  box-sizing: border-box;
}

#lp_contents{
  font-family: YakuHanJP_Narrow , var(--font-base);
/*  font-feature-settings: "palt";*/
  font-size: 1.4rem;
  letter-spacing: 0.025em;
  line-height: 2;
  text-align: justify;

  color: var(--color-font);
  background-color: var(--color-bg);
  position: relative;
  overflow: hidden;
}
#lp_contents:before{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 2;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  mix-blend-mode: multiply;
  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 h2{
  position: relative;
  text-align: center;
  font-family: var(--font-eng), var(--font-serif);
  line-height: 1.2;
  letter-spacing: 0;
  font-size: 3.6rem;
  color: var(--color-point);
}
#lp_contents h2.eng{
  font-size: 6rem;
  letter-spacing: 0;
}

#lp_contents p {
  display: block;
  margin: 0;
  font-size: 1.4rem;
  line-height: 2;
}
#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 section{
  position: relative;
  z-index: 2;
}

#lp_contents .lead{
  text-align: center;
  font-size: 1.7rem;
  line-height: 2.2;
  margin-top: 3rem;
}


/*------------ link_wrap ------------*/

#lp_contents .link_wrap{
  margin: 5rem auto 0;
  padding: 1.2rem 1.5rem 1rem;
  width: 45rem;
  height: 100%;
  min-height: 6.5rem;
  background-color: var(--color-point);
  display: flex;
  align-items: center;
  justify-content: center;
}

#lp_contents .link_wrap a{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap:1rem;
  color: var(--color-main);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.8rem;
}

#lp_contents .link_wrap big{
  font-family: var(--font-eng);
  font-size: 3.6rem;
  font-weight: normal;
  letter-spacing: 0;
}

#lp_contents .link_btn{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

#lp_contents .link_btn p{
  width: 18rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-point);
  color: var(--color-main);
}

#lp_contents .cmsn{
  pointer-events: none;
  opacity: 1 !important;
}

#lp_contents .cmsn .link_btn p{
  background-color: #25524E;
  color: #fff;
}


/*------------ ttl_wrap ------------*/

#lp_contents .ttl_wrap{
  position: relative;
  margin: 0 auto 5rem;
}

#lp_contents .ttl_wrap .ttl_blk{
  text-align: center;
}


/*------------ sec_mv ------------*/

#lp_contents .sec_mv .mv_wrap{
  position: relative;
  width: auto;
  min-width: 71.3rem;
  height: calc(100vh - 15rem);
  min-height: 69rem;
  max-height: 96rem;
  background-image: url(../img/mv_bg.jpg);
  background-size: 100%;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

#lp_contents .sec_mv .mv_wrap .mv_blk img{
  width: auto;
  height: calc(100vh - 15rem);
  min-width: 71.3rem;
  min-height: 69rem;
  max-height: 96rem;
}

#lp_contents .sec_mv .mv_wrap .ttl_blk{
  position: absolute;
  top: 4rem;
  animation-delay: 1.5s;
  transition-delay: 1.5s;
}

#lp_contents .sec_mv .mv_wrap .ttl_blk .title{
  width: 88rem;
}

#lp_contents .sec_mv .mv_wrap .ttl_blk .brand{
  width: 24rem;
  margin-top: 2rem;
  margin-left: auto;
}

#lp_contents .sec_mv .lead{
  margin-top: 8rem;
}

#lp_contents .sec_mv .scroll_wrap {
  position: absolute;
  right: 4rem;
  bottom: 4rem;
  width: 14rem;
  height: 14rem;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: painted;
}

#lp_contents .sec_mv .scroll_wrap .frame {
  width: 100%;
  height: 100%;
  animation: 15s linear infinite rotation;
}

#lp_contents .sec_mv .scroll_wrap .arrow {
  width: 4rem;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}


/*------------ sec_item ------------*/

#lp_contents .sec_item{
  padding: 12rem 0;
  width: 120rem;
  margin: auto;
}

#lp_contents .sec_item.line:before{
  content: '';
  top: 0;
}

#lp_contents .sec_item .detail_blk{
  width: 95%;
}

#lp_contents .sec_item .category{
  font-size: 1.3rem;
  line-height: 1;
  padding: 0.5rem 0.8rem 0.4rem;
  border: 1px solid #fff;
  width: fit-content;
  margin-bottom: 1rem;
}

#lp_contents .sec_item .brand{
  text-align: left;
  font-family: var(--font-eng);
  line-height: 1;
  letter-spacing: 0;
  font-size: 3rem;
}

#lp_contents .sec_item .name{
  text-align: left;
  margin-top: 0.8rem;
  line-height: 1.5;
}

#lp_contents .sec_item .link_btn + .name{
  margin-top: 2rem;
}

#lp_contents .sec_item .price{
  margin-top: 1rem;
  line-height: 1;
}

#lp_contents .sec_item .text{
  margin-top: 2rem;
}

/*item_wrap*/
#lp_contents .sec_item .item_wrap .item_blk .item{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

#lp_contents .sec_item .item_wrap li:nth-of-type(1){
  transition-delay: 0.25s;
}

#lp_contents .sec_item .item_wrap li:nth-of-type(2){
  transition-delay: 0.5s;
}

#lp_contents .sec_item .item_wrap li:nth-of-type(3){
  transition-delay: 0.75s;
}

#lp_contents .sec_item .item_wrap li:nth-of-type(4){
  transition-delay: 1s;
}

#lp_contents .sec_item .item_wrap li:nth-of-type(5){
  transition-delay: 1.25s;
}


/*------------ sec_btm ------------*/

#lp_contents .sec_btm{
  padding-bottom: 60rem;
}



/*navi---------------------------*/
.navi_area {
  width: 92.5rem;
  margin: 10rem auto 0;
  padding: 4rem 0;
  background: var(--color-bg_beige);
  color: var(--color-main);
  font-family: var(--font-eng), var(--font-serif);
  text-align: center;
}

.navi_area dt {
  margin-bottom: 2rem;
  font-size: 4.5rem;
  line-height: 1;
  letter-spacing: 0;
}

.navi_area dt span{
  position: relative;
  width: fit-content;
  margin: auto;
}

.navi_area dt span:before,
.navi_area dt span:after{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1.6rem;
  height: 1.8rem;
  background: url(../img/star.svg) no-repeat center 0;
  background-size: 100%;
}

.navi_area dt span:before{
  left: -3rem;
}

.navi_area dt span:after{
  right: -3rem;
}

.navi_area dt small{
  display: block;
  font-family: var(--font-base);
  font-size: 1.3rem;
  font-weight: bold;
  margin-top: 1rem;
}

.navi_area dt:nth-of-type(n+2) {
  margin-top: 5rem;
}

.navi_area ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: auto;
  padding: 1rem 0;
  gap: 1rem 0;
}

.navi_area ul li {
  position: relative;
  width: 23rem;
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  text-align: center;
  font-family: var(--font-eng);
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0;
}

#lp_contents .navi_area ul li img{
  width: 18rem;
  margin: auto;
}

.navi_area .price_list li{
  font-size: 2.3rem;
}

.navi_area .keyword_list li a span {
  position: relative;
  width: calc(100% - 3.6rem);
  padding-left: 3.2rem;
}

.navi_area .keyword_list li a span::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  mask-image: url(../img/icon_search.svg);
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center center;
  -webkit-mask-image: url(../img/icon_search.svg);
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  background: var(--color_01);
  opacity: .4;
  content: "";
}

.navi_area .price_list {
  grid-template-columns: repeat(4, 1fr);
}

.navi_area .brand_list li {
  height: 6rem;
}

.navi_area .brand_list li span {
  width: 17rem;
}

#lp_contents .navi_area .btn_view-all{
  display: block;
  width: 18rem;
  height: 3.5rem;
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-btn);
  margin: 2rem auto 0;
  font-family: var(--font-base);
  font-size: 1.3rem;
  font-weight: bold;
}

#lp_contents .navi_area .link_wrap{
  background-color: var(--color-main);
}

#lp_contents .navi_area .link_wrap a{
  color: #fff;
}

.to_link {
  font-size: 1.4rem;
}

.to_link a {
  position: relative;
  z-index: 1;
}

.to_link a::before {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: .2rem;
  background: var(--color_01);
  content: "";
}

.to_link a:hover::before {
  animation: line_anime .8s forwards;
  transform-origin: center left;
}

@keyframes line_anime {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

.to_link .arrowmark {
  position: relative;
  padding-right: 2.5rem;
}

.to_link .arrowmark::before {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1.2rem;
  height: .1rem;
  border-radius: .1rem;
  background: var(--color_regular);
  content: "";
  transition: margin .3s;
}

.to_link  a:hover .arrowmark::before {
  margin-right: -1rem;
}

.to_link .arrowmark::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
  width: 1rem;
  height: 1rem;
  border-top: solid var(--color_regular);
  border-right: solid var(--color_regular);
  border-width: .1rem;
  border-radius: .1rem;
  content: "";
  transition: margin .3s;
}

.to_link  a:hover .arrowmark::after {
  margin-right: -.9rem;
}

.to_link a {
  padding: .6rem 0;
}

.search-summary .btn_view-all {
  font-size: 1.8rem;
  font-weight: 600;
}

.search-summary .btn_view-all a {
  padding: 1rem 0;
}

body.no_scroll {
  height: 100vh;
  overflow: hidden;
}

header.hide {
  opacity: 0;
  pointer-events: none;
}

.modal_outside.hide {
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
}

.modal_outside {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .3);
  transition: opacity .5s;
  overflow-y: scroll;
}

.modal_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal_inner {
  position: relative;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  max-height: 100%;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.modal_inner::-webkit-scrollbar {
  display:none;
}

#lp_contents .modal_inner .modal_close {
  position: fixed;
  top: 2rem;
  right: 0;
  left: 0;
  transform: translate(51rem, 2rem);
  margin: auto;
  z-index: 5;
  width: 5rem;
  height: 5rem;
  border: solid var(--color-main);
  border-width: .1rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color .3s;
}

.modal_inner .modal_close:hover {
  background: var(--color-main);
}

.modal_inner .modal_close::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: .1rem;
  height: 2.2rem;
  background: var(--color-main);
  content: "";
  transition: background-color .3s;
}

.modal_inner .modal_close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 2.2rem;
  height: .1rem;
  background: var(--color-main);
  content: "";
  transition: background-color .3s;
}

.modal_inner .modal_close:hover::before,
.modal_inner .modal_close:hover::after {
  background: #fff;
}

.modal_content {
  position: relative;
  width: 110rem;
  padding: 5rem 0 6rem;
  background: var(--color-bg_beige);
}

.modal_content .content_ttl {
  margin-bottom: 3rem;
  font-family: var(--font_eng);
  font-size: 4.5rem;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
}

.modal_content .content_ttl span{
  position: relative;
    width: fit-content;
    margin: auto;
}

.modal_content .content_ttl span:before,
.modal_content .content_ttl span:after{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1.6rem;
  height: 1.8rem;
  background: url(../img/star.svg) no-repeat center 0;
  background-size: 100%;
}

.modal_content .content_ttl span:before{
  left: -3rem;
}

.modal_content .content_ttl span:after{
  right: -3rem;
}

.modal_content .content_ttl small{
  display: block;
  font-family: var(--font-base);
  font-size: 1.3rem;
  font-weight: bold;
  margin-top: 1rem;
  line-height: 1;
}

.modal_content .brand_list {
  gap: 2rem;
  padding: 0 12.5rem;
}

.modal_content .brand_list li {
  width: 27rem;
  background-color: #fff;
}


/*index--------------------------*/
.fixed_wrap {
  position: fixed;
  z-index: 3;
  right: 3rem;
  bottom: 3rem;
}

.icon_index {
  transform: scale(0);
}

.icon_index.active {
  transform: scale(1);
}

.icon_index.hide {
  opacity: 0;
  pointer-events: none;
}

#lp_contents .icon_index a {
  display: grid;
  width: 8rem;
  height: 8rem;
  background: var(--color-bg_beige);
  font-family: var(--font-eng);
  font-size: 1.7rem;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  color: var(--color-main);
  padding-top: 0.6rem;
}

#lp_contents .icon_index a img{
  width: 2rem;
  margin: auto;
}

#Index.modal_outside {
  align-items: flex-start;
  overflow: clip;
}

#Index.hide .modal_inner {
  transform: translateX(100%);
}

#Index .modal_inner {
  height: 100%;
  margin: 0 0 0 auto;
  padding: 0;
  background: rgba(255, 255, 255, .8);
  transform: unset;
  transition: transform .3s;
}

#Index.hide .modal_inner .modal_close {
  opacity: 0;
}

#Index .modal_inner .modal_close {
  width: 4rem;
  height: 4rem;
  top: 0;
  border-radius: 0;
  opacity: 1;
  transition: opacity .3s;
  transition-delay: .3s;
  background-color: var(--color-bg_beige);
  transform: initial !important;
    left: auto;
    right: 30rem;
}

#Index .modal_inner .modal_close::before {
  height: 2rem;
}

#Index .modal_inner .modal_close::after {
  width: 2rem;
}

#Index .modal_content .content_ttl {
  padding-left: 4rem;
  text-align: left;
}

#Index .modal_content {
  width: fit-content;
  width: 30rem;
  border-radius: 0;
  padding: 3rem 0 0;
  height: 100vh;
  font-family: var(--font-eng), var(--font-serif);
  color: var(--color-main);
}

.index_list li {
  border-top: solid var(--color-main);
  border-width: .1rem;
  color: var(--color-main);
  cursor: pointer;
}

.index_list li .txt_eng {
  font-family: var(--font_eng);
}

.index_list li.anchorlink {
  border-color: var(--color_white);
  background: var(--color_01);
  color: var(--color_white);
}

.layer2nd > li {
  background: var(--color_02);
}

#lp_contents .index_list li p {
  position: relative;
  padding: 1rem 4rem;
  font-size: 2.4rem;
  line-height: 1.5;
  background-color: var(--color-bg_beige);
}

#lp_contents .layer2nd li p {
  padding-left: 4rem;
  font-size: 1.6rem;
  background-color: var(--color-btn);
}

.index_list li p.txt_eng::before {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 2rem;
  height: .1rem;
  margin-right: 2rem;
  background: var(--color-main);
  content: "";
}

.index_list li p.txt_eng::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(90deg);
  width: 2rem;
  height: .1rem;
  margin-right: 2rem;
  background: var(--color-main);
  content: "";
  transition: transform .3s;
}

.index_list li a p.txt_eng::before {
  width: 1.2rem;
  border-radius: .1rem;
  margin-right: 1.9rem;
  transition: margin .3s;
}

.index_list li a:hover p::before {
  margin-right: .9rem;
}

.index_list li a p::after {
  transform: translateY(-50%) rotate(45deg);
  width: 1rem;
  height: 1rem;
  border-top: solid var(--color_01);
  border-right: solid var(--color_01);
  border-width: .1rem;
  border-radius: .1rem;
  background: unset;
  transition: margin .3s;
}

.index_list li a:hover p::after {
  margin-right: 1rem;
}

.index_list li.anchorlink p::before,
.index_list li.anchorlink p::after {
  background: var(--color_white);
}

.index_list li.anchorlink a p::before,
.index_list li.anchorlink a p::after {
  display: none;
}

.accordion_wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s;
  background-color: var(--color-btn);
}

.index_list li.open > p {
  border-bottom: solid var(--color_01);
  border-width: .1rem;
}

.index_list li.open .accordion_inner > li:nth-of-type(1) {
  border-top: none;
}

.index_list li.open > p::after {
  transform: translateY(-50%) rotate(0);
}

.index_list li.open .accordion_wrap {
  grid-template-rows: 1fr;
}

.accordion_inner {
  overflow: hidden;
}

.morethan10 {
  max-height: 68rem;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.morethan10::-webkit-scrollbar {
  display:none;
}

.index_list li .brandlogo {
  display: block;
  width: 14rem;
}

.index_list li .selectnum {
  margin-right: 1.5rem;
}

#Index .index_list li img,
#Index .index_list li a:hover img{
  mix-blend-mode: multiply !important;
}




/*--------------------------------
            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));
  }

  #FooterWrap {
    margin-top: -3rem;
  }

  #lp_contents{
    font-size: 1.3rem;
  }

  #lp_contents:before{
    background-size: cover;
    background-attachment: scroll;
  }

  #lp_contents .sp_only{display: block;}
  #lp_contents .pc_only{display: none;}

  #lp_contents a:hover{
    opacity: 1;
  }

  #lp_contents h2{
    font-size: 3rem;
  }
  #lp_contents h2.eng{
    font-size: 4.5rem;
  }
  #lp_contents p {
    font-size: 1.3rem;
  }
  #lp_contents small{
    margin-top: 1rem;
    font-size: 1.1rem;
  }
  #lp_contents .lead{
    font-size: 1.5rem;
    margin-top: 1.5rem;
  }


  /*------------ link_wrap ------------*/

  #lp_contents .link_wrap{
    margin: 3rem auto 0;
    width: 36rem;
    min-height: 6rem;
  }

  #lp_contents .link_wrap a{
    font-size: 1.6rem;
  }

  #lp_contents .link_wrap big{
    font-size: 3rem;
  }

  #lp_contents .link_btn p{
    width: 12rem;
    height: 2.7rem;
  }


  /*------------ ttl_wrap ------------*/

  #lp_contents .ttl_wrap{
    margin: 0 auto 3rem;
  }


  /*------------ sec_mv ------------*/

  #lp_contents .sec_mv .mv_wrap{
    min-width: 100%;
    height: auto;
    min-height: auto;
    max-height: 100%;
    background-image: none;
  }

  #lp_contents .sec_mv .mv_wrap .mv_blk img{
    width: 100%;
    min-width: 100%;
    height: auto;
    min-height: auto;
    max-height: 100%;
  }

  #lp_contents .sec_mv .mv_wrap .ttl_blk{
    top: 2.3rem;
  }

  #lp_contents .sec_mv .mv_wrap .ttl_blk .title{
    width: 41rem;
  }

  #lp_contents .sec_mv .mv_wrap .ttl_blk .brand{
    width: 14rem;
    margin-top: 1rem;
  }

  #lp_contents .sec_mv .lead{
    margin-top: 5rem;
    font-size: 1.4rem;
  }


  /*------------ sec_item ------------*/

  #lp_contents .sec_item{
    width: 100%;
    padding: 6rem 0;
  }


  /*------------ sec_btm ------------*/

  #lp_contents .sec_btm{
    padding-bottom: 37rem;
  }


  /*navi---------------------------*/
  .navi_area {
    width: 39rem;
    margin: 7rem auto 0;
  }

  .navi_area dt {
    margin-bottom: calc(20 * (100vw / 430));
    font-size: calc(36 * (100vw / 430));
  }

  .navi_area dt:nth-of-type(n+2) {
    margin-top: calc(35 * (100vw / 430));
  }

  .navi_area ul {
    gap: 1rem 0;
  }

  .navi_area ul li {
    min-height: calc(48 * (100vw / 430));
    font-size: calc(16 * (100vw / 430));
    width: 50%;
    padding: 0.5rem 0.7rem;
  }

  #lp_contents .navi_area ul li img{
    width: 15rem;
  }

  .navi_area .keyword_list li a span {
    width: calc(100% - calc(20 * (100vw / 430)));
    padding-left: calc(20 * (100vw / 430));
  }

  .navi_area .keyword_list li a span::before {
    width: calc(16 * (100vw / 430));
    height: calc(16 * (100vw / 430));
  }

  .navi_area .price_list {
    grid-template-columns: repeat(2, 1fr);
  }

  .navi_area .brand_list li {
    height: calc(46 * (100vw / 430));
  }

  .navi_area .brand_list li span {
    width: calc(120 * (100vw / 430));
  }

  .navi_area .btn_view-all {
    margin: calc(20 * (100vw / 430)) auto 0;
  }

  .to_link {
    font-size: calc(12 * (100vw / 430));
  }

  .to_link a::before {
    height: calc(2 * (100vw / 430));
  }

  .to_link .arrowmark {
    padding-right: calc(16 * (100vw / 430));
  }

  .to_link .arrowmark::before {
    width: calc(8 * (100vw / 430));
    height: calc(1 * (100vw / 430));
    border-radius: calc(1 * (100vw / 430));
  }

  .to_link  a:hover .arrowmark::before {
    margin-right: calc(-10 * (100vw / 430));
  }

  .to_link .arrowmark::after {
    width: calc(5 * (100vw / 430));
    height: calc(5 * (100vw / 430));
    border-width: calc(1 * (100vw / 430));
    border-radius: calc(1 * (100vw / 430));
  }

  .to_link  a:hover .arrowmark::after {
    margin-right: calc(-9 * (100vw / 430));
  }

  .to_link a {
    padding: calc(4 * (100vw / 430)) 0;
  }

  .to_link a .plusmark::before {
    width: calc(8 * (100vw / 430));
    height: calc(1 * (100vw / 430));
    border-radius: calc(1 * (100vw / 430));
  }

  .to_link a .plusmark::after {
    width: calc(8 * (100vw / 430));
    height: calc(1 * (100vw / 430));
    border-radius: calc(1 * (100vw / 430));
  }

  .search-summary .btn_view-all {
    font-size: calc(15 * (100vw / 430));
  }

  .search-summary .btn_view-all a {
    padding: calc(6 * (100vw / 430)) 0;
  }

  .modal_inner {
    padding: calc(30 * (100vw / 430)) 0;
  }

  .modal_inner .modal_close {
    width: calc(30 * (100vw / 430));
    height: calc(30 * (100vw / 430));
    border-width: calc(1 * (100vw / 430));
    margin: calc(-10 * (100vw / 430)) 0 0 calc(380 * (100vw / 430));
  }

  .modal_inner .modal_close::before {
    width: calc(1 * (100vw / 430));
    height: calc(14 * (100vw / 430));
  }

  .modal_inner .modal_close::after {
    width: calc(14 * (100vw / 430));
    height: calc(1 * (100vw / 430));
  }

  .modal_content {
    width: calc(400 * (100vw / 430));
    padding: calc(40 * (100vw / 430)) 0;
  }

  .modal_content .content_ttl {
    margin-bottom: calc(20 * (100vw / 430));
    font-size: calc(40 * (100vw / 430));
  }

  .modal_content .brand_list {
    gap: calc(10 * (100vw / 430));
    padding: 0 calc(15 * (100vw / 430));
  }

  .modal_content .brand_list li {
    width: 18rem;
    height: auto;
    padding: 0 !important;
  }

  .modal_content .brand_list li img{
    width: 12.5rem !important;
  }

  .modal_content .brand_list li:before{
    content: none !important;
  }

  #lp_contents .modal_inner .modal_close{
    transform: translate(17.5rem, 2rem);
    width: 3rem;
    height: 3rem;
  }


  /*index--------------------------*/

  .fixed_wrap{
    right: 1rem;
    bottom: 1rem;
  }

  .icon_index {
    left: auto;
    right: 0;
    margin: 0 calc(20 * (100vw / 430)) calc(20 * (100vw / 430)) 0;
  }

  #lp_contents .icon_index a {
    width: 6rem;
    height: 6rem;
    font-size: 1.1rem;
    padding-top: 0.5rem;
    gap:0.2rem;
  }

  #lp_contents .icon_index a img{
    width: 1.8rem;
  }

  .icon_index a span {
  }

  #Index .modal_inner .modal_close::before {
    height: calc(20 * (100vw / 430));
  }

  #Index .modal_inner .modal_close::after {
    width: calc(20 * (100vw / 430));
  }

  #Index .modal_content .content_ttl {
    padding-left: calc(30 * (100vw / 430));
  }

  #Index .modal_content {
    padding: calc(30 * (100vw / 430)) 0 0;
  }

  .index_list li {
    border-width: calc(1 * (100vw / 430));
  }

  .index_list li p {
    padding: calc(10 * (100vw / 430)) calc(40 * (100vw / 430)) calc(10 * (100vw / 430)) calc(20 * (100vw / 430));
    font-size: calc(16 * (100vw / 430));
  }

  .layer2nd li p {
    padding-left: calc(40 * (100vw / 430));
    font-size: calc(14 * (100vw / 430));
  }

  .index_list li p::before {
    width: calc(14 * (100vw / 430));
    height: calc(1 * (100vw / 430));
    margin-right: calc(20 * (100vw / 430));
  }

  .index_list li p::after {
    width: calc(14 * (100vw / 430));
    height: calc(1 * (100vw / 430));
    margin-right: calc(20 * (100vw / 430));
  }

  .index_list li a p::before {
    width: calc(8 * (100vw / 430));
    border-radius: calc(1 * (100vw / 430));
    margin-right: calc(19 *(100vw / 430));
  }

  .index_list li a:hover p::before {
    margin-right: calc(9 *(100vw / 430));
  }

  .index_list li a p::after {
    width: calc(5 * (100vw / 430));
    height: calc(5 * (100vw / 430));
    border-width: calc(1 * (100vw / 430));
    border-radius: calc(1 * (100vw / 430));
  }

  .index_list li a:hover p::after {
    margin-right: calc(10 * (100vw / 430));
  }

  .index_list li.open > p {
    border-width: calc(1 * (100vw / 430));
  }

  .morethan10 {
    max-height: calc(508 * (100vw / 430));
  }

  .index_list li .brandlogo {
    width: calc(110 * (100vw / 430));
  }

  .index_list li .keyword::before {
    width: calc(20 * (100vw / 430));
    height: calc(20 * (100vw / 430));
  }
}
