@charset "UTF-8";

:root {
  --rate: 46.8rem / 780;
  --font-lp_eng: "dupincel-variable", sans-serif;
  --font-lp_jpn: ryo-display-plusn, serif;
  --color-lp_bg: #fff;
  --color-lp_font: #666666;
  --color-lp_primary: #dd887a;
  --color-lp_yellow: #f7f5e9;
  --color-lp_pink: #faf1f1;
}

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

/* zoom
==================================*/
#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);
}


/* Fade In
==================================*/
#lp_contents .fadeIn {
  opacity: 0;
  filter: blur(5px);
  transition: 2s;
}

#lp_contents .fadeIn.is-show {
  opacity: 1;
  filter: blur(0);
}


/* slider
==================================*/

#lp_contents .slick-track {
  display: flex;
  width: calc(660 * (var(--rate))) !important;
}

#lp_contents .slick-slide {
  height: auto !important;
}

#lp_contents .slick-dots{
  position: static;
  line-height: 0;
  display: flex !important;
  justify-content: right;
  gap: calc(14 * (var(--rate)));
}

#lp_contents .slick-dots li{
  margin: calc(20 * (var(--rate))) 0 0;
  width: calc(14 * (var(--rate)));
  height: calc(14 * (var(--rate)));
  border-radius: 100%;
  background-color: #f1cfca;
}

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

#lp_contents .slick-dots li.slick-active{
  background-color: var(--color-lp_primary);
}

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

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


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

#lp_contents .scroll.hide {
  transform:translateY(100%);
}

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

#lp_contents .nav_list li{
  flex: 1;
}

#lp_contents .nav_list li:not(:last-child){
  border-right: 1px solid var(--color-lp_primary);
}

#lp_contents .nav_list a{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(20 * (var(--rate)));
}

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

#lp_contents .nav_list .nav_txt{
  font-family: var(--font-lp_eng);
  font-size: calc(30 * (var(--rate)));
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-lp_primary);
}


/* accordion
==================================*/
#lp_contents .accordion{
  transition: all 0.5s;
}

#lp_contents .accordion.is-hide{
  position: relative;
  overflow: hidden;
  height: calc(630 * (var(--rate)));;
}

#lp_contents .accordion.is-hide:before{
  content: '';
  width: 100%;
  height: calc(480 * (var(--rate)));
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

#lp_contents .sec_look.look_1 .accordion.is-hide:before{
  background: linear-gradient(180deg, rgba(247, 245, 233, 0) 0%, rgba(247, 245, 233, 1) 100%);
}

#lp_contents .sec_look.look_2 .accordion.is-hide:before{
  background: linear-gradient(180deg, rgba(251, 242, 242, 0) 0%, rgba(251, 242, 242, 1) 100%);
}

#lp_contents .trigger {
  position: relative;
  font-size: calc(26 * (var(--rate)));
  line-height: 1;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: .2s ease;
  transition: 0.5s opacity;
  width: fit-content;
  padding-bottom: calc(36 * (var(--rate)));
  margin: auto;
}

#lp_contents .trigger:before{
  content: '';
  display: block;
  width: calc(40 * (var(--rate)));
  height: calc(16 * (var(--rate)));
  background-image: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

#lp_contents .trigger.is-show{
  display: none;
  display: block;
  margin-top: calc(60 * (var(--rate)));
  padding-bottom: calc(4 * (var(--rate)));
  border-bottom: 1px solid #828282;
}

#lp_contents .trigger.is-show:before{
  content: none;
}


/* link
==================================*/
@keyframes extend {
  0% {
    width: 0;
    transform: translateX(0);
    opacity: 0;
  }
  1% {
    transform: translateX(0);
    opacity: 0;
  }
  2% {
    width: 0;
    opacity: 1;
  }
  28% {
    transform: translateX(0);
  }
  32% {
    width: 100%;
  }
  90% {
    transform: translateX(100%);
    width: 100%;
    opacity: 1;
  }
  91% {
    opacity: 0;
  }
  100% {
    width: 0;
    transform: translateX(0);
    opacity: 0;
  }
}

#lp_contents .link_btn{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-size: calc(32 * (var(--rate)));
  letter-spacing: 0.1em;
  line-height: 1;
  width: calc(490 * (var(--rate)));
  padding-bottom: calc(20 * (var(--rate)));
  margin: calc(100 * (var(--rate))) auto 0;
}

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

#lp_contents .link_btn .link-txt{
  margin-bottom: calc(10 * (var(--rate)));
}

#lp_contents .link_btn:after{
  content: "";
  position: absolute;
  display: block;
  width: calc(22 * (var(--rate)));
  height: 1px;
  background-color: var(--color-lp_primary);
  rotate: 45deg;
  right: calc(-2 * (var(--rate)));
  bottom: calc(8 * (var(--rate)));
}

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

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


/* bg
==================================*/
#lp_contents .bg{
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-lp_pink);
  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_mv]{
  background-color: var(--color-lp_pink);
}

#lp_contents #follow[data-color=anker_1]{
  background-color: var(--color-lp_yellow);
}

#lp_contents #follow[data-color=anker_2]{
  background-color: var(--color-lp_pink);
}

#lp_contents #follow[data-color=sec_prof]{
  background-color: var(--color-lp_yellow);
}


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

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

#FooterWrap,
.archive_area{
  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(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;
  background-color: var(--color-lp_bg);
  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)));
  letter-spacing: 0.125em;
  line-height: 2.4;
}
#lp_contents sup{
  font-size: 50%;
  margin-top: -0.6rem;
}
#lp_contents .note{
  display: inline-block;
  font-size: 1rem;
  font-size: calc(10 * (var(--rate)));
  line-height: 1.5;
}
#lp_contents p .note{
  margin-top: 0;
}
#lp_contents .bold{
  font-weight: bold;
}
#lp_contents .small{
  font-size: calc(10 * (var(--rate)));
}


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

#lp_contents #follow[data-color=anker_1]{
  background-color: var(--color-lp_yellow);
}

#lp_contents #follow[data-color=anker_2]{
  background-color: var(--color-lp_pink);
}

#lp_contents #follow[data-color=anker_3]{
  background-color: var(--color-lp_yellow);
}


/* sec_mv
==================================*/
#lp_contents .sec_mv .mv_wrap{
  display: grid;
  gap: calc(25 * (var(--rate)));
  background-color: #faf1f1;
  padding: calc(40 * (var(--rate))) calc(40 * (var(--rate))) calc(35 * (var(--rate)));
}

#lp_contents .sec_mv .mv_wrap .mv_ttl{
  width: calc(677 * (var(--rate)));
  margin: auto;
}

#lp_contents .sec_mv .mv_lead{
  display: grid;
  gap: calc(25 * (var(--rate)));
  padding: calc(105 * (var(--rate))) 0;
}


/* sec_look
==================================*/
#lp_contents .sec_look{
  position: relative;
  padding: calc(150 * (var(--rate))) 0 calc(180 * (var(--rate)));
  background-repeat: no-repeat;
  background-size: 100%;
}

#lp_contents .sec_look.look_1{
  background-image: url(../img/bg_yellow.png);
}

#lp_contents .sec_look.look_1:before{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(rgb(255, 255, 255) 0% , rgb(247, 245, 233) 10% , rgb(247, 245, 233) 100%);
  z-index: -1;
}

#lp_contents .sec_look.look_2{
  background-image: url(../img/bg_pink.png);
}

#lp_contents .sec_look.look_2:before{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(rgb(247, 245, 233) 0% , rgb(251, 242, 242) 10% , rgb(251, 242, 242) 100%);
  z-index: -1;
}


/*------------ ttl_wrap ------------*/
#lp_contents .sec_look .ttl_wrap{
  position: relative;
  margin-bottom: calc(50 * (var(--rate)));
}

#lp_contents .sec_look .ttl_wrap .look_ttl{
  width: calc(375 * (var(--rate)));
  margin-left: calc(10 * (var(--rate)));
}

#lp_contents .sec_look.look_2 .ttl_wrap .look_ttl{
  margin-left: auto;
  margin-right: calc(10 * (var(--rate)));
}

#lp_contents .sec_look .ttl_wrap .line{
  display: block;
  width: 0;
  height: 1px;
  background-color: var(--color-lp_primary);
  position: absolute;
  top: calc(100 * (var(--rate)));
  left: calc(385 * (var(--rate)));
  transition:  1s;
}

#lp_contents .sec_look.look_2 .ttl_wrap .line{
  left: auto;
  right: calc(385 * (var(--rate)));
}

#lp_contents .sec_look .ttl_wrap .line.is-show{
  width: calc(395 * (var(--rate)));
}

/*------------ look_wrap ------------*/
#lp_contents .sec_look .look_wrap{
  display: grid;
  gap: calc(85 * (var(--rate)));
}

#lp_contents .sec_look .look_wrap .look_img{
  width: calc(660 * (var(--rate)));
  margin: auto;
}

#lp_contents .sec_look .look_wrap .look_lead{
  font-size: calc(28 * (var(--rate)));
}

/*------------ item_wrap ------------*/
#lp_contents .sec_look .item_wrap{
  display: grid;
  gap: calc(80 * (var(--rate)));
  margin-top: calc(80 * (var(--rate)));
}

#lp_contents .sec_look .item_wrap .item_list{
  display: flex;
  justify-content: center;
  gap: calc(30 * (var(--rate)));
}

#lp_contents .sec_look .item_wrap .item_list li{
  width: calc(190 * (var(--rate)));
  font-size: calc(20 * (var(--rate)));
  line-height: 2;
}


#lp_contents .sec_look .item_wrap .item_list a{
  display: grid;
  gap: calc(10 * (var(--rate)));
}

#lp_contents .sec_look .item_wrap .howto_list ul{
  display: grid;
  gap: calc(55 * (var(--rate)));
}

#lp_contents .sec_look .item_wrap .howto_list li{
  display: grid;
  gap: calc(45 * (var(--rate)));
}

#lp_contents .sec_look .item_wrap .howto_list .howto_ttl{
  font-family: var(--font-lp_eng);
  font-size: calc(44 * (var(--rate)));
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--color-lp_primary);
}

#lp_contents .sec_look .item_wrap .howto_list .eye_img{
  display: flex;
  justify-content: center;
  gap: calc(40 * (var(--rate)));
}

#lp_contents .sec_look .item_wrap .howto_list .eye_img img,
#lp_contents .sec_look .item_wrap .howto_list .eye_img a{
  width: auto;
  height: calc(200 * (var(--rate)));
}

#lp_contents .sec_look .item_wrap .howto_list .num{
  color: var(--color-lp_primary);
}

#lp_contents .sec_look .item_wrap .howto_list .tip{
  display: grid;
  gap: calc(45 * (var(--rate)));
}

#lp_contents .sec_look .item_wrap .howto_list .tip_ttl{
  font-family: var(--font-lp_eng);
  font-size: calc(30 * (var(--rate)));
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--color-lp_primary);
}

#lp_contents .sec_look .item_wrap .howto_list .howto_txt,
#lp_contents .sec_look .item_wrap .howto_list .tip_txt{
  line-height: 2.2;
}


/* sec_prof
==================================*/
#lp_contents .sec_prof{
  background-color: var(--color-lp_pink);
  background-image: url(../img/bg_yellow.png);
  background-repeat: no-repeat;
  background-size: 100%;
  padding: calc(180 * (var(--rate))) calc(115 * (var(--rate))) 0;
}

#lp_contents .sec_prof .prof_wrap{
  display: grid;
  gap: calc(45 * (var(--rate)));
}

#lp_contents .sec_prof .prof_wrap .prof{
  display: flex;
  align-items: center;
  gap: calc(55 * (var(--rate)));
}

#lp_contents .sec_prof .prof_wrap .prof_img{
  width: calc(300 * (var(--rate)));
}

#lp_contents .sec_prof .prof_wrap .prof_name{
  line-height: 1;
}

#lp_contents .sec_prof .prof_wrap .prof_name .name{
  display: block;
  font-family: var(--font-lp_jpn);
  font-size: calc(40 * (var(--rate)));
  margin-top: calc(60 * (var(--rate)));
  color: var(--color-lp_primary);
}

#lp_contents .sec_prof .prof_txt{
  text-align: justify;
  line-height: 2.2;
}


/* sec_bnr
==================================*/
#lp_contents .sec_bnr{
  background-color: var(--color-lp_yellow);
  background-image: url(../img/bg_white.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: calc(200 * (var(--rate))) 0 calc(220 * (var(--rate)));
}

#lp_contents .sec_bnr .bnr_img{
  width: calc(480 * (var(--rate)));
  margin: auto;
}

#lp_contents .sec_bnr .link_btn{
  width: calc(440 * (var(--rate)));
  margin-top: calc(40 * (var(--rate)));
  padding-bottom: calc(5 * (var(--rate)));
  color: var(--color-lp_primary);
}

#lp_contents .sec_bnr .link_btn .link-border{
  width: calc(440 * (var(--rate)));
}



/*--------------------------------
            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 img{
    width: min(345px, calc(345 * (100vw / 1400)));
  }

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

  #lp_contents .right_area .nav_list ul{
    background-color: transparent;
    display: grid;
    gap: 2.5rem;
  }

  #lp_contents .right_area .nav_list li{
    border-width: 0;
  }

  #lp_contents .right_area .nav_list a{
    gap: 1.5rem;
  }

  #lp_contents .right_area .nav_list .nav_img{
    width: 6rem;
  }

  #lp_contents .right_area .nav_list .nav_txt{
    font-size: 2rem;
    color: var(--color-lp_font);
  }

  #lp_contents .right_area .nav_list .nav_txt:after{
    content: '';
    display: block;
    width: 1.6rem;
    height: 0.6rem;
    background-image: url(../img/nav_arrow.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin: 0.8rem auto 0;
  }
}


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

@media screen and (max-width: 1400px){
  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;
  }

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

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

  #lp_contents a:hover{opacity: 1}

  #lp_contents .lp_inner{
  }

}