@charset "UTF-8";

/*--------------------------------
            CSS Animation
 --------------------------------*/
 @keyframes blinking{
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

@keyframes dots-anime {
  0%{
    transform: translate(-50%, -50%) scale(80%);
    opacity: .9;
  }

  80% {
    opacity: .9;
  }

  100% {
    transform: translate(-50%, -50%) scale(100%);
    opacity: 0;
  }
}

@keyframes arrow-move {
  0% {
    opacity: 0;
    transform: translate(-50%, -6px);
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 6px);
  }
}

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

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

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

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

#lp_contents .zoom {
  opacity: 0;
  transform: scale(1.2);
  transition: all 2s;
}

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

#lp_contents .bounceLeft{
  opacity: 0;
  transform: scale(0.7);
  transform-origin: bottom left;
  transition: 1s cubic-bezier(0.68, 0.03, 0.3, 0.99);
}

#lp_contents .bounceRight{
  opacity: 0;
  transform: scale(0.7);
  transform-origin: bottom right;
  transition: 1s cubic-bezier(0.68, 0.03, 0.3, 0.99);
  transition-delay: 0.5s;
}

#lp_contents .fadeIn.is-show,
#lp_contents .fadeInUp.is-show,
#lp_contents .fadeInLeft.is-show,
#lp_contents .fadeInRight.is-show,
#lp_contents .zoom.is-show,
#lp_contents .bounceLeft.is-show,
#lp_contents .bounceRight.is-show{
  transform: translate(0, 0);
  transform: scale(1);
  opacity: 1;
}


/* slider
==================================*/
#lp_contents .gif_slider{
  width: calc(390 * (var(--rate)));
}


/* modal slider
==================================*/
body.no_scroll {
  height: 100vh;
  overflow: hidden;
}

#lp_contents .modal{
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1004;
}

#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 *{
  z-index: 1004;
}

#lp_contents .modal__content {
  position: relative;
  width: 100vw;
  margin: 0 auto;
  padding: 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
  box-sizing: border-box;
  overflow: scroll;
  /* filter: drop-shadow(0 0 1rem rgba(0, 0, 0, .16)); */
  top: 50%;
  transform: translate(0, -50%);
}

#lp_contents .modal__content::-webkit-scrollbar {
  display: none;
}

#lp_contents .modal_blk_inner{
  position: relative;
}

#lp_contents .btn-close {
  position: absolute;
  width: calc(20 * var(--rate));
  height: calc(20 * var(--rate));
  transition: .3s;
  top: calc(15 * var(--rate));
  right: calc(15 * var(--rate));
  z-index: 1005;
  cursor: pointer;
  left: 0;
  right: 0;
  transform: translateX(calc(125 * var(--rate)));
  margin: auto;
}

#lp_contents .btn-close::before,
#lp_contents .btn-close::after{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  background: #000;
  content: "";
  transition: .3s;
  rotate: 45deg;
}

#lp_contents .btn-close::after{
  rotate: -45deg;
}

#lp_contents .modal__content .slick-prev,
#lp_contents .modal__content .slick-next{
  width: calc(40 * var(--rate));
  height: calc(40 * var(--rate));
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateX(calc(-158 * var(--rate)));
  z-index: 1005;
  background-color: var(--color_primary);
  border-radius: 100%;
}

#lp_contents .modal__content .slick-next{
  transform: translateX(calc(158 * var(--rate)));
}

#lp_contents .modal__content .slick-prev:before,
#lp_contents .modal__content .slick-next:before{
  content: '';
  display: block;
  width: calc(10 * var(--rate));
  height: calc(10 * var(--rate));
  border-top: 1px solid var(--color_white);
  border-right: 1px solid var(--color_white);
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(5 * var(--rate));
  right: 0;
  margin: auto;
  rotate: -135deg;
}

#lp_contents .modal__content .slick-next:before{
  rotate: 45deg;
  left: auto;
  right: calc(18 * var(--rate));
}

#lp_contents .modal__content .slick-track {
  display: flex;
}

#lp_contents .modal__content .slick-slide {
  height: auto !important;
  max-height: 90vh;
  overflow-y: scroll;
}

#lp_contents .slick-track {
  display: flex;
}

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

#lp_contents .item_wrap .item_list li{
  display: grid;
  align-content: start;
  gap: calc(24 * var(--rate));
  width: calc(300 * var(--rate));
  margin: 0 calc(7.5 * var(--rate));
  padding: calc(20 * var(--rate));
  background: #fff;
}

#lp_contents .item_wrap .item_name{
  display: grid;
  gap: calc(4 * var(--rate));
  line-height: 1.5;
}

#lp_contents .item_wrap .item_name span{
  font-weight: 500;
}

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

#lp_contents .item_wrap .cmnt_blk{
  position: relative;
  display: grid;
  align-content: start;
  gap: calc(15 * var(--rate));
}

#lp_contents .item_wrap .cmnt_blk .staff_cmnt_img{
  position: absolute;
  top: calc(-14 * var(--rate));
  z-index: 1;
  width: calc(80 * var(--rate));
  filter: var(--drop-shadow);
}

#lp_contents .item_wrap .cmnt_blk dt{
  padding-left: calc(15 * var(--rate));
  font-size: calc(13 * var(--rate));
  line-height: 1;
}

#lp_contents .item_wrap .cmnt_blk dd{
  position: relative;
  padding: calc(15 * (var(--rate)));
  text-align: justify;
  font-size: calc(13 * (var(--rate)));
  line-height: 1.75;
  border-radius: calc(10 * (var(--rate)));
  box-shadow: var(--box-shadow);
  background-color: var(--color_white);
}

#lp_contents .item_wrap .cmnt_blk dd:before {
  content: '';
  position: absolute;
  display: block;
  width: calc(20 * (var(--rate)));
  height: calc(20 * (var(--rate)));
  background-image: url(../img/arrow-white.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  top: calc(-15 * (var(--rate)));
  right: calc(30 * (var(--rate)));
  filter: drop-shadow(0 3px 3px #00000029);
  rotate: 180deg;
  transform: scale(-1, 1);
}

#lp_contents .item_wrap .cmnt_blk .note{
  display: inline-block;
  margin-top: calc(6 * (var(--rate)));
  font-size: calc(10 * (var(--rate)));
}


/* accordion
==================================*/
#lp_contents .accordion_blk{
  position: relative;
  margin-top: calc(5 * var(--rate));
}

#lp_contents .accordion{
  position: absolute;
  cursor: pointer;
  font-weight: bold;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 3;
  transform: translateY(-50%);
}

#lp_contents .accordion > span{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(10 * (var(--rate)));
  width: fit-content;
  margin: auto;
  padding: 0 calc(15 * (var(--rate)));
  z-index: 2;
}
#lp_contents .staff_1 .accordion > span,
#lp_contents .staff_4 .accordion > span{
  background-color: var(--bg_pink);
}
#lp_contents .staff_2 .accordion > span{
  background-color: var(--bg_blue);
}
#lp_contents .staff_3 .accordion > span{
  background-color: var(--bg_yellow);
}

#lp_contents .accordion:before{
  content: '';
  width: calc(200 * (var(--rate)));
  height: 1px;
  background-color: var(--color_border);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}
#lp_contents .accordion.is-active:before{
  content: none;
}

#lp_contents .accordion + dd{
  display: none;

  width: calc(360 * (var(--rate)));
  margin: auto;
  padding: calc(22 * (var(--rate))) calc(20 * (var(--rate))) calc(20 * (var(--rate)));
  border: 1px solid var(--color_border);
  text-align: left;
  font-size: calc(12 * (var(--rate)));
  line-height: 1.75;
}

#lp_contents .accordion .arrow{
  display: block;
  width: calc(8 * (var(--rate)));
  height: calc(8 * (var(--rate)));
  border-top: 1px solid;
  border-right: 1px solid;
  rotate: 135deg;
}

#lp_contents .accordion.is-active .arrow{
  rotate: -45deg;
  margin-top: calc(5 * var(--rate));
}


/*--------------------------------
                共 通
 --------------------------------*/
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{
  --rate: 50rem / 390;
  --font_base: "century-gothic", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN,HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
  --bg-lp: #FAFAF2;
  --bg_lime: #F8FCF4;
  --bg_green: #E4F5CE;
  --bg_pink: #FDEFEB;
  --bg_blue: #F3F8F9;
  --bg_yellow: #FDFCF0;
  --bg_gray: #F7F7F7;
  --color_font: #000;
  --color_sub: #888;
  --color_border: #BCBCBC;
  --color_primary: #80B45C;
  --color_point: #F4F1AC;
  --color_white: #fff;
  --color_green: #B5DB9A;
  --color_pink: #F4AE9D;
  --color_blue: #C2DBE0;
  --color_yellow: #F4EDB4;
  --box-shadow: 0 0 10px #00000029;
  --drop-shadow: drop-shadow(0 0 10px #00000029);

  font-family: var(--font_base);
  /*font-feature-settings: "palt";*/
  font-size: calc(15 * (var(--rate)));
  letter-spacing: 0.02em;
  line-height: 2;
  text-align: center;

  display: flex;
  justify-content: center;

  color: var(--color_font);
  background-color: var(--bg-lp);
  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;
  display: grid;
  gap: calc(50 * (var(--rate)));
  z-index: 3;
  width: 50rem;
  background-color: var(--color_white);
  order: 2;
  padding-bottom: calc(50 * (var(--rate)));
}
#lp_contents .link_btn{
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(300 * (var(--rate)));
  height: calc(50 * (var(--rate)));
  margin: auto;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  border-radius: calc(100 * (var(--rate)));
  background-color: var(--color_green);
}

/*------------ 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(15 * (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)));
  line-height: 1.5;
  color: var(--color_sub);
}
#lp_contents p .note{
  margin-top: 0;
}
#lp_contents .bold{
  font-weight: bold;
}

#lp_contents .border{
  background: linear-gradient(transparent 50%, var(--color_point) 50%);
}

/*------------ mark ------------*/
#lp_contents .plus{
  position: relative;
  width: calc(8 * var(--rate));
  height: calc(8 * var(--rate));
}

#lp_contents .plus:before,
#lp_contents .plus:after{
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

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


/*--------------------------------
              contents
--------------------------------*/

/* sec_mv
==================================*/
#lp_contents .sec_mv .lead{
  display: grid;
  gap: calc(15 * (var(--rate)));
  margin-top: calc(25 * (var(--rate)));
  font-weight: 500;
}


/* sec_nayami
==================================*/
/*------------ ttl_wrap ------------*/
#lp_contents .sec_nayami .ttl_wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(15 * (var(--rate)));
  width: calc(360 * (var(--rate)));
  height: calc(76 * (var(--rate)));
  margin: auto;
  border-radius: calc(10 * (var(--rate)));
  box-shadow: var(--box-shadow);
}

#lp_contents .sec_nayami .ttl_wrap .ttl_q{
  font-size: calc(36 * (var(--rate)));
  font-weight: bold;
  line-height: 1;
  color: var(--color_primary);
}

#lp_contents .sec_nayami .ttl_wrap .ttl_txt{
  font-size: calc(16 * (var(--rate)));
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

#lp_contents .sec_nayami .ttl_wrap .ttl_txt span{
  font-size: calc(21 * (var(--rate)));
}

/*------------ graph_wrap ------------*/
#lp_contents .sec_nayami .graph_wrap{
  position: relative;
  display: grid;
  gap: calc(16 * (var(--rate)));
  width: calc(360 * (var(--rate)));
  margin: calc(60 * (var(--rate))) auto 0;
}

#lp_contents .sec_nayami .graph_wrap .nayami_graph::before,
#lp_contents .sec_nayami .graph_wrap .nayami_graph::after{
  content: "";
  display: block;
  width: calc(40 * (var(--rate)));
  height: calc(20 * (var(--rate)));
  background-image: url(../img/emphasis.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: calc(-30 * (var(--rate)));
  left: calc(23 * (var(--rate)));
  margin: auto;
  animation: 1s ease-in-out 0s infinite alternate none running blinking;
}

#lp_contents .sec_nayami .graph_wrap .nayami_graph::after{
  top: calc(20 * (var(--rate)));
  left: calc(78 * (var(--rate)));
}

#lp_contents .sec_nayami .graph_wrap .note{
  width: fit-content;
  margin: auto;
  text-align: justify;
}

/*------------ nayami_wrap ------------*/
#lp_contents .sec_nayami .nayami_wrap{
  position: relative;
  margin: calc(40 * (var(--rate))) auto 0;
  padding-bottom: calc(16 * (var(--rate)));
  background: transparent linear-gradient(180deg, #FFFFFF 0%, #EDEDED 100%) 0% 0% no-repeat padding-box;
}

#lp_contents .sec_nayami .nayami_wrap:after{
  content: '';
  position: absolute;
  display: block;
  width: calc(390 * (var(--rate)));
  height: calc(40 * (var(--rate)));
  background-color: #EDEDED;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  left: 0;
  bottom: calc(-40 * (var(--rate)));
}

#lp_contents .sec_nayami .nayami_wrap .ranking_list{
  width: calc(360 * (var(--rate)));
  margin: auto;
}

#lp_contents .sec_nayami .nayami_wrap .ranking_list li{
  position: relative;
  display: grid;
  align-content: start;
  gap: calc(10 * (var(--rate)));
  width: calc(260 * (var(--rate)));
  height: calc(155 * (var(--rate)));
  padding-top: calc(22 * (var(--rate)));
}
#lp_contents .sec_nayami .nayami_wrap .ranking_list .rank_2{
  margin-left: auto;
}

#lp_contents .sec_nayami .nayami_wrap .ranking_list li:before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(211, 211, 211, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  -webkit-mask: url("../img/speech.svg") no-repeat center / contain;
  mask: url("../img/speech.svg") no-repeat center / contain;
}
#lp_contents .sec_nayami .nayami_wrap .ranking_list .rank_2:before{
  transform: scaleX(-1);
  z-index: 3;
}

#lp_contents .sec_nayami .nayami_wrap img{
  position: absolute;
  filter: var(--drop-shadow);
  z-index: 2;
}

#lp_contents .sec_nayami .nayami_wrap .nayami_img_1{
  top: calc(7 * (var(--rate)));
  right: calc(-95 * (var(--rate)));
  width: calc(115 * (var(--rate)));
  transition-delay: 0.75s;
}

#lp_contents .sec_nayami .nayami_wrap .nayami_img_2{
  top: 0;
  left: calc(-100 * (var(--rate)));
  width: calc(125 * (var(--rate)));
  transition-delay: 0.75s;
}

#lp_contents .sec_nayami .nayami_wrap p{
  position: relative;
  z-index: 4;
}

#lp_contents .sec_nayami .nayami_wrap .rank{
  font-size: calc(20 * (var(--rate)));
  font-weight: bold;
  line-height: 1;
  color: var(--color_primary);
}

#lp_contents .sec_nayami .nayami_wrap .rank .num{
  font-size: calc(24 * (var(--rate)));
}

#lp_contents .sec_nayami .nayami_wrap .category{
  font-size: calc(26 * (var(--rate)));
  font-weight: 600;
  line-height: 1;
}

#lp_contents .sec_nayami .nayami_wrap .sub_category{
  font-size: calc(14 * (var(--rate)));
  font-weight: 600;
  line-height: 1;
}

#lp_contents .sec_nayami .nayami_wrap .nayami_lead{
  margin-top: calc(30 * (var(--rate)));
}

#lp_contents .sec_nayami .nayami_wrap .nayami_lead .border{
  font-size: calc(20 * (var(--rate)));
  font-weight: bold;
  letter-spacing: 0.1em;
}

/*------------ connect_wrap ------------*/
#lp_contents .sec_nayami .connect_wrap{
  margin-top: calc(70 * (var(--rate)));
}

#lp_contents .sec_nayami .connect_wrap .connect_ttl{
  position: relative;
  width: fit-content;
  margin: 0 auto calc(15 * (var(--rate)));
  padding: calc(6 * (var(--rate))) calc(23 * (var(--rate)));
  font-size: calc(18 * (var(--rate)));
  font-weight: 500;
  line-height: 1;
  border-radius: calc(100 * (var(--rate)));
  background-color: var(--color_point);
}

#lp_contents .sec_nayami .connect_wrap .connect_ttl:after{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(-10 * (var(--rate)));
  width: calc(15 * (var(--rate)));
  height: calc(10 * (var(--rate)));
  margin: auto;
  background-color: var(--color_point);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

#lp_contents .sec_nayami .connect_wrap .connect_lead{
  font-weight: 500;
}

#lp_contents .sec_nayami .connect_wrap .connect_img{
  filter: var(--drop-shadow);
}


/* sec_faq
==================================*/
#lp_contents .sec_faq .faq_ttl{
  width: 100%;
  margin-bottom: calc(30 * (var(--rate)));
  padding: calc(15 * (var(--rate)));
  font-size: calc(24 * (var(--rate)));
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  background-color: var(--bg_green);
}

#lp_contents .sec_faq .kit_list{
  display: grid;
  gap: calc(80 * (var(--rate)));
}

#lp_contents .sec_faq .kit_list li{
  display: grid;
  gap: calc(25 * (var(--rate)));
}

/*------------ faq_wrap ------------*/
#lp_contents .sec_faq .faq_wrap .faq_list{
  display: grid;
  gap: calc(24 * (var(--rate)));
  margin-bottom: calc(34 * (var(--rate)));
  padding: 0 calc(15 * (var(--rate)));
}

#lp_contents .sec_faq .faq_wrap dl{
  position: relative;
  display: grid;
  grid-template-columns: calc(30 * (var(--rate))) 1fr;
  gap: calc(10 * (var(--rate)));
  width: calc(305 * (var(--rate)));
  padding: calc(15 * (var(--rate))) calc(15 * (var(--rate))) calc(15 * (var(--rate))) calc(10 * (var(--rate)));
  text-align: justify;
  border-radius: calc(10 * (var(--rate)));
  box-shadow: var(--box-shadow);
}
#lp_contents .sec_faq .faq_wrap .question{
  background-color: var(--color_white);
}
#lp_contents .sec_faq .faq_wrap .answer{
  background-color: var(--bg_lime);
  margin-left: auto;
}

#lp_contents .sec_faq .faq_wrap dl:before{
  content: '';
  position: absolute;
  display: block;
  width: calc(20 * (var(--rate)));
  height: calc(20 * (var(--rate)));
  background-image: url(../img/arrow-white.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  bottom: calc(-15 * (var(--rate)));
  left: calc(20 * (var(--rate)));
  filter: drop-shadow(0 4px 6px #00000029);
}
#lp_contents .sec_faq .faq_wrap dl.answer:before{
  background-image: url(../img/arrow-green.svg);
  left: auto;
  right: calc(20 * (var(--rate)));
}

#lp_contents .sec_faq .faq_wrap dt{
  font-size: calc(36 * (var(--rate)));
  font-weight: bold;
  line-height: 1;
}
#lp_contents .sec_faq .faq_wrap .question dt{
  color: var(--color_primary);
}
#lp_contents .sec_faq .faq_wrap .answer dt{
  color: var(--color_pink);
}

#lp_contents .sec_faq .faq_wrap .question dd{
  font-size: calc(14 * (var(--rate)));
  line-height: 1.75;
  letter-spacing: 0;
}
#lp_contents .sec_faq .faq_wrap .answer dd{
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0;
}

#lp_contents .sec_faq .faq_wrap .border{
  font-weight: bold;
}

#lp_contents .sec_faq .faq_wrap .prof_detail{
  position: relative;
  display: grid;
  gap: calc(8 * (var(--rate)));
  padding: calc(20 * (var(--rate))) calc(25 * (var(--rate))) calc(25 * (var(--rate))) calc(145 * (var(--rate)));
  text-align: justify;
  background-color: var(--bg_gray);
}

#lp_contents .sec_faq .faq_wrap .prof_detail .staff_img{
  position: absolute;
  bottom: 0;
  filter: var(--drop-shadow);
}
#lp_contents .sec_faq .staff_1 .faq_wrap .prof_detail .staff_img,
#lp_contents .sec_faq .staff_2 .faq_wrap .prof_detail .staff_img{
  width: calc(160 * (var(--rate)));
  left: calc(-24 * (var(--rate)));
}
#lp_contents .sec_faq .staff_3 .faq_wrap .prof_detail .staff_img{
  width: calc(140 * (var(--rate)));
  left: calc(-17 * (var(--rate)));
}
#lp_contents .sec_faq .staff_4 .faq_wrap .prof_detail .staff_img{
  width: calc(160 * (var(--rate)));
  left: calc(-24 * (var(--rate)));
}

#lp_contents .sec_faq .faq_wrap .prof_detail .staff_name{
  padding-left: calc(28 * (var(--rate)));
  font-size: calc(14 * (var(--rate)));
  font-weight: bold;
  line-height: 1.3;
  background-image: url(../img/crown.svg);
  background-repeat: no-repeat;
  background-size: calc(20 * (var(--rate)));
  background-position: center left;
}

#lp_contents .sec_faq .faq_wrap .prof_detail .shop_name{
  font-size: calc(11 * (var(--rate)));
  line-height: 1.5;
}

#lp_contents .sec_faq .faq_wrap .prof_detail .staff_link{
  display: flex;
  align-items: center;
  gap: calc(5 * (var(--rate)));
  font-size: calc(12 * (var(--rate)));
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
}

#lp_contents .sec_faq .faq_wrap .prof_detail .staff_link .arrow{
  display: block;
  width: calc(6 * (var(--rate)));
  height: calc(6 * (var(--rate)));
  border-top: 3px solid var(--color_primary);
  border-right: 3px solid var(--color_primary);
  rotate: 45deg;
}

/*------------ arrow_wrap ------------*/
#lp_contents .sec_faq .arrow_wrap{
  display: grid;
  gap: calc(4 * (var(--rate)));
}

#lp_contents .sec_faq .arrow_wrap .arrow_txt{
  font-weight: 600;
}

.cp_arrows {
  position: relative;
  display: flex;
  height: calc(14 * var(--rate));
  justify-content: center;
  align-items: center;
}

.cp_arrows .cp_arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: calc(24 * var(--rate));
  height: calc(8 * var(--rate));
  opacity: 0;
}

.cp_arrows .cp_arrow:first-child {
  animation: arrow-move 2s ease-in-out infinite;
}
.cp_arrows .cp_arrow:nth-child(2) {
  animation: arrow-move 2s 1s ease-in-out infinite;
}

.cp_arrows .cp_arrow:before,
.cp_arrows .cp_arrow:after {
  position: absolute;
  content: '';
  top: 0;
  width: calc(14 * var(--rate));
  height: calc(1 * var(--rate));
  background: var(--color_border);
}

.cp_arrows .cp_arrow:before {
  left: calc(-1 * var(--rate));
  transform: rotate(30deg);
}
.cp_arrows .cp_arrow:after {
  right: 0;
  transform: rotate(-30deg);
}

/*------------ kit_wrap ------------*/
#lp_contents .sec_faq .kit_wrap .kit_img{
  position: relative;
  overflow: hidden;
}

#lp_contents .sec_faq .kit_wrap .kit_ttl{
  position: absolute;
  top: calc(40 * var(--rate));
  left: 0;
  right: 0;
  display: grid;
  gap: calc(16 * var(--rate));
  margin: auto;
  z-index: 2;
  transition-delay: 0.5s;
}

#lp_contents .sec_faq .kit_wrap .kit_name{
  font-size: calc(26 * var(--rate));
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
}

#lp_contents .sec_faq .kit_wrap .kit_lead{
  display: grid;
  gap: calc(5 * var(--rate));
  font-weight: 500;
  line-height: 1;
}

#lp_contents .sec_faq .kit_wrap .kit_lead span{
  display: block;
  margin: auto;
  padding: calc(7 * var(--rate)) calc(12 * var(--rate)) calc(5 * var(--rate));
  background-color: rgba(255, 255, 255, .5);
}

#lp_contents .sec_faq .kit_wrap .kit_detail{
  position: relative;
  display: grid;
  gap: calc(25 * var(--rate));
  padding: calc(40 * var(--rate)) calc(15 * var(--rate));
}
#lp_contents .sec_faq .staff_1 .kit_wrap .kit_detail,
#lp_contents .sec_faq .staff_4 .kit_wrap .kit_detail{
  background-color: var(--bg_pink);
}
#lp_contents .sec_faq .staff_2 .kit_wrap .kit_detail{
  background-color: var(--bg_blue);
}
#lp_contents .sec_faq .staff_3 .kit_wrap .kit_detail{
  background-color: var(--bg_yellow);
}

#lp_contents .sec_faq .kit_wrap .kit_price{
  font-weight: 600;
}

#lp_contents .sec_faq .kit_wrap .kit_price .release_day{
  display: block;
  font-size: calc(12 * var(--rate));
  font-weight: bold;
}

#lp_contents .sec_faq .kit_wrap .kit_price .price{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(12 * var(--rate));
}

#lp_contents .sec_faq .kit_wrap .kit_price .off{
  padding: calc(5 * var(--rate)) calc(8 * var(--rate));
  line-height: 1;
  color: #D65333;
  border: 1px solid #D65333;
  border-radius: calc(5 * var(--rate));
}

#lp_contents .sec_faq .kit_wrap .kit_price .sale_price{
  font-size: calc(25 * var(--rate));
  line-height: 1;
}

#lp_contents .sec_faq .kit_wrap .link_btn{
  width: calc(240 * var(--rate));
  font-size: calc(18 * var(--rate));
  letter-spacing: 0.1em;
}

#lp_contents .sec_faq .staff_1 .kit_wrap .link_btn,
#lp_contents .sec_faq .staff_4 .kit_wrap .link_btn{
  background-color: var(--color_pink);
}
#lp_contents .sec_faq .staff_2 .kit_wrap .link_btn{
  background-color: var(--color_blue);
}
#lp_contents .sec_faq .staff_3 .kit_wrap .link_btn{
  background-color: var(--color_yellow);
}

#lp_contents .sec_faq .kit_wrap .shop_detail{
  display: grid;
  gap: calc(12 * var(--rate));
}

#lp_contents .sec_faq .kit_wrap .shop_detail dt{
  font-weight: bold;
  line-height: 1;
}

#lp_contents .sec_faq .kit_wrap .shop_detail dd{
  display: grid;
  gap: calc(10 * var(--rate));
  font-size: calc(13 * var(--rate));
  line-height: 1;
}

#lp_contents .sec_faq .kit_wrap .modal-btn{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(5 * var(--rate));
  width: fit-content;
  margin: auto;
  padding: calc(6 * var(--rate)) calc(12 * var(--rate));
  font-size: calc(11 * var(--rate));
  line-height: 1;
  border-radius: calc(100 * var(--rate));
  border: 1px solid var(--color_border);
  background-color: var(--color_white);
  transform: translateY(-50%);
}

#lp_contents .sec_faq .kit_wrap .item-btn{
  position: absolute;
  width: calc(30 * var(--rate));
  height: calc(30 * var(--rate));
}

#lp_contents .sec_faq .kit_wrap .item-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(15 * var(--rate));
  height: calc(15 * var(--rate));
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  filter: blur(3px);
  animation: dots-anime 2.5s ease-in-out infinite;
  opacity: .9;
}

#lp_contents .sec_faq .staff_1 .kit_wrap .item-btn:nth-child(1){
  top: calc(365 * var(--rate));
  left: calc(190 * var(--rate));
}
#lp_contents .sec_faq .staff_1 .kit_wrap .item-btn:nth-child(2){
  top: calc(270 * var(--rate));
  left: calc(45 * var(--rate));
}
#lp_contents .sec_faq .staff_1 .kit_wrap .item-btn:nth-child(3){
  top: calc(203 * var(--rate));
  left: calc(120 * var(--rate));
}
#lp_contents .sec_faq .staff_1 .kit_wrap .item-btn:nth-child(4){
  top: calc(373 * var(--rate));
  left: calc(112 * var(--rate));
}
#lp_contents .sec_faq .staff_1 .kit_wrap .item-btn:nth-child(5){
  top: calc(250 * var(--rate));
  left: calc(203 * var(--rate));
}

#lp_contents .sec_faq .staff_2 .kit_wrap .item-btn:nth-child(1){
  top: calc(320 * var(--rate));
  left: calc(45 * var(--rate));
}
#lp_contents .sec_faq .staff_2 .kit_wrap .item-btn:nth-child(2){
  top: calc(220 * var(--rate));
  left: calc(118 * var(--rate));
}
#lp_contents .sec_faq .staff_2 .kit_wrap .item-btn:nth-child(3){
  top: calc(360 * var(--rate));
  left: calc(170 * var(--rate));
}
#lp_contents .sec_faq .staff_2 .kit_wrap .item-btn:nth-child(4){
  top: calc(252 * var(--rate));
  left: calc(177 * var(--rate));
}
#lp_contents .sec_faq .staff_2 .kit_wrap .item-btn:nth-child(5){
  top: calc(275 * var(--rate));
  left: calc(222 * var(--rate));
}

#lp_contents .sec_faq .staff_3 .kit_wrap .item-btn:nth-child(1){
  top: calc(425 * var(--rate));
  left: calc(152 * var(--rate));
}
#lp_contents .sec_faq .staff_3 .kit_wrap .item-btn:nth-child(2){
  top: calc(320 * var(--rate));
  left: calc(70 * var(--rate));
}
#lp_contents .sec_faq .staff_3 .kit_wrap .item-btn:nth-child(3){
  top: calc(240 * var(--rate));
  left: calc(66 * var(--rate));
}
#lp_contents .sec_faq .staff_3 .kit_wrap .item-btn:nth-child(4){
  top: calc(240 * var(--rate));
  left: calc(268 * var(--rate));
}
#lp_contents .sec_faq .staff_3 .kit_wrap .item-btn:nth-child(5){
  top: calc(225 * var(--rate));
  left: calc(183 * var(--rate));
}

#lp_contents .sec_faq .staff_4 .kit_wrap .item-btn:nth-child(1){
  top: calc(210 * var(--rate));
  left: calc(257 * var(--rate));
}
#lp_contents .sec_faq .staff_4 .kit_wrap .item-btn:nth-child(2){
  top: calc(200 * var(--rate));
  left: calc(167 * var(--rate));
}
#lp_contents .sec_faq .staff_4 .kit_wrap .item-btn:nth-child(3){
  top: calc(282 * var(--rate));
  left: calc(217 * var(--rate));
}
#lp_contents .sec_faq .staff_4 .kit_wrap .item-btn:nth-child(4){
  top: calc(320 * var(--rate));
  left: calc(110 * var(--rate));
}


/* sec_about
==================================*/
#lp_contents .sec_about{
  display: grid;
  gap: calc(30 * (var(--rate)));
  padding: calc(50 * (var(--rate))) calc(20 * (var(--rate)));
  background-color: var(--bg_green);
}

#lp_contents .sec_about .sub_ttl{
  font-size: calc(20 * (var(--rate)));
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--color_primary);
}

#lp_contents .sec_about .link_btn{
  height: calc(72 * (var(--rate)));
}

/*------------ about_wrap ------------*/
#lp_contents .sec_about .about_wrap{
  display: grid;
  gap: calc(20 * (var(--rate)));
  width: calc(350 * (var(--rate)));
  margin: auto;
  padding: calc(36 * (var(--rate))) calc(15 * (var(--rate)));
  background-color: var(--color_white);
  border-radius: calc(10 * (var(--rate)));
  text-align: center;
}

#lp_contents .sec_about .about_wrap .about_ttl{
  display: grid;
  gap: calc(10 * (var(--rate)));
}

#lp_contents .sec_about .about_wrap .lead{
  font-size: calc(15 * (var(--rate)));
}

#lp_contents .sec_about .about_wrap .lead .big{
  font-size: calc(18 * (var(--rate)));
}

#lp_contents .sec_about .about_wrap .about_blk{
  position: relative;
  display: grid;
  gap: calc(12 * (var(--rate)));
  align-content: center;
  border-spacing: calc(10 * (var(--rate))) calc(40 * (var(--rate)));
  width: 100%;
  min-height: calc(284 * (var(--rate)));
  padding: 0 calc(20 * (var(--rate)));
  background-image: url(../img/bg.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

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

#lp_contents .sec_about .about_wrap .about_blk th{
  margin-right: calc(10 * (var(--rate)));
  font-size: calc(20 * (var(--rate)));
  font-weight: bold;
  line-height: 1;
}

#lp_contents .sec_about .about_wrap .about_blk td ul{
  display: grid;
  gap: calc(3 * (var(--rate)));
}

#lp_contents .sec_about .about_wrap .about_blk td li{
  display: flex;
  align-items: center;
  gap: calc(6 * (var(--rate)));
  font-weight:500;
  line-height: 1;
}

#lp_contents .sec_about .about_wrap .about_blk td img{
  width: calc(28 * (var(--rate)));
}

#lp_contents .sec_about .about_wrap .about_blk .small{
  display: block;
  margin-left: calc(6 * (var(--rate)));
  font-size: calc(12 * (var(--rate)));
}


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

    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(300px, calc(300 * (100vw / 1400)));
  }

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

  #lp_contents .nav_list{
    display: grid;
    gap: 1.5rem;
    width: 30rem;
    margin: auto;
  }

  #lp_contents .nav_list .INDEX{
    font-size: 2.4rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1;
    color: var(--color_primary);
  }

  #lp_contents .nav_list ul{
    display: grid;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color_sub);
  }

  #lp_contents .nav_list li{
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color_sub);
  }

  #lp_contents .nav_list li a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1;
  }

  #lp_contents .nav_list .arrow{
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    border-top: 1px solid var(--color_primary);
    border-right: 1px solid var(--color_primary);
    rotate: 135deg;
  }
}


/*--------------------------------
            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 .left_area,
  #lp_contents .right_area{
    display: none;
  }
}

/*--------------------------------
            Layout  SP
 --------------------------------*/
@media (max-width: 767px) {
  html {
    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 {
    margin-top: -3rem;
  }

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

  #lp_contents a:hover{opacity: 1}

  #lp_contents .lp_inner{
    overflow: hidden;
  }
}