@charset "UTF-8";

/*--------------------------------
            CSS Animation
 --------------------------------*/
@keyframes opa {
  0% {
    opacity: 0;
    filter: blur(10px);
  }

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

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

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

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

#lp_contents .fadeIn.is-show,
#lp_contents .fadeInUp.is-show,
#lp_contents .bounceLeft.is-show,
#lp_contents .bounceRight.is-show,
#lp_contents .Gradualfade.is-show{
  transform: translate(0, 0) scale(1);
  -ms-filter: blur(0);
  filter: blur(0);
  opacity: 1;
  -webkit-mask-position: center 0;
  mask-position: center 0;
}


/* modal
==================================*/
#lp_contents .modal{
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  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{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
}
#lp_contents .modal_inner{
  max-height: 90svh;
  overflow-y: scroll;
  padding-top: calc(15 * (var(--rate)));
}
#lp_contents .ico_close {
  position: fixed;
  height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(50 * (var(--rate)));
  height: calc(50 * (var(--rate)));
  top: calc(15 * (var(--rate)));
  right: 0;
  z-index: 5;
}
#lp_contents .ico_close span {
  position: absolute;
  display: block;
  width: calc(20 * (var(--rate)));
  aspect-ratio: 1 / 1;
  top: calc(13 * (var(--rate)));
  right: calc(13 * (var(--rate)));
}
#lp_contents .ico_close span:before,
#lp_contents .ico_close span:after{
  content: '';
  width: calc(25 * (var(--rate)));
  height: 1px;
  background-color: #000;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: calc(-2 * (var(--rate)));
  bottom: 0;
  margin: auto;
}
#lp_contents .ico_close span:after{
  transform: rotate(-45deg);
}
#lp_contents .close_btn{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(4 * (var(--rate)));
  width: fit-content;
  height: fit-content;
  margin: auto;
  padding-bottom: calc(2 * (var(--rate)));
  line-height: 1;
  border-bottom: 1px solid var(--color_border);
}
#lp_contents .close_btn.ico_close{
  position: relative;
  top: 0;
}
#lp_contents .close_btn.ico_close span{
  position: relative;
  width: calc(10 * (var(--rate)));
  top: 0;
  left: 0;
}
#lp_contents .close_btn.ico_close span:before,
#lp_contents .close_btn.ico_close span:after{
  width: calc(12 * (var(--rate)));
}


/* parallax
==================================*/
#lp_contents .cd-fixed-bg{
  background-size: cover;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 2;
  width: 100%;
  height: calc(390 * (var(--rate)));
  background-image: url(../img/260501/visual.jpg);
}


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

#lp_contents .accordion.is-hide{
  position: relative;
  overflow: hidden;
  height: calc(120 * (var(--rate)));
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

#lp_contents .trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(5 * (var(--rate)));
  width: fit-content;
  margin: auto;
  padding-bottom: calc(3 * (var(--rate)));
  border-bottom: 1px solid var(--color_border);
  line-height: 1;
  letter-spacing: 0;
  cursor: pointer;
  transition: .2s ease;
  transition: 0.5s opacity;
}

#lp_contents .trigger.is-show{
  display: none;
  display: flex;
}

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

#lp_contents .trigger .plus:before,
#lp_contents .trigger .plus:after{
  width: 100%;
}

#lp_contents .trigger.is-show .plus:after{
  rotate: 0deg;
}


/* follow
==================================*/
#lp_contents .follow{
  position: fixed;
  bottom: 0;
  z-index: 100;
  transition: all 0.5s;
  opacity: 0;
  transform: translateX(-100%);
}

#lp_contents .follow.fixed{
  opacity: 1;
  transform: translateX(0%);
}

#lp_contents .follow.none{
  opacity: 0;
  transform: translateX(-100%);
}


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

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{
  /*root*/
  --rate: 50rem / 390;
  --font_base: "itc-avant-garde-gothic-pro", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
  --bg-default: #FAFBFF;
  --bg-gray: #F8F9FA;
  --color_font: #212121;
  --color_sub: #888;
  --color_border: #606060;
  --color_line: #ccc;
  --color_primary: #74A6CB;
  --color_secondary: #DFFD4D;
  --color_purple: #755C98;
  --color_purple_sub: #E8E6F3;
  --color_blue: #3C739D;
  --color_blue_sub: #DFE6F2;
  --color_green: #587E1B;
  --color_green_sub: #E8EFC8;
  --color_white: #fff;
  
  /*style*/
  font-family: var(--font_base);
  font-size: calc(14 * (var(--rate)));
  letter-spacing: 0.03em;
  line-height: 2;
  text-align: center;

  display: flex;
  justify-content: center;

  color: var(--color_font);
  background-color: var(--bg-default);
  position: relative;
}
#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(60 * (var(--rate)));
  z-index: 3;
  width: 50rem;
  background-color: var(--color_white);
  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(14 * (var(--rate)));
  line-height: 2;
}
#lp_contents sup{
  font-size: 50%;
  margin-top: -0.6rem;
}
#lp_contents .note{
  display: inline-block;
  font-size: calc(12 * (var(--rate)));
  line-height: 1;
  color: var(--color_sub);
}
#lp_contents p .note{
  margin-top: 0;
}
#lp_contents .bold{
  font-weight: bold;
}
#lp_contents .body_text{
  max-width: calc(340 * (var(--rate)));
  margin: auto;
  text-align: justify;
  color: var(--color_font);
}

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

/*------------ arrow ------------*/
#lp_contents .arrow{
  display: inline-block;
  width: calc(8 * (var(--rate)));
  height: calc(8 * (var(--rate)));
  border-right: 1px solid;
  border-bottom: 1px solid;
  rotate: 45deg;
  margin: auto;
}
#lp_contents .plus{
  position: absolute;
  display: block;
  width: calc(15 * (var(--rate)));
  height: calc(15 * (var(--rate)));
  background-color: var(--color_white);
  border-radius: 100%;
}
#lp_contents .plus:before,
#lp_contents .plus:after{
  content: '';
  width: calc(6 * (var(--rate)));
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.5s;
}
#lp_contents .plus:after{
  rotate: 90deg;
}

/*------------ Button ------------*/
#lp_contents .link_btn{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(8 * (var(--rate)));
  width: calc(200 * (var(--rate)));
  height: calc(40 * (var(--rate)));
  margin: auto;
  color: var(--color_font);
  background-color: var(--color_secondary);
  border: 1px solid var(--color_border);
  border-radius: calc(100 * (var(--rate)));
}
#lp_contents .link_btn:before{
  content: '';
  display: block;
  background: var(--color_font);
  height: calc(tan(60deg) * calc(10 * (var(--rate))) / 2);
  width: calc(10 * (var(--rate)));
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
#lp_contents .link_btn .arrow{
  position: absolute;
  top: 0;
  bottom: 0;
  right: calc(10 * (var(--rate)));
  margin: auto;
  rotate: -45deg;
  border-color: var(--color_white);
}
#lp_contents .link_txt{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(8 * (var(--rate)));
  width: fit-content;
  margin: auto;
  padding-bottom: calc(2 * (var(--rate)));
  font-size: calc(12 * (var(--rate)));
  line-height: 1;
  color: var(--color_sub);
  border-bottom: 1px solid var(--color_border);
}
#lp_contents .link_txt:before{
  content: '';
  display: block;
  background: var(--color_sub);
  height: calc(tan(60deg) * calc(10 * (var(--rate))) / 2);
  width: calc(10 * (var(--rate)));
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/*------------ cmpn_area ------------*/
#lp_contents .cmpn_area{
  position: relative;
  display: grid;
  gap: calc(25 * (var(--rate)));
  width: calc(350 * (var(--rate)));
  margin: auto;
  padding: calc(40 * (var(--rate))) calc(24 * (var(--rate))) calc(30 * (var(--rate)));
  border-radius: calc(30 * (var(--rate)));
  border: 1px solid var(--color_border);
  background-color: var(--bg-default);
}

#lp_contents .cmpn_area .ico_txt{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  width: fit-content;
  margin: auto;
  padding: calc(10 * (var(--rate))) calc(15 * (var(--rate)));
  font-size: calc(13 * (var(--rate)));
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  transform: translateY(-50%);
  background-color: var(--color_primary);
  border-radius: calc(100 * (var(--rate)));
  color: var(--color_green_sub);
}

#lp_contents .cmpn_area .main_ttl{
  font-size: calc(19 * (var(--rate)));
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color_primary);
}

#lp_contents .cmpn_area .cmpn_date{
  font-size: calc(15 * (var(--rate)));
  font-weight: 500;
  line-height: 1;
}

#lp_contents .cmpn_area .cmpn_date .day{
  font-size: calc(21 * (var(--rate)));
}

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

#lp_contents .cmpn_area .cmpn_list li{
  display: grid;
  gap: calc(15 * (var(--rate)));
  padding-top: calc(25 * (var(--rate)));
  background-image : linear-gradient(to right, var(--color_line) 2px, transparent 2px);
  background-size: 5px 1px;
  background-repeat: repeat-x;
  background-position: left top;
}

#lp_contents .cmpn_area .cmpn_num{
  font-size: calc(15 * (var(--rate)));
  line-height: 1;
  color: var(--color_primary);
}

#lp_contents .cmpn_area .cmpn_ttl{
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: calc(8 * (var(--rate)));
  font-size: calc(24 * (var(--rate)));
  font-weight: 500;
  line-height: 1;
  color: var(--color_primary);
}

#lp_contents .cmpn_area .cmpn_ttl .eng{
  display: flex;
  align-items: baseline;
  gap: calc(4 * (var(--rate)));
  font-size: calc(30 * (var(--rate)));
}

#lp_contents .cmpn_area .cmpn_ttl .big{
  font-size: calc(40 * (var(--rate)));
}

#lp_contents .cmpn_area .cmpn_ttl img{
  width: calc(32 * (var(--rate)));
  transform: translateY(calc(6 * (var(--rate))));
}

#lp_contents .cmpn_area .cmpn_btn{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(220 * (var(--rate)));
  height: calc(30 * (var(--rate)));
  margin: auto;
  border-radius: calc(30 * (var(--rate)));
  font-size: calc(12 * (var(--rate)));
  border: 1px solid var(--color_border);
  background-color: var(--color_white);
}

#lp_contents .cmpn_area .cmpn_btn .plus{
  top: 0;
  bottom: 0;
  right: calc(6 * (var(--rate)));
  margin: auto;
  background-color: var(--color_border);
}

#lp_contents .cmpn_area .cmpn_btn .plus:before,
#lp_contents .cmpn_area .cmpn_btn .plus:after{
  background-color: var(--color_white);
}

/*------------ type_list ------------*/
#lp_contents .type_list{
  display: flex;
  gap: calc(10 * (var(--rate)));
}

#lp_contents .type_list li{
  border-radius: calc(20 * (var(--rate)));
}

#lp_contents .type_list a{
  display: grid;
  gap: calc(10 * (var(--rate)));
  width: 100%;
  padding: calc(5 * (var(--rate))) calc(5 * (var(--rate))) calc(12 * (var(--rate)));
  font-size: calc(13 * (var(--rate)));
  font-weight: 600;
  line-height: 1;
}


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

/* cmpn_fixed
==================================*/
#lp_contents .cmpn_fixed{
  position: fixed;
  left: 0;
  bottom: calc(20 * (var(--rate)));
  display: flex;
  align-items: center;
  gap: calc(8 * (var(--rate)));
  width: fit-content;
  padding: calc(10 * (var(--rate))) calc(12 * (var(--rate))) calc(10 * (var(--rate))) calc(10 * (var(--rate)));
  background-color: var(--color_border);
  border-radius: 0 calc(100 * (var(--rate))) calc(100 * (var(--rate))) 0;
  z-index: 10;
}

#lp_contents .cmpn_fixed .cmpn_ttl{
  font-size: calc(13 * (var(--rate)));
  line-height: 1.3;
  color: var(--color_green_sub);
}

#lp_contents .cmpn_fixed .cmpn_ttl .big{
  font-size: calc(16 * (var(--rate)));
}

#lp_contents .cmpn_fixed .cmpn_ttl .eng{
  font-size: calc(12 * (var(--rate)));
}

#lp_contents .cmpn_fixed .plus{
  position: relative;
  width: calc(18 * (var(--rate)));
  height: calc(18 * (var(--rate)));
}


/* sec_mv
==================================*/
#lp_contents .sec_mv .mv_wrap{
  margin: 0 auto calc(40 * (var(--rate)));
}

#lp_contents .sec_mv .lead_wrap{
  margin: 0 auto calc(60 * (var(--rate)));
}

#lp_contents .sec_mv .lead_wrap .lead{
  margin-bottom: calc(28 * (var(--rate)));
  font-size: calc(18 * (var(--rate)));
  line-height: 1.75;
}

#lp_contents .sec_mv .lead_wrap .brand{
  display: grid;
  gap: calc(15 * (var(--rate)));
  width: calc(180 * (var(--rate)));
  margin: 0 auto calc(18 * (var(--rate)));
}


/* sec_type
==================================*/
#lp_contents .sec_type{
  padding-top: calc(20 * (var(--rate)));
}

/*------------ check_wrap ------------*/
#lp_contents .sec_type .check_wrap{
  position: relative;
  margin: 0 auto calc(60 * (var(--rate)));
  padding: calc(50 * (var(--rate))) calc(15 * (var(--rate))) calc(40 * (var(--rate)));
  background-color: var(--bg-gray);
}

#lp_contents .sec_type .check_wrap .ico_txt{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  width: fit-content;
  margin: auto;
  padding: calc(10 * (var(--rate))) calc(15 * (var(--rate)));
  font-size: calc(13 * (var(--rate)));
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  transform: translateY(-50%);
  background-color: var(--color_primary);
  border-radius: calc(100 * (var(--rate)));
  color: var(--color_white);
}

#lp_contents .sec_type .check_wrap .arrow_sample{
  position: absolute;
  top: calc(30 * (var(--rate)));
  left: calc(30 * (var(--rate)));
  width: calc(55 * (var(--rate)));
}

#lp_contents .sec_type .check_wrap .START{
  margin-bottom: calc(12 * (var(--rate)));
  font-size: calc(24 * (var(--rate)));
  font-weight: 500;
  line-height: 1;
}

#lp_contents .sec_type .check_wrap .choices_list{
  display: grid;
  gap: calc(5 * (var(--rate)));
  margin: 0 auto calc(10 * (var(--rate)));
}

#lp_contents .sec_type .check_wrap .choices_list ul{
  display: flex;
  justify-content: center;
  gap: calc(10 * (var(--rate)));
}

#lp_contents .sec_type .check_wrap .choices_list li{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: calc(250 * (var(--rate)));
  min-height: calc(60 * (var(--rate)));
  padding: calc(12 * (var(--rate))) calc(5 * (var(--rate)));
  font-size: calc(12 * (var(--rate)));
  font-weight: 500;
  line-height: 1.5;
  border-radius: calc(20 * (var(--rate)));
  border: 1px solid var(--color_line);
  background-color: var(--color_white);
}

/*------------ type_wrap ------------*/
#lp_contents .js-switchingContents {
  display: none;
  opacity: 0;
  transition: .3s;
  &.is-open {
    display: block;
    opacity: 1;
  }
}

#lp_contents .sec_type .type_wrap .c-switchingTabs{
  display: flex;
  justify-content: center;
  align-items: end;
  gap: calc(10 * (var(--rate)));
  height: calc(50 * (var(--rate)));
  padding: 0 calc(15 * (var(--rate)));
}

#lp_contents .sec_type .type_wrap .c-switchingTabs__tab{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: calc(40 * (var(--rate)));
  font-size: calc(13 * (var(--rate)));
  line-height: 1;
  border-radius: calc(20 * (var(--rate))) calc(20 * (var(--rate))) 0 0;
  border-width: 0;
  transition: all 0.5s;
}
#lp_contents .sec_type .type_wrap .c-switchingTabs__tab.is-current{
  height: calc(50 * (var(--rate)));
  font-size: calc(15 * (var(--rate)));
  font-weight: bold;
}
#lp_contents .sec_type .type_wrap .c-switchingTabs__tab.is-current:before{
  position: absolute;
  top: calc(-20 * (var(--rate)));
  left: 0;
  right: 0;
  margin: auto;
  content: "\\ Selected /";
  font-size: calc(11 * (var(--rate)));
  font-weight: 400;
  line-height: 1;
}

#lp_contents .sec_type .type_wrap .c-switchingContainer__contents{
  padding: calc(40 * (var(--rate))) 0;
}

#lp_contents .sec_type .type_wrap .type_ttl{
  font-size: calc(24 * (var(--rate)));
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

#lp_contents .sec_type .type_wrap .type_speech{
  position: relative;
  margin: 0 auto calc(10 * (var(--rate)));
  padding: calc(5 * (var(--rate))) calc(25 * (var(--rate)));
  font-size: calc(15 * (var(--rate)));
  line-height: 1.5;
  border-radius: calc(20 * (var(--rate)));
  background-color: var(--color_white);
  border: 1px solid;
}
#lp_contents .sec_type .type_wrap .type_speech:before,
#lp_contents .sec_type .type_wrap .type_speech:after{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  margin: auto;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
#lp_contents .sec_type .type_wrap .type_speech:before{
  bottom: calc(-8 * (var(--rate)));
  width: calc(12 * (var(--rate)));
  height: calc(tan(60deg) * calc(10 * (var(--rate))) / 2);
  background-color: var(--color_white);
  z-index: 3;
}
#lp_contents .sec_type .type_wrap .type_speech:after{
  bottom: calc(-10 * (var(--rate)));
  width: calc(14 * (var(--rate)));
  height: calc(tan(60deg) * calc(12 * (var(--rate))) / 2);
  z-index: 2;
}

#lp_contents .sec_type .type_wrap .type_lead{
  font-size: calc(15 * (var(--rate)));
  font-weight: 500;
  line-height: 1.6;
}

#lp_contents .sec_type .type_wrap .type_lead .bold{
  font-size: calc(20 * (var(--rate)));
}

#lp_contents .sec_type .type_wrap .type_img{
  width: calc(220 * (var(--rate)));
  margin: auto;
}

#lp_contents .sec_type .type_wrap .wave_img{
  max-width: calc(340 * (var(--rate)));
  margin: auto;
}

#lp_contents .sec_type .type_wrap .wave_img img{
  width: calc(245 * (var(--rate)));
}

#lp_contents .sec_type .type_wrap .head_cont{
  position: relative;
  z-index: 2;
  display: grid;
  gap: calc(16 * (var(--rate)));
}

#lp_contents .sec_type .type_wrap .item_cont{
  position: relative;
  display: grid;
  gap: calc(40 * (var(--rate)));
}

#lp_contents .sec_type .type_wrap .fix_txt_img{
  position: sticky;
  top: calc(-50 * (var(--rate)));
  left: 0;
  right: 0;
  transform: translateY(calc(420 * (var(--rate))));

  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 0;
  margin: auto;
  z-index: 1;
}

#lp_contents .sec_type .type_wrap .fix_txt_img img{
  width: calc(38 * (var(--rate)));
}

#lp_contents .sec_type .type_wrap .item_block{
  position: relative;
  z-index: 2;
  display: grid;
  gap: calc(30 * (var(--rate)));
}

#lp_contents .sec_type .type_wrap .item_block .item_area{
  position: relative;
  display: grid;
  gap: calc(30 * (var(--rate)));
}

#lp_contents .sec_type .type_wrap .item_block .item_area svg{
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: calc(340 * (var(--rate)));
  z-index: 1;
}

#lp_contents .sec_type .type_wrap .item_block .cmpn_btn{
  position: absolute;
  top: 0;
  right: calc(30 * (var(--rate)));
  z-index: 1;
  display: grid;
  align-content: start;
  gap: calc(4 * (var(--rate)));
  width: calc(100 * (var(--rate)));
  padding-top: calc(8 * (var(--rate)));
  font-size: calc(10 * (var(--rate)));
  font-weight: 500;
  line-height: 1.2;
  aspect-ratio: 1/1;
  border-radius: 100%;
  color: var(--color_white);
}

#lp_contents .sec_type .type_wrap .item_block .cmpn_btn .plus{
  left: 0;
  right: 0;
  bottom: calc(9 * (var(--rate)));
  margin: auto;
}

#lp_contents .sec_type .type_wrap .item_block .item_list{
  position: relative;
  display: flex;
  justify-content: center;
  gap: calc(10 * (var(--rate)));
  z-index: 3;
  pointer-events: none;
}

#lp_contents .sec_type .type_wrap .item_block .item_list a{
  display: grid;
  gap: calc(10 * (var(--rate)));
  pointer-events: auto;
}

#lp_contents .sec_type .type_wrap .item_block .item_img{
  width: calc(80 * (var(--rate)));
  margin: auto;
}

#lp_contents .sec_type .type_wrap .item_block .item_cate{
  font-size: calc(13 * (var(--rate)));
  line-height: 1;
  color: var(--color_font);
}

#lp_contents .sec_type .type_wrap .item_block .item_detail{
  position: relative;
  z-index: 2;
  display: grid;
  gap: calc(12 * (var(--rate)));
}

#lp_contents .sec_type .type_wrap .item_block .item_name{
  font-size: calc(15 * (var(--rate)));
  font-weight: 600;
  line-height: 1.5;
  color: var(--color_font);
}

#lp_contents .sec_type .type_wrap .item_block .item_credit{
  display: grid;
  gap: calc(6 * (var(--rate)));
}

#lp_contents .sec_type .type_wrap .item_block .item_price{
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: calc(10 * (var(--rate)));
  font-size: calc(17 * (var(--rate)));
  color: var(--color_font);
  line-height: 1;
}

#lp_contents .sec_type .type_wrap .item_block .item_price .off{
  padding: calc(4 * (var(--rate))) calc(4 * (var(--rate))) calc(3 * (var(--rate)));
  font-size: calc(13 * (var(--rate)));
  font-weight: 500;
  line-height: 1;
  background-color: #D64242;
  color: var(--color_white);
}

#lp_contents .sec_type .type_wrap .item_block .regular_price{
  color: var(--color_sub);
}

#lp_contents .sec_type .type_wrap .item_block .sale_price{
  display: flex;
  align-items: baseline;
  gap: calc(4 * (var(--rate)));
  font-weight: 500;
}

#lp_contents .sec_type .type_wrap .item_block .sale_price .big{
  font-size: calc(24 * (var(--rate)));
}

#lp_contents .sec_type .type_wrap .item_block .sale_price .tax{
  font-size: calc(14 * (var(--rate)));
}

#lp_contents .sec_type .type_wrap .item_block .check_list{
  position: relative;
  width: calc(340 * (var(--rate)));
  margin: auto;
  padding: calc(25 * (var(--rate))) calc(25 * (var(--rate))) calc(20 * (var(--rate)));
  border-radius: calc(20 * (var(--rate)));
  border: 1px solid;
}

#lp_contents .sec_type .type_wrap .item_block .check_ttl{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: fit-content;
  margin: auto;
  padding: 0 calc(12 * (var(--rate)));
  font-size: calc(15 * (var(--rate)));
  font-weight: bold;
  transform: translateY(-50%);
  z-index: 2;
}

#lp_contents .sec_type .type_wrap .item_block .check_list ul{
  display: grid;
  gap: calc(8 * (var(--rate)));
}

#lp_contents .sec_type .type_wrap .item_block .check_list li{
  padding-left: calc(25 * (var(--rate)));
  text-align: left;
  background-repeat: no-repeat;
  background-size: calc(15 * (var(--rate))) calc(13 * (var(--rate)));
  background-position: top calc(4 * (var(--rate))) left;
}

#lp_contents .sec_type .type_wrap .big_bottle .type_ttl{
  font-size: calc(30 * (var(--rate)));
}

#lp_contents .sec_type .type_wrap .big_bottle .wave_img{
  width: calc(180 * (var(--rate))) !important;
}

#lp_contents .sec_type .type_wrap .review_block{
  display: grid;
  gap: calc(15 * (var(--rate)));
  width: calc(340 * (var(--rate)));
  margin: auto;
  padding: calc(40 * (var(--rate))) calc(20 * (var(--rate))) calc(30 * (var(--rate)));
  border-radius: calc(20 * (var(--rate)));
  background-color: rgba(255, 255, 255, .4);
}

#lp_contents .sec_type .type_wrap .review_block .review_ttl{
  font-size: calc(24 * (var(--rate)));
  letter-spacing: 0.05em;
  line-height: 1;
}

#lp_contents .sec_type .type_wrap .review_block .prof_group{
  display: grid;
  gap: calc(10 * (var(--rate)));
}

#lp_contents .sec_type .type_wrap .review_block .staff_img{
  display: flex;
  align-items: center;
  gap: calc(10 * (var(--rate)));
}

#lp_contents .sec_type .type_wrap .review_block .staff_img img{
  width: calc(60 * (var(--rate)));
  border-radius: 100%;
}

#lp_contents .sec_type .type_wrap .review_block .staff_name{
  text-align: left;
  font-size: calc(15 * (var(--rate)));
  line-height: 1.5;
  color: var(--color_font);
}

#lp_contents .sec_type .type_wrap .review_block .staff_shop{
  display: block;
  font-size: calc(11 * (var(--rate)));
}

#lp_contents .sec_type .type_wrap .review_block .prof_detail{
  position: relative;
  padding: calc(10 * (var(--rate))) calc(80 * (var(--rate))) calc(10 * (var(--rate))) 0;
  border-top: 1px solid var(--color_line);
  border-bottom: 1px solid var(--color_line);
}

#lp_contents .sec_type .type_wrap .review_block .prof_txt{
  text-align: justify;
  font-size: calc(11 * (var(--rate)));
  line-height: 1.75;
  color: var(--color_font);
}

#lp_contents .sec_type .type_wrap .review_block .staff_item_img{
  position: absolute;
  width: calc(120 * (var(--rate)));
  right: calc(-20 * (var(--rate)));
  bottom: 0;
}

#lp_contents .sec_type .type_wrap .review_block .review_img{
  display: grid;
  grid-template-columns: calc(145 * (var(--rate))) calc(145 * (var(--rate)));
  gap: calc(10 * (var(--rate)));
}

#lp_contents .sec_type .type_wrap .review_block .review_img figure{
  display: grid;
  gap: calc(10 * (var(--rate)));
}

#lp_contents .sec_type .type_wrap .review_block .review_img figcaption{
  font-size: calc(12 * (var(--rate)));
  line-height: 1;
  color: var(--color_font);
}

#lp_contents .sec_type .type_wrap .review_block .body_text{
  display: grid;
  gap: calc(10 * (var(--rate)));
  font-size: calc(13 * (var(--rate)));
}

#lp_contents .sec_type .type_wrap .type_anker{
  position: relative;
  z-index: 2;
  display: grid;
  gap: calc(15 * (var(--rate)));
  margin: calc(25 * (var(--rate))) auto 0;
  padding: 0 calc(15 * (var(--rate)));
}

#lp_contents .sec_type .type_wrap .type_anker .arrow{
  rotate: -135deg;
}

/*------------ type_1 ------------*/
#lp_contents .type_1,
#lp_contents .sec_type .type_wrap .type_1 .check_ttl{
  background-color: var(--color_purple_sub);
  color: var(--color_purple);
}

#lp_contents .type_1 .body_text .bold{
  color: var(--color_purple);
}

#lp_contents .sec_type .type_wrap .type_1 .type_speech,
#lp_contents .sec_type .type_wrap .type_1 .check_list{
  border-color: var(--color_purple);
}

#lp_contents .sec_type .type_wrap .type_1 .cmpn_btn,
#lp_contents .sec_type .type_wrap .type_1 .type_speech:after{
  background-color: var(--color_purple);
}

#lp_contents .sec_type .type_wrap .type_1 .wave_img{
  width: calc(280 * (var(--rate)));
}

#lp_contents .sec_type .type_wrap .type_1 .check_list li{
  background-image: url(../img/260501/ico_check_purple.svg);
}

/*------------ type_2 ------------*/
#lp_contents .type_2,
#lp_contents .sec_type .type_wrap .type_2 .check_ttl{
  color: var(--color_blue);
  background-color: var(--color_blue_sub);
}

#lp_contents .type_2 .body_text .bold{
  color: var(--color_blue);
}

#lp_contents .sec_type .type_wrap .type_2 .type_speech,
#lp_contents .sec_type .type_wrap .type_2 .check_list{
  border-color: var(--color_blue);
}

#lp_contents .sec_type .type_wrap .type_2 .cmpn_btn,
#lp_contents .sec_type .type_wrap .type_2 .type_speech:after{
  background-color: var(--color_blue);
}

#lp_contents .sec_type .type_wrap .type_2 .item_block:nth-of-type(2) .wave_img{
  width: calc(160 * (var(--rate)));
}

#lp_contents .sec_type .type_wrap .type_2 .item_block:nth-of-type(5) .wave_img{
  width: calc(320 * (var(--rate)));
}

#lp_contents .sec_type .type_wrap .type_2 .check_list li{
  background-image: url(../img/260501/ico_check_blue.svg);
}

/*------------ type_3 ------------*/
#lp_contents .type_3,
#lp_contents .sec_type .type_wrap .type_3 .check_ttl{
  color: var(--color_green);
  background-color: var(--color_green_sub);
}

#lp_contents .type_3 .body_text .bold{
  color: var(--color_green);
}

#lp_contents .sec_type .type_wrap .type_3 .type_speech,
#lp_contents .sec_type .type_wrap .type_3 .check_list{
  border-color: var(--color_green);
}

#lp_contents .sec_type .type_wrap .type_3 .cmpn_btn,
#lp_contents .sec_type .type_wrap .type_3 .type_speech:after{
  background-color: var(--color_green);
}

#lp_contents .sec_type .type_wrap .type_3 .item_block:nth-of-type(2) .wave_img{
  width: calc(280 * (var(--rate)));
}

#lp_contents .sec_type .type_wrap .type_3 .item_block:nth-of-type(5) .wave_img{
  width: calc(330 * (var(--rate)));
}

#lp_contents .sec_type .type_wrap .type_3 .check_list li{
  background-image: url(../img/260501/ico_check_green.svg);
}


/* sec_rcmd
==================================*/
#lp_contents .sec_rcmd{
  z-index: 2;
  padding: calc(50 * (var(--rate))) calc(25 * (var(--rate)));
  background-color: var(--bg-gray);
}

#lp_contents .sec_rcmd .rdmd_lead{
  font-size: calc(17 * (var(--rate)));
  font-weight: 600;
  line-height: 1.75;
}

#lp_contents .sec_rcmd .rdmd_lead span{
  font-size: calc(21 * (var(--rate)));
  color: var(--color_primary);
}

/*------------ item_wrap ------------*/
#lp_contents .sec_rcmd .item_wrap{
  display: grid;
  gap: calc(50 * (var(--rate)));
  margin-bottom: calc(25 * (var(--rate)));
}

#lp_contents .sec_rcmd .item_wrap .item_area{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(15 * (var(--rate)));
  padding-left: calc(15 * (var(--rate)));
}

#lp_contents .sec_rcmd .item_wrap .item_area svg{
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: calc(300 * (var(--rate)));
  z-index: 1;
}

#lp_contents .sec_rcmd .item_wrap .item_img{
  position: relative;
  z-index: 2;
  width: calc(80 * (var(--rate)));
  transition-delay: 0.5s;
}

#lp_contents .sec_rcmd .item_wrap .item_detail{
  position: relative;
  z-index: 2;
  display: grid;
  gap: calc(10 * (var(--rate)));
  width: calc(215 * (var(--rate)));
  text-align: left;
}

#lp_contents .sec_rcmd .item_wrap .item_lead{
  font-size: calc(13 * (var(--rate)));
  font-weight: 600;
  line-height: 1.75;
}

#lp_contents .sec_rcmd .item_wrap .item_name{
  font-size: calc(16 * (var(--rate)));
  font-weight: bold;
  line-height: 1.75;
}

#lp_contents .sec_rcmd .item_wrap .item_credit{
  display: grid;
  gap: calc(6 * (var(--rate)));
}

#lp_contents .sec_rcmd .item_wrap .item_price{
  display: flex;
  align-items: baseline;
  gap: calc(10 * (var(--rate)));
  font-size: calc(17 * (var(--rate)));
  color: var(--color_font);
  line-height: 1;
}

#lp_contents .sec_rcmd .item_wrap .item_price .off{
  padding: calc(4 * (var(--rate))) calc(4 * (var(--rate))) calc(3 * (var(--rate)));
  font-size: calc(13 * (var(--rate)));
  font-weight: 500;
  line-height: 1;
  background-color: #D64242;
  color: var(--color_white);
}

#lp_contents .sec_rcmd .item_wrap .regular_price{
  color: var(--color_sub);
}

#lp_contents .sec_rcmd .item_wrap .sale_price{
  display: flex;
  align-items: baseline;
  gap: calc(4 * (var(--rate)));
  font-weight: 500;
}

#lp_contents .sec_rcmd .item_wrap .sale_price .big{
  font-size: calc(21 * (var(--rate)));
}

#lp_contents .sec_rcmd .item_wrap .sale_price .tax{
  font-size: calc(14 * (var(--rate)));
}

#lp_contents .sec_rcmd .item_wrap .link_btn{
  width: calc(80 * (var(--rate)));
  height: calc(28 * (var(--rate)));
  margin: 0;
}

#lp_contents .sec_rcmd .item_wrap .check_list{
  position: relative;
  width: calc(340 * (var(--rate)));
  margin: auto;
  padding: calc(25 * (var(--rate))) calc(25 * (var(--rate))) calc(20 * (var(--rate)));
  border-radius: calc(20 * (var(--rate)));
  border: 1px solid var(--color_primary);
}

#lp_contents .sec_rcmd .item_wrap .check_ttl{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  width: fit-content;
  margin: auto;
  padding: 0 calc(12 * (var(--rate)));
  font-size: calc(15 * (var(--rate)));
  font-weight: bold;
  transform: translateY(-50%);
  color: var(--color_primary);
  background-color: var(--bg-gray);
}

#lp_contents .sec_rcmd .item_wrap .check_list ul{
  display: grid;
  gap: calc(8 * (var(--rate)));
}

#lp_contents .sec_rcmd .item_wrap .check_list li{
  padding-left: calc(25 * (var(--rate)));
  text-align: left;
  background-image: url(../img/260501/ico_check_blue.svg);
  background-repeat: no-repeat;
  background-size: calc(15 * (var(--rate))) calc(13 * (var(--rate)));
  background-position: top calc(4 * (var(--rate))) left;
}

/*------------ review_wrap ------------*/
#lp_contents .sec_rcmd .review_wrap{
  margin-top: calc(40 * (var(--rate)));
}

#lp_contents .sec_rcmd .review_wrap .review_ttl{
  margin-bottom: calc(15 * (var(--rate)));
  font-size: calc(20 * (var(--rate)));
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color_primary);
}

#lp_contents .sec_rcmd .review_wrap .review_list{
  display: grid;
  gap: calc(15 * (var(--rate)));
}

#lp_contents .sec_rcmd .review_wrap .review_list li{
  display: flex;
  align-items: end;
  gap: calc(8 * (var(--rate)));
}

#lp_contents .sec_rcmd .review_wrap .review_list li:nth-child(even){
  flex-direction: row-reverse;
}

#lp_contents .sec_rcmd .review_wrap .ico_review{
  width: calc(50 * (var(--rate)));
}

#lp_contents .sec_rcmd .review_wrap .review_cmnt{
  position: relative;
  display: grid;
  gap: calc(4 * (var(--rate)));
  padding: calc(15 * (var(--rate)));
  border-radius: calc(20 * (var(--rate)));
  border: 1px solid #F0F0F0;
  background-color: var(--color_white);
}

#lp_contents .sec_rcmd .review_wrap .review_cmnt:before{
  content: '';
  position: absolute;
  left: calc(-10 * (var(--rate)));
  bottom: 0;
  display: block;
  width: calc(20 * (var(--rate)));
  height: calc(10 * (var(--rate)));
  background-image: url(../img/260501/ico_cmnt.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
#lp_contents .sec_rcmd .review_wrap .review_list li:nth-child(even) .review_cmnt:before{
  transform: scale(-1, 1);
  left: auto;
  right: calc(-10 * (var(--rate)));
}

#lp_contents .sec_rcmd .review_wrap .body_text{
  font-size: calc(13 * (var(--rate)));
  font-weight: 500;
  line-height: 1.5;
}

#lp_contents .sec_rcmd .review_wrap .user_credit{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#lp_contents .sec_rcmd .review_wrap .ico_star{
  width: calc(60 * (var(--rate)));
}

#lp_contents .sec_rcmd .review_wrap .user_name{
  text-align: right;
  font-size: calc(11 * (var(--rate)));
  line-height: 1;
}


/* sec_cmpn
==================================*/
#lp_contents .sec_cmpn{
  padding-top: calc(15 * (var(--rate)));
}


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

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

#lp_contents .sec_about .about_wrap .logo{
  width: calc(180 * (var(--rate)));
  margin: auto;
}

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

#lp_contents .sec_about .about_wrap .link_btn{
  width: calc(240 * (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 .right_area .nav_ttl{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1;
  }

  #lp_contents .right_area .nav_ttl .arrow{
    margin: 0;
    transform: translateY(-0.2rem);
  }

  #lp_contents .right_area .nav_list{
    display: grid;
    gap: 2rem;
  }

  #lp_contents .right_area .type_list{
    width: 45rem;
    gap: 1rem;
  }

  #lp_contents .right_area .type_list li{
    border-radius: 2rem;
  }

  #lp_contents .right_area .type_list a{
    gap: 1rem;
    padding: 0.5rem 0.5rem 1.2rem;
    font-size: 1.3rem;
  }
}


/*--------------------------------
            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;
    left: auto !important;
    right: 5%;
  }

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

  #lp_contents a:hover{opacity: 1}
}