@charset "UTF-8";

:root {
  --font-lp_base: "Roboto","ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN,HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
  --font-lp_eng: "century-gothic","ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN,HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
  --color-lp_bg: rgba(255,255,255,0.7);
  --color-lp_font: #000000;
  --color-lp_sub: #A8A9A9;
  --color-lp_primary: #73B6C9;
  --color-lp_secondary: #CCDCE4;
}

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

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

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


/* slick
==================================*/
#lp_contents .slick-dots{
  position: static;
  margin: auto;
  line-height: 0;
}

#lp_contents .slick-dots li{
  margin: calc(40 * (56rem / 750)) calc(10 * (56rem / 750)) 0;
  width: calc(100 * (56rem / 750));
  height: calc(4 * (56rem / 750));
  background-color: var(--color-lp_secondary);
  line-height: 0;
}

#lp_contents .slick-dots li:first-child:last-child{
  display: none;
}

#lp_contents .slick-dots li.slick-active{
  background-color: var(--color-lp_primary);
}

#lp_contents .slick-dots li button{
  display: none;
}

#lp_contents .slick-dotted.slick-slider{
  margin: 0;
}

#lp_contents .slick-prev, 
#lp_contents .slick-next{
  width: calc(40 * (56rem / 750));
  width: calc(190 * (56rem / 750));
  height: calc(80 * (56rem / 750));
  height: 100%;
  z-index: 2;
  top: calc(190 * (56rem / 750));
}

#lp_contents .slick-prev{
  left: calc(135 * (56rem / 750));
  left: 0;
}

#lp_contents .slick-next{
  right: calc(150 * (56rem / 750));
  right: calc(10 * (56rem / 750));
}

#lp_contents .slick-prev:before, 
#lp_contents .slick-next:before{
  font-size: 0;
  content: '';
  display: block;
  width: calc(55 * (56rem / 750));
  height: calc(55 * (56rem / 750));
  border-top: 1px solid var(--color-lp_secondary);
  border-left: 1px solid var(--color-lp_secondary);
  transform: rotate(-45deg) translate(20%,30%);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

#lp_contents .slick-prev:before{
  left: calc(120 * (56rem / 750));
}

#lp_contents .slick-next:before{
  transform: rotate(135deg) translate(20%,30%);
  right: calc(120 * (56rem / 750));
}


/* accordion
==================================*/
/*------------ accordion ------------*/
#lp_contents .accordion{
  transition: all 0.5s;
  margin: 0;
  padding: 0;
}

#lp_contents .accordion.is-hide{
  position: relative;
  overflow: hidden;
  height: calc(70 * (56rem / 750)) !important;
  -webkit-mask: url(../img/mask.svg) center / 100% auto no-repeat;
  mask: url(../img/mask.svg) center / 100% auto no-repeat;
}

#lp_contents .trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(14 * (56rem / 750));
  font-family: var(--font-lp_eng);
  font-size: calc(20 * (56rem / 750));
  line-height: 1;
  margin: calc(28 * (60rem / 430)) auto 0;
  cursor: pointer;
  transition: .2s ease;
  transition: 0.5s opacity;
  width: fit-content;
  color: #A9AAAA;
  padding: 0 calc(5 * (56rem / 750)) calc(5 * (56rem / 750));
  border-bottom: 1px solid #A9AAAA;
}

#lp_contents .trigger.is-show{
  margin-top: calc(32 * (56rem / 750));
}

#lp_contents .trigger .arrow{
  position: relative;
  display: inline-block;
  width: calc(14 * (56rem / 750));
  height: calc(14 * (56rem / 750));
}

#lp_contents .trigger .arrow:before,
#lp_contents .trigger .arrow:after{
  content: '';
  width: 100%;
  height: 1px;
  background-color: #A9AAAA;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.5s;
}

#lp_contents .trigger .arrow:after{
  transform: rotate(90deg);
}

#lp_contents .trigger.is-show .arrow:after{
  transform: rotate(0);
}

/*------------ accordion_2 ------------*/
#lp_contents .accordion_2{
  cursor: pointer;
}

#lp_contents .accordion_2 + dd{
  display: none;
}

#lp_contents .accordion_2 .arrow{
  width: calc(25 * (56rem / 750));
  height: calc(25 * (56rem / 750));
  position: absolute;
  top: calc(5 * (56rem / 750));
  right: calc(20 * (56rem / 750));
}

#lp_contents .accordion_2 .arrow:before,
#lp_contents .accordion_2 .arrow:after{
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color-lp_primary);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.5s;
}

#lp_contents .accordion_2 .arrow:after{
  height: 100%;
  width: 1px;
}

#lp_contents .accordion_2.is-active .arrow:after{
  transform: rotate(90deg);
}


/* tab
==================================*/
#lp_contents .tab {
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: all 0.5s;
  margin-top: calc(-80 * (56rem / 750));
  padding-top: calc(80 * (56rem / 750));
}
#lp_contents .tab.active {
  opacity: 1;
  visibility: visible;
  height: fit-content;
}

/* simplebar
==================================*/
#lp_contents .simple-bar_wrap{
  width: -moz-available;
  width: -webkit-fill-available;
  margin: auto;
}

#lp_contents .simple-bar_wrap *{
  /*スクロールバー非表示（IE・Edge）*/
  -ms-overflow-style: none;
  /*スクロールバー非表示（Firefox）*/
  scrollbar-width: none;
}

#lp_contents .simple-bar_wrap{
  overflow-x: scroll;
  padding-bottom: calc(56 * (56rem / 750));
  /*スクロールバー非表示（IE・Edge）*/
  -ms-overflow-style: none;
  /*スクロールバー非表示（Firefox）*/
  scrollbar-width: none;
}

#lp_contents .simple-bar_wrap *::-webkit-scrollbar,
#lp_contents .simple-bar_wrap::-webkit-scrollbar{
  display:none;
}

#lp_contents .simple-bar_wrap ul{
  display: flex;
  width: fit-content;
  padding: 0 calc(70 * (56rem / 750));
}

#lp_contents .simplebar-track.simplebar-horizontal {
  height: calc(6 * (56rem / 750));
  width: calc(610 * (56rem / 750));
  background: rgba(255, 255, 255, .7);
  margin: auto;
}

#lp_contents .simplebar-track.simplebar-horizontal .simplebar-scrollbar{
  top: 0;
  height: calc(6 * (56rem / 750));
}

#lp_contents .simplebar-scrollbar:before{
  background: #A6A6A6;
  left: 0;
  right: 0;
  opacity: 1;
}


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

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

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

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

#lp_contents{
  font-family: var(--font-lp_base);
  font-feature-settings: "palt";
  font-size: calc(22 * (56rem / 750));
  letter-spacing: 0.075em;
  line-height: 2;
  text-align: center;

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

  color: var(--color-lp_font);
  position: relative;
  /*overflow: hidden;*/
}
#lp_contents .sp_only{display: none;}
#lp_contents img{width: 100%;display: block;height: auto;}
#lp_contents a{display: block;width: 100%;cursor: pointer;transition: all 0.5s;color: inherit;}
#lp_contents a:hover{opacity: .8}
#lp_contents ul li,#lp_contents ol li{list-style: none;}

/*------------ 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(22 * (56rem / 750));
  line-height: 2;
}
#lp_contents sup{
  font-size: 50%;
  margin-top: -0.6rem;
}
#lp_contents .note{
  display: inline-block;
  font-size: calc(20 * (56rem / 750));
  line-height: 1.5;
  letter-spacing: 0.1em;
}
#lp_contents .bold{
  font-weight: bold;
}
#lp_contents .link_text{
  line-height: 1;
  width: fit-content;
  margin: calc(25 * (56rem / 750)) auto 0;
  padding-bottom: calc(5 * (56rem / 750));
  border-bottom: 1px solid #787878;
}

/*------------ nav_list ------------*/
#lp_contents .nav_list ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(20 * (56rem / 750)) 2rem;
}

#lp_contents .nav_list a{
  position: relative;
  width: calc(340 * (56rem / 750));
  padding: calc(30 * (56rem / 750)) 0;
  font-family: var(--font-lp_eng);
  font-size: calc(32 * (56rem / 750));
  line-height: 1;
  background-color: rgba(240,247,251,0.9);
}

#lp_contents .nav_list .small{
  display: block;
  font-size: calc(20 * (56rem / 750));
  margin-bottom: calc(15 * (56rem / 750));
}

#lp_contents .nav_list a:after{
  content: '';
  display: block;
  width: calc(28 * (56rem / 750));
  height: calc(12 * (56rem / 750));
  background-image: url(../img/anker-arrow.svg);
  background-repeat: no-repeat;
  background-size: auto;
  margin: calc(20 * (56rem / 750)) auto 0;
}

/*------------ ttl_area ------------*/
#lp_contents .ttl_area{
  margin: 0 auto calc(60 * (56rem / 750));
}

#lp_contents .ttl_area .main_ttl{
  font-family: var(--font-lp_eng);
  font-size: calc(56 * (56rem / 750));
  line-height: 1;
}

#lp_contents .ttl_area .main_ttl .small{
  display: block;
  font-size: calc(22 * (56rem / 750));
  margin-bottom: calc(15 * (56rem / 750));
}

#lp_contents .ttl_area .sub_ttl{
  font-size: calc(32 * (56rem / 750));
  line-height: 1;
}


/* section
==================================*/
#lp_contents section{
  position: relative;
  padding: calc(80 * (56rem / 750)) 0;
}

#lp_contents .lp_inner{
  position: relative;
  z-index: 3;
  width: 56rem;
  background-color: #fff;
  /*box-shadow: 0 0 3rem rgba(0, 0, 0, 0.16);*/
}

#lp_contents .full_area{
  position: fixed;
  top: 0;
  bottom: 0;
  margin: auto;
  padding: 8rem 3rem 3rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(calc(100% - 56rem) / 2);
}

#lp_contents .left_area{
  left: 0;
}

#lp_contents .left_area img{
  width: 28.2rem;
}

#lp_contents .right_area{
  right: 0;
}

#lp_contents .right_area .nav_list ul{
  width: 32rem;
  margin: auto;
}

#lp_contents .right_area .nav_list a{
  width: 32rem;
  padding: 2rem 0;
  font-size: 2rem;
  line-height: 1;
  background-color: rgba(240,247,251,0.7);
}

#lp_contents .right_area .nav_list .small{
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

#lp_contents .right_area .nav_list a:after{
  width: 2rem;
  height: 0.6rem;
  margin: 1.4rem auto 0;
}


/* sec_mv
==================================*/
#lp_contents .sec_mv{
  position: relative;
  padding: 0;
}

#lp_contents .sec_mv .nav_list{
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(80 * (56rem / 750));
  margin: auto;
}


/* sec_lineup
==================================*/
#lp_contents .sec_lineup{
  padding: 0;
}

/*------------ lineup_wrap ------------*/
#lp_contents .sec_lineup .lineup_wrap{
  position: relative;
  padding: calc(70 * (56rem / 750)) 0;
  background-color: #FCFEFE;
}

#lp_contents .sec_lineup .lineup_wrap .lineup{
  width: calc(320 * (56rem / 750));
  margin: 0 calc(20 * (56rem / 750));
}

#lp_contents .sec_lineup .lineup_wrap .lineup a{
  display: grid;
  gap: calc(35 * (56rem / 750));
}

#lp_contents .sec_lineup .lineup_wrap .item_name{
  font-size: calc(26 * (56rem / 750));
  line-height: 1.75;
  word-break: keep-all;
}

#lp_contents .sec_lineup .lineup_wrap:after{
  content: '';
  display: block;
  background: #FCFEFE;
  height: calc(tan(60deg) * calc(47 * (56rem / 750)) / 2);
  width: calc(100 * (56rem / 750));
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(-40 * (56rem / 750));
  margin: auto;
  z-index: 5;
}

/*------------ item_wrap ------------*/
#lp_contents .sec_lineup .item_wrap{
  padding: calc(80 * (56rem / 750)) 0;
  background-image: url(../img/bg_2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

/*item_ttl_area*/
#lp_contents .sec_lineup .item_ttl_area{
  margin: 0 auto calc(27 * (56rem / 750));
  display: grid;
  gap: calc(20 * (56rem / 750));
}

#lp_contents .sec_lineup .item_ttl_area .item_ttl{
  font-family: var(--font-lp_eng);
  font-size: calc(60 * (56rem / 750));
  line-height: 1.25;
  color: var(--color-lp_primary);
}

#lp_contents .sec_lineup .item_ttl_area .item_lead{
  font-size: calc(28 * (56rem / 750));
}

#lp_contents .sec_lineup .item_ttl_area .ttl_txt_img{
  display: block;
  margin: calc(12 * (56rem / 750)) auto calc(18 * (56rem / 750));
}

#lp_contents .sec_lineup .item_ttl_area .ttl_txt_img img{
  width: auto;
  height: calc(27 * (56rem / 750));
  margin: auto;
}

#lp_contents .sec_lineup .item_ttl_area .marker{
  font-weight: bold;
  background: linear-gradient(transparent 50%, #B0D1DB 50%);
  /*padding-right: calc(10 * (56rem / 750));*/
}

/*keyword_list*/
#lp_contents .sec_lineup .keyword_list{
  margin: 0 auto calc(45 * (56rem / 750));
  border-spacing: calc(15 * (56rem / 750)) calc(20 * (56rem / 750));
}

#lp_contents .sec_lineup .keyword_list .keyword{
  text-align: left;
  line-height: 1;
}

#lp_contents .sec_lineup .keyword_list .keyword span{
  display: inline-block;
  padding: calc(8 * (56rem / 750)) calc(25 * (56rem / 750)) calc(6 * (56rem / 750));
  background-color: var(--color-lp_primary);
  color: #fff;
  width: fit-content;
}

/*item_area*/
#lp_contents .sec_lineup .item_area{
  position: relative;
  width: calc(640 * (56rem / 750));
  border-radius: calc(30 * (56rem / 750));
  background: var(--color-lp_bg);
  padding: calc(60 * (56rem / 750)) 0;
  margin: auto;
}

#lp_contents .sec_lineup .item_area .limited_icon{
  width: calc(160 * (56rem / 750));
  aspect-ratio: 1/1;
  border-radius: 100%;
  background-color: var(--color-lp_primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(25.6 * (56rem / 750));
  color: #fff;
  position: absolute;
  top: calc(40 * (56rem / 750));
  left: calc(30 * (56rem / 750));
}

#lp_contents .sec_lineup .item_area .item_img{
  width: calc(480 * (56rem / 750));
  margin: auto;
}

#lp_contents .sec_lineup .item_area .item_name{
  font-size: calc(30 * (56rem / 750));
  font-weight: bold;
  line-height: 1.5;
  margin-top: calc(25 * (56rem / 750));
}

#lp_contents .sec_lineup .item_area .item_detail{
  line-height: 1.75;
  margin-top: calc(15 * (56rem / 750));
}

/*text_area*/
#lp_contents .sec_lineup .text_area{
  margin-top: calc(45 * (56rem / 750));
}

#lp_contents .sec_lineup .text_area p:not(.trigger){
  font-size: calc(24 * (56rem / 750));
}

/*detail_area*/
#lp_contents .sec_lineup .detail_area{
  display: grid;
  gap: calc(40 * (56rem / 750));
  padding: 0 calc(35 * (56rem / 750));
  margin: calc(80 * (56rem / 750)) auto 0;
}

#lp_contents .sec_lineup .detail_area dl{
  padding: calc(50 * (56rem / 750)) 0;
  background: var(--color-lp_bg);
}

#lp_contents .sec_lineup .detail_area dt{
  border-bottom: 1px solid var(--color-lp_primary);
  color: var(--color-lp_primary);
  width: calc(450 * (56rem / 750));
  font-family: var(--font-lp_eng);
  font-size: calc(40 * (56rem / 750));
  line-height: 1;
  letter-spacing: 0.09em;
  padding-bottom: calc(15 * (56rem / 750));
  padding-right: calc(50 * (56rem / 750));
  margin: auto;
  position: relative;
}

#lp_contents .sec_lineup .detail_area dd{
  margin-top: calc(50 * (56rem / 750));
}

/*howto_blk*/
#lp_contents .sec_lineup .howto_blk .howto_list{
  display: grid;
  gap: calc(45 * (56rem / 750));
}

#lp_contents .sec_lineup .howto_blk .howto_list li{
  position: relative;
  display: grid;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: calc(20 * (56rem / 750)) calc(25 * (56rem / 750));
  width: 100%;
}

#lp_contents .sec_lineup .howto_blk .howto_list li > p + p{
  margin-top: calc(8 * (56rem / 750));
}

#lp_contents .sec_lineup .howto_blk .img img{
  width: auto;
  height: calc(260 * (56rem / 750));
  margin: auto;
}

#lp_contents .sec_lineup .howto_blk .lead{
  margin-bottom: calc(20 * (56rem / 750));
}

#lp_contents .sec_lineup .howto_blk .text{
  display: grid;
  gap: calc(15 * (56rem / 750));
  width: 100%;
}

#lp_contents .sec_lineup .howto_blk .num{
  width: calc(60 * (56rem / 750));
  aspect-ratio: 1/1;
  border-radius: 100%;
  background-color: var(--color-lp_primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-lp_eng);
  font-size: calc(34 * (56rem / 750));
  font-weight: bold;
  line-height: 1;
  margin: auto;
}

#lp_contents .sec_lineup .howto_blk .howto_sub_ttl{
  font-size: calc(24 * (56rem / 750));
  line-height: 1;
  width: 100%;
  margin-bottom: calc(15 * (56rem / 750));
}

#lp_contents .sec_lineup .howto_blk .howto_sub_ttl span{
  width: fit-content;
  padding: 0 calc(20 * (56rem / 750));
  margin: auto;
  position: relative;
  z-index: 2;
  background: linear-gradient(to right, #fafdfe, #f4f7fc);
}

#lp_contents .sec_lineup .howto_blk .howto_sub_ttl:before{
  content: '';
  width: calc(540 * (56rem / 750));
  height: 1px;
  background-color: #5AAAB9;
  position: absolute;
  top: calc(10 * (56rem / 750));
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}

/*point_blk*/
#lp_contents .sec_lineup .point_blk .point_list{
  display: grid;
  gap: calc(40 * (56rem / 750));
}

#lp_contents .sec_lineup .point_blk .point_list li{
  display: grid;
  gap: calc(15 * (56rem / 750));
}

#lp_contents .sec_lineup .point_blk .point{
  width: calc(200 * (56rem / 750));
  height: calc(44 * (56rem / 750));
  border-radius: calc(22 * (56rem / 750));
  background-color: var(--color-lp_primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(5 * (56rem / 750));
  font-family: var(--font-lp_eng);
  font-size: calc(20 * (56rem / 750));
  line-height: 1;
  color: #fff;
  margin: auto;
}

#lp_contents .sec_lineup .point_blk .point .big{
  font-size: calc(36 * (56rem / 750));
}

#lp_contents .sec_lineup .point_blk .point_text{
  font-size: calc(30 * (56rem / 750));
  line-height: 1.5;
}

/*item_1*/
#lp_contents .sec_lineup #item_1 .howto_blk .howto_list{
  gap: calc(84 * (56rem / 750));
}

#lp_contents .sec_lineup #item_1 .howto_blk .howto_list li{
  display: flex;
}

#lp_contents .sec_lineup #item_1 .howto_blk .img{
  position: relative;
  width: calc(280 * (56rem / 750));
}

#lp_contents .sec_lineup #item_1 .howto_blk .img img{
  width: 100%;
  height: auto;
}

#lp_contents .sec_lineup #item_1 .howto_blk .howto_list li:not(:last-child) .img:before{
  content: '';
  display: block;
  width: calc(36 * (56rem / 750));
  height: calc(24 * (56rem / 750));
  background-image: url(../img/howto-arrow.svg);
  background-size: auto;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(-54 * (56rem / 750));
  margin: auto;
}

#lp_contents .sec_lineup #item_1 .howto_blk .text{
  width: calc(280 * (56rem / 750));
  text-align: justify;
}
#lp_contents .sec_lineup #item_1 .howto_blk .num{
  margin: 0;
  width: calc(44 * (56rem / 750));
  font-size: calc(28 * (56rem / 750));
}


/* sec_frgr
==================================*/
#lp_contents .sec_frgr{
  background-color: #F0F7F8;
}

#lp_contents .sec_frgr .frgr_ttl{
  font-size: calc(32 * (56rem / 750));
  font-weight: bold;
  line-height: 1.75; 
}

#lp_contents .sec_frgr .frgr_text{
  margin-top: calc(24 * (56rem / 750));
  font-size: calc(24 * (56rem / 750));
  letter-spacing: 0.1em;
}

#lp_contents .sec_frgr .accordion.is-hide{
  height: 0 !important;
}

#lp_contents .sec_frgr .trigger{
  margin-top: calc(24 * (56rem / 750));
}


/* sec_feature
==================================*/
#lp_contents .sec_feature{
  background-color: #E1F0F2;
}

#lp_contents .sec_feature .featrue_area ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#lp_contents .sec_feature .featrue_area li{
  width: calc(300 * (56rem / 750));
  display: grid;
  gap: calc(30 * (56rem / 750));
}

#lp_contents .sec_feature .featrue_area .cmpt_img{
  width: calc(180 * (56rem / 750));
  aspect-ratio: 1/1;
  border-radius: 100%;
  overflow: hidden;
  margin: auto;
}

#lp_contents .sec_feature .featrue_area .cmpt_name{
  font-size: calc(24 * (56rem / 750));
  letter-spacing: 0.08em;
}

#lp_contents .sec_feature .feature_text{
  margin-top: calc(24 * (56rem / 750));
  font-size: calc(24 * (56rem / 750));
  letter-spacing: 0.1em;
}

#lp_contents .sec_feature .accordion.is-hide{
  height: 0 !important;
}

#lp_contents .sec_feature .trigger{
  margin-top: calc(36 * (56rem / 750));
}


/* sec_review
==================================*/
#lp_contents .sec_review{
  background-color: #B3CCD6;
}

#lp_contents .sec_review .ttl_area{
  margin-bottom: calc(40 * (56rem / 750));
}

#lp_contents .sec_review .main_ttl{
  letter-spacing: 0.09em;
}

#lp_contents .sec_review ul{
  display: flex;
  justify-content: center;
  gap: calc(30 * (56rem / 750));
}

#lp_contents .sec_review li{
  width: calc(580 * (56rem / 750));
  background-color: #fff;
  border-radius: calc(20 * (56rem / 750));
  padding: calc(40 * (56rem / 750)) calc(50 * (56rem / 750)) calc(45 * (56rem / 750));
  text-align: justify;
}

#lp_contents .sec_review .name{
  display: flex;
  align-items: center;
  gap: calc(30 * (56rem / 750));
  font-size: calc(26 * (56rem / 750));
  margin-bottom: calc(20 * (56rem / 750));
}

#lp_contents .sec_review .name img{
  width: calc(140 * (56rem / 750));
  height: calc(140 * (56rem / 750));
  border-radius: 100%;
}

#lp_contents .sec_review .comment{
  font-size: calc(24 * (56rem / 750));
  letter-spacing: 0.1em;
}


/* sec_related_products
==================================*/
#lp_contents .sec_item{
  background-color: #F6F6F6;
}

#lp_contents .sec_item .item_wrap .item_blk{
  position: relative;
  width: calc(400 * (56rem / 750));
  padding: calc(78 * (56rem / 750)) 0 calc(60 * (56rem / 750));
  background-color: #fff;
  border-radius: calc(20 * (56rem / 750));
  margin: 0 calc(20 * (56rem / 750));
}

#lp_contents .sec_item .item_wrap .text_img{
  position: absolute;
  width: calc(92 * (56rem / 750));
  top: calc(40 * (56rem / 750));
  left: 0;
  right: 0;
  margin: auto;
}

#lp_contents .sec_item .item_wrap .item_ttl{
  display: grid;
  gap: calc(15 * (56rem / 750));
  width: calc(320 * (56rem / 750));
  height: calc(87 * (56rem / 750));
  margin: 0 auto calc(30 * (56rem / 750));
}

#lp_contents .sec_item .item_wrap .item_cate{
  width: 100%;
  height: calc(36 * (56rem / 750));
  border: 1px solid #BEBEBE;
  color: #A9AAAA;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: calc(12 * (56rem / 750));
  padding-top: calc(4 * (56rem / 750));
}

#lp_contents .sec_item .item_wrap .item_vari{
  width: 100%;
  height: calc(36 * (56rem / 750));
  border: 1px solid #BEBEBE;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: calc(12 * (56rem / 750));
  background-color: #BEBEBE;
  padding-top: calc(4 * (56rem / 750));
}

#lp_contents .sec_item .item_wrap .uv_text{
  width: calc(320 * (56rem / 750));
  height: calc(36 * (56rem / 750));
  border: 1px solid;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: calc(12 * (56rem / 750));
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(-56 * (56rem / 750));
  margin: auto;
  padding-top: calc(4 * (56rem / 750));
}

#lp_contents .sec_item .item_wrap .uv_text.green{
  color: #64C8AF;
  border-color: #64C8AF;
}

#lp_contents .sec_item .item_wrap .uv_text.orange{
  color: #FABE00;
  border-color: #FABE00;
}

#lp_contents .sec_item .item_wrap .item_img{
  position: relative;
  width: 100%;
  height: calc(360 * (56rem / 750));
  margin: 0 auto calc(80 * (56rem / 750));
}

#lp_contents .sec_item .item_wrap .item_img img{
  width: auto;
  height: 100%;
  margin: auto;
}

#lp_contents .sec_item .item_wrap .soap_img{
  width: calc(100 * (56rem / 750));
  position: absolute;
  top: calc(-5 * (56rem / 750));
  right: calc(18 * (56rem / 750));
}

#lp_contents .sec_item .item_wrap .limited_icon{
  width: calc(120 * (56rem / 750));
  aspect-ratio: 1/1;
  border-radius: 100%;
  background-color: #92BE95;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(26.4 * (56rem / 750));
  line-height: 1.5;
  color: #fff;
  position: absolute;
  top: calc(-40 * (56rem / 750));
  left: calc(18 * (56rem / 750));
}

#lp_contents .sec_item .item_wrap .item_name{
  font-size: calc(24 * (56rem / 750));
  line-height: 1.75;
  margin-bottom: calc(18 * (56rem / 750));
}

#lp_contents .sec_item .item_wrap .item_price{
  font-family: var(--font-lp_eng);
  font-size: calc(23 * (56rem / 750));
  line-height: 1;
}

#lp_contents .sec_item .slick-dots li{
  margin: calc(40 * (56rem / 750)) calc(10 * (56rem / 750)) 0;
  width: calc(12 * (56rem / 750));
  height: calc(12 * (56rem / 750));
  background-color: transparent;
  border: 1px solid #A9AAAA;
  border-radius: 100%;
}

#lp_contents .sec_item .slick-dots li.slick-active{
  background-color: #A9AAAA;
}

#lp_contents .sec_item .slick-prev,
#lp_contents .sec_item .slick-next{
  width: calc(60 * (56rem / 750));
  height: calc(60 * (56rem / 750));
  background-image: url(../img/slide-arrow.svg);
  background-repeat: no-repeat;
  background-size: auto;
  z-index: 5;
  top: calc(390 * (56rem / 750));
}

#lp_contents .sec_item .slick-prev{
  left: calc(95 * (56rem / 750));
  transform: rotate(180deg);
}

#lp_contents .sec_item .slick-next{
  right: calc(95 * (56rem / 750));
  transform: inherit;
}

#lp_contents .sec_item .slick-prev:before, 
#lp_contents .sec_item .slick-next:before{
  content: none;
}

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

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


/* all_btn
==================================*/
#lp_contents .all_btn{
  padding: calc(80 * (56rem / 750)) 0 calc(160 * (56rem / 750));
}

#lp_contents .all_btn a{
  width: calc(620 * (56rem / 750));
  height: calc(80 * (56rem / 750));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-lp_eng);
  font-size: calc(38 * (56rem / 750));
  line-height: 1;
  color: #fff;
  background-color: #787878;
  margin: auto;
}


/*--------------------------------
            PC
 --------------------------------*/
@media screen and (min-width: 768px){
  #lp_contents:before{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../img/bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
  }
}

/*--------------------------------
            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 .right_area .nav_list ul{
      max-width: 32rem;
      width: 100%;
    }

    #lp_contents .right_area .nav_list a{
      width: 26rem;
    }
  }
}

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

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

  .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;
  }

}