@charset "UTF-8";

:root {
  --rate: 50rem / 390;
  --font-lp_base: "Noto Sans JP","ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN,HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
  --font-lp_ttl: "Cormorant Infant","Shippori Mincho B1", serif;
  --color-lp_bg: rgba(239,232,229,0.97);
  --color-lp_font: #000;
  --color-lp_primary: #33472D;
  --color-lp_secondary: #A62227;
  --color-lp_white: #fff;
}

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

/* intro
==================================*/
#intro{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--color-lp_primary);
  z-index: 999;
}

#intro .intro_img{
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 100%;
  background-size: cover;
  background-position: center;
}

#intro .intro_1{
  background-image: url(../img/intro_sp_1.jpg);
}

#intro .intro_2{
  background-image: url(../img/intro_sp_2.jpg);
}

#intro .intro_3{
  background-image: url(../img/intro_sp_3.jpg);
}

@media screen and (min-width: 768px){
  #intro .intro_1{
    background-image: url(../img/intro_pc_1.jpg);
  }

  #intro .intro_2{
    background-image: url(../img/intro_pc_2.jpg);
  }

  #intro .intro_3{
    background-image: url(../img/intro_pc_3.jpg);
  }
}


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


/* follow
==================================*/
#lp_contents .follow{
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: auto;
  right: 0;
  bottom: 0;
  width: 100%;
  margin: auto;
  padding: 0 calc(10 * (var(--rate)));
  opacity: 0;
  transition: all 0.5s;
  pointer-events: none;
}

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

#lp_contents .follow img{
  width: calc(11 * (var(--rate)));
}

#lp_contents .follow img:nth-of-type(2){
  width: calc(14 * (var(--rate)));
}

@media screen and (min-width: 768px){
  #lp_contents .follow img{
    width: 1.4rem;
  }

  #lp_contents .follow img:nth-of-type(2){
    width: 1.7rem;
  }
}


/* Fade In
==================================*/
#lp_contents .fadeIn {
  opacity: 0;
  transition: 1s;
}

#lp_contents .fadeIn.Left {
  transform: translate(-5rem, -2rem);
}

#lp_contents .fadeIn.Right {
  transform: translate(5rem, -2rem);
}

#lp_contents .fadeIn.is-show {
  opacity: 1;
  transform: translate(0, 0);
}


/* fadeInDelay
==================================*/
@keyframes fadeInDelay {
  0% {
    transform: translate(5rem , 0);
  }
  100% {
    transform: translate(0 , 0);
  }
}

#lp_contents .fadeInDelay li{
  opacity: 0;
  transition: all 1s;
}

#lp_contents .fadeInDelay li.is-show {
  opacity: 1;
  animation-name: fadeInDelay;
  animation-duration: 2s;
  transition-delay: 0.5s;
}

#lp_contents .fadeInDelay li:nth-of-type(2){
  transition-delay: 0.7s;
}

#lp_contents .fadeInDelay li:nth-of-type(3){
  transition-delay: 0.9s;
}

#lp_contents .fadeInDelay li:nth-of-type(4){
  transition-delay: 1.1s;
}


/* flip
==================================*/
@keyframes flip {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg)
  }

  to {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg)
  }
}
#lp_contents .flip {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  opacity: 0
}
#lp_contents .flip.is-show {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-name: flip;
  animation-name: flip;
}


/* simplebar
==================================*/
#lp_contents .simple-bar_wrap *{
  /*スクロールバー非表示（IE・Edge）*/
  -ms-overflow-style: none;
  /*スクロールバー非表示（Firefox）*/
  scrollbar-width: none;
}

#lp_contents .simple-bar_wrap{
  overflow-x: scroll;
  padding-bottom: calc(27 * (var(--rate)));
  /*スクロールバー非表示（IE・Edge）*/
  -ms-overflow-style: none;
  /*スクロールバー非表示（Firefox）*/
  scrollbar-width: none;
}

#lp_contents .simple-bar_wrap *::-webkit-scrollbar,
#lp_contents .simple-bar_wrap::-webkit-scrollbar{
  display:none;
}

#lp_contents .simple-bar_wrap ul{
  display: flex;
  gap: calc(12 * (var(--rate)));
  width: fit-content;
  padding: 0 calc(20 * (var(--rate)));
}

#lp_contents .simplebar-track.simplebar-horizontal {
  height: calc(3 * (var(--rate)));
  width: calc(150 * (var(--rate)));
  background: rgba(0,0,0,0.1);
  margin: auto;
  border-radius: calc(1.5 * (var(--rate)));
}

#lp_contents .simplebar-track.simplebar-horizontal .simplebar-scrollbar{
  top: 0;
  height: calc(3 * (var(--rate)));
  border-radius: calc(1.5 * (var(--rate)));
  background-color: #000;
}

#lp_contents .simplebar-scrollbar:before{
  background: #000;
}


/* ornament img
==================================*/
@keyframes rotate {
   0%,100% {
    transform: rotate(10deg);
   }
   50% {
    transform: rotate(-10deg);
   }
}

@keyframes rotate2 {
  0% {
    transform: rotate(10deg);
  }

  100% {
    transform: rotate(-10deg);
  }
}

#lp_contents .orn_img{
  position: absolute;
  z-index: 5;
}

#lp_contents .img_01{
  width: calc(65 * (var(--rate)));
  top: calc(-15 * (var(--rate)));
  left: calc(-30 * (var(--rate)));
  animation: rotate2 3s steps(2, end) infinite;
}

#lp_contents .img_02{
  width: calc(80 * (var(--rate)));
  right: calc(-18 * (var(--rate)));
  bottom: calc(-14 * (var(--rate)));
  animation: rotate2 3s steps(2, end) infinite;
  animation-delay: 0.5s;
}

#lp_contents .img_03{
  width: calc(106 * (var(--rate)));
  top: calc(-25 * (var(--rate)));
  left: calc(-2 * (var(--rate)));
  transform-origin: center top;
  animation: rotate 3s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}

#lp_contents .img_04{
  width: calc(203 * (var(--rate)));
  top: calc(-68 * (var(--rate)));
  right: calc(-56 * (var(--rate)));
  transition-delay: 1s;
}

#lp_contents .img_05{
  width: calc(256 * (var(--rate)));
  top: calc(-123 * (var(--rate)));
  left: calc(-103 * (var(--rate)));
  transition-delay: 1s;
}

#lp_contents .img_06{
  width: calc(243 * (var(--rate)));
  top: calc(-73 * (var(--rate)));
  right: calc(-68 * (var(--rate)));
  transition-delay: 1s;
}

#lp_contents .img_07{
  width: calc(210 * (var(--rate)));
  top: calc(-64 * (var(--rate)));
  left: calc(-48 * (var(--rate)));
  transition-delay: 1s;
}

#lp_contents .img_08{
  width: calc(198 * (var(--rate)));
  top: calc(-60 * (var(--rate)));
  right: calc(-34 * (var(--rate)));
  transition-delay: 1s;
}

#lp_contents .img_09{
  width: calc(100 * (var(--rate)));
  top: calc(50 * (var(--rate)));
  left: calc(-14 * (var(--rate)));
  animation: rotate2 3s steps(2, end) infinite;
}

#lp_contents .img_10{
  width: calc(226 * (var(--rate)));
  top: calc(-100 * (var(--rate)));
  left: calc(-65 * (var(--rate)));
  transition-delay: 1s;
}

#lp_contents .img_11{
  width: calc(100 * (var(--rate)));
  right: calc(-20 * (var(--rate)));
  bottom: calc(-40 * (var(--rate)));
  animation: rotate2 3s steps(2, end) infinite;
}

#lp_contents .img_12{
  width: calc(308 * (var(--rate)));
  margin: auto;
  animation: rotate2 3s steps(2, end) infinite;
}



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

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

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

#header_txt_slider,
#header_img_slider {
  position: relative;
  z-index: 100;
}

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

#lp_contents{
  font-family: var(--font-lp_base);
  font-feature-settings: "palt";
  font-size: calc(12 * (var(--rate)));
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;

  display: flex;
  justify-content: center;
  background-color: var(--color-lp_primary);

  color: var(--color-lp_font);
  position: relative;
}
#lp_contents .sp_only{display: none;}
#lp_contents img{width: 100%;display: block;height: auto; image-rendering: -webkit-optimize-contrast; -webkit-backface-visibility: hidden;}
#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 section{
  position: relative;
}
#lp_contents .lp_inner{
  position: relative;
  z-index: 3;
  width: 50rem;
  order: 2;
  padding-bottom: calc(80 * (var(--rate)));
  display: grid;
  gap: calc(80 * (var(--rate)));
}

/*------------ Text ------------*/
#lp_contents h1,#lp_contents h2,#lp_contents h3{padding: 0;float: none;font-weight: normal;}
#lp_contents p {
  display: block;
  margin: 0;
  font-size: calc(12 * (var(--rate)));
  line-height: 2;
}
#lp_contents sup{
  font-size: 50%;
  margin-top: -0.6rem;
}
#lp_contents .note{
  display: inline-block;
  font-size: calc(10 * (var(--rate)));
  font-weight: 400;
  line-height: 1;
}
#lp_contents .bold{
  font-weight: bold;
}
#lp_contents .small{
  font-size: 1rem;
  font-size: calc(10 * (var(--rate)));
}
#lp_contents .lead{
  font-size: calc(13 * (var(--rate)));
  font-weight: 600;
}

/*------------ Title ------------*/
#lp_contents .ttl_wrap:before{
  content: '';
  display: block;
  width: calc(30 * (var(--rate)));
  height: calc(28 * (var(--rate)));
  background-image: url(../img/star.png);
  background-repeat: no-repeat;
  background-size: 100%;
  margin: 0 auto calc(10 * (var(--rate)));
}

#lp_contents .main_ttl{
  margin-bottom: calc(8 * (var(--rate)));
  font-family: var(--font-lp_ttl);
  font-size: calc(26 * (var(--rate)));
  font-weight: 800;
  line-height: 1.3;
  color: var(--color-lp_primary);
}

#lp_contents .main_ttl .eng{
  display: block;
  margin-bottom: calc(12 * (var(--rate)));
  font-size: calc(16 * (var(--rate)));
  font-weight: 700;
  line-height: 1;
  letter-spacing: .05em;
}

#lp_contents .ttl_wrap .lead{
  font-size: calc(15 * (var(--rate)));
  letter-spacing: .15em;
  line-height: 1.5;
}

/*------------ Button ------------*/
#lp_contents .link_btn{
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(300 * (var(--rate)));
  height: calc(60 * (var(--rate)));
  margin: auto;
  background-color: var(--color-lp_secondary);
  border-radius: calc(100 * (var(--rate)));
  border: 1px solid #000;
  color: var(--color-lp_white);
  font-size: calc(15 * (var(--rate)));
  font-weight: 600;
  letter-spacing: 0.15em;
}


/* nav_list
==================================*/
#lp_contents .nav_list ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(5 * (var(--rate)));
}

#lp_contents .nav_list a{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: calc(3 * (var(--rate)));
  width: calc(120 * (var(--rate)));
  height: calc(60 * (var(--rate)));
  background-color: rgba(239,232,229,0.9);
  border-radius: 50%;
  border: 1px solid;
  font-weight: bold;
  line-height: 1.3;
  transition: all 0.5s;
}

#lp_contents .nav_list a:hover{
  background-color: var(--color-lp_secondary);
  color: var(--color-lp_white);
  opacity: 1;
}

#lp_contents .nav_list a:before{
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(7 * (var(--rate)));
  margin: auto;
  background: var(--color-lp_secondary);
  height: calc(tan(60deg) * calc(6 * (var(--rate))) / 2);
  width: calc(6 * (var(--rate)));
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transition: all 0.5s;
}

#lp_contents .nav_list a:hover:before{
  background: var(--color-lp_white);
  opacity: 1;
}


/* sec_mv
==================================*/
#lp_contents .sec_mv{
  display: grid;
  gap: calc(40 * (var(--rate)));
}

#lp_contents .sec_mv .lead_wrap{
  position: relative;
  width: calc(300 * (var(--rate)));
  margin: auto;
  padding: calc(50 * (var(--rate))) calc(15 * (var(--rate)));
  border-radius: calc(8 * (var(--rate)));
  color: var(--color-lp_white);
  background-color: rgba(166, 34, 39, 0.97);
}


/* sec_item
==================================*/
#lp_contents .sec_item{
  display: grid;
  gap: calc(24 * (var(--rate)));
  width: calc(350 * (var(--rate)));
  margin: auto;
  padding: calc(50 * (var(--rate))) 0;
  background-color: var(--color-lp_bg);
  border-radius: calc(8 * (var(--rate)));
  border: 1px solid;
}

/*------------ item_wrap ------------*/
#lp_contents .sec_item .item_wrap li{
  width: calc(180 * (var(--rate)));
}

#lp_contents .sec_item .item_wrap .item_img{
  border-radius: calc(8 * (var(--rate)));
  overflow: hidden;
}

#lp_contents .sec_item .item_wrap .item_detail{
  display: grid;
  gap: calc(6 * (var(--rate)));
  margin-top: calc(12 * (var(--rate)));
}

#lp_contents .sec_item .item_wrap .item_detail p{
  letter-spacing: 0.05em;
  line-height: 1.5;
}

#lp_contents .sec_item .item_wrap p.item_brand{
  font-family: var(--font-lp_ttl);
  font-size: calc(16 * (var(--rate)));
  font-weight: 700;
  line-height: 1;
  color: var(--color-lp_primary);
}

#lp_contents .sec_item .item_wrap p.lead{
  font-weight: 600;
}

#lp_contents .sec_item .item_wrap p.item_brand.jpn{
  font-size: calc(12 * (var(--rate)));
  line-height: 1.5;
}

#lp_contents .sec_item .item_wrap p.item_price{
  font-family: var(--font-lp_ttl);
  font-size: calc(16 * (var(--rate)));
  font-weight: 700;
  line-height: 1;
}


/* sec_bag
==================================*/
#lp_contents .sec_bag{
  display: grid;
  gap: calc(18 * (var(--rate)));
  width: calc(350 * (var(--rate)));
  margin: auto;
  padding: calc(50 * (var(--rate))) 0;
  background-color: rgba(255, 255, 255, .97);
  border-radius: calc(8 * (var(--rate)));
  border: 1px solid;
}

#lp_contents .sec_bag .bag_img{
  width: calc(280 * (var(--rate)));
  margin: auto;
  border-radius: calc(8 * (var(--rate)));
  overflow: hidden;
}

#lp_contents .sec_bag .bag__txt{
  font-size: calc(13 * (var(--rate)));
}

#lp_contents .sec_bag .lead{
  line-height: 1.75;
}


/* sec_bnr
==================================*/
#lp_contents .sec_bnr{
  display: grid;
  gap: calc(20 * (var(--rate)));
}

#lp_contents .sec_bnr .bnr_wrap{
  width: calc(300 * (var(--rate)));
  margin: auto;
  border-radius: calc(8 * (var(--rate)));
  overflow: hidden;
}


/*--------------------------------
            Layout  PC
 --------------------------------*/
@media screen and (min-width: 768px){
  #lp_contents .full_area{
    position: sticky;
    top: 0;
    height: 100vh;

    width: calc(calc(100% - 50rem) / 2);
    max-width: 60rem;

    padding: 3rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #lp_contents .left_area{
    left: 0;
    order: 1;
  }

  #lp_contents .left_area img{
    width: min(300px, calc(300 * (100vw / 1400)));
  }

  #lp_contents .right_area{
    right: 0;
    order: 3;
  }

  #lp_contents .right_area .nav_list ul{
    gap: 1rem 1.2rem;
  }

  #lp_contents .right_area .nav_list a{
    padding-bottom: 0.8rem;
    width: 15rem;
    height: 7.2rem;
    font-size: 1.4rem;
  }

  #lp_contents .right_area .nav_list a:before{
    bottom: 0.8rem;
    height: calc(tan(60deg) * 0.8rem / 2);
    width: 0.8rem;
  }
}


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

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

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

  #lp_contents .lp_inner{
  }

  #lp_contents .left_area,
  #lp_contents .right_area{
    display: none;
  }
}

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

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

  #share{
    z-index: 100 !important;
  }

  .share-txt {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .share-txt span {
    margin-top: calc(40 * (100vw / 750));
    margin-bottom: calc(40* (100vw / 750));
  }

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

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

  #lp_contents a:hover{opacity: 1}

  #lp_contents .lp_inner{
    width: calc(390 * (var(--rate)));
    overflow: hidden;
  }

}