@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: "linotype-didot", "Noto Serif JP", serif;
  --color-lp_bg: #fff;
  --color-lp_bg_gray: #F5F5F5;
  --color-lp_line: #D1D1D1;
  --color-lp_font: #000;
  --color-lp_morning: #E67020;
  --color-lp_morning_2: #E67020;
  --color-lp_morning_bg: #EFD79C;
  --color-lp_night: #5B8BA0;
  --color-lp_night_2: #FFD365;
  --color-lp_night_bg: #5B8BA0;
  --color-lp_white: #fff;
  --color-lp_btn: #444444;
}

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

/* Fade In
==================================*/
@keyframes opa {
  0% {
    opacity: 0;
    filter: blur(10px);
  }

  100% {
    opacity: 1;
    filter: blur(0);
  }
}

#lp_contents .Gradualfade {
  opacity: 0;
  animation: opa 1s cubic-bezier(0.51, 0.21, 0.41, 1) 0s 1 forwards;
  -webkit-mask-image: linear-gradient(0deg, transparent, transparent 39.6666666667%, rgba(0, 0, 0, 0.02) 43.3333333333%, rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.18) 46.6666666667%, rgba(0, 0, 0, 0.32) 48.3333333333%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.68) 51.6666666667%, rgba(0, 0, 0, 0.82) 53.3333333333%, rgba(0, 0, 0, 0.92) 55%, rgba(0, 0, 0, 0.98) 56.6666666667%, #000 58.3333333333%, #000);
  mask-image: linear-gradient(0deg, transparent, transparent 39.6666666667%, rgba(0, 0, 0, 0.02) 43.3333333333%, rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.18) 46.6666666667%, rgba(0, 0, 0, 0.32) 48.3333333333%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.68) 51.6666666667%, rgba(0, 0, 0, 0.82) 53.3333333333%, rgba(0, 0, 0, 0.92) 55%, rgba(0, 0, 0, 0.98) 56.6666666667%, #000 58.3333333333%, #000);
  -webkit-mask-size: 100% max(300%, 100vh);
  mask-size: 100% max(300%, 100vh);
  -webkit-mask-position: center 100%;
  mask-position: center 100%;
  -webkit-mask-repeat: none;
  mask-repeat: none;
  transform: translateZ(0);
  transition: -webkit-mask-position 1.5s linear;
  transition: mask-position 1.5s linear;
  transition: mask-position 1.5s linear, -webkit-mask-position 1.5s linear;
}

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

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

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


/* line
==================================*/
#lp_contents .line{
  position: relative;
}

#lp_contents .line:before{
  content: '';
  position: absolute;
  top: calc(50 * (var(--rate)));
  left: calc(10 * (var(--rate)));
  z-index: 1;
  display: block;
  width: 1px;
  height: 0;
  background-image : linear-gradient(to bottom, #000 1px, transparent 1px);
  background-size: calc(1 * (var(--rate))) calc(4 * (var(--rate)));
  background-repeat: repeat-y;
  background-position: left top;
  transition: all 2s;
  transition-delay: 1.5s;
}

#lp_contents .line.is-show:before{
  height: calc(100% - calc(100 * (var(--rate))));
  height: 100%;
}

#lp_contents .line.is-show:last-child:before{
  height: calc(100% - calc(50 * (var(--rate))));
}


/* slider
==================================*/
#lp_contents .swiper-container{
  width: 100%;
  max-width: calc(350 * (var(--rate)));
}

#lp_contents .swiper-container.item_swiper,
#lp_contents .swiper-container.review_swiper{
  padding-bottom: calc(24 * (var(--rate)));
}

#lp_contents .swiper-slide{
  height: auto;
}

#lp_contents .swiper-pagination{
  line-height: 1;
  bottom: 0;
}

#lp_contents .swiper-pagination-bullet{
  width: calc(8 * (var(--rate)));
  height: calc(8 * (var(--rate)));
  background: #000;
  opacity: 0.1;
}

#lp_contents .swiper-pagination-bullet-active{
  opacity: 1;
  background: #000;
}

#lp_contents .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{
  margin: 0 calc(3 * (var(--rate)));
}


/* Parallax Effect
==================================*/
.cd-fixed-bg {
  position: relative;
  background-size: cover;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 2;
  background-image: url('../img/251010/about_bg.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 {
  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(13 * (var(--rate)));
  letter-spacing: 0.025em;
  line-height: 2;
  text-align: justify;

  display: flex;
  justify-content: center;

  color: var(--color-lp_font);
  background-color: #FFF9F7;
  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;
  margin: calc(60 * (var(--rate))) auto;
}
#lp_contents .lp_inner{
  position: relative;
  z-index: 3;
  width: 50rem;
  background-color: var(--color-lp_bg);
  order: 2;
  padding-bottom: calc(60 * (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(13 * (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)));
  line-height: 1.5;
  margin-top: calc(10 * (var(--rate)));
}
#lp_contents .bold{
  font-weight: bold;
}
#lp_contents .small{
  font-size: calc(10 * (var(--rate)));
}

#lp_contents .ttl_wrap{
  margin-bottom: calc(24 * (var(--rate)));
}
#lp_contents .ttl_main{
  display: grid;
  gap: calc(8 * (var(--rate)));
  text-align: center;
  font-family: var(--font-lp_ttl);
  font-size: calc(36 * (var(--rate)));
  line-height: 1;
}
#lp_contents .ttl_main span{
  display: block;
}
#lp_contents .ttl_main .small{
  font-size: calc(13 * (var(--rate)));
}
#lp_contents .ttl_main .day{
  font-size: calc(18 * (var(--rate)));
  margin-top: calc(8 * (var(--rate)));
}
#lp_contents .sub_ttl_wrap{
  text-align: center;
  display: grid;
  gap: calc(8 * (var(--rate)));
  margin-bottom: calc(14 * (var(--rate)));
}
#lp_contents .ttl_sub{
  display: grid;
  gap: calc(10 * (var(--rate)));
  font-family: var(--font-lp_ttl);
  font-size: calc(27 * (var(--rate)));
  font-weight: 500;
  line-height: 1;
}

#lp_contents .ttl_sub .small{
  font-size: calc(14 * (var(--rate)));
}


/*------------ button ------------*/
#lp_contents .link_btn{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  width: calc(350 * (var(--rate)));
  height: calc(60 * (var(--rate)));
  font-family: var(--font-lp_ttl);
  font-size: calc(15 * (var(--rate)));
  line-height: 1;
  background-color: var(--color-lp_btn);
  color: var(--color-lp_white);
}

#lp_contents .buy_btn{
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(42 * (var(--rate)));
  height: calc(18 * (var(--rate)));
  padding-top: calc(2 * (var(--rate)));
  font-family: var(--font-lp_ttl);
  font-size: calc(12 * (var(--rate)));
  line-height: 1;
  border: 1px solid;
}



/* nav_list
==================================*/
#lp_contents .nav_list ul{
  display: grid;
  gap: 2.4rem;
  text-align: center;
  font-family: var(--font-lp_ttl);
  font-size: 2.4rem;
  line-height: 1;
}

#lp_contents .nav_list .nav_1{
  color: var(--color-lp_morning);
}

#lp_contents .nav_list .nav_2{
  color: var(--color-lp_night);
}

#lp_contents .nav_list img{
  display: inline-block;
  width: 2rem;
  margin-right: 0.8rem;
}

#lp_contents .nav_list .nav_1 img{
  filter: invert(46%) sepia(52%) saturate(1386%) hue-rotate(352deg) brightness(97%) contrast(85%);
}

#lp_contents .nav_list .nav_2 img{
  filter: invert(58%) sepia(37%) saturate(399%) hue-rotate(153deg) brightness(82%) contrast(89%);
}



/* sec_mv
==================================*/
#lp_contents .sec_mv{
  margin: auto;
}

#lp_contents .sec_mv .lead{
  padding: calc(40 * (var(--rate))) 0 calc(50 * (var(--rate)));
  text-align: center;
  font-family: var(--font-lp_ttl);
  font-size: calc(14 * (var(--rate)));
  font-weight: 500;
}

#lp_contents .sec_mv .nav_list ul{
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0;
}

#lp_contents .sec_mv .nav_list a{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(50 * (var(--rate)));
  font-size: calc(17 * (var(--rate)));
  border-bottom: 1px solid var(--color-lp_line);
}

#lp_contents .sec_mv .nav_list li:nth-child(odd) a{
  border-right: 1px solid var(--color-lp_line);
}

#lp_contents .sec_mv .nav_list .nav_1 a{
  background-image: url(../img/251010/morning_bg.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
  font-size: calc(24 * (var(--rate)));
  color: var(--color-lp_white);
  border-bottom-width: 0;
}

#lp_contents .sec_mv .nav_list .nav_2 a{
  background-image: url(../img/251010/night_bg.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
  font-size: calc(24 * (var(--rate)));
  color: var(--color-lp_white);
  border-width: 0;
}



/* sec_cmpn
==================================*/
#lp_contents .sec_cmpn{
  width: calc(350 * (var(--rate)));
  padding: calc(40 * (var(--rate))) calc(20 * (var(--rate)));
  border: 1px solid;
}

#lp_contents .sec_cmpn .cmpn_list{
  display: grid;
  gap: calc(20 * (var(--rate)));
}

#lp_contents .sec_cmpn .cmpn_list dl{
  padding-top: calc(20 * (var(--rate)));
  border-top: 1px dotted var(--color-lp_line);
}

#lp_contents .sec_cmpn .cmpn_num{
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(30 * (var(--rate)));
  aspect-ratio: 1/1;
  margin: 0 auto calc(16 * (var(--rate)));
  padding-top: calc(2 * (var(--rate)));
  border: 1px solid;
  font-family: var(--font-lp_ttl);
  font-size: calc(16 * (var(--rate)));
  line-height: 1;
}

#lp_contents .sec_cmpn .cmpn_list dd{
  display: grid;
  gap: calc(20 * (var(--rate)));
}

#lp_contents .sec_cmpn .cmpn_txt{
  text-align: center;
  font-family: var(--font-lp_ttl);
  line-height: 1.75;
}

#lp_contents .sec_cmpn .cmpn_txt span{
  display: inline-block;
  line-height: 1.5;
  margin-top: calc(4 * (var(--rate)));
}

#lp_contents .sec_cmpn .cmpn_txt .large{
  font-size: calc(30 * (var(--rate)));
}

#lp_contents .sec_cmpn .cmpn_txt .medium{
  font-size: calc(20 * (var(--rate)));
}

#lp_contents .sec_cmpn .mini-cosme_lineup{
  display: grid;
  gap: calc(20 * (var(--rate)));
  text-align: center;
}

#lp_contents .sec_cmpn .mini-cosme_ttl{
  font-family: var(--font-lp_ttl);
  font-weight: 600;
  line-height: 1;
}

#lp_contents .sec_cmpn .mini-cosme_lineup ul{
  display: flex;
  gap: calc(5 * (var(--rate)));
  justify-content: center;
}

#lp_contents .sec_cmpn .mini-cosme_lineup li{
  position: relative;
  display: grid;
  align-content: start;
  gap: calc(5 * (var(--rate)));
  width: calc(100 * (var(--rate)));
}

#lp_contents .sec_cmpn .mini-cosme_num{
  font-family: var(--font-lp_ttl);
  font-size: calc(28 * (var(--rate)));
  line-height: 1;
  position: absolute;
  left: calc(5 * (var(--rate)));
  z-index: 2;
}

#lp_contents .sec_cmpn .mini-cosme_lineup figure{
  width: calc(80 * (var(--rate)));
  margin: auto;
}

#lp_contents .sec_cmpn .mini-cosme_lineup figcaption{
  font-family: var(--font-lp_ttl);
  font-size: calc(11 * (var(--rate)));
  line-height: 1.5;
  letter-spacing: 0;
}

#lp_contents .sec_cmpn .link_btn{
  width: calc(250 * (var(--rate)));
  height: calc(45 * (var(--rate)));
  font-size: calc(14 * (var(--rate)));
}



/* sec_routine
==================================*/
#lp_contents .sec_routine{
  margin: auto;
}

/*------------ ttl_wrap ------------*/
#lp_contents .sec_routine .ttl_wrap{
  margin: auto;
  padding: calc(50 * (var(--rate))) calc(15 * (var(--rate)));
  color: var(--color-lp_white);
  background-repeat: no-repeat;
  background-size: cover;
}

#lp_contents .sec_routine .ttl_wrap .ttl_main{
  font-size: calc(40 * (var(--rate)));
}

#lp_contents .sec_routine .ttl_wrap .routine_lineup{
  margin-top: calc(16 * (var(--rate)));
}

#lp_contents .sec_routine .ttl_wrap .cmnt_txt{
  margin-top: calc(24 * (var(--rate)));
}

#lp_contents .sec_routine .ttl_wrap .cmnt_ttl{
  margin-bottom: calc(12 * (var(--rate)));
  text-align: center;
  font-family: var(--font-lp_ttl);
  font-size: calc(19 * (var(--rate)));
  line-height: 1;
}

/*------------ routine_wrap ------------*/
#lp_contents .sec_routine .routine_wrap{
  position: relative;
  display: grid;
  gap: calc(50 * (var(--rate)));
  padding: calc(50 * (var(--rate))) 0 calc(50 * (var(--rate))) calc(10 * (var(--rate)));
  z-index: 2;
}

#lp_contents .sec_routine .step_ttl{
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: calc(20 * (var(--rate))) 0;
  font-family: var(--font-lp_ttl);
}

#lp_contents .sec_routine .step_ttl img{
  width: calc(22 * (var(--rate)));
  margin-right: calc(10 * (var(--rate)));
}

#lp_contents .sec_routine .step_ttl .step_ttl_inner{
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: calc(8 * (var(--rate))) 0;
}

#lp_contents .sec_routine .step_ttl .step_num{
  margin-right: calc(16 * (var(--rate)));
  font-size: calc(27 * (var(--rate)));
  line-height: 1;
}

#lp_contents .sec_routine .step_ttl .step_num .big{
  font-size: calc(40 * (var(--rate)));
}

#lp_contents .sec_routine .step_ttl .step_txt{
  font-size: calc(18 * (var(--rate)));
  font-weight: 600;
  line-height: 1;
}

#lp_contents .sec_routine .step_ttl .step_txt .big{
  font-size: calc(24 * (var(--rate)));
}

#lp_contents .sec_routine .step_inner{
  display: grid;
  gap: calc(25 * (var(--rate)));
  padding-left: calc(30 * (var(--rate)));
}

#lp_contents .sec_routine .step_lead{
  padding-right: calc(15 * (var(--rate)));
}

/*------------ item_blk ------------*/
#lp_contents .sec_routine .item_list li{
  display: grid;
  gap: calc(25 * (var(--rate)));
  background-color: var(--color-lp_white);
  padding: calc(25 * (var(--rate))) 0 calc(20 * (var(--rate))) calc(15 * (var(--rate)));
  color: var(--color-lp_font);
}

#lp_contents .sec_routine .item_lead{
  padding: 0 calc(16 * (var(--rate)));
  text-align: center;
  font-family: var(--font-lp_ttl);
  font-size: calc(16 * (var(--rate)));
  font-weight: 600;
  line-height: 1.75;
}

#lp_contents .sec_routine .item_inner{
  display: flex;
  gap: calc(15 * (var(--rate)));
}

#lp_contents .sec_routine .txt_cont{
  display: grid;
  align-content: start;
  gap: calc(10 * (var(--rate)));
  width: calc(165 * (var(--rate)));
}

#lp_contents .sec_routine .item_detail{
  display: grid;
  align-content: start;
  gap: calc(8 * (var(--rate)));
}

#lp_contents .sec_routine .item_name{
  text-align: left;
  font-family: var(--font-lp_ttl);
  font-size: calc(14 * (var(--rate)));
  line-height: 1.5;
}

#lp_contents .sec_routine .item_price{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-lp_ttl);
  font-size: calc(17 * (var(--rate)));
  line-height: 1;
}

#lp_contents .sec_routine .item_txt{
  font-size: calc(12 * (var(--rate)));
  line-height: 1.75;
}

#lp_contents .sec_routine .img_cont{
  width: calc(155 * (var(--rate)));
}

/*------------ review_blk ------------*/
#lp_contents .sec_routine .review_star{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(5 * (var(--rate)));
  font-family: var(--font-lp_ttl);
}

#lp_contents .sec_routine .review_star .star{
  position: relative;
  width: calc(80 * (var(--rate)));
  height: calc(12 * (var(--rate)));
  background-image: url(../img/251010/star_1.svg);
  background-size: calc(80 * (var(--rate))) calc(12 * (var(--rate)));
  background-repeat: no-repeat;
}

#lp_contents .sec_routine .review_star .star:before{
  content: '';
  display: block;
  width: calc(80 * (var(--rate)));
  height: calc(12 * (var(--rate)));
  background-image: url(../img/251010/star_2.svg);
  background-size: calc(80 * (var(--rate))) calc(12 * (var(--rate)));
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}

#lp_contents .sec_routine .review_list{
  width: calc(350 * (var(--rate)));
}

#lp_contents .sec_routine .review_list li{
  margin-right: calc(10 * (var(--rate)));
  padding: calc(16 * (var(--rate))) calc(15 * (var(--rate)));
  max-width: calc(300 * (var(--rate)));
  border: 1px solid;
}

#lp_contents .sec_routine .review_list .small{
  display: block;
  margin-top: calc(5 * (var(--rate)));
  width: 100%;
  text-align: right;
}

/*------------ key_blk ------------*/
#lp_contents .sec_routine .key_list ul{
  display: flex;
  gap: calc(10 * (var(--rate)));
}

#lp_contents .sec_routine .key_list li{
  display: flex;
  align-items: center;
  width: calc(170 * (var(--rate)));
  border: 1px solid var(--color-lp_white);
}

#lp_contents .sec_routine .key_img{
  width: calc(60 * (var(--rate)));
  height: 100%;
  min-height: calc(60 * (var(--rate)));
  object-fit: cover;
}

#lp_contents .sec_routine .key_txt{
  width: calc(110 * (var(--rate)));
  padding: calc(8 * (var(--rate))) calc(10 * (var(--rate)));
  font-size: calc(10 * (var(--rate)));
  line-height: 1.5;
}

/*------------ morning ------------*/
#lp_contents .morning .ttl_wrap{
  background-image: url(../img/251010/morning_bg.jpg);
}

#lp_contents .morning .routine_wrap,
#lp_contents .morning .routine_wrap .step_ttl{
  background-color: var(--color-lp_morning_bg);
}

#lp_contents .morning .routine_wrap .step_1 .review_star .star:before{
  width: calc(75 * (var(--rate)));
}

#lp_contents .morning .routine_wrap .step_2 .review_star .star:before{
  width: calc(73 * (var(--rate)));
}

#lp_contents .morning .routine_wrap .step_3 .review_star .star:before{
  width: calc(74 * (var(--rate)));
}

#lp_contents .morning .routine_wrap .special .step_ttl{
  color: var(--color-lp_morning_2);
}

#lp_contents .morning .routine_wrap .special .step_ttl img{
  filter: invert(49%) sepia(52%) saturate(1111%) hue-rotate(347deg) brightness(94%) contrast(91%);
}

/*------------ night ------------*/
#lp_contents .night .ttl_wrap{
  background-image: url(../img/251010/night_bg.jpg);
}

#lp_contents .night .line:before{
  background-image: linear-gradient(to bottom, #fff 1px, transparent 1px);
}

#lp_contents .night .routine_wrap,
#lp_contents .night .routine_wrap .step_ttl{
  background-color: var(--color-lp_night_bg);
  color: var(--color-lp_white);
}

#lp_contents .night .routine_wrap .step_ttl img,
#lp_contents .night .review_star .star{
  filter: invert(100%) sepia(99%) saturate(0%) hue-rotate(1deg) brightness(105%) contrast(101%);
}

#lp_contents .night .routine_wrap .step_1 .review_star .star:before,
#lp_contents .night .routine_wrap .special .review_star .star:before{
  width: calc(75 * (var(--rate)));
}

#lp_contents .night .routine_wrap .step_2 .review_star .star:before{
  width: calc(73.5 * (var(--rate)));
}

#lp_contents .night .routine_wrap .step_3 .review_star .star:before{
  width: calc(74 * (var(--rate)));
}

#lp_contents .night .routine_wrap .step_4 .review_star .star:before{
  width: calc(73.5 * (var(--rate)));
}

#lp_contents .night .swiper-pagination-bullet-active,
#lp_contents .night .swiper-pagination-bullet{
  background: var(--color-lp_white);
}

#lp_contents .night .routine_wrap .special .step_ttl{
  color: var(--color-lp_night_2);
}

#lp_contents .night .routine_wrap .special .step_ttl img{
  filter: invert(100%) sepia(23%) saturate(6863%) hue-rotate(313deg) brightness(105%) contrast(101%);
}



/* sec_review
==================================*/
#lp_contents .sec_review .swiper-container{
  max-width: calc(370 * (var(--rate)));
  margin-left: auto;
  margin-right: 0;
}

#lp_contents .sec_review .review_list li{
  width: calc(216 * (var(--rate)));
  margin-right: calc(12 * (var(--rate)));
  padding: calc(15 * (var(--rate)));
  border: 1px solid var(--color-lp_line);
}

#lp_contents .sec_review .review_list a{
  display: grid;
  gap: calc(10 * (var(--rate)));
}

#lp_contents .sec_review .review_list .staff_detail_wrap{
  display: flex;
  align-items: center;
  gap: calc(10 * (var(--rate)));
}

#lp_contents .sec_review .review_list .staff_img{
  width: calc(36 * (var(--rate)));
  aspect-ratio: 1/1;
  border-radius: 100%;
  overflow: hidden;
}

#lp_contents .sec_review .review_list .staff_affiliation{
  font-size: calc(12 * (var(--rate)));
  line-height: 1;
}

#lp_contents .sec_review .review_list .staff_name{
  font-size: calc(12 * (var(--rate)));
  line-height: 1.5;
}

#lp_contents .sec_review .review_list .staff_comment{
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#lp_contents .sec_review .review_list .link_detail{
  display: none;
}



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



/* sec_about
==================================*/
#lp_contents .sec_about{
  padding: calc(50 * (var(--rate))) calc(40 * (var(--rate)));
  color: var(--color-lp_white);
}

#lp_contents .sec_about .lead{
  text-align: center;
  font-family: var(--font-lp_ttl);
  font-size: calc(18 * (var(--rate)));
  font-weight: 600;
  line-height: 1.5;
  margin-top: calc(24 * (var(--rate)));
}

#lp_contents .sec_about .about_txt{
  font-family: var(--font-lp_ttl);
}



/* sec_bnr
==================================*/
#lp_contents .sec_bnr{
  width: calc(350 * (var(--rate)));
  margin: auto;
}



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

    width: calc(calc(100% - 30vw) / 2);
    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(270px, calc(270 * (100vw / 1400)));
  }

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


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

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

  #lp_contents a:hover{opacity: 1}
}