@charset "UTF-8";

:root {
  --rate: 46.8rem / 780;
  --font-lp_base: "gill-sans-nova", ryo-gothic-plusn, sans-serif;
  --color-lp_font: #1f1f1f;
  --color-lp_green: #78c7b9;
  --color-lp_orange: #eeb475;
}

/*--------------------------------
            CSS Animation
 --------------------------------*/
@keyframes extend {
  0% {
    width: 0;
    transform: translateX(0);
    opacity: 0;
  }
  1% {
    transform: translateX(0);
    opacity: 0;
  }
  2% {
    width: calc(0 * (var(--rate)));
    opacity: 1;
  }
  28% {
    transform: translateX(0);
  }
  32% {
    width: calc(35 * (var(--rate)));
  }
  90% {
    transform: translateX(calc(35 * (var(--rate))));
    width: calc(35 * (var(--rate)));
    opacity: 1;
  }
  91% {
    opacity: 0;
  }
  100% {
    width: 0;
    transform: translateX(0);
    opacity: 0;
  }
}

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

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

/* scroll
==================================*/
#lp_contents .scroll{
  position: fixed;
  bottom: 0;
  z-index: 100;
  transition: 1s;
}

/* bg
==================================*/
#lp_contents .bg{
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/bg_pc_1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  transition: 0.5s;
}

#lp_contents #follow[data-color=sec_first]{
  background-image: url(../img/bg_pc_1.jpg);
}

#lp_contents #follow[data-color=sec_second]{
  background-image: url(../img/bg_pc_2.jpg);
}

#lp_contents #follow[data-color=sec_second] + .left_area .main_ttl{
  color: var(--color-lp_orange);
}

#lp_contents #follow[data-color=sec_third]{
  background-image: url(../img/bg_pc_3.jpg);
}


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

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

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

#header_txt_slider,
#header_img_slider,
.archive_area {
  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(24 * (var(--rate)));
  letter-spacing: 0.125em;
  line-height: 2.4;
  text-align: center;

  display: flex;
  justify-content: center;

  color: var(--color-lp_font);
  position: relative;
  /*overflow: hidden;*/
}
#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: 46.8rem;
  order: 2;
}

/*------------ 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(24 * (var(--rate)));
  line-height: 2.4;
}
#lp_contents sup{
  font-size: 50%;
  margin-top: -0.6rem;
}
#lp_contents .note{
  display: block;
  width: 100%;
  padding: 0 calc(30 * (var(--rate)));
  text-align: right;
  font-size: calc(18 * (var(--rate)));
  line-height: 2;
  letter-spacing: 0.125em;
}


/* nav_list
==================================*/
#lp_contents .nav_list.hide {
  transform:translateY(100%);
}

#lp_contents .nav_list ul{
  display: flex;
  width: calc(780 * (var(--rate)));
  height: calc(96 * (var(--rate)));
}

#lp_contents .nav_list a{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(15 * (var(--rate)));
  height: 100%;
  line-height: 1.3;
  letter-spacing: 0.075em;
}

#lp_contents .nav_list .nav_1{
  width: calc(210 * (var(--rate)));
  background-color: #ebf7f4;
}

#lp_contents .nav_list .nav_1 .nav_img{
  width: calc(32 * (var(--rate)));
}

#lp_contents .nav_list .nav_2{
  width: calc(320 * (var(--rate)));
  background-color: #fcf2e8;
}

#lp_contents .nav_list .nav_2 .nav_img{
  width: calc(32 * (var(--rate)));
}

#lp_contents .nav_list .nav_3{
  width: calc(250 * (var(--rate)));
  background-color: #f1f4fb;
}

#lp_contents .nav_list .nav_3 .nav_img{
  width: calc(50 * (var(--rate)));
}


/* item_wrap
==================================*/
#lp_contents .item_wrap{
  padding-bottom: calc(40 * (var(--rate)));
}

#lp_contents .item_wrap .item_ttl{
  margin-bottom: calc(60 * (var(--rate)));
  line-height: 1;
}

#lp_contents .item_wrap .item_ttl .eng{
  display: block;
  font-size: calc(70 * (var(--rate)));
  letter-spacing: 0.075em;
  margin-top: calc(25 * (var(--rate)));
  color: var(--color-lp_green);
}

#lp_contents .item_wrap .lead{
  font-size: calc(30 * (var(--rate)));
  margin-bottom: calc(55 * (var(--rate)));
}

#lp_contents .item_wrap .drop_list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: calc(60 * (var(--rate)));
}

#lp_contents .item_wrap .drop{
  background-repeat: no-repeat;
  background-size: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(26 * (var(--rate)));
  line-height: 1.8;
}

#lp_contents .item_wrap .item_img{
  margin: 0 auto calc(50 * (var(--rate)));
}

#lp_contents .item_wrap .item_txt{
  display: grid;
  gap: calc(40 * (var(--rate)));
  margin-bottom: calc(100 * (var(--rate)));
}

#lp_contents .item_wrap .item_name{
  font-size: calc(52 * (var(--rate)));
  line-height: 1.5;
  letter-spacing: 0.075em;
}

#lp_contents .item_wrap .item_name .jpn{
  display: block;
  font-size: calc(26 * (var(--rate)));
  letter-spacing: 0.125em;
  line-height: 1;
  margin-top: calc(10 * (var(--rate)));
  color: var(--color-lp_orange);
}

#lp_contents .item_wrap .item_price{
  font-size: calc(28 * (var(--rate)));
  line-height: 1;
  letter-spacing: 0.1em;
}

#lp_contents .item_wrap .link_btn{
  position: relative;
  width: calc(410 * (var(--rate)));
  height: calc(86 * (var(--rate)));
  background-color: var(--color-lp_orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(32 * (var(--rate)));
  letter-spacing: 0.075em;
  color: #fff;
  margin: auto;
}

#lp_contents .item_wrap .link_btn:after{
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: calc(13 * (var(--rate)));
  bottom: 0;
  margin: auto;
  width: calc(10 * (var(--rate)));
  height: calc(12 * (var(--rate)));
  background-image: url(../img/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
}

#lp_contents .item_wrap .link_btn .link-border{
  position: absolute;
  top: 0;
  right: calc(15 * (var(--rate)));
  bottom: 0;
  margin: auto;
  overflow: clip;
  width: calc(25 * (var(--rate)));
  height: 1px;
  z-index: 0;
}

#lp_contents .item_wrap .link_btn .link-border:before{
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  background-position: right;
  -webkit-animation: extend 2s ease-in-out infinite;
  animation: extend 2s ease-in-out infinite;
  z-index: 0;
}


/* sec_first
==================================*/
#lp_contents .sec_first{
  background-image: url(../img/bg_1.jpg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/*------------ mv_wrap ------------*/
#lp_contents .sec_first .mv_wrap{
  display: grid;
  gap: calc(140 * (var(--rate)));
}

/*------------ movie_wrap ------------*/
#lp_contents .sec_first .movie_wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: calc(1170 * (var(--rate)));
  margin-top: calc(110 * (var(--rate)));
}

#lp_contents .sec_first .movie_wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 119%;
  height: 119%;
}

#lp_contents .sec_first .movie_sound {
  position: absolute;
  top: calc(20 * (var(--rate)));
  right: calc(20 * (var(--rate)));
  width: calc(60 * (var(--rate)));
  z-index: 10;
  cursor: pointer;
}

#lp_contents .sec_first .movie_sound > span {
  display: none;
  width: calc(60 * (var(--rate)));
}

#lp_contents .sec_first .movie_sound > span.is-active {
  display: block;
}

/*------------ item_wrap ------------*/
#lp_contents .sec_first .item_wrap{
  padding-top: calc(110 * (var(--rate)));
}

#lp_contents .sec_first .item_wrap .drop_1{
  width: calc(260 * (var(--rate)));
  height: calc(220 * (var(--rate)));
  background-image: url(../img/drop_1_1.png);
  margin-top: calc(60 * (var(--rate)));
  padding-left: calc(24 * (var(--rate)));
  padding-right: calc(50 * (var(--rate)));
  padding-bottom: calc(30 * (var(--rate)));
}

#lp_contents .sec_first .item_wrap .drop_2{
  width: calc(220 * (var(--rate)));
  height: calc(170 * (var(--rate)));
  background-image: url(../img/drop_1_2.png);
  margin-left: calc(-36 * (var(--rate)));
}

#lp_contents .sec_first .item_wrap .drop_3{
  width: calc(210 * (var(--rate)));
  height: calc(190 * (var(--rate)));
  background-image: url(../img/drop_1_3.png);
  margin-top: calc(30 * (var(--rate)));
  padding-bottom: calc(30 * (var(--rate)));
  padding-right: calc(20 * (var(--rate)));
}

#lp_contents .sec_first .item_wrap .drop_4{
  width: calc(230 * (var(--rate)));
  height: calc(190 * (var(--rate)));
  background-image: url(../img/drop_1_4.png);
  margin-top: calc(-20 * (var(--rate)));
  margin-left: calc(30 * (var(--rate)));
  padding-right: calc(20 * (var(--rate)));
  padding-bottom: calc(20 * (var(--rate)));
}

#lp_contents .sec_first .item_wrap .drop_5{
  width: calc(260 * (var(--rate)));
  height: calc(220 * (var(--rate)));
  background-image: url(../img/drop_1_5.png);
  margin-top: calc(-90 * (var(--rate)));
  margin-left: calc(-10 * (var(--rate)));
  padding-bottom: calc(30 * (var(--rate)));
  padding-right: calc(30 * (var(--rate)));
  padding-left: calc(10 * (var(--rate)));
}

#lp_contents .sec_first .item_wrap .item_img{
  width: calc(540 * (var(--rate)));
}

#lp_contents .sec_first .item_wrap .item_name .jpn{
  color: var(--color-lp_green);
}

#lp_contents .sec_first .item_wrap .link_btn{
  background-color: var(--color-lp_green);
}


/* sec_second
==================================*/
#lp_contents .sec_second{
  background-image: url(../img/bg_2.jpg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding-top: calc(160 * (var(--rate)));
}

/*------------ item_wrap ------------*/
#lp_contents .sec_second .item_wrap .drop_1{
  width: calc(240 * (var(--rate)));
  height: calc(210 * (var(--rate)));
  background-image: url(../img/drop_2_1.png);
  margin-top: calc(70 * (var(--rate)));
  margin-left: calc(10 * (var(--rate)));
  margin-right: calc(-10 * (var(--rate)));
  padding-right: calc(10 * (var(--rate)));
  padding-bottom: calc(20 * (var(--rate)));
}

#lp_contents .sec_second .item_wrap .drop_2{
  width: calc(260 * (var(--rate)));
  height: calc(210 * (var(--rate)));
  background-image: url(../img/drop_2_2.png);
  padding-right: calc(36 * (var(--rate)));
  padding-bottom: calc(30 * (var(--rate)));
}

#lp_contents .sec_second .item_wrap .drop_3{
  width: calc(190 * (var(--rate)));
  height: calc(160 * (var(--rate)));
  background-image: url(../img/drop_2_3.png);
  margin-top: calc(30 * (var(--rate)));
  margin-left: calc(-10 * (var(--rate)));
}

#lp_contents .sec_second .item_wrap .drop_4{
  width: calc(270 * (var(--rate)));
  height: calc(240 * (var(--rate)));
  background-image: url(../img/drop_2_4.png);
  margin-top: calc(-30 * (var(--rate)));
  margin-left: calc(100 * (var(--rate)));
  padding-right: calc(30 * (var(--rate)));
  padding-bottom: calc(30 * (var(--rate)));
}

#lp_contents .sec_second .item_wrap .drop_5{
  width: calc(230 * (var(--rate)));
  height: calc(210 * (var(--rate)));
  background-image: url(../img/drop_2_5.png);
  margin-top: calc(-80 * (var(--rate)));
  margin-left: calc(-20 * (var(--rate)));
  padding-right: calc(30 * (var(--rate)));
  padding-bottom: calc(30 * (var(--rate)));
}

#lp_contents .sec_second .item_wrap .item_img{
  width: calc(240 * (var(--rate)));
}


/* sec_third
==================================*/
#lp_contents .sec_third{
  background-image: url(../img/bg_3.jpg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: calc(160 * (var(--rate))) 0 calc(190 * (var(--rate)));
  display: grid;
  gap: calc(145 * (var(--rate)));
}

/*------------ item_wrap ------------*/
#lp_contents .sec_third .item_wrap{
  width: calc(700 * (var(--rate)));
  margin: auto;
  padding: calc(125 * (var(--rate))) 0;
  background-image: url(../img/frame.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

#lp_contents .sec_third .item_wrap .item_img{
  width: calc(546 * (var(--rate)));
  margin-bottom: calc(65 * (var(--rate)));
}

#lp_contents .sec_third .item_wrap .item_txt{
  margin-top: calc(50 * (var(--rate)));
  margin-bottom: calc(60 * (var(--rate)));
  margin-bottom: 0;
}

#lp_contents .sec_third .item_wrap .item_name .jpn{
  font-size: calc(32 * (var(--rate)));
}

#lp_contents .sec_third .item_wrap .link_btn{
  width: calc(360 * (var(--rate)));
}

#lp_contents .sec_third .item_wrap .note{
  text-align: center;
  margin-top: calc(25 * (var(--rate)));
}

#lp_contents .sec_third .item_wrap > .note{
  font-size: calc(22 * (var(--rate)));
}

/*------------ img_wrap ------------*/
#lp_contents .sec_third .img_wrap{
  width: calc(620 * (var(--rate)));
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: calc(60 * (var(--rate)));
}

#lp_contents .sec_third .img_wrap .img{
  width: calc(480 * (var(--rate)));
}

#lp_contents .sec_third .img_wrap .img_1{
  margin-left: auto;
}


/*--------------------------------
            Layout  PC
 --------------------------------*/
@media screen and (min-width: 768px){
  #lp_contents .full_area{
    position: fixed;
    top: 0;
    bottom: 0;
    margin: auto;
    width: calc(calc(100% - 46.8rem) / 2);

    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 .ttl_wrap{
    display: grid;
    gap: 2rem;
  }

  #lp_contents .left_area .ttl_wrap img{
    width: 28.8rem;
  }

  #lp_contents .left_area .ttl_wrap .main_ttl{
    font-size: 1.8rem;
    line-height: 2.2;
    color: var(--color-lp_green);
    transition:  0.5s;
  }

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

  #lp_contents .right_area .nav_list ul{
    display: grid;
    width: 25.5rem;
    height: auto;
    gap: 2.5rem;
  }

  #lp_contents .right_area .nav_list li{
    width: 100%;
    background: transparent;
  }

  #lp_contents .right_area .nav_list a{
    justify-content: flex-start;
    gap: 1.1rem;
    text-align: left;
    font-size: 1.6rem;
    line-height: 1.5;
  }

  #lp_contents .right_area .nav_list a:before{
    content: '';
    display: block;
    width: 1.4rem;
    height: 1.4rem;
    border-right: 1px solid #666666;
    border-bottom: 1px solid #666666;
    rotate: 45deg;
    position: absolute;
    top: 0;
    right: 0.4rem;
    bottom: 0;
    margin: auto;
  }

  #lp_contents .right_area .nav_list .nav_img{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
  }

  #lp_contents .right_area .nav_list .nav_1 .nav_img img,
  #lp_contents .right_area .nav_list .nav_2 .nav_img img{
    width: 3.2rem;
  }

  #lp_contents .right_area .nav_list .nav_3 .nav_img img{
    width: 100%;
  }
}


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


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

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

  .page-share-btn{
    height: 0;
  }

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

  .archive_area {
    margin-top: -3rem;
  }
  
  #lp_contents .sp_only{display: block;}
  #lp_contents .pc_only{display: none;}

  #lp_contents a:hover{opacity: 1}

}