@charset "UTF-8";

:root {
  --font-lp_base: "futura-pt","ryo-gothic-plusn","ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN,HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
  --color-lp_bg: #fff;
  --color-lp_font: #1D1A1F;
  --color-lp_primary: #ECEAB4;
  --color-lp_secondary: #A5C8D6;
  --color-lp_tertiary: #EFEFEB;
}

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

/* zoom
==================================*/
@keyframes zoomUp {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

#lp_contents .zoom{
  transform: scale(1.1);
  transition: transform 2s;
}

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

.add-animation {
  animation: zoomUp 5s linear 0s normal both;
}


/* Fade In
==================================*/

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

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

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

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

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


/* slider
==================================*/

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

#lp_contents .slick-dots li{
  margin: calc(25 * (60rem / 430)) calc(6 * (60rem / 430)) 0;
  width: calc(6 * (60rem / 430));
  height: calc(6 * (60rem / 430));
  border-radius: 100%;
  line-height: 0;
  background-color: #000;
  opacity: 0.5;
}

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

#lp_contents .slick-dots li.slick-active{
  opacity: 1;
}

#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: 3rem;
  height: 3rem;
  z-index: 2;
}

#lp_contents .slick-prev{
  left: -0.5rem;
}

#lp_contents .slick-next{
  right: -0.5rem;
}

#lp_contents .slick-prev:before, 
#lp_contents .slick-next:before{
  font-size: 0;
  content: '';
  display: block;
  width: 2rem;
  height: 2rem;
  border-top: 1px solid var(--color-line);
  border-left: 1px solid var(--color-line);
  transform: rotate(-45deg);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

#lp_contents .slick-next:before{
  transform: rotate(135deg);
}

#lp_contents .cmpn_area .lp_slider .slick-list{
  padding-left: calc(20 * (60rem / 430));
}

#lp_contents .lp_slider .slick-track li{
  width: calc(170 * (60rem / 430));
}

#lp_contents .cmpn_area .lp_slider .slick-track li{
  width: calc(280 * (60rem / 430));
  display: grid;
  gap: calc(20 * (60rem / 430));
  margin: calc(20 * (60rem / 430)) calc(10 * (60rem / 430)) 0;
}

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

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



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

#lp_contents .accordion.is-hide{
  position: relative;
  overflow: hidden;
  height: 8rem;
}

#lp_contents .accordion_txt.is-hide:before{
  content: '';
  width: 100%;
  height: 10rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

#lp_contents .trigger {
  display: none;
  align-items: center;
  justify-content: center;
  gap: calc(6 * (60rem / 430));
  margin: calc(15 * (60rem / 430)) auto 0;
  padding-bottom: calc(3 * (60rem / 430));
  cursor: pointer;
  transition: .2s ease;
  transition: 0.5s opacity;
  width: fit-content;
  border-bottom: 1px solid;
  font-size: calc(14 * (60rem / 430));
  line-height: 1;
}

#lp_contents .accordion + .trigger{
  display: flex;
}

#lp_contents .trigger .arrow{
  position: relative;
  display: inline-block;
  width: calc(8 * (60rem / 430));
  height: calc(8 * (60rem / 430));
}

#lp_contents .trigger .arrow:before,
#lp_contents .trigger .arrow:after{
  content: '';
  width: 100%;
  height: 1px;
  background-color: #000;
  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);
}


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

#lp_contents .follow.fixed{
  transform: translateY(0%);
}

#lp_contents .follow.none{
  transform: translateY(100%);
}

#share{
  transition: all 0.5s;
  z-index: 101 !important;
}

#share.fixed {
  bottom: calc(70 * (60rem / 430)) !important;
}

#share.none {
  bottom: 5% !important;
}

#lp_contents #follow[data-color=anker_1] ul li:nth-child(1),
#lp_contents #follow[data-color=anker_2] ul li:nth-child(2),
#lp_contents #follow[data-color=anker_3] ul li:nth-child(3),
#lp_contents #follow[data-color=anker_4] ul li:nth-child(4){
  background-color: #dcdaa0;
}

@media screen and (min-width: 1201px){
  #lp_contents .follow{
    display: none;
  }
}


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

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(13 * (60rem / 430));
  letter-spacing: 0.075em;
  line-height: 2;
  text-align: center;

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

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

/*------------ Text ------------*/
#lp_contents h1,#lp_contents h2,#lp_contents h3{padding: 0;float: none;font-weight: normal;}
#lp_contents p {
  display: block;
  margin: 0;
  font-size: calc(13 * (60rem / 430));
  line-height: 2;
}
#lp_contents sup{
  font-size: 50%;
  margin-top: -0.6rem;
}
#lp_contents small.note{
  display: inline-block;
  margin-top: calc(10 * (60rem / 430));
  font-size: calc(10 * (60rem / 430));
  line-height: 1.5;
}
#lp_contents p small.note{
  margin-top: 0;
}
#lp_contents .bold{
  font-weight: bold;
}
#lp_contents .lead{
  font-size: calc(14 * (60rem / 430));
}
#lp_contents .icon{
  width: calc(48 * (60rem / 430));
  aspect-ratio: 1/1;
  border-radius: 100%;
  background-color: var(--color-lp_secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(12 * (60rem / 430));
  line-height: 1.2;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}
#lp_contents .item_detail{
  display: grid;
  gap: calc(8 * (60rem / 430));
}
#lp_contents .item_lead{
  position: relative;
  width: 100%;
  padding: calc(10 * (60rem / 430)) calc(6 * (60rem / 430)) calc(8 * (60rem / 430));
  margin-bottom: calc(6 * (60rem / 430));
  border-radius: calc(100 * (60rem / 430));
  background-color: var(--color-lp_tertiary);
  font-size: calc(10 * (60rem / 430));
  line-height: 1.5;
}
#lp_contents .item_lead span{
  font-size: calc(11 * (60rem / 430));
  font-weight: 500;
  position: absolute;
  transform: rotate(-5deg);
  top: calc(-7 * (60rem / 430));
  left: calc(-5 * (60rem / 430));
}
#lp_contents .item_lead:before{
  content: '';
  background: var(--color-lp_tertiary);
  height: calc(tan(60deg) * calc(10 * (60rem / 430)) / 2);
  width: calc(12 * (60rem / 430));
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(-6 * (60rem / 430));
  margin: auto;
}
#lp_contents .item_name{
  font-size: calc(14 * (60rem / 430));
  font-weight: 500;
  line-height: 1.5;
}
#lp_contents .item_price{
  font-size: calc(17 * (60rem / 430));
  line-height: 1;
}
#lp_contents .item_txt{
  text-align: justify;
  font-size: calc(12 * (60rem / 430));
  line-height: 1.75;
}
#lp_contents .item_txt span{
  display: block;
  text-align: center;
  margin-bottom: calc(5 * (60rem / 430));
}

/*------------ title ------------*/
#lp_contents .ttl_wrap{
  display: grid;
  gap: calc(25 * (60rem / 430));
}
#lp_contents .main_ttl{
  font-family: "ryo-gothic-plusn","ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN,HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
  font-size: calc(27 * (60rem / 430));
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.15em;
}
#lp_contents .sub_ttl{
  font-size: calc(21 * (60rem / 430));
  line-height: 1.75;
}
#lp_contents .topics{
  display: block;
  font-family: var(--font-lp_base);
  font-size: calc(12 * (60rem / 430));
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: calc(10 * (60rem / 430));
}
#lp_contents .logo{
  display: inline-block;
  width: calc(130 * (60rem / 430));
  vertical-align: middle;
  margin: 0 calc(10 * (60rem / 430));
}

/*------------ link ------------*/
#lp_contents .link_btn{
  width: 100%;
  height: calc(36 * (60rem / 430));
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #fff;
  margin: auto;
}

#lp_contents .all_btn{
  width: calc(390 * (60rem / 430));
  height: calc(80 * (60rem / 430));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  font-size: calc(16 * (60rem / 430));
  margin: auto;
}


/* nav_list
==================================*/
#lp_contents .nav_list{
  background-color: var(--color-lp_primary);
  overflow-x: scroll;
  width: 100%;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
}

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

#lp_contents .nav_list ul{
  display: flex;
  align-items: center;
  width: fit-content;
}

#lp_contents .nav_list li{
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  height: calc(56 * (60rem / 430));
  padding: 0 calc(20 * (60rem / 430));
  font-family: "ryo-gothic-plusn","ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN,HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
  font-size: calc(11 * (60rem / 430));
  font-weight: 500;
  line-height: 1.5;
}

#lp_contents .nav_list li:not(:last-child){
  border-right: 1px solid #D8D69E;
}


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

#lp_contents .lp_inner{
  position: relative;
  z-index: 3;
  width: 60rem;
  background-color: var(--color-lp_bg);
  box-shadow: 0 0 3rem rgba(0, 0, 0, 0.16);
  display: grid;
  gap: calc(80 * (60rem / 430));
  padding-bottom: calc(80 * (60rem / 430));
}

#lp_contents .sec_inner{
  display: grid;
  gap: calc(80 * (60rem / 430));
}

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

#lp_contents .left_area{
  left: 0;
}

#lp_contents .left_area img{
  max-width: 30rem;
}

#lp_contents .right_area{
  right: 0;
}

#lp_contents .right_area .nav_list{
  background-color: transparent;
}

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

#lp_contents .right_area .nav_list li{
  height: fit-content;
  font-size: 2rem;
  justify-content: left;
  gap: 2rem;
  line-height: 1;
  padding: 0;
}

#lp_contents .right_area .nav_list li:not(:last-child){
  border-width: 0;
}

#lp_contents .right_area .nav_list .topics{
  font-size: 1.2rem;
  margin-bottom: 0;
}

#lp_contents .right_area .nav_list a{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

#lp_contents .right_area .all_btn{
  flex-wrap: wrap;
  max-width: 36rem;
  width: 100%;
  min-height: 6rem;
  height: 100%;
  font-size: 1.4rem;
  margin-top: 4rem;
}

#lp_contents .right_area .all_btn .logo{
  width: 13rem;
  margin: 0 1.5rem;
}


/* cmpn_area
==================================*/
#lp_contents .cmpn_area{
  width: calc(390 * (60rem / 430));
  padding: calc(40 * (60rem / 430)) 0;
  border: 1px solid;
  margin: auto;
}

#lp_contents .cmpn_area .cmpn_wrap{
  display: grid;
  gap: calc(25 * (60rem / 430));
}

#lp_contents .cmpn_area .cmpn_blk{
  display: grid;
  gap: calc(8 * (60rem / 430));
}

#lp_contents .cmpn_area .cmpn_ttl{
  font-size: calc(18 * (60rem / 430));
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.15em;
}

#lp_contents .cmpn_area .cmpn_day{
  font-size: calc(17 * (60rem / 430));
  line-height: 1;
}

#lp_contents .cmpn_area .cmpn_day .big{
  font-size: calc(20 * (60rem / 430));
}

#lp_contents .cmpn_area .cmpn_day .small{
  font-size: calc(12 * (60rem / 430));
}

#lp_contents .cmpn_area .cmpn_num{
  font-size: calc(28 * (60rem / 430));
  font-weight: 400;
  line-height: 1;
}

#lp_contents .cmpn_area .app_btn{
  display: flex;
  justify-content: center;
  gap: calc(10 * (60rem / 430));
}

#lp_contents .cmpn_area .app_btn a{
  width: fit-content;
}

#lp_contents .cmpn_area .app_btn img{
  width: auto;
  height: calc(30 * (60rem / 430));
}

#lp_contents .cmpn_area .itemlist{
  width: calc(388 * (60rem / 430));
}

#lp_contents .cmpn_area .img{
  filter: drop-shadow(0 0 1rem #0000001A);
  border-radius: calc(10 * (60rem / 430));
}

#lp_contents .cmpn_area .icon{
  top: calc(10 * (60rem / 430));
  left: calc(10 * (60rem / 430));
}

#lp_contents .cmpn_area .link_btn{
  max-width: calc(350 * (60rem / 430));
}


/* sec_mv
==================================*/
#lp_contents .sec_mv{
  display: grid;
  gap: calc(50 * (60rem / 430));
}

#lp_contents .sec_mv .mv_wrap{
  position: relative;
}

#lp_contents .sec_mv .mv_wrap h1{
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(30 * (60rem / 430));
  font-size: calc(21 * (60rem / 430));
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.15em;
  display: grid;
  gap: calc(20 * (60rem / 430));
}

#lp_contents .sec_mv .mv_wrap .logo{
  width: calc(200 * (60rem / 430));
  margin: auto;
}


/* sec_topics
==================================*/
#lp_contents .sec_topics{
  padding-bottom: calc(80 * (60rem / 430));
  border-bottom: 1px solid;
}


/* sec_expn
==================================*/
/*------------ reason_wrap ------------*/
#lp_contents .sec_expn .reason_wrap{
  display: grid;
  gap: calc(25 * (60rem / 430));
}

#lp_contents .sec_expn .reason_wrap .reason_list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#lp_contents .sec_expn .reason_wrap .reason_list li{
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(195 * (60rem / 430));
  aspect-ratio: 1/1;
  border-radius: 100%;
  background-color: #BFD9E3;
}

#lp_contents .sec_expn .reason_wrap .ttl{
  font-size: calc(15 * (60rem / 430));
  font-weight: 700;
  line-height: 1;
  margin-bottom: calc(6 * (60rem / 430));
}

#lp_contents .sec_expn .reason_wrap .text{
  font-size: calc(12 * (60rem / 430));
  line-height: 1.75;
  padding: 0 calc(15 * (60rem / 430));
}

/*------------ cmpt_wrap ------------*/
#lp_contents .sec_expn .cmpt_wrap{
  display: grid;
  gap: calc(25 * (60rem / 430));
}
  
#lp_contents .sec_expn .cmpt_wrap .cmpt_list{
  width: calc(430 * (60rem / 430));
}

#lp_contents .sec_expn .cmpt_wrap .cmpt_list .slick-list{
  border-top: 1px solid;
  border-bottom: 1px solid;
}

#lp_contents .sec_expn .cmpt_wrap .cmpt_list .slick-list li:not(:last-child){
  border-right: 1px solid;
}

#lp_contents .sec_expn .cmpt_wrap .cmpt_list .img:before{
  content: '';
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
  z-index: 2;
}

#lp_contents .sec_expn .cmpt_wrap .cmpt_list figcaption{
  font-size: calc(20 * (60rem / 430));
  height: fit-content;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  margin: auto;
}

#lp_contents .sec_expn .cmpt_wrap .cmpt_list .text{
  font-size: calc(14 * (60rem / 430));
  line-height: 1.75;
  padding: calc(20 * (60rem / 430)) calc(10 * (60rem / 430));
}


/* sec_item
==================================*/
/*------------ ttl_wrap ------------*/
#lp_contents .sec_item .ttl_wrap{
  gap: 0;
  margin-bottom: calc(25 * (60rem / 430));
}

/*------------ item_wrap ------------*/
#lp_contents .sec_item .item_wrap{
  display: grid;
  gap: calc(30 * (60rem / 430));
  width: calc(390 * (60rem / 430));
  margin: auto;
}

#lp_contents .sec_item .item_wrap .img{
  width: calc(390 * (60rem / 430));
}

#lp_contents .sec_item .item_wrap .item_detail .item_name{
  font-size: calc(21 * (60rem / 430));
}

#lp_contents .sec_item .item_wrap .check_list{
  width: fit-content;
  text-align: justify;
  margin: auto;
}

#lp_contents .sec_item .item_wrap .itemlist ul{
  display: flex;
  gap: calc(10 * (60rem / 430));
}

#lp_contents .sec_item .item_wrap .itemlist li{
  position: relative;
  width: calc(190 * (60rem / 430));
  padding-bottom: calc(50 * (60rem / 430));
  display: grid;
  align-content: baseline;
  gap: calc(15 * (60rem / 430));
}

#lp_contents .sec_item .item_wrap .itemlist .img{
  width: 100%;
}

#lp_contents .sec_item .item_wrap .item_detail{
  gap: calc(12 * (60rem / 430));
}

#lp_contents .sec_item .item_wrap .itemlist .item_name{
  font-size: calc(12 * (60rem / 430));
}

#lp_contents .sec_item .item_wrap .itemlist .link_btn{
  position: absolute;
  left: 0;
  bottom: 0;
}

/*------------ review_wrap ------------*/
#lp_contents .sec_item .review_wrap{
  display: grid;
  gap: calc(10 * (60rem / 430));
  width: calc(390 * (60rem / 430));
  margin: auto;
}

#lp_contents .sec_item .review_wrap .sub_ttl{
  line-height: 1;
}

#lp_contents .sec_item .review_wrap .review_blk{
  display: flex;
  gap: calc(20 * (60rem / 430));
  margin-top: calc(10 * (60rem / 430));
}

#lp_contents .sec_item .review_wrap figure{
  min-width: calc(120 * (60rem / 430));
}

#lp_contents .sec_item .review_wrap p:not(.sub_ttl){
  width: 100%;
  min-width: calc(250 * (60rem / 430));
  text-align: justify;
}

/*------------ benent_wrap ------------*/
#lp_contents .sec_item .benent_wrap{
  width: calc(430 *(60rem / 430));
  padding-left: calc(20 *(60rem / 430));
  text-align: left;
}

#lp_contents .sec_item .benent_wrap li:not(.slick-dots li){
  background-color: var(--color-lp_tertiary);
  padding: calc(10 *(60rem / 430)) calc(10 *(60rem / 430)) calc(15 *(60rem / 430));
  width: calc(180 *(60rem / 430));
  margin-right: calc(10 *(60rem / 430));
  /*box-shadow: calc(5 *(60rem / 430)) calc(10 *(60rem / 430)) calc(20 *(60rem / 430)) #0000000F;*/
}

#lp_contents .sec_item .benent_wrap a{
  display: grid;
  gap: calc(10 *(60rem / 430));
}

#lp_contents .sec_item .benent_wrap .prof_area{
  display: flex;
  align-items: center;
  gap: calc(10 *(60rem / 430));
}

#lp_contents .sec_item .benent_wrap .prof_area p{
  line-height: 1.5;
}

#lp_contents .sec_item .benent_wrap .review_img{
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-width: 0;
}

#lp_contents .sec_item .benent_wrap .review_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#lp_contents .sec_item .benent_wrap .UserImage{
  width: calc(36 *(60rem / 430));
  aspect-ratio: 1/1;
  border-radius: 100%;
  overflow: hidden;
}

#lp_contents .sec_item .benent_wrap .UserImage img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#lp_contents .sec_item .benent_wrap .UserComment{
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.75;
}


/* sec_btm
==================================*/
#lp_contents .sec_btm{
  display: grid;
  gap: calc(25 * (60rem / 430));
}



/*--------------------------------
            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 .full_area{
    display: none;
  }

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

  #lp_contents .nav_list ul{
    width: 100%;
  }

  #lp_contents .nav_list li{
    width: calc(100% / 4);
  }

  #lp_contents .right_area .nav_list li{
    width: 100%;
  }

  #lp_contents .right_area .all_btn{
    padding: 1rem 0 0;
  }
}

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

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

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

  #FooterWrap {
    margin-top: -3rem;
  }

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

  #lp_contents a:hover{opacity: 1}

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

}