@charset "UTF-8";

:root {
  --rate: 60rem / 430;
  --font-lp_base: "Lato","Noto Sans JP","ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN,HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
  --font-lp_ttl: 'Optima',"Marcellus", serif;
  --font-lp_eng: "brandon-grotesque", san-serif;
  --color-lp_bg: #F8F0F4;
  --color-lp_font: #444444;
  --color-lp_sub: #888888;
  --color-lp_primary: #DD2C49;
  --color-lp_Lauren: #C10E49;
  --color-lp_Lain: #F74848;
  --color-lp_secondary: #65A3D9;
  --color-lp_tertiary: #EDF1FA;
  --color-lp_grad: transparent linear-gradient(90deg, #c10d49 0%, #f74749 100%) 0% 0% no-repeat padding-box;
  --color-lp_shadow: 6px 6px 15px rgba(0, 0, 0, 0.15);
}

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

@keyframes opa {
  0% {
    opacity: 0;
    filter: blur(10px);
  }

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

@keyframes arrow {
  0% {
    scale: 1 1;
    transform-origin: bottom center;
  }

  49% {
    scale: 1 0;
    transform-origin: bottom center;
  }

  51% {
    scale: 1 0;
    transform-origin: top center;
  }

  100% {
    scale: 1 1;
    transform-origin: top center;
  }
}

@keyframes yurayura {
  0% , 100%{
      transform: rotate(4deg);
  }
  50%{
      transform: rotate(-4deg);
  }
}

@keyframes fuwafuwa {
  0% , 100%{
      transform: translateY(0);
  }
  50%{
      transform: translateY(calc(-10 * (var(--rate))));
  }
}

@keyframes fuwafuwa-pc {
  0% , 100%{
      transform: translateY(0);
  }
  50%{
      transform: translateY(-1rem);
  }
}

@keyframes bounce {
  0% , 100%{
      transform: scale(1.0);
  }
  50%{
      transform: scale(1.15);
  }
}


/* textAnime
==================================*/
#lp_contents .js-textAnime span {
  transition: all 0.5s;
  opacity: 0;
}


/* zoom
==================================*/
#lp_contents .zoom {
  opacity: 0;
  -ms-filter: blur(30px);
  filter: blur(30px);
  transform: scale(1.2);
  transition: all 2s;
}

#lp_contents .zoom.is-show {
  opacity: 1;
  -ms-filter: blur(0);
  filter: blur(0);
  transform: scale(1);
}


/* line
==================================*/
#lp_contents .line{
  display: block;
  position: relative;
  width: fit-content;
  margin: auto;
  padding: 0 calc(2 * (var(--rate))) calc(4 * (var(--rate)));
  font-size: calc(20 * (var(--rate)));
  font-weight: bold;
  line-height: 1;
}

#lp_contents .line:before{
  content: '';
  display: block;
  width: 0;
  height: calc(18 * (var(--rate)));
  background: linear-gradient(to right, rgb(193 13 73 / 30%) 0%, rgb(247 71 73 / 20%) 100%);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 50%;
  transition: all 1s;
  position: absolute;
  left: 0;
  bottom: 0;
  mix-blend-mode: multiply;
  opacity: 0;
}

#lp_contents .line.is-show:before{
  width: 100%;
  opacity: 1;
}


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

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

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

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

#lp_contents .delay1{
  transition-delay: 0.25s;
}
#lp_contents .delay2{
  transition-delay: 0.5s;
}
#lp_contents .delay3{
  transition-delay: 0.75s;
}
#lp_contents .delay4{
  transition-delay: 1s;
}

#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 2s linear;
  transition: mask-position 3s linear;
  transition: mask-position 3s linear, -webkit-mask-position 3s linear;
}

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


/* modal
==================================*/
#lp_contents .modal{
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 999;
}
#lp_contents .modal__bg{
  position: absolute;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
}
#lp_contents .modal__content{
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  width: calc(390* (var(--rate)));
  max-width: 60rem;
  max-height: 90svh;
  overflow-y: scroll;
  border-radius: 1.5rem;
}
#lp_contents .close-btn {
  position: fixed;
  top: calc(20* (var(--rate)));
  right: calc(20* (var(--rate)));
  z-index: 5;
  display: block;
  background-color: #fff;
  width: calc(36* (var(--rate)));
  aspect-ratio: 1 / 1;
  border-radius: 100%;
  box-shadow: var(--color-lp_shadow);
}
#lp_contents .close-btn:before,
#lp_contents .close-btn:after{
  content: '';
  width: calc(12 * (var(--rate)));
  height: 1px;
  background-color: var(--color-lp_sub);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
#lp_contents .close-btn:after{
  transform: rotate(-45deg);
}


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

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

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

#footer{
  position: relative;
  z-index: 100;
}

#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.075em;
  line-height: 2;
  text-align: center;

  display: flex;
  justify-content: center;

  color: var(--color-lp_font);
  background-color: var(--color-lp_bg);
  position: relative;
  /*overflow: hidden;*/
}

#lp_contents:before{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(-238.438deg, #edc1d6 0%, #fff 23.65%, #ecf8f7 39.41%, #e4ecfa 53.2%, #fff 72.91%, #f5e1ee 100%);
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
}

#lp_contents .sp_only{display: none;}
#lp_contents img{width: 100%;display: block;height: auto;vertical-align: sub;}
#lp_contents a{display: block;width: 100%;cursor: pointer;transition: all 0.5s;color: inherit;}
#lp_contents a:hover{opacity: .8; pointer-events: painted;}
#lp_contents a.no_link {
  opacity: 1;
  pointer-events: none;
}
#lp_contents ul li,#lp_contents ol li{list-style: none;}

/*------------ 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(11 * (var(--rate)));
}
#lp_contents p .note{
  margin-top: 0;
}
#lp_contents .bold{
  font-weight: bold;
}
#lp_contents .small{
  font-size: calc(10 * (var(--rate)));
}
#lp_contents .lead{
  font-size: calc(15 * (var(--rate)));
  font-weight: bold;
  letter-spacing: 0.15em;
}

/*------------ Title ------------*/
#lp_contents .ttl_wrap{
  display: grid;
  gap: calc(36 * (var(--rate)));
}

#lp_contents .ttl_wrap .ttl{
  font-family: var(--font-lp_ttl);
  font-size: calc(22 * (var(--rate)));
  line-height: 1;
  letter-spacing: 0.2em;
  color: var(--color-lp_primary);
}

#lp_contents .ttl_wrap .ttl .big{
  font-size: calc(29 * (var(--rate)));
}

#lp_contents .lead_wrap{
  display: grid;
  gap: calc(24 * (var(--rate)));
}

#lp_contents .lead_wrap .line{
  margin-top: calc(6 * (var(--rate)));
}

#lp_contents .lead_wrap .line + .line {
    margin-top: calc(12 * (var(--rate)));
}

/*------------ mark ------------*/
#lp_contents .plus{
  display: inline-block;
  width: calc(18 * (var(--rate)));
  aspect-ratio: 1/1;
  border-radius: 100%;
  position: relative;
  transition: all 0.5s;
}

#lp_contents .plus:before,
#lp_contents .plus:after{
  content: '';
  display: block;
  width: calc(8 * (var(--rate)));
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

#lp_contents .plus:after{
  rotate: 90deg;
}

#lp_contents a:hover .plus{
  rotate: 90deg;
}

#lp_contents .arrow{
  display: inline-block;
  width: calc(10 * (var(--rate)));
  height: calc(5 * (var(--rate)));
  transition: all 0.5s;
}

#lp_contents .arrow:before{
  content: '';
  display: inline-block;
  width: calc(7.5 * (var(--rate)));
  height: calc(7.5 * (var(--rate)));
  border-right: 1px solid var(--color-lp_primary);
  border-bottom: 1px solid var(--color-lp_primary);
  rotate: 45deg;
  transform: translate(calc(-7.5 * (var(--rate))),calc(-7.5 * (var(--rate))));
}

#lp_contents a:hover .arrow{
  transform: translateY(calc(5 * (var(--rate))));
}

/*------------ link ------------*/
#lp_contents .btn_area{
  width: 100%;
  max-width: calc(250 * (var(--rate)));
  display: flex;
  justify-content: center;
  gap: calc(10 * (var(--rate)));
  margin: auto;
}

#lp_contents .link_btn{
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(250 * (var(--rate)));
  height: calc(56 * (var(--rate)));
  border-radius: calc(100 * (var(--rate)));
  font-size: calc(14 * (var(--rate)));
  font-weight: bold;
  letter-spacing: 0.15em;
  color: #fff;
  background: var(--color-lp_grad);
  box-shadow: var(--color-lp_shadow);
  margin: auto;
}

#lp_contents .btn_area .link_btn{
  width: calc(calc(100% - calc(10 * (var(--rate)))) / 2);
  height: calc(32 * (var(--rate)));
  font-size: calc(12 * (var(--rate)));
  box-shadow: initial;
}

#lp_contents .link_btn.detail {
  background: #fff;
  color: var(--color-lp_primary);
  border: 1px solid var(--color-lp_primary);
}

#lp_contents .all_btn{
  width: calc(360 * (var(--rate)));
  height: calc(80 * (var(--rate)));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-color: #FBECFC;
  font-size: calc(16 * (var(--rate)));
  line-height: 1;
  margin: calc(60 * (var(--rate))) auto 0;
}
#lp_contents .all_btn img{
  width: calc(80 * (var(--rate)));
}

#lp_contents .txt_link{
  color: var(--color-lp_sub);
  text-decoration: underline;
  font-size: calc(12 * (var(--rate)));
}


/* section
==================================*/
#lp_contents section{
  position: relative;
}

#lp_contents .sec_inner{
  display: grid;
  gap: calc(50 * (var(--rate)));
}

#lp_contents .sec_area{
  display: grid;
  gap: calc(30 * (var(--rate)));
}

#lp_contents .sec_btm{
  background-color: #fff;
  padding: calc(70 * (var(--rate))) 0;
  display: grid;
  gap: calc(70 * (var(--rate)));
}


/* sec_mv
==================================*/
#lp_contents .sec_mv{
  background: transparent linear-gradient(91deg, #FCF5FC 0%, #F3E5F4 100%) 0% 0% no-repeat padding-box;
}

/*------------ mv_wrap ------------*/
#lp_contents .sec_mv .mv_wrap .mv_img{
  display: flex;
  position: relative;
}

#lp_contents .sec_mv .mv_wrap .mv_img:before,
#lp_contents .sec_mv .mv_wrap .mv_img:after{
  content: '';
  display: block;
  width: calc(215 * (var(--rate)));
  height: 100%;
  position: absolute;
  top: 0;
  transition: all 1s;
  transition-delay: 0.5s;
}

#lp_contents .sec_mv .mv_wrap .mv_img.is-show:before,
#lp_contents .sec_mv .mv_wrap .mv_img.is-show:after{
  width: 0;
}

#lp_contents .sec_mv .mv_wrap .mv_img:before{
  background: transparent linear-gradient(150deg, #C10D49 0%, #F74749 100%) 0% 0% no-repeat padding-box;
  right: 50%;
}

#lp_contents .sec_mv .mv_wrap .mv_img:after{
  background: transparent linear-gradient(150deg, #C10D49 0%, #F74749 100%) 0% 0% no-repeat padding-box;
  right: 0%;
}

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

#lp_contents .sec_mv .mv_wrap figcaption{
  width: calc(80 * (var(--rate)));
  margin-top: calc(10 * (var(--rate)));
  margin-left: auto;
}

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

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

#lp_contents .sec_mv .mv_ttl_wrap .mv_lead{
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.15em;
}

/*------------ mv_intro ------------*/
#lp_contents .mv_intro{
  display: flex;
  justify-content: center;  
  gap: calc(50 * (var(--rate)));
  margin-top: calc(60 * (var(--rate)));
}

#lp_contents .mv_intro a{
  display: grid;
  justify-content: center;
  gap: calc(10 * (var(--rate)));
  font-size: calc(11 * (var(--rate)));
  font-weight: 500;
  line-height: 1;
}

#lp_contents .mv_intro img{
  width: calc(90 * (var(--rate)));
  animation: 4s ease-in-out 0s infinite normal none running fuwafuwa;
}

#lp_contents .mv_intro .intro_Lauren{
  color: var(--color-lp_Lauren);
}

#lp_contents .mv_intro .intro_Lauren img{
  animation-delay: 0.4s;
}

#lp_contents .mv_intro .intro_Lauren .plus{
  background-color: var(--color-lp_Lauren);
  margin: auto;
}

#lp_contents .mv_intro .intro_Lain{
  color: var(--color-lp_Lain);
  animation-delay: 0.5s;
}

#lp_contents .mv_intro .intro_Lain img{
  animation-delay: 0.8s;
}

#lp_contents .mv_intro .intro_Lain .plus{
  background-color: var(--color-lp_Lain);
  margin: auto;
}

/*------------ mv_cmpn ------------*/
#lp_contents .cmpn_wrap{
  position: relative;
  width: 100%;
  background-color: #fff;
  padding: calc(45 * (var(--rate))) 0 calc(20 * (var(--rate)));
  margin: calc(70 * (var(--rate))) auto 0;
}

#lp_contents .cmpn_wrap .cmpn_ttl{
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(350 * (var(--rate)));
  min-height: calc(28 * (var(--rate)));
  background: var(--color-lp_grad);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-radius: calc(4 * (var(--rate)));
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateY(-50%);
}

#lp_contents .cmpn_wrap .cmpn_day{
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: calc(4 * (var(--rate)));
  font-family: var(--font-lp_ttl);
  font-size: calc(24 * (var(--rate)));
  line-height: 1;
  letter-spacing: 0.1em;
}

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

#lp_contents .cmpn_wrap .txt_link{
  margin-top: calc(16 * (var(--rate)));
}

#lp_contents .cmpn_wrap .nav_list{
  margin-top: calc(30 * (var(--rate)));
}

#lp_contents .cmpn_wrap .nav_list ul{
  display: flex;
  justify-content: center;
  gap: calc(30 * (var(--rate)));
  color: var(--color-lp_primary);
}

#lp_contents .cmpn_wrap .nav_list li{
  display: grid;
  gap: calc(8 * (var(--rate)));
  font-family: var(--font-lp_ttl);
  letter-spacing: 0.15em;
  line-height: 1.5em;
}

#lp_contents .cmpn_wrap .nav_list .big{
  font-size: calc(17 * (var(--rate)));
}

#lp_contents .cmpn_wrap .nav_list .arrow{
  display: block;
  margin: calc(8 * (var(--rate))) auto 0;
}


/* sec_cmpn
==================================*/
#lp_contents .sec_cmpn{
  padding: calc(80 * (var(--rate))) calc(40 * (var(--rate)));
  border-bottom: calc(2 * (var(--rate))) solid #fff;
}

#lp_contents .sec_cmpn .note{
  text-align: left;
}

#lp_contents .sec_cmpn .note a{
  color: var(--color-lp_primary);
  text-decoration: underline;
}

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

#lp_contents .sec_cmpn .wallpaper_img_wrap .wallpaper{
  display: flex;
  justify-content: space-between;
  position: relative;
}

#lp_contents .sec_cmpn .wallpaper_img_wrap .wallpaper:before{
  content: '';
  width: 100%;
  height: 100%;
  border-radius: calc(999 * (var(--rate)));
  background: #fff;
  opacity: 0.6;
  filter: blur(calc(25 * (var(--rate))));
  position: absolute;
  top: 0;
  left: 0;
}

#lp_contents .sec_cmpn .wallpaper_img_wrap figure{
  display: grid;
  gap: calc(12 * (var(--rate)));
}

#lp_contents .sec_cmpn .wallpaper_img_wrap .wallpaper img{
  filter: drop-shadow(var(--color-lp_shadow));
  animation: 4.5s ease-in-out 0s infinite normal none running fuwafuwa;
}

#lp_contents .sec_cmpn .wallpaper_img_wrap .wallpaper_1 img{
  animation-delay: 0.4s;
}

#lp_contents .sec_cmpn .wallpaper_img_wrap .wallpaper_2 img{
  animation-delay: 0.8s;
}

#lp_contents .sec_cmpn .wallpaper_img_wrap .wallpaper_ttl{
  width: 100%;
  height: calc(18 * (var(--rate)));
  border-radius: calc(100 * (var(--rate)));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(10 * (var(--rate)));
  font-weight: 500;
  border: 1px solid;
  position: relative;
  z-index: 2;
}

#lp_contents .sec_cmpn .wallpaper_img_wrap .more{
  text-align: right;
  line-height: 1;
  position: relative;
  z-index: 2;
  color: var(--color-lp_sub);
}

/*------------ step_wrap ------------*/
#lp_contents .sec_cmpn .step_wrap .step_ttl{
  font-size: calc(14 * (var(--rate)));
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.15em;
  margin-block: calc(20 * (var(--rate)));
}

#lp_contents .sec_cmpn .step_wrap .step_list{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: calc(7 * (var(--rate)));
}

#lp_contents .sec_cmpn .step_wrap .step_list li{
  width: calc(112 * (var(--rate)));
  background-color: #fff;
  border-radius: calc(4 * (var(--rate)));
  padding: calc(12 * (var(--rate))) calc(8 * (var(--rate))) calc(16 * (var(--rate)));
  box-shadow: 0 0 calc(20 * (var(--rate))) #0000000D;
}

#lp_contents .sec_cmpn .step_wrap .step_num{
  font-family: var(--font-lp_ttl);
  font-size: calc(22 * (var(--rate)));
  line-height: 1;
  color: var(--color-lp_primary);
  margin-bottom: calc(5 * (var(--rate)));
}

#lp_contents .sec_cmpn .step_wrap .step_txt{
  text-align: left;
  font-size: calc(10.4 * (var(--rate)));
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-top: calc(10 * (var(--rate)));
}

#lp_contents .sec_cmpn .step_wrap .step_txt a{
  display: inline;
  color: var(--color-lp_primary);
}

#lp_contents .sec_cmpn .step_wrap .step_list .arrow{
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(-18 * (var(--rate)));
  margin: auto;
}

#lp_contents .sec_cmpn .step_wrap .step_list .arrow:after{
  content: '';
  display: block;
  width: 1px;
  height: calc(36 * (var(--rate)));
  background-color: var(--color-lp_primary);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  animation: arrow 3s infinite;
}

/*------------ item_area ------------*/
#lp_contents .sec_cmpn .item_area{
  display: grid;
  gap: calc(50 * (var(--rate)));
}

#lp_contents .sec_cmpn .item_area .logo_ttl{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(20 * (var(--rate)));
}

#lp_contents .sec_cmpn .item_area .logo_ttl .ck{
  width: calc(160 * (var(--rate)));
}

#lp_contents .sec_cmpn .item_area .logo_ttl .bp{
  width: calc(80 * (var(--rate)));
}

#lp_contents .sec_cmpn .item_area .release_day{
  display: grid;
  gap: calc(10 * (var(--rate)));
  margin-top: calc(24 * (var(--rate)));
  line-height: 2;
}

#lp_contents .sec_cmpn .item_area .release_day tbody{
  width: fit-content;
  margin: auto;
}

#lp_contents .sec_cmpn .item_area .release_day tr{
  width: 100%;
  margin: auto;
}

#lp_contents .sec_cmpn .item_area .release_day th{
  display: block;
  text-align: right;
  margin-right: calc(10 * (var(--rate)));
}

#lp_contents .sec_cmpn .item_area .release_day td{
  text-align: left;
}

#lp_contents .sec_cmpn .item_area .item_wrap{
  position: relative;
  background-color: #fff;
  border-radius: calc(30 * (var(--rate)));
  box-shadow: var(--color-lp_shadow);
  padding: calc(20 * (var(--rate)));
  display: grid;
  gap: calc(20 * (var(--rate)));
}

#lp_contents .sec_cmpn .item_area .bear{
  position: absolute;
  top: calc(-27 * (var(--rate)));
  left: 0;
  right: 0;
  margin: auto;
  width: calc(50 * (var(--rate)));
}

#lp_contents .sec_cmpn .item_area .item_ttl{
  display: grid;
  align-content: center;
  justify-content: center;
  gap: calc(8 * (var(--rate)));
  width: 100%;
  min-height: calc(32 * (var(--rate)));
  background-color: #F2F2F2;
  font-size: calc(14 * (var(--rate)));
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  border-radius: calc(4 * (var(--rate)));
  padding: calc(8 * (var(--rate)));
}

#lp_contents .sec_cmpn .item_area .item_ttl span{
  display: block;
  font-size: calc(11 * (var(--rate)));
}

#lp_contents .sec_cmpn .item_area .item_img{
  position: relative;
}

#lp_contents .sec_cmpn .item_area .new{
  width: calc(45 * (var(--rate)));
  position: absolute;
  top: 0;
  left: 0;
  animation: 3s ease-in-out 0s infinite normal none running bounce;
  z-index: 5;
}

#lp_contents .sec_cmpn .item_area .item_detail{
  display: grid;
  gap: calc(10 * (var(--rate)));
}

#lp_contents .sec_cmpn .item_area .item_name{
  font-size: calc(14 * (var(--rate)));
  font-weight: bold;
  letter-spacing: 0.15em;
  line-height: 1;
}

#lp_contents .sec_cmpn .item_area .item_price{
  font-family: var(--font-lp_eng);
  font-size: calc(19 * (var(--rate)));
  line-height: 1;
}

#lp_contents .sec_cmpn .item_area .set_content{
  display: grid;
  gap: calc(5 * (var(--rate)));
  width: 100%;
  border-radius: calc(10 * (var(--rate)));
  background-color: #FAFAFA;
  padding: calc(15 * (var(--rate))) calc(20 * (var(--rate)));
}

#lp_contents .sec_cmpn .item_area .set_ttl{
  font-size: calc(12 * (var(--rate)));
  font-weight: bold;
  line-height: 1;
}

#lp_contents .sec_cmpn .item_area .set_txt{
  font-size: calc(11 * (var(--rate)));
  line-height: 1.75;
}

#lp_contents .sec_cmpn .item_area .c_img{
  position: absolute;
  width: calc(80 * (var(--rate)));
  top: calc(360 * (var(--rate)));
  animation: 3s ease-in-out 0s infinite normal none running yurayura;
}

/*------------ note_wrap ------------*/
#lp_contents .sec_cmpn .note_wrap{
  position: relative;
  background-color: #fff;
  border-radius: calc(30 * (var(--rate)));
  padding: calc(20 * (var(--rate)));
  display: grid;
  gap: calc(25 * (var(--rate)));
}

#lp_contents .sec_cmpn .note_wrap .note_blk{
  display: grid;
  gap: calc(12 * (var(--rate)));
}

#lp_contents .sec_cmpn .note_wrap .note_ttl{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: calc(32 * (var(--rate)));
  background-color: #F2F2F2;
  font-size: calc(14 * (var(--rate)));
  font-weight: 600;
  letter-spacing: 0.1em;
  border-radius: calc(4 * (var(--rate)));
}

#lp_contents .sec_cmpn .note_wrap .note_txt{
  text-align: justify;
}


/* cmpn_1
==================================*/
#lp_contents .cmpn_1{
  background: #FCF5FC;
}

#lp_contents .cmpn_1 .sec_inner{
  gap: calc(36 * (var(--rate)));
}

#lp_contents .cmpn_1 .lead_wrap .lead img{
  display: inline-block;
  width: calc(180 * (var(--rate)));
}

#lp_contents .cmpn_1 .lead span:not(.line){
  display: block;
  line-height: 1.6;
  margin: calc(10 * (var(--rate))) 0;
}

#lp_contents .cmpn_1 .wallpaper_img_wrap{
  gap: 0;
}

#lp_contents .cmpn_1 .wallpaper_img_wrap .wallpaper_1{
  width: calc(215 * (var(--rate)));
}

#lp_contents .cmpn_1 .wallpaper_img_wrap .wallpaper_2{
  width: calc(125 * (var(--rate)));
}


/* cmpn_2
==================================*/
#lp_contents .cmpn_2{
  background: transparent linear-gradient(180deg, #FCF5FC 0%, #DEF4F2 37%, #E9F1F9 75%, #E7F0FE 100%) 0% 0% no-repeat padding-box;
}

#lp_contents .cmpn_2 .sec_inner{
  gap: calc(80 * (var(--rate)));
}

#lp_contents .cmpn_2 .lead .logo_ttl{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(20 * (var(--rate)));
  margin-bottom: calc(20 * (var(--rate)));
}

#lp_contents .cmpn_2 .lead .logo_ttl .ck{
  width: calc(160 * (var(--rate)));
}

#lp_contents .cmpn_2 .lead .logo_ttl .bp{
  width: calc(80 * (var(--rate)));
}

#lp_contents .cmpn_2 .wallpaper_img_wrap .wallpaper{
  align-items: flex-end;
}

#lp_contents .cmpn_2 .wallpaper_img_wrap .wallpaper_1{
  width: calc(160 * (var(--rate)));
}

#lp_contents .cmpn_2 .wallpaper_img_wrap .wallpaper_1 img{
  width: calc(158 * (var(--rate)));
  margin: auto;
}

#lp_contents .cmpn_2 .wallpaper_img_wrap .wallpaper_1 .wallpaper_ttl{
  color: var(--color-lp_Lauren);
  border-color: var(--color-lp_Lauren);
}

#lp_contents .cmpn_2 .wallpaper_img_wrap .wallpaper_2{
  width: calc(160 * (var(--rate)));
}

#lp_contents .cmpn_2 .wallpaper_img_wrap .wallpaper_2 img{
  width: calc(153 * (var(--rate)));
  margin: auto;
}

#lp_contents .cmpn_2 .wallpaper_img_wrap .wallpaper_2 .wallpaper_ttl{
  color: var(--color-lp_Lain);
  border-color: var(--color-lp_Lain);
}

#lp_contents .cmpn_2 .wallpaper_img_wrap .note{
  text-align: center;
}

#lp_contents .cmpn_2 .btn_area .link_btn{
  background: transparent linear-gradient(90deg, #6C6CD0 0%, #65a3d9 100%) 0% 0% no-repeat padding-box;
}

#lp_contents .cmpn_2 .link_btn.detail{
  background: #fff;
  color: #3B4ABB;
  border: 1px solid #3B4ABB;
}

#lp_contents .cmpn_2 .web_item .c_img{
  left: calc(-20 * (var(--rate)));
}

#lp_contents .cmpn_2 .store_item .c_img{
  right: calc(-20 * (var(--rate)));
}


/* cmpn_3
==================================*/
#lp_contents .cmpn_3{
  background: transparent linear-gradient(180deg, #E7F0FD 0%, #FCF5FC 100%) 0% 0% no-repeat padding-box;
}

#lp_contents .cmpn_3 .lead_wrap .lead img {
  display: inline-block;
  width: calc(23 * (var(--rate)));
  margin-right: calc(8 * (var(--rate)));
}

#lp_contents .cmpn_3 .wallpaper_img_wrap .wallpaper_1{
  width: calc(255 * (var(--rate)));
}

#lp_contents .cmpn_3 .wallpaper_img_wrap .wallpaper_2{
  width: calc(70 * (var(--rate)));
}

#lp_contents .cmpn_3 .wallpaper_img_wrap .note{
  text-align: center;
  margin-top: calc(15 * (var(--rate)));
}

#lp_contents .cmpn_3 .link_btn{
  font-family: var(--font-lp_eng);
  background: transparent linear-gradient(90deg, #000000 0%, #C10D49 100%) 0% 0% no-repeat padding-box;
}

#lp_contents .cmpn_3 .link_btn img{
  width: calc(23 * (var(--rate)));
  margin-right: calc(8 * (var(--rate)));
}


/* sec_event
==================================*/
#lp_contents .sec_event{
  background: #FCF5FC;
  padding: calc(80 * (var(--rate))) calc(40 * (var(--rate)));
  border-bottom: calc(2 * (var(--rate))) solid #fff;
}

/*------------ event_wrap ------------*/
#lp_contents .sec_event .event_wrap{
  position: relative;
  background-color: #fff;
  border-radius: calc(30 * (var(--rate)));
  box-shadow: var(--color-lp_shadow);
  padding: calc(30 * (var(--rate))) 0;
  display: grid;
  gap: calc(20 * (var(--rate)));
}

#lp_contents .sec_event .event_wrap .event_ttl{
  display: grid;
  gap: calc(16 * (var(--rate)));
}

#lp_contents .sec_event .event_wrap .lead{
  font-weight: 600;
  line-height: 1.5;
}

#lp_contents .sec_event .event_wrap .lead .big{
  display: block;
  font-size: calc(20 * (var(--rate)));
}

#lp_contents .sec_event .event_wrap .c_img{
  position: absolute;
  width: calc(60 * (var(--rate)));
  z-index: 2;
  animation: 5s ease-in-out 0s infinite normal none running yurayura;
}

#lp_contents .sec_event .event_wrap .c_img.Lauren{
  top: calc(10 * (var(--rate)));
  right: calc(-20 * (var(--rate)));
  animation-delay: 1s;
}

#lp_contents .sec_event .event_wrap .c_img.Lain{
  top: calc(175 * (var(--rate)));
  left: calc(-20 * (var(--rate)));
}

#lp_contents .sec_event .video_blk{
  position: relative;
  width: calc(310 * (var(--rate)));
  aspect-ratio: 16 / 9;
  margin: auto;
}

#lp_contents .sec_event .video_blk iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: calc(5 * (var(--rate)));
  transform: translateZ(0);
  top: 0;
}

#lp_contents .sec_event .store_list{
  width: fit-content;
  margin: auto;
}

#lp_contents .sec_event .store_list ul{
  display: grid;
  gap: calc(8 * (var(--rate)));
}

#lp_contents .sec_event .store_list li{
  display: flex;
  align-items: center;
  line-height: 1.5;
  gap: calc(10 * (var(--rate)));
}

#lp_contents .sec_event .store_list li:before{
  content: '';
  display: block;
  width: calc(6 * (var(--rate)));
  height: calc(6 * (var(--rate)));
  border-radius: 100%;
  background-color: var(--color-lp_primary);
}

/*------------ bnr_wrap ------------*/
#lp_contents .sec_event .bnr_wrap{
  border-radius: calc(30 * (var(--rate)));
  box-shadow: var(--color-lp_shadow);
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}


/* sec_niji
==================================*/
#lp_contents .sec_niji{
  padding: calc(80 * (var(--rate))) calc(40 * (var(--rate)));
  background: transparent linear-gradient(158deg, #FCF5FC 0%, #FFFFFF 35%, #ECF8F7 58%, #ECF3FA 100%) 0% 0% no-repeat padding-box;
}

#lp_contents .sec_niji .niji_ttl{
  width: calc(220 * (var(--rate)));
  margin: auto;
}

#lp_contents .sec_niji .intro_wrap ul{
  display: flex;
  justify-content: center;
}

#lp_contents .sec_niji .intro_wrap li{
  width: 50%;
  display: grid;
  gap: calc(16 * (var(--rate)));
}

#lp_contents .sec_niji .intro_wrap .intro_img img{
  width: calc(145 * (var(--rate)));
  aspect-ratio: 1/1;
  box-shadow: var(--color-lp_shadow);
  margin: auto;
  border-radius: 100%;
}

#lp_contents .sec_niji .intro_wrap .intro_detail{
  display: grid;
  gap: calc(8 * (var(--rate)));
}

#lp_contents .sec_niji .intro_wrap .intro_name{
  font-size: calc(12 * (var(--rate)));
  font-weight: 500;
  line-height: 1;
}

#lp_contents .sec_niji .intro_wrap .intro_txt{
  font-size: calc(12 * (var(--rate)));
  line-height: 1.75;
  letter-spacing: 0.05em;
}

#lp_contents .sec_niji .intro_wrap .more{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(5 * (var(--rate)));
  font-family: var(--font-lp_eng);
}

#lp_contents .sec_niji .intro_wrap .intro_Lauren .intro_name,
#lp_contents .sec_niji .intro_wrap .intro_Lauren .more{
  color: var(--color-lp_Lauren);
}

#lp_contents .sec_niji .intro_wrap .intro_Lauren .plus{
  background-color: var(--color-lp_Lauren);
}

#lp_contents .sec_niji .intro_wrap .intro_Lain .intro_name,
#lp_contents .sec_niji .intro_wrap .intro_Lain .more{
  color: var(--color-lp_Lain);
}

#lp_contents .sec_niji .intro_wrap .intro_Lain .plus{
  background-color: var(--color-lp_Lain);
}

#lp_contents .sec_niji .copy{
  position: absolute;
  width: calc(80 * (var(--rate)));
  right: calc(2 * (var(--rate)));
  bottom: calc(5 * (var(--rate)));
}


/* sec_btm
==================================*/
#lp_contents .sec_btm .ttl_wrap{
  margin-bottom: calc(36 * (var(--rate)));
  text-align: center;
}

#lp_contents .sec_btm .ttl_wrap .ttl {
  font-size: calc(32 * (var(--rate)));
  color: var(--color-lp_font);
}


/* sec_lineup
==================================*/
#lp_contents .sec_lineup ul{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: calc(40 * (var(--rate))) 0;
  margin: auto;
}

#lp_contents .sec_lineup li{
  width: 50%;
  text-align: justify;
  height: fit-content;
  display: grid;
  gap: calc(15 * (var(--rate)));
}

#lp_contents .sec_lineup .img{
  overflow: hidden;
}

#lp_contents .sec_lineup .img a:hover{
  transform: scale(1.08);
  opacity: 1;
}

#lp_contents .sec_lineup .text_area{
  display: grid;
  gap: 1rem;
}

#lp_contents .sec_lineup .text_area,
#lp_contents .sec_lineup .btn_area,
#lp_contents .sec_lineup .item_text{
  padding: 0 calc(12.5 * (var(--rate)));
}

#lp_contents .sec_lineup .text{
  line-height: 1.55;
}

#lp_contents .sec_lineup .caption{
  font-size: calc(11 * (var(--rate)));
}

#lp_contents .sec_lineup .item_name{
  line-height: 1.75;
}

#lp_contents .sec_lineup .item_price{
  font-size: calc(16 * (var(--rate)));
  margin-top: calc(5 * (var(--rate)));
  line-height: 1;
}

#lp_contents .sec_lineup .link_btn{
  width: calc(calc(100% - 1rem) / 2);
  height: calc(27 * (var(--rate)));
  font-size: calc(10 * (var(--rate)));
}

/*------------ bnr_wrap ------------*/
#lp_contents .bnr_wrap{
  width: calc(390 * (var(--rate)));
  margin: calc(70 * (var(--rate))) auto 0;
  padding-top: calc(70 * (var(--rate)));
  border-top: 1px solid #DBD9D9;
}

#lp_contents .bnr_wrap .ttl_wrap{
  margin-bottom: calc(25 * (var(--rate)));
}

#lp_contents .bnr_wrap ul{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(70 * (var(--rate))) calc(80 * (var(--rate)));
}

#lp_contents .bnr_wrap li{
  width: calc(360 * (var(--rate)));
  gap: 0;
}


/* sec_store
==================================*/
#lp_contents .sec_store .ttl_wrap{
  margin-bottom: calc(25 * (var(--rate)));
}

#lp_contents .sec_store .main_ttl{
  font-size: calc(32 * (var(--rate)));
}

#lp_contents .sec_store .store_wrap{
  width: calc(350 * (var(--rate)));
  padding: calc(30 * (var(--rate))) calc(20 * (var(--rate))) calc(20 * (var(--rate)));
  margin: auto;
  display: grid;
  gap: calc(40 * (var(--rate)));
  border-radius: calc(10 * (var(--rate)));
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.16);
}

#lp_contents .sec_store .store_wrap ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: calc(28 * (var(--rate))) calc(20 * (var(--rate)));
}

#lp_contents .sec_store .store_wrap a{
  display: grid;
  gap: calc(6 * (var(--rate)));
}

#lp_contents .sec_store .store_wrap .ck{
  width: calc(142 * (var(--rate)));
}

#lp_contents .sec_store .store_wrap .bp{
  width: calc(80 * (var(--rate)));
}

#lp_contents .sec_store .store_wrap .fm{
  width: calc(150 * (var(--rate)));
}

#lp_contents .sec_store .store_wrap .usagi{
  width: calc(135 * (var(--rate)));
}

#lp_contents .sec_store .store_wrap .note{
  font-size: calc(7.5 * (var(--rate)));
}


/* sec_theory
==================================*/
#lp_contents .sec_theory .ttl_wrap{
  margin-bottom: calc(25 * (var(--rate)));
  gap: calc(20 * (var(--rate)));
}

#lp_contents .sec_theory .main_ttl{
  font-size: calc(32 * (var(--rate)));
}

#lp_contents .sec_theory .sub_ttl{
  font-family: var(--font-lp_base);
  font-size: calc(18 * (var(--rate)));
  color: var(--color-lp_font);
  line-height: 1.75;
  margin-bottom: 0;
}

#lp_contents .sec_theory .about_wrap{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: calc(20 * (var(--rate))) calc(30 * (var(--rate)));
  width: calc(360 * (var(--rate)));
  margin: auto;
}

#lp_contents .sec_theory .heading{
  font-size: calc(20 * (var(--rate)));
  line-height: 1.5;
  margin-bottom: calc(15 * (var(--rate)));
}

#lp_contents .sec_theory .text{
  text-align: left;
}

#lp_contents .sec_theory .img{
  width: 100%;
}


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

#lp_contents .sec_credit p{
  text-align: left;
  font-size: calc(11 * (var(--rate)));
  display: grid;
  gap: calc(6 * (var(--rate)));
}


/* char_wrap
==================================*/
#lp_contents .char_wrap{
  width: 100%;
  height: 100%;
  padding-top: calc(48 * (var(--rate)));
  color: #fff;
  overflow: hidden;
}

#lp_contents .char_wrap.Lauren{
  background: transparent linear-gradient(180deg, #C10E49 0%, #DD355E 100%) 0% 0% no-repeat padding-box;
}

#lp_contents .char_wrap.Lain{
  background: transparent linear-gradient(180deg, #F74848 0%, #FF635E 100%) 0% 0% no-repeat padding-box;
}

#lp_contents .char_wrap .char_ttl{
  display: grid;
  gap: calc(24 * (var(--rate)));
}

#lp_contents .char_wrap .char_name{
  font-size: calc(24 * (var(--rate)));
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
}

#lp_contents .char_wrap .char_lead{
  font-size: calc(14 * (var(--rate)));
  line-height: 1.75;
}

#lp_contents .char_wrap .sns_list{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(30 * (var(--rate)));
}

#lp_contents .char_wrap .sns_list li{
  width: calc(24 * (var(--rate)));
}


/* apply_wrap
==================================*/
#lp_contents .apply_wrap{
  border-radius: calc(4 * (var(--rate)));
}

#lp_contents .apply_wrap .apply_ttl{
  background-color: #F2F2F2;
  width: 100%;
  height: calc(40 * (var(--rate)));
  font-size: calc(14 * (var(--rate)));
  font-weight: bold;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: calc(4 * (var(--rate))) calc(4 * (var(--rate))) 0 0;
}

#lp_contents .apply_wrap .check_list{
  display: grid;
  gap: calc(20 * (var(--rate)));
  padding: calc(25 * (var(--rate))) calc(20 * (var(--rate))) calc(35 * (var(--rate)));
  text-align: justify;
}

#lp_contents .apply_wrap .check_list ul{
  display:grid;
  gap: calc(18 * (var(--rate)));
}

#lp_contents .apply_wrap .check_list li{
  padding-bottom: calc(18 * (var(--rate)));
  border-bottom: 1px dotted #E0E0E0;
  display: grid;
  gap: calc(10 * (var(--rate)));
}

#lp_contents .apply_wrap .check_list li p{
  padding-left: calc(24 * (var(--rate)));
  line-height: 1.5;
  background-repeat: no-repeat;
  background-size: calc(16 * (var(--rate)));
  background-position: top calc(2 * (var(--rate))) left;
}

#lp_contents .apply_wrap .check_list li .right{
  background-image: url(../img/right.svg);
}

#lp_contents .apply_wrap .check_list li .wrong{
  background-image: url(../img/wrong.svg);
}


/* new_item_wrap
==================================*/
#lp_contents .new_item_wrap{
  width: 100%;
  height: 100%;
  background-image: url(../img/modal_bg.jpg);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: calc(40 * (var(--rate)));
}

#lp_contents .new_item_wrap .item_area{
  display: grid;
  align-content: center;
  gap: calc(15 * (var(--rate)));
  width: 100%;
  margin: auto;
}

#lp_contents .new_item_wrap .item_area .item_ttl{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: calc(32 * (var(--rate)));
  background-color: #fff;
  border-radius: calc(4 * (var(--rate)));
  padding: calc(5 * (var(--rate))) 0;
}

#lp_contents .new_item_wrap .item_area .item_ttl .item_jpn_ttl{
  font-size: calc(14 * (var(--rate)));
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #3B4ABB;
}

#lp_contents .new_item_wrap .item_area .item_ttl .jpn{
  display: block;
  font-size: calc(12 * (var(--rate)));
}

#lp_contents .new_item_wrap .item_area .item_ttl .bear{
  position: absolute;
  top: calc(-27 * (var(--rate)));
  left: 0;
  right: 0;
  margin: auto;
  width: calc(50 * (var(--rate)));
}

#lp_contents .new_item_wrap .item_area .item_text_img{
  width: calc(204 * (var(--rate)));
  margin: auto;
}

#lp_contents .new_item_wrap .item_area .item_blk{
  position: relative;
  margin-top: calc(20 * (var(--rate)));
}

#lp_contents .new_item_wrap .item_area .item_blk .img{
  position: relative;
  width: calc(250 * (var(--rate)));
  margin: auto;
}

#lp_contents .new_item_wrap .item_area .item_blk .img a{
  position: relative;
  z-index: 3;
}

#lp_contents .new_item_wrap .item_area .item_blk .img:before{
  content: '';
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
  filter: blur(30px);
  z-index: 1;
  pointer-events: none;
}

#lp_contents .new_item_wrap .item_area .item_blk li{
  position: relative;
  width: calc(110 * (var(--rate)));
  height: calc(110 * (var(--rate)));
  aspect-ratio: 1/1;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(10 * (var(--rate)));
  line-height: 1.5;
  position: absolute;
  z-index: 2;
}

#lp_contents .new_item_wrap .item_area .item_blk li:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  filter: blur(calc(5 * (var(--rate))));
  background-color: rgba(101, 163, 217, .2);
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}

#lp_contents .new_item_wrap .item_area .item_blk li:nth-of-type(1){
  top: calc(-10 * (var(--rate)));
  left: calc(25 * (var(--rate)));
}

#lp_contents .new_item_wrap .item_area .item_blk li:nth-of-type(2){
  top: 0;
  bottom: 0;
  left: calc(-15 * (var(--rate)));
  margin: auto;
}

#lp_contents .new_item_wrap .item_area .item_blk li:nth-of-type(3){
  bottom: calc(-10 * (var(--rate)));
  left: calc(25 * (var(--rate)));
}

#lp_contents .new_item_wrap .item_area .item_blk li:nth-of-type(4){
  top: calc(-10 * (var(--rate)));
  right: calc(25 * (var(--rate)));
}

#lp_contents .new_item_wrap .item_area .item_blk li:nth-of-type(5){
  top: 0;
  bottom: 0;
  right: calc(-15 * (var(--rate)));
  margin: auto;
}

#lp_contents .new_item_wrap .item_area .item_blk li:nth-of-type(6){
  bottom: calc(-10 * (var(--rate)));
  right: calc(25 * (var(--rate)));
}

#lp_contents .new_item_wrap .item_area .item_blk .bold{
  color: #3949BA;
}

#lp_contents .new_item_wrap .item_area .text_blk {
  display: grid;
  gap: calc(20 * (var(--rate)));
  margin-top: calc(20 * (var(--rate)));
}

#lp_contents .new_item_wrap .item_area .item_price {
  font-size: calc(19 * (var(--rate)));
  line-height: 1;
}

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

#lp_contents .new_item_wrap .item_area small.note {
  display: inline-block;
  margin-top: calc(8 * (var(--rate)));
  font-size: calc(12 * (var(--rate)));
  line-height: 1.5;
}

#lp_contents .new_item_wrap .item_area .btn_area .link_btn{
  background: transparent linear-gradient(90deg, #6C6CD0 0%, #65a3d9 100%) 0% 0% no-repeat padding-box;
}

#lp_contents .new_item_wrap .item_area .link_btn.detail{
  background: #fff;
  color: #3B4ABB;
  border: 1px solid #3B4ABB;
}



/*--------------------------------
            Layout  PC
 --------------------------------*/
#lp_contents .lp_inner{
  position: relative;
  z-index: 3;
  width: 60rem;
  background-color: var(--color-lp_bg);
  box-shadow: 0 0 3rem rgba(0, 0, 0, 0.16);
  order: 2;
}

#lp_contents .full_area{
  position: sticky;
  top: 0;
  height: 100vh;
  width: calc(calc(100% - 60rem) / 2);
  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(240px, calc(240 * (100vw / 1400)));
}

#lp_contents .right_area{
  right: 0;
  order: 3;
  display: grid;
  justify-content: center;
  align-content: center;
}

#lp_contents .right_area .cmpn_wrap{
  margin: 0;
  padding: 0;
  background-color: transparent;
}

#lp_contents .right_area .cmpn_wrap .cmpn_ttl{
  width: 30rem;
  min-height:2.8rem;
  font-size: 1.5rem;
  border-radius:0.4rem;
  position: static;
  transform: initial;
}

#lp_contents .right_area .cmpn_wrap .cmpn_day{
  gap: 0.4rem;
  font-size: 2.4rem;
  margin-top: 2.4rem;
}

#lp_contents .right_area .cmpn_wrap .cmpn_day .small{
  font-size: 1.4rem;
}

#lp_contents .right_area .cmpn_wrap .nav_list {
  margin-top: 3.6rem;
}

#lp_contents .right_area .cmpn_wrap .nav_list ul{
  display: grid;
  gap: 2.4rem;
}

#lp_contents .right_area .cmpn_wrap .nav_list li{
  font-size: 1.7rem;
}

#lp_contents .right_area .cmpn_wrap .nav_list li a{
  display: flex;
  align-items: center;
}

#lp_contents .right_area .cmpn_wrap .nav_list .big{
  font-size: 2.7rem;
}

#lp_contents .right_area .cmpn_wrap .nav_list .arrow{
  display: inline-block;
  margin: 0.4rem 0 0 1.6rem;
}

#lp_contents .right_area .mv_intro{
  gap: 5rem;
  margin-top: 3.6rem;
}

#lp_contents .right_area .mv_intro a {
  gap: 1rem;
  font-size: 1.1rem;
}

#lp_contents .right_area .mv_intro img{
  width: 9rem;
  margin: auto;
  animation: 4s ease-in-out 0s infinite normal none running fuwafuwa-pc;
}

#lp_contents .right_area .mv_intro .intro_Lauren img{
  animation-delay: 0.4s;
}

#lp_contents .right_area .mv_intro .intro_Lain img{
  animation-delay: 0.8s;
}

#lp_contents .right_area .plus{
  width: 1.8rem;
}

#lp_contents .right_area .plus:before,
#lp_contents .right_area .plus:after{
  width: 0.8rem;
}



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

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

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

  #lp_contents .lp_inner{
    box-shadow: none;
  }

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

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

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

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

  #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{
    box-shadow: none;
  }

  #lp_contents .modal__content{
    max-height: 100vh;
    border-radius: 0;
  }

  #lp_contents .char_wrap,
  #lp_contents .new_item_wrap{
    transform: initial;
    top: 0;
    left: 0;
  }
}