@charset "UTF-8";

:root {
  --font-lp_base: "Noto Sans JP","ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN,HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
  --font-lp_serif: "the-seasons", sans-serif;
  --font-lp_script: "medusa", sans-serif;
  --font-lp_mincho: "Shippori Mincho", serif;
  --color-lp_bg_1: #D3A1AC;
  --color-lp_bg_2: #CB93A1;
  --color-lp_font: #954856;
  --color-lp_primary: #954856;
  --color-lp_secondary: #C37D8E;
  --color-lp_tertiary: #F2E2E5;
}

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

/* blur
==================================*/

@keyframes blur {
   0% {
      opacity: 0;
      filter: blur(4px);
   }
   100% {
      opacity: 1;
      filter: blur(0);
   }
}


/* Fade In
==================================*/

@keyframes fadeInDelay {
  0% {opacity: 0;}
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

#lp_contents .fadeIn {
  opacity: 0;
  transition: 3s;
}

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

#lp_contents .fadeInUp{
  display: block;
  opacity: 0;
  transform: translate(0, 2rem);
  transition: 2s;
}

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

#lp_contents .fadeInLeft{
  opacity: 0;
  animation: blur 1s cubic-bezier(0.51, 0.21, 0.41, 1) 0s 1 forwards;
  -webkit-mask-image: linear-gradient(270deg, transparent, transparent 39.6666666667%, rgba(0, 0, 0, .02) 43.3333333333%, rgba(0, 0, 0, .08) 45%, rgba(0, 0, 0, .18) 46.6666666667%, rgba(0, 0, 0, .32) 48.3333333333%, rgba(0, 0, 0, .5) 50%, rgba(0, 0, 0, .68) 51.6666666667%, rgba(0, 0, 0, .82) 53.3333333333%, rgba(0, 0, 0, .92) 55%, rgba(0, 0, 0, .98) 56.6666666667%, #000 58.3333333333%, #000);
  mask-image: linear-gradient(270deg, transparent, transparent 39.6666666667%, rgba(0, 0, 0, .02) 43.3333333333%, rgba(0, 0, 0, .08) 45%, rgba(0, 0, 0, .18) 46.6666666667%, rgba(0, 0, 0, .32) 48.3333333333%, rgba(0, 0, 0, .5) 50%, rgba(0, 0, 0, .68) 51.6666666667%, rgba(0, 0, 0, .82) 53.3333333333%, rgba(0, 0, 0, .92) 55%, rgba(0, 0, 0, .98) 56.6666666667%, #000 58.3333333333%, #000);
  -webkit-mask-size: max(300%, 100vw) 100%;
  mask-size: max(300%, 100vw) 100%;
  -webkit-mask-position: 100% center;
  mask-position: 100% center;
  -webkit-mask-repeat: none;
  mask-repeat: none;
  transform: translateZ(0);
  transition: -webkit-mask-position 2s linear;
  transition: mask-position 2s linear;
  transition: mask-position 2s linear, -webkit-mask-position 2s linear;
}

#lp_contents .fadeInLeft.is-show{
  -webkit-mask-position: 0 center;
  mask-position: 0 center;
}

#lp_contents .fadeInDelay p{
  opacity: 0;
}

#lp_contents .fadeInDelay p.is-show {
  animation-name: fadeInDelay;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

#lp_contents .delay1{
  transition-delay: 0.3s;
}
#lp_contents .delay2{
  transition-delay: 0.6s;
}
#lp_contents .delay3{
  transition-delay: 0.9s;
}


/* 固定背景
==================================*/

#lp_contents .cd-fixed-bg {
  position: relative;
  min-height: 100%;
  background-size: 50%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: left center;
  z-index: 2;
}

#lp_contents .sec_wrap > section:nth-child(even) .cd-fixed-bg{
  background-position: right center;
}

/*--固定背景01--*/
#lp_contents .cd-fixed-bg.cd-bg-1  {
  background-image: url('../img/img_1.jpg');
  background-position: left bottom;
}

/*--固定背景02--*/
#lp_contents .cd-fixed-bg.cd-bg-2  {
  background-image: url('../img/img_2_1.jpg');
}

/*--固定背景03--*/
#lp_contents .cd-fixed-bg.cd-bg-3  {
  background-image: url('../img/img_3_1.jpg');
}

@media screen and (max-width: 767px) {
  #lp_contents .cd-fixed-bg{
    min-height: 43rem;
    background-size: cover;
    background-attachment: scroll;
  }

  #lp_contents .cd-fixed-bg.cd-bg-1  {
    background-image: url('../img/img_1_sp.jpg');
  }

  /*--固定背景02--*/
  #lp_contents .cd-fixed-bg.cd-bg-2  {
    background-image: url('../img/img_2_sp.jpg');
  }

  /*--固定背景03--*/
  #lp_contents .cd-fixed-bg.cd-bg-3  {
    background-image: url('../img/img_3_sp.jpg');
  }
}


/* accordion
==================================*/

#lp_contents .accordion.is-hide{
  position: relative;
  overflow: hidden;
  height: 24rem;
}

#lp_contents .accordion.is-hide:before{
  content: '';
  width: 100%;
  height: 10rem;
  background: linear-gradient(180deg, rgba(242, 226, 229, 0) 0%, rgba(242, 226, 229, 1) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
}

#lp_contents .trigger {
  display: flex;
  width: fit-content;
  font-family: var(--font-lp_serif);
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0;
  margin: 3rem auto 0;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid var(--color-lp_secondary);
  cursor: pointer;
  transition: .2s ease;
  transition: 0.5s opacity;
}

#lp_contents .accordion.is-hide + .trigger::before {
  content: "VIEW MORE +";
}

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

@media screen and (max-width: 767px) {
  #lp_contents .accordion.is-hide{
    height: 16rem;
  }

  #lp_contents .accordion.is-hide:before{
    height: 8rem;
  }
}


/* follow
==================================*/

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

#share{
  transition: all 0.5s;
}

#share.fixed {
  bottom: 6rem !important;
  z-index: 101 !important;
}

#share.none {
  bottom: 5% !important;
}


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

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

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

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

#lp_contents{
  font-family: var(--font-lp_base);
  font-feature-settings: "palt";
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--color-lp_font);
  background-color: var(--color-lp_bg_1);
  position: relative;
  /*overflow: hidden;*/
}
#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.5rem;
  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 figure{
  background-color: var(--color-lp_primary);
}

#lp_contents figure:not(.mv_wrap) img.fadeIn{
  transition-delay: 0.5s;
}

/*------------ title ------------*/
#lp_contents .ttl{
  font-family: var(--font-lp_serif);
  font-size: 15rem;
  color: #fff;
  line-height: 1;
  letter-spacing: 0;
}

#lp_contents .lead_ttl{
  font-family: var(--font-lp_mincho);
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 4rem;
}

/*------------ link_btn ------------*/
#lp_contents .link_btn{
  width: 24rem;
  height: 4.5rem;
  background-color: var(--color-lp_primary);
  color: #fff;
  font-family: var(--font-lp_serif);
  font-size: 2rem;
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* nav_list
==================================*/

#lp_contents .nav_list{
  width: 100%;
  height: 4rem;
  background-color: var(--color-lp_primary);
  color: #CB93A0;
  font-family: var(--font-lp_serif);
  font-size: 2.5rem;
  line-height: 1;
}

#lp_contents .nav_list ul{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

#lp_contents .nav_list li{
  width: 50%;
  height: 100%;
  max-width: 30rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

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


/* section
==================================*/

#lp_contents section{
  position: relative;
}

#lp_contents .sec_wrap{
  background-color: var(--color-lp_bg_2);
}

#lp_contents .sec_inner{
  display: flex;
  flex-wrap: wrap;
}

#lp_contents .sec_wrap > section:nth-child(even) .sec_inner{
  flex-direction: row-reverse;
}

#lp_contents .img_wrap{
  width: 50%;
}

#lp_contents .txt_wrap{
  position: relative;
  width: 50%;
  padding: 10rem 0;
  z-index: 3;
}


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

#lp_contents .sec_mv .mv_wrap{
  display: flex;
}

#lp_contents .sec_mv .mv_wrap img{
  width: 50%;
}

#lp_contents .sec_mv .lead_wrap{
  position: relative;
  padding: 5rem 2rem 15rem;
}

#lp_contents .sec_mv h1{
  width: 45rem;
  margin: 0 auto 4rem;
}

#lp_contents .sec_mv .lead{
  line-height: 2.5;
}

#lp_contents .movie_area{
  width: 80rem;
  height: 45rem;
  margin: 10rem auto 0;
}

#lp_contents .movie_inner{
  padding:56.25% 0 0 0;
  position:relative;
}


/* sec_cnpt
==================================*/

#lp_contents .sec_cnpt{
  background-color: var(--color-lp_bg_2);
}

#lp_contents .sec_cnpt .ttl{
  font-size: 6rem;
  margin-bottom: 3rem;
}

#lp_contents .sec_cnpt .lead_ttl{
  font-size: 2rem;
  margin-bottom: 3rem;
}

#lp_contents .sec_cnpt .lead_ttl big{
  display: block;
  font-size: 2.6rem;
  margin-top: 0.5rem;
}

#lp_contents .sec_cnpt .txt_blk{
  display: grid;
  gap: 1.8rem;
}

#lp_contents .sec_cnpt .txt_blk p{
  font-size: 1.4rem;
  line-height: 2.5;
  opacity: 0;
}


/* sec_item
==================================*/

#lp_contents .sec_item .txt_wrap{
  padding-top: 19rem;
}

#lp_contents .sec_item .ttl{
  position: absolute;
  top: 3rem;
  left: 0;
  right: 0;
  margin: auto;
}

#lp_contents .sec_item .img_blk{
  position: relative;
  margin: 0 auto 2.5rem;
}

#lp_contents .sec_item .img_blk figure{
  position: relative;
  width: 42rem;
  margin: auto;
  z-index: 2;
}

#lp_contents .sec_item .img_blk .path{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  z-index: 1;
  transition-delay: 0.5s;
}

#lp_contents .sec_item .item_name{
  font-family: var(--font-lp_script);
  font-size: 6rem;
  letter-spacing: 0;
  line-height: 1;
  margin-top: 4rem;
}

#lp_contents .sec_item .item_name small{
  display: block;
  color: #fff;
  font-family: var(--font-lp_mincho);
  font-weight: 400;
  font-size: 1.8rem;
  margin-top: 0.5rem;
}

#lp_contents .sec_item .cv_blk{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
}

#lp_contents .sec_item .item_price{
  font-family: var(--font-lp_serif);
  font-size: 2.4rem;
}

/*------------ point_blk ------------*/
#lp_contents .sec_item .point_blk{
  width: 56rem;
  margin: 8rem auto 0;
  padding: 3rem;
  background-color: var(--color-lp_tertiary);
  color: var(--color-lp_secondary);
}

#lp_contents .sec_item .point_blk ul{
  display: grid;
  gap: 2rem;
}

#lp_contents .sec_item .point_blk li{
  position: relative;
}

#lp_contents .sec_item .point_blk li:not(:last-child){
  padding-bottom: 2rem;
  background-image : linear-gradient(to right, var(--color-lp_secondary) 2px, transparent 2px);
  background-size: 4px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}

#lp_contents .sec_item .point_ttl{
  font-family: var(--font-lp_serif);
  font-size: 4.2rem;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 1rem;
}

#lp_contents .sec_item .point_ttl small{
  font-style: italic;
  font-size: 2.3rem;
}

#lp_contents .sec_item .point_lead{
  font-family: var(--font-lp_mincho);
  font-size: 1.6rem;
}

/*------------ sec_oil ------------*/
#lp_contents .sec_oil .ttl{
  transform: translateX(-23rem);
}

#lp_contents .sec_oil .point_blk .point_2 img{
  width: 35rem;
  margin: 1rem auto 0;
}

#lp_contents .sec_oil .point_blk .point_3 p{
  position: relative;
  z-index: 2;
}

#lp_contents .sec_oil .point_blk .point_3 img{
  width: 22rem;
  position: absolute;
  top: -13rem;
  right: -3rem;
  z-index: 1;
}

#lp_contents .sec_oil .point_blk .point_4 img{
  width: 40rem;
  margin: 1rem auto 0;
}

/*------------ sec_wash ------------*/
#lp_contents .sec_wash .ttl{
  transform: translateX(-21.8rem);
}

#lp_contents .sec_wash .point_blk .point_2{
  padding-bottom: 3rem;
}

#lp_contents .sec_wash .point_blk .point_2 img{
  width: 40rem;
  margin: 1.5rem auto 0;
}

#lp_contents .sec_wash .point_blk .point_3 p{
  position: relative;
  z-index: 2;
}

#lp_contents .sec_wash .point_blk .point_3 img{
  width: 18rem;
  position: absolute;
  top: -7rem;
  right: -3rem;
  z-index: 1;
}

#lp_contents .sec_wash .point_blk .point_5 img{
  width: 40rem;
  margin: 1rem auto 0;
}


/* sec_prof
==================================*/

#lp_contents .sec_prof{
  width: 110rem;
  margin: auto;
  padding: 15rem 0;
}

#lp_contents .sec_prof .prof_wrap{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

#lp_contents .sec_prof .img_blk{
  width: 55rem;
}

#lp_contents .sec_prof .ttl{
  font-size: 6rem;
  margin-bottom: 4rem;
}

#lp_contents .sec_prof .ttl small{
  display: block;
  font-size: 3.2rem;
  margin-bottom: 1rem;
}

#lp_contents .sec_prof .prof_txt{
  font-size: 1.4rem;
  line-height: 2.5;
}

#lp_contents .sec_prof .link_btn{
  width: 50rem;
  height: 7rem;
  font-size: 2.8rem;
  margin: 10rem auto 0;
}


/*--------------------------------
            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.4rem;
  }
  #lp_contents .sp_only{display: block;}
  #lp_contents .pc_only{display: none;}

  #lp_contents p {
    font-size: 1.4rem;
  }

  /*------------ title ------------*/
  #lp_contents .ttl{
    position: absolute;
    font-size: 10rem;
    z-index: 3;
  }

  #lp_contents .lead_ttl{
    font-size: 1.8rem;
    margin-bottom: 3rem;
  }

  /*------------ link_btn ------------*/
  #lp_contents .link_btn{
    width: 15rem;
    height: 4rem;
    font-size: 1.7rem;
  }


  /* nav_list
  ==================================*/

  #lp_contents .nav_list{
    height: 4rem;
    font-size: 2rem;
  }


  /* section
  ==================================*/

  #lp_contents .img_wrap{
    width: 100%;
  }

  #lp_contents .txt_wrap{
    width: 100%;
    padding: 8rem 0;
  }


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

  #lp_contents .sec_mv .mv_wrap img{
    width: 100%;
  }

  #lp_contents .sec_mv .lead_wrap{
    padding: 12rem 2rem 8rem;
  }

  #lp_contents .sec_mv h1{
    position: absolute;
    width: 30rem;
    top: -2rem;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 2;
  }

  #lp_contents .movie_area{
    width: 39rem;
    height: 22rem;
    margin: 5rem auto 0;
  }


  /* sec_cnpt
  ==================================*/

  #lp_contents .sec_cnpt .ttl{
    top: -2rem;
    left: 0;
    right: 0;
    margin: auto;
  }

  #lp_contents .sec_cnpt .lead_ttl{
    font-size: 1.7rem;
    margin-bottom: 4rem;
  }

  #lp_contents .sec_cnpt .lead_ttl big{
    font-size: 2rem;
    margin-top: 0.5rem;
  }

  #lp_contents .sec_cnpt .txt_blk{
    gap: 1.6rem;
  }

  #lp_contents .sec_cnpt .txt_blk p{
    font-size: 1.3rem;
  }


  /* sec_item
  ==================================*/

  #lp_contents .sec_item .txt_wrap{
    padding-top: 9rem;
  }

  #lp_contents .sec_item .ttl{
    top: -3rem;
  }

  #lp_contents .sec_item .img_blk{
    margin: 0 auto 2.5rem;
  }

  #lp_contents .sec_item .img_blk figure{
    width: 30rem;
  }

  #lp_contents .sec_item .item_name{
    font-size: 4.8rem;
    margin-top: 3rem;
  }

  #lp_contents .sec_item .item_name small{
    font-size: 1.5rem;
    margin-top: 0.5rem;
  }

  #lp_contents .sec_item .cv_blk{
    gap: 2rem;
    margin-top: 3rem;
  }

  #lp_contents .sec_item .item_price{
    font-size: 2rem;
  }

  /*------------ point_blk ------------*/
  #lp_contents .sec_item .point_blk{
    width: 39rem;
    margin: 6rem auto 0;
  }

  #lp_contents .sec_item .point_blk ul{
    gap: 2.5rem;
  }

  #lp_contents .sec_item .point_blk li:not(:last-child){
    padding-bottom: 2.5rem;
  }

  #lp_contents .sec_item .point_ttl{
    font-size: 3.6rem;
  }

  #lp_contents .sec_item .point_ttl small{
    font-size: 1.8rem;
  }

  #lp_contents .sec_item .point_lead{
    font-size: 1.5rem;
  }

  /*------------ sec_oil ------------*/
  #lp_contents .sec_oil .ttl{
    transform: translateX(-11.5rem);
  }

  #lp_contents .sec_oil .point_blk .point_2 img{
    width: 33rem;
  }

  #lp_contents .sec_oil .point_blk .point_3 img{
    width: 18rem;
    top: -12rem;
  }

  #lp_contents .sec_oil .point_blk .point_4 img{
    width: 33rem;
  }

  /*------------ sec_wash ------------*/
  #lp_contents .sec_wash .ttl{
    transform: translateX(-7.5rem);
  }

  #lp_contents .sec_wash .point_blk .point_2{
    padding-bottom: 3rem;
  }

  #lp_contents .sec_wash .point_blk .point_2 img{
    width: 33rem;
  }

  #lp_contents .sec_wash .point_blk .point_3 img{
    width: 14rem;
    top: -5rem;
  }

  #lp_contents .sec_wash .point_blk .point_5 img{
    width: 33rem;
  }


  /* sec_prof
  ==================================*/

  #lp_contents .sec_prof{
    width: 39rem;
    padding: 19rem 0 8rem;
  }

  #lp_contents .sec_prof .prof_wrap{
    flex-direction: column-reverse;
    gap: 4rem;
  }

  #lp_contents .sec_prof .img_blk{
    width: 27rem;
    margin: auto;
  }

  #lp_contents .sec_prof .ttl{
    font-size: 4.5rem;
    position: absolute;
    top: 6.5rem;
    left: 0;
    right: 0;
    margin: auto;
  }

  #lp_contents .sec_prof .ttl small{
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  #lp_contents .sec_prof .prof_txt{
    font-size: 1.3rem;
  }

  #lp_contents .sec_prof .link_btn{
    width: 100%;
    height: 6rem;
    font-size: 2rem;
    margin: 8rem auto 0;
  }
}