@charset "UTF-8";

:root {
  --bg-color: #fff;
  --bg-color-gray: #F2F2F2;
  --bg-color-lightgray: #f8f8f8;
  --bg-color-green: #EDF0EA;
  --bg-color-marker: #787878;
  --font-color: #262626;
  --base-font: 'Inconsolata', monospace;
}

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

@keyframes arrowmove{
  0%{top:-5.5rem;}
  50%{top:-4.5rem;}
  100%{top:-5.5rem;}
}

@keyframes arrowmove-sp{
  0%{top:-4rem;}
  50%{top:-3rem;}
  100%{top:-4rem;}
}

/*------------ 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;
  transition-delay: 0.75s;
}


/*------------ accordion ------------*/

#lp_contents .accordion_wrap {
  display: none;
  overflow: hidden;
  transition: max-height .3s, padding .3s;
}

#lp_contents .accordion_wrap.active {
  display: block;
  max-height: 100rem;
}

#lp_contents .btn_accordion {
  width: fit-content;
  margin: 0 auto;
  cursor: pointer;
}

#lp_contents .btn_accordion span {
  position: relative;
  display: inline-block;
  padding-right: 1.2rem;
  font-size: 1.1rem;
  letter-spacing: .1em;
  transition: opacity .2s;
}

#lp_contents .btn_accordion span::before {
  position: absolute;
  top: 50%;
  right: 0;
  border-right: solid #000;
  border-bottom: solid #000;
  border-width: .1rem;
  width: .5rem;
  height: .5rem;
  margin-right: -.3rem;
  content: "";
}

#lp_contents .btn_accordion .toOpen {
 display: block;
}

#lp_contents .btn_accordion .toOpen::before {
  transform: translateY(calc(-50% - .1rem)) rotate(45deg);
}

#lp_contents .btn_accordion .toClose {
  display: none;
}

#lp_contents .btn_accordion.switch .toClose {
  display: block;
}

#lp_contents .btn_accordion.switch .toClose::before {
  transform: translateY(calc(-50% + .2rem)) rotate(-135deg);
}

#lp_contents .btn_accordion.switch .toOpen {
  display: none;
}

@media (max-width: 767px) {
  #lp_contents .accordion_wrap.active {
    max-height: calc(2000 * (100vw / 750));
  }

  #lp_contents .btn_accordion span {
    padding-right: calc(20 * (100vw / 750));
    font-size: calc(22 * (100vw / 750));
  }

  #lp_contents .btn_accordion span::before {
    border-width: calc(2 * (100vw / 750));
    width: calc(8 * (100vw / 750));
    height: calc(8 * (100vw / 750));
    margin-right: calc(-10 * (100vw / 750));
  }

  #lp_contents .btn_accordion .toOpen::before {
    transform: translateY(calc(-50% - calc(4 * (100vw / 750)))) rotate(45deg);
  }

  #lp_contents .btn_accordion.switch .toClose::before {
    transform: translateY(calc(-50% + calc(2 * (100vw / 750)))) rotate(-135deg);
  }
}


/*------------ simplebar ------------*/

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

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

#lp_contents .simple-bar_wrap ul{
  display: flex;
}

#lp_contents .simplebar-track.simplebar-horizontal {
  height: 0.3rem;
  width: 33rem;
  background: #DEDEDE;
  margin: auto;
}

#lp_contents .simplebar-track.simplebar-horizontal .simplebar-scrollbar{
  top: 0;
  height: 0.3rem;
  background: #787878;
}

#lp_contents .simplebar-vertical{
  display: none;
}


/*------------ navigation ------------*/

#lp_contents .anchor_link{
  width: 12rem;
  height: 12rem;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../img/mv_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 5;
  transition: all 0.5s;
  opacity: 0;
}

#lp_contents .anchor_link:before {
  content: '';
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  border-right: 1px solid;
  border-bottom: 1px solid;
  transform: rotate(45deg);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3rem;
  margin: auto;
}

#lp_contents .anchor_link.fixed{
  opacity: 1;
}

#lp_contents .anchor_link.none{
  opacity: 0;
}

@media (max-width: 767px) {
  #lp_contents .anchor_link{
    width: 8rem;
    height: 8rem;
    bottom: 1rem;
    left: 1rem;
    right: auto;
  }

  #lp_contents .anchor_link:before{
    bottom: 1.5rem;
  }
}


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

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

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

#lp_contents{
  font-family: 'Mulish', "Hiragino Sans", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ ProN", "ヒラギノ角ゴ Pro", 'Noto Sans JP', "メイリオ", "Meiryo", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  color: var(--font-color);
  overflow: hidden;
  position: relative;
}
#lp_contents .sp_only{display: none;}
#lp_contents img{width: 100%;display: block;}
#lp_contents a{display: block;}
#lp_contents ul li,#LP_page ol li{list-style: none;}
#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: 1.4rem;
  font-weight: 300;
  line-height: 2;
}
#lp_contents b{
  font-weight: 600;
}
#lp_contents small{
  display: inline-block;
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}
#lp_contents sup{
  font-size: 50%;
  margin-top: -0.6rem;
}
#lp_contents > section{
  padding: 8rem 0;
}

#lp_contents .sec_ttl{
  font-weight: bold;
  text-align: center;
  line-height: 2;
  margin-bottom: 5rem;
}

#lp_contents .sec_ttl big{
  display: block;
  font-size: 3.2rem;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-top: 1rem;
}

#lp_contents .ttl_marker{
  margin: 0 auto 5rem;
}

#lp_contents .ttl_marker span{
  font-size: 1.6rem;
  line-height: 1;
  background: var(--bg-color-marker);
  padding: 0.4rem 1rem;
  display: block;
  width: fit-content;
  margin: 0 auto 0.5rem;
  color: var(--bg-color);
}

#lp_contents .ttl_marker span big{
  font-size: 2rem;
}

#lp_contents .ttl_lead{
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
}

#lp_contents .ttl_lead big{
  display: block;
  font-size: 2.2rem;
  line-height: 1;
  margin-top: 1rem;
}


/*sec_mv -----------------*/

#lp_contents .sec_mv{
  display: flex;
  flex-wrap: wrap;
  padding: 0 0 0;
  margin: auto;
  position: relative;
}

#lp_contents .sec_mv .img_wrap,
#lp_contents .sec_mv .text_wrap{
  width: 50%;
}

#lp_contents .sec_mv .text_wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../img/mv_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

#lp_contents .sec_mv h1{
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}

#lp_contents .sec_mv h1 img{
  width: 20rem;
  margin: 0 auto 6rem;
}


/*sec_lead -----------------*/

#lp_contents .sec_lead{
  text-align: center;
}

#lp_contents .sec_lead small{
  margin-top: 4rem;
}


/*sec_navi -----------------*/

#lp_contents .sec_navi ul{
  width: 120rem;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

#lp_contents .sec_navi li{
  width: calc(calc(100% - 8rem) / 3);
  height: 10rem;
  background-size: cover;
  background-repeat: no-repeat;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}

#lp_contents .sec_navi li:nth-of-type(1){
  background-image: url(../img/navi_bg_1.jpg);
}

#lp_contents .sec_navi li:nth-of-type(2){
  background-image: url(../img/navi_bg_2.jpg);
}

#lp_contents .sec_navi li:nth-of-type(3){
  background-image: url(../img/navi_bg_3.jpg);
}

#lp_contents .sec_navi li a{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}


#lp_contents .sec_navi li a:before{
  content: '';
  display: block;
  width: 1rem;
  height: 1rem;
  background-image: url(../img/nav_arrow.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2rem;
  margin: auto;
  transition: all 0.5s;
}

#lp_contents .sec_navi li a:hover:before{
  transform: translateY(1rem);
}


/*sec_prescription -----------------*/

#lp_contents .sec_prescription{
  padding: 8rem 0 0;
}

#lp_contents .sec_prescription .sec_ttl{
  margin-bottom: 3rem;
}

#lp_contents .sec_prescription .sec_inner{
  background-image: url(../img/point_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-bottom: 8rem;
}

#lp_contents .sec_prescription .sec_inner *{
  position: relative;
  z-index: 2;
}

#lp_contents .sec_prescription .sec_inner:before{
  content: '';
  display: block;
  width: 100%;
  height: 30rem;
  background: linear-gradient(rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 80%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/*cancel_wrap*/
#lp_contents .sec_prescription .cancel_wrap{
  width: 120rem;
  margin: 0 auto 6rem;
}

#lp_contents .sec_prescription .cancel_wrap ul{
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}

#lp_contents .sec_prescription .cancel_wrap li{
  width: 28rem;
}

#lp_contents .sec_prescription .cancel_wrap li .cancel_ttl{
  width: auto;
  height: 12rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: bold;
}

#lp_contents .sec_prescription .cancel_wrap li:nth-of-type(1) .cancel_ttl{
  background-image: url(../img/point_1_bg.png);
}

#lp_contents .sec_prescription .cancel_wrap li:nth-of-type(2) .cancel_ttl{
  background-image: url(../img/point_2_bg.png);
}

#lp_contents .sec_prescription .cancel_wrap li:nth-of-type(3) .cancel_ttl{
  background-image: url(../img/point_3_bg.png);
}

#lp_contents .sec_prescription .cancel_wrap li:nth-of-type(4) .cancel_ttl{
  background-image: url(../img/point_4_bg.png);
}

#lp_contents .sec_prescription .cancel_wrap .check_list{
  width: fit-content;
  margin: 0 auto 1rem;
}

#lp_contents .sec_prescription .cancel_wrap .check_list p{
  padding-left: 2.5rem;
  background-image: url(../img/check.svg);
  background-repeat: no-repeat;
  line-height: 1.5;
}

#lp_contents .sec_prescription .cancel_wrap .check_list p:not(:last-child){
  margin-bottom: 1rem;
}

#lp_contents .sec_prescription .cancel_wrap .cmpt_blk{
  width: 100%;
  padding: 2.5rem 1.5rem;
  background: var(--bg-color);
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: visible;
  margin: 3rem auto 1.5rem;
}

#lp_contents .sec_prescription .cancel_wrap .cmpt_blk .cmpt_ttl{
  width: 8rem;
  height: 2.4rem;
  border-radius: 100rem;
  background: var(--bg-color);
  border: 1px solid #DEDEDE;
  font-size: 1.3rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateY(-50%);
  text-align: center;
}

#lp_contents .sec_prescription .cancel_wrap .cmpt_blk .cmpt_list:not(:last-child){
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  background-image : linear-gradient(to right, #9FA0A0 1px, transparent 1px);
 background-size: 3px 1px;
 background-repeat: repeat-x;
 background-position: left bottom;
}

#lp_contents .sec_prescription .cancel_wrap .cmpt_blk figure{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto 1rem;
}

#lp_contents .sec_prescription .cancel_wrap .cmpt_blk figure img{
  width: 6rem;
}

#lp_contents .sec_prescription .cancel_wrap .cmpt_blk figure p{
  max-width: 18rem;
  line-height: 1.5;
}

#lp_contents .sec_prescription .cancel_wrap .cmpt_blk .cmpt_text{
  text-align: center;
  font-size: 1.2rem;
}

/*table_wrap*/
#lp_contents .sec_prescription .table_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  text-align: center;
  margin: 6rem auto 0;
}

#lp_contents .sec_prescription .table_wrap dt{
  background: rgba(255, 255, 255, .5);
  padding: 2rem 0;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
  display: none;
}

#lp_contents .sec_prescription .table_wrap dt ul{
  display: flex;
  flex-wrap: wrap;
}

#lp_contents .sec_prescription .table_wrap dt li{
  position: relative;
  width: 28rem;
}

#lp_contents .sec_prescription .table_wrap dt li:first-child:last-child{
  width: 33rem;
}

#lp_contents .sec_prescription .table_wrap dt li:not(:first-child):before{
  content: '';
  background-image: linear-gradient(to bottom, #9FA0A0 1px, transparent 1px);
  background-size: 2px 4px;
  background-repeat: repeat-y;
  background-position: left top;
  width: 1px;
  height: 100%;
  display: block;
  position: absolute;
}

#lp_contents .sec_prescription .table_wrap dt .ttl{
  border-bottom: 1px solid #707070;
  line-height: 1;
  padding-bottom: 0.5rem;
  width: fit-content;
  margin: 0 auto 1.5rem;
}

#lp_contents .sec_prescription .table_wrap dt .cate{
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 600;
}

#lp_contents .sec_prescription .table_wrap dt .cmpt_blk{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin: 2rem auto 0;
}

#lp_contents .sec_prescription .table_wrap dt .cmpt_blk p{
  width: 20rem;
  height: 2.6rem;
  border-radius: 100rem;
  background: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

#lp_contents .sec_prescription .table_wrap dd{
  position: relative;
  padding: 3rem 0;
  margin: 8rem auto 0;
  height: 38rem;
  background: var(--bg-color);
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
}

#lp_contents .sec_prescription .table_wrap dd:before{
  content: '';
  display: block;
  width: 3rem;
  height: 2.2rem;
  background-image: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  animation: arrowmove 1.5s ease-in-out infinite;
}

#lp_contents .sec_prescription .table_wrap dd ul{
  display: flex;
  justify-content: center;
  gap: 2rem;
}

#lp_contents .sec_prescription .table_wrap dl:nth-of-type(1) ul{
  width: 84rem;
}

#lp_contents .sec_prescription .table_wrap dl:nth-of-type(2) ul{
  width: 33rem;
}

#lp_contents .sec_prescription .table_wrap dd .logo{
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 8rem;
}

#lp_contents .sec_prescription .table_wrap dd li a{
  width: 15rem;
  margin: auto;
}

#lp_contents .sec_prescription .table_wrap dd p{
  font-size: 1.2rem;
  line-height: 1.5;
  margin-top: 1.5rem;
}

#lp_contents .sec_prescription .table_wrap dd p b{
  font-size: 1.4rem;
}

#lp_contents .sec_prescription .text_wrap{
  margin: 5rem auto 0;
  padding: 2.5rem 0 2rem;
  width: 45rem;
  text-align: center;
  position: relative;
  background-image: url(../img/text-frame_pc.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

#lp_contents .sec_prescription .text_wrap .series_ttl{
  text-align: center;
  font-size: 1.2rem;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateY(-50%);
}

#lp_contents .sec_prescription .text_wrap .ttl_lead{
  margin-bottom: 0;
}


/*selling points-----------------*/
#lp_contents .selling-points_area {
  position: relative;
  z-index: 1;
  text-align: center;
  background-image: url(../img/point-bg_pc.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 12rem 0;
}

#lp_contents .selling-points_area .sec_ttl{
  margin-bottom: 3rem3;
}

.selling-points_wrap {
  text-align: center;
}

.selling-points_wrap > dt{
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 4rem;
}

#lp_contents .selling-points_wrap .ttl_lead{
  margin-bottom: 4rem;
}

#lp_contents .selling-points_wrap .ttl_lead big{
  font-size: 2.5rem;
  margin-top: 2rem;
}

#lp_contents .selling-points_wrap .selling_lead_text{
  font-size: 1.3rem;
}

.selling-points_list {
  margin-top: 5.4rem;
}

.selling-points_list li:nth-of-type(n+2) {
  margin-top: 4.5rem;
}

.selling-points_list li dt {
  margin-bottom: 2rem;
  font-size: 2rem;
  letter-spacing: .075em;
  text-align: center;
}

.selling-points_list li dt .point_num {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid #808080;
  border-width: .133rem;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  margin: 0 auto 2.5rem;
  font-size: 2.8rem;
  color: #808080;
}

.selling-points_list li dt .point_num .txt_S {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin-left: -2rem;
  padding: .4rem 0;
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1;
}

.selling-points_list li.point_1 dt .point_num .txt_S{
  background: #e2e5ea;
}

.selling-points_list li.point_2 dt .point_num .txt_S{
  background: #eeeff3;
}

.selling-points_list li.point_3 dt .point_num .txt_S{
  background: #e9ebee;
}

.selling-points_list li dt .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10rem;
  width: 6.5rem;
  height: 1.6rem;
  margin: 0 auto 1.6rem;
  padding-top: 0.3rem;
  background: #adadad;
  font-size: 1rem;
  letter-spacing: .13em;
  line-height: 1;
  color: #fff;
}

.selling-points_list li dd {
  font-size: 1.3rem;
  line-height: 2;
  letter-spacing: .075em;
}

.selling-points_list li dd .txt_emphasis {
  color: #80272D;
}

.selling-points_list li dd .notes {
  display: block;
  margin-top: 1rem;
  font-size: 1rem;
}

.selling-points_list li dd sup {
  font-size: .7rem;
  letter-spacing: 0;
}


/*------------ sec_formulas ------------*/

/*certification_wrap*/
#lp_contents .sec_formulas .certification_wrap {
  gap: 4rem;
  width: 54rem;
  margin: 0 auto 2.5rem;
  padding: 2.5rem 0 3rem;
  background: var(--bg-color-lightgray);
}

#lp_contents .sec_formulas .certification_img {
  width: 10rem;
  margin: 2.5rem auto 0;
  mix-blend-mode: multiply;
}

#lp_contents .sec_formulas .certification_name {
  font-size: 1.4rem;
  letter-spacing: .075em;
  text-align: center;
}

#lp_contents .sec_formulas .certification_name span {
  letter-spacing: .15em;
}

#lp_contents .sec_formulas .certification_caption {
  letter-spacing: .075em;
  text-align: center;
  margin: 0 auto 5.5rem;
}

/*free_wrap*/
#lp_contents .sec_formulas .free_wrap{
  margin: 0 auto 3rem;
  width: 56.5rem;
}

#lp_contents .sec_formulas .free_wrap .free_ttl{
  text-align: center;
  font-size: 1.3rem;
  line-height: 1;
  margin: 0 auto 3rem;
  position: relative;
}

#lp_contents .sec_formulas .free_wrap .free_ttl:before{
  content: '';
  width: 100%;
  height: 1px;
  background: #adadad;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 1;
}

#lp_contents .sec_formulas .free_wrap .free_ttl span{
  display: block;
  width: fit-content;
  background: var(--bg-color);
  padding: 0 2rem;
  margin: auto;
  position: relative;
  z-index: 2;
}

#lp_contents .sec_formulas .free_wrap .free_ttl big{
  display: block;
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
}

#lp_contents .sec_formulas .free_wrap ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

#lp_contents .sec_formulas .free_wrap li{
  font-size: 1.2rem;
  color: #fff;
  min-width: 13rem;
  height: 2.6rem;
  background: #adadad;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  background-image: url(../img/free_bg.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

#lp_contents .sec_formulas .free_wrap li.no_space{
  padding: 0;
}


/*------------ aroma ------------*/

#lp_contents .aroma_area {
  background: var(--bg-color-green);
  padding-top: 20rem;
}

#lp_contents .aroma_area .sec_ttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 24rem;
  background: url(../img/aroma-bg_pc.jpg) center center / cover no-repeat;
  -webkit-mask-image: linear-gradient(#000 18.17311rem, #000 calc(100% - 18.17311rem), transparent);
  mask-image: linear-gradient(#000 18.17311rem, #000 calc(100% - 18.17311rem), transparent);
}

.point_wrap {
  border-radius: 2rem;
  width: 52rem;
  margin: 4rem auto 0;
  padding: 2.8rem 1rem 2.6rem;
  background: rgba(255, 255, 255, .5);
  text-align: center;
}

.point_wrap dt {
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.7rem;
  letter-spacing: .1em;
  color: #666;
}

.point_wrap dd {
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: .075em;
}

.pyramid_wrap {
  width: 66rem;
  margin: 5rem auto 4rem;
}

.aroma_list_wrap {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.aroma_list_wrap::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
}

.aroma_list_wrap.top::after {
  z-index: 2;
  border-bottom: solid #E4EADE 10.2rem;
  border-right: solid transparent 3.9rem;
  border-left: solid transparent 3.9rem;
  left: 7.8rem;
}

.aroma_list_wrap.middle::after {
  z-index: 1;
  border-bottom: solid #D7E3D1 20.3rem;
  border-right: solid transparent 7.8rem;
  border-left: solid transparent 7.8rem;
  left: 3.9rem;
}

.aroma_list_wrap.last::after {
  border-bottom: solid #CEDEC6 30.5rem;
  border-right: solid transparent 11.8rem;
  border-left: solid transparent 11.8rem;
}

.pyramid_wrap .aroma_list_wrap:nth-of-type(n+2)::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 55rem;
  height: .1rem;
  background: linear-gradient(to right, #9FA0A0 .3rem, transparent .2rem);
  background-size: .5rem .1rem;
  content: "";
}

.aroma_list_wrap dt {
  position: relative;
  width: 23.6rem;
  z-index: 3;
  font-size: 1.6rem;
  letter-spacing: .07em;
  text-align: center;
}

.aroma_list_wrap.top dt{
  padding-top: 3rem;
}

.aroma_list_wrap dt span {
  display: block;
}

.aroma_list {
  display: flex;
  justify-content: center;
  gap: 1rem;
  width: 41rem;
}

.aroma_list_wrap.top .aroma_list {
  padding: 4.6rem 0 3rem;
}

.aroma_list_wrap.middle .aroma_list {
  padding: 3.7rem 0 3.7rem;
}

.aroma_list_wrap.last .aroma_list {
  padding: 3.7rem 0 4rem;
}

.aroma_list li{
  width: 13rem;
  height: 2.6rem;
  border-radius: 100rem;
  background: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.aroma_list li:first-child:last-child{
  width: 20rem;
}

#lp_contents .aroma_area .note{
  text-align: center;
  margin: auto;
  display: block;
}


/*------------ products ------------*/

.product_area{
  background: var(--bg-color-lightgray);
}

.product_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 6rem;
  width: 105rem;
  margin: 0 auto;
}

.product_list li {
  width: 50rem;
}

#lp_contents .product_list li .icon{
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  position: absolute;
  top: -1rem;
  left: -1rem;
}

.product_list li .icon.renewal{
  background: #E4EFDF;
}

.product_list li .icon.new{
  background: #EEDFEF;
}

#lp_contents .product_list li .category{
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 1;
  margin: 0 auto 2.5rem;
}

#lp_contents .product_list li .category b{
  display: block;
  font-size: 2rem;
  margin-top: 1rem;
}

#lp_contents .product_list li .item_lead{
  font-weight: bold;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.product_list li .product_inner{
  background: var(--bg-color);
  padding: 4rem 2.5rem;
  position: relative;
}

.product_list li .content_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin: 0 auto 2rem;
}

.product_list li .product_inner.full .content_wrap .txt_wrap{
  width: 100%;
  text-align: center;
  margin-top: 2rem;
}

#lp_contents .product_list li .product_inner.full .product_img{
  margin: auto;
}

#lp_contents .product_list li .product_img img{
  width: auto;
  height: 20rem;
}

.product_list li .product_name {
  margin-bottom: 2rem;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: .1em;
}

.product_list li .product_name span {
  display: block;
  padding: 0 0.6rem;
  width: fit-content;
  height: 1.8rem;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 300;
  border: 1px solid #707070;
  margin-top: 0.5rem;
}

#lp_contents .product_list li .product_capacity {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  letter-spacing: .1em;
  line-height: 1;
}

#lp_contents .product_list li .product_price {
  font-size: 1.2rem;
  letter-spacing: .1em;
  line-height: 1;
}

.product_list li .product_price .tax {
  font-size: 1.1rem;
  vertical-align: -.1rem;
}

#lp_contents .product_list li .tag{
  margin-top: 2rem;
}

#lp_contents .product_list li .tag span{
  display: inline-flex;
  align-items: center;
  background: #ADADAD;
  padding: 0 1rem;
  height: 2.4rem;
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: 0;
  margin-right: 0.6rem;
}

#lp_contents .product_list li .product_link a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30rem;
  height: 4rem;
  background: #666;
  font-size: 1.5rem;
  letter-spacing: .1em;
  color: #fff;
  margin: 2rem auto 0;
}

.product_area .accordion_wrap {
  position: relative;
  max-height: 8rem;
}

.product_area .accordion_wrap::before {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 7rem;
  background: linear-gradient(transparent, #fff 90%);
  content: "";
}

.product_area .accordion_wrap.active {
  padding-bottom: 3rem;
}

.product_area .accordion_wrap.active::before {
  display: none;
}

#lp_contents .product_text_wrap p{
  text-align: justify;
  font-size: 1.2rem;
}


/*------------ allbtn_wrap ------------*/

#lp_contents .allbtn_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
}

#lp_contents .allbtn_wrap a{
  position: relative;
  width: 40rem;
  height: 6rem;
  background: #535353;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 300;
  color: #fff;
}

#lp_contents .allbtn_wrap a img{
  width: 12rem;
}

#lp_contents .allbtn_wrap a.icon_open-tab:before{
  content: "";
  width: 1.2rem;
  height: 1rem;
  background-image: url(../img/icon_open-tab.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2rem;
  margin: auto;
}


/*------------ sec_use ------------*/

#lp_contents .sec_use{
  background: var(--bg-color-gray);
}

#lp_contents .sec_use .use_wrap{
  padding: 4rem;
  background: var(--bg-color);
  width: 120rem;
  margin: auto;
}

#lp_contents .sec_use .use_wrap:not(:first-child){
  margin-top: 4rem;
}

#lp_contents .sec_use .use_wrap .use_ttl{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 2.5rem;
  line-height: 1;
  margin: 0 auto 2rem;
}

#lp_contents .sec_use .use_wrap .use_ttl img{
  width: 2.5rem;
}

#lp_contents .sec_use .use_wrap ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6rem;;
}

#lp_contents .sec_use .use_wrap li{
  width: 15rem;
  position: relative;
}

#lp_contents .sec_use .use_wrap li:not(:last-child):before{
  content: '';
  display: block;
  width: 4rem;
  height: 1rem;
  background-image: url(../img/use_arrow.png);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -5rem;
  margin: auto;
}

#lp_contents .sec_use .use_wrap .category{
  width: 100%;
  height: 2.5rem;
  background: #ADADAD;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: #fff;
  font-size: 1.3rem;
  margin: 1rem auto 0;
}

#lp_contents .sec_use .use_wrap .category small{
  margin: 0;
}


/*------------ sec_comment ------------*/

#lp_contents .sec_comment .staff_wrap ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

#lp_contents .sec_comment .staff_wrap li{
  width: 39rem;
  background: var(--bg-color-lightgray);
  padding: 2rem;
}

#lp_contents .sec_comment .staff_wrap figure{
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 auto 2rem;
}

#lp_contents .sec_comment .staff_wrap figure img{
  width: 8rem;
  height: 8rem;
  border-radius: 100%;
}

#lp_contents .sec_comment .staff_wrap figure p span{
  font-size: 1.2rem;
  display: block;
}


/*------------ sec_concept ------------*/

#lp_contents .sec_concept{
  background: var(--bg-color-lightgray);
  position: relative;
}

#lp_contents .sec_concept *{
  position: relative;
  z-index: 2;
}

#lp_contents .sec_concept:before{
  content: '';
  width: 100%;
  height: 36rem;
  background-image: url(../img/concept-bg_pc.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

#lp_contents .sec_concept .concept_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 120rem;
  margin: auto;
}

#lp_contents .sec_concept .concept_wrap figure,
#lp_contents .sec_concept .concept_wrap .text_blk{
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.6rem;
  line-height: 2.5;
}



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

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

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

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

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

  #lp_contents p {
    font-size: 1.2rem;
  }

  #lp_contents > section{
    padding: 5rem 0;
  }

  #lp_contents .sec_ttl{
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
  }

  #lp_contents .sec_ttl big{
    font-size: 2.5rem;
    margin-top: 0.5rem;
  }

  #lp_contents .ttl_marker{
    margin: 0 auto 4rem;
  }

  #lp_contents .ttl_marker span{
    font-size: 1.4rem;
  }

  #lp_contents .ttl_marker span big{
    font-size: 1.6rem;
  }

  #lp_contents .ttl_lead{
    font-size: 1.4rem;
    margin-bottom: 4rem;
  }

  #lp_contents .ttl_lead big{
    font-size: 1.8rem;
  }


  /*sec_mv -----------------*/

  #lp_contents .sec_mv{
    width: 100%;
    padding: 0;
  }

  #lp_contents .sec_mv .img_wrap,
  #lp_contents .sec_mv .text_wrap{
    width: 100%;
  }

  #lp_contents .sec_mv .text_wrap{
    padding: 4rem 0 5rem;
  }

  #lp_contents .sec_mv h1{
    font-size: 1.7rem;
    margin-bottom: 2rem;
  }

  #lp_contents .sec_mv h1 img{
    width: 9rem;
    margin: 0 auto 2rem;
  }


  /*sec_lead -----------------*/

  #lp_contents .sec_lead .ttl_lead{
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }

  #lp_contents .sec_lead small{
    margin-top: 3rem;
  }


  /*sec_navi -----------------*/

  #lp_contents .sec_navi ul{
    width: 36rem;
    gap: 1rem;
  }

  #lp_contents .sec_navi li{
    width: 100%;
    height: 6.5rem;
  }

  #lp_contents .sec_navi li a:before{
    right: 2.5rem;
  }


  /*sec_prescription -----------------*/

  #lp_contents .sec_prescription{
    padding: 6rem 0 0;
  }

  #lp_contents .sec_prescription .sec_ttl{
    margin-bottom: 2.5rem;
  }

  #lp_contents .sec_prescription .sec_inner{
    padding-bottom: 5rem;
  }

  #lp_contents .sec_prescription .sec_inner:before{
    height: 56rem;
  }

  /*cancel_wrap*/
  #lp_contents .sec_prescription .cancel_wrap{
    width: 37rem;
    margin: 0 auto 5rem;
  }

  #lp_contents .sec_prescription .cancel_wrap ul{
    gap: 2rem 1rem;
  }

  #lp_contents .sec_prescription .cancel_wrap li{
    width: 18rem;
  }

  #lp_contents .sec_prescription .cancel_wrap li .cancel_ttl{
    height: 10rem;
    margin: 0 auto 1rem;
    font-size: 1.4rem;
  }

  #lp_contents .sec_prescription .cancel_wrap .check_list p:not(:last-child){
    margin-bottom: 0.5rem;
  }

  #lp_contents .sec_prescription .cancel_wrap .cmpt_blk{
    padding: 2rem 1rem;
    margin: 2rem auto 1rem;
  }

  #lp_contents .sec_prescription .cancel_wrap .cmpt_blk .cmpt_ttl{
    width: 7.4rem;
    height: 2.2rem;
    font-size: 1.2rem;
  }

  #lp_contents .sec_prescription .cancel_wrap .cmpt_blk .cmpt_list:not(:last-child){
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }

  #lp_contents .sec_prescription .cancel_wrap .cmpt_blk figure{
    margin-bottom: 0.5rem;
  }

  #lp_contents .sec_prescription .cancel_wrap .cmpt_blk figure p{
    width: 16rem;
    text-align: center;
  }

  #lp_contents .sec_prescription .cancel_wrap .cmpt_blk .cmpt_text{
    text-align: justify;
    font-size: 1.1rem;
  }

  /*table_wrap*/
  #lp_contents .sec_prescription .table_wrap{
    /*gap: 5rem;*/
    gap: 0;
    margin: 4rem auto 0;
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
    width: 36rem;
  }

  #lp_contents .sec_prescription .table_wrap dt{
    background: none;
    padding: 0;
    width: 39rem;
    /*display: block;*/
  }

  #lp_contents .sec_prescription .table_wrap dt ul{
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  #lp_contents .sec_prescription .table_wrap dt li{
    position: relative;
    width: calc(calc(100% - 0.8rem) / 3);
    background: rgba(255, 255, 255, .5);
    padding: 2rem 0;
  }

  #lp_contents .sec_prescription .table_wrap dt li:first-child:last-child{
    width: 100%;
  }

  #lp_contents .sec_prescription .table_wrap dt li:not(:first-child):before{
    content: none
  }

  #lp_contents .sec_prescription .table_wrap dt .ttl{
    font-size: 1.3rem;
  }

  #lp_contents .sec_prescription .table_wrap dt .cate{
    font-size: 1.5rem;
  }

  #lp_contents .sec_prescription .table_wrap dt .cmpt_blk{
    gap: 1rem;
    margin: 1.5rem auto 0;
  }

  #lp_contents .sec_prescription .table_wrap dt .cmpt_blk p{
    width: fit-content;
    padding: 0 1.5rem;
  }

  #lp_contents .sec_prescription .table_wrap dd{
    /*margin: 5rem auto 0;*/
    margin: auto;
    height: auto;
    width: 36rem;
    box-shadow: none;
  }

  #lp_contents .sec_prescription .table_wrap dd:before{
    animation: arrowmove-sp 1.5s ease-in-out infinite;
    content: none;
  }

  #lp_contents .sec_prescription .table_wrap dd ul{
    gap: 0.5rem;
  }

  #lp_contents .sec_prescription .table_wrap dl:nth-of-type(1) ul{
    width: 100%;
  }

  #lp_contents .sec_prescription .table_wrap dl:nth-of-type(2) ul{
    width: 100%;
  }

  #lp_contents .sec_prescription .table_wrap dd .logo{
    width: 7rem;
  }

  #lp_contents .sec_prescription .table_wrap dd li a{
    width: 8rem;
  }

  #lp_contents .sec_prescription .table_wrap dd p{
    font-size: 1rem;
  }

  #lp_contents .sec_prescription .table_wrap dd p b{
    font-size: 1.2rem;
  }

  #lp_contents .sec_prescription .table_wrap dd li > p b{
    font-size: 1.4rem;
  }

  #lp_contents .sec_prescription .text_wrap{
    margin: 3.6rem auto 0;
    padding: 2rem 0;
    width: 36rem;
    background-image: url(../img/text-frame_sp.png);
  }

  #lp_contents .sec_prescription .text_wrap .ttl_lead{
    margin-bottom: 0;
  }


  /*selling points-----------------*/
  #lp_contents .selling-points_area {
    background-image: url(../img/point-bg_sp.jpg);
    padding: 8rem 0;
  }

  #lp_contents .selling-points_wrap .ttl_lead big{
    font-size: 1.8rem;
  }

  #lp_contents .selling-points_wrap .selling_lead_text{
    font-size: 1.2rem;
  }

  .selling-points_list {
    margin-top: calc(85 * (100vw / 750));
  }

  .selling-points_list li:nth-of-type(n+2) {
    margin-top: calc(88 * (100vw / 750));
  }

  .selling-points_list li dt {
    margin-bottom: calc(38 * (100vw / 750));
    font-size: calc(36 * (100vw / 750));
  }

  .selling-points_list li dt .point_num {
    border-width: calc(2 * (100vw / 750));
    width: calc(90 * (100vw / 750));
    height: calc(90 * (100vw / 750));
    margin: 0 auto calc(50 * (100vw / 750));
    font-size: calc(42 * (100vw / 750));
  }

  .selling-points_list li dt .point_num .txt_S {
    margin-left: calc(-32 * (100vw / 750));
    padding: calc(7 * (100vw / 750)) 0;
    font-size: calc(16 * (100vw / 750));
  }

  .selling-points_list li.point_1 dt .point_num .txt_S{
    background: #f6f6f6;
  }

  .selling-points_list li.point_2 dt .point_num .txt_S{
    background: #f4f4f5;
  }

  .selling-points_list li.point_3 dt .point_num .txt_S{
    background: #cbd9e4;
  }

  .selling-points_list li dt .icon {
    margin: 0 auto calc(20 * (100vw / 750));
    font-size: calc(20 * (100vw / 750));
    background: #fff;
    color: #000;
  }

  .selling-points_list li dd .notes {
    margin-top: calc(20 * (100vw / 750));
    font-size: calc(20 * (100vw / 750));
  }

  .selling-points_list li dd sup {
    font-size: calc(13 * (100vw / 750));
  }


  /*------------ sec_formulas ------------*/

  #lp_contents .sec_formulas{
    padding: 4rem 0 3.75rem;
  }

  #lp_contents .sec_formulas h3{
    margin-bottom: 2.5rem;
  }

  /*certification_wrap*/
  #lp_contents .sec_formulas .certification_wrap {
    width: 28rem;
    margin: 0 auto 2.75rem;
    padding: 2rem 0;
  }

  #lp_contents .sec_formulas .certification_img {
    width: 10rem;
    margin: 2.5rem auto 0;
  }

  #lp_contents .sec_formulas .certification_name {
    font-size: 1.2rem;
  }

  #lp_contents .sec_formulas .certification_name span {
    letter-spacing: .15em;
  }

  #lp_contents .sec_formulas .certification_caption {
    font-size: 1.2rem;
    letter-spacing: .075em;
    margin: 0 auto 3rem;
  }

  /*free_wrap*/
  #lp_contents .sec_formulas .free_wrap{
    width: 100%
  }

  #lp_contents .sec_formulas .free_wrap .free_ttl{
    font-size: 1.3rem;
    margin: 0 auto 3rem;
  }

  #lp_contents .sec_formulas .free_wrap .free_ttl span{
    padding: 0 0.75rem;
  }

  #lp_contents .sec_formulas .free_wrap .free_ttl big{
    margin-top: 1rem;
    font-size: 1.5rem;
  }

  #lp_contents .sec_formulas .free_wrap ul{
    gap: 1.5rem;
  }

  #lp_contents .sec_formulas .free_wrap li{
    font-size: 1.2rem;
    min-width: 13rem;
    max-width: 27.5rem;
    height: 2.6rem;
  }

  #lp_contents .sec_formulas .free_wrap li.full{
    width: 100%;
  }


  /*------------ aroma ------------*/

  #lp_contents > section.aroma_area {
    padding: 18rem 0 0;
  }

  #lp_contents .aroma_area .sec_ttl{
    color: #000;
    margin-bottom: 3rem;
  }

  #lp_contents .aroma_area .sec_ttl::before {
    height: 20rem;
    background: url(../img/aroma-bg_sp.jpg) center center / cover no-repeat;
  }

  .point_wrap {
    border-radius: calc(20 * (100vw / 750));
    width: calc(680 * (100vw / 750));
    padding: calc(50 * (100vw / 750)) calc(10 * (100vw / 750)) calc(40 * (100vw / 750));
  }

  .point_wrap dt {
    margin-bottom: calc(18 * (100vw / 750));
    font-size: calc(24 * (100vw / 750));
  }

  .point_wrap dd {
    font-size: calc(22 * (100vw / 750));
  }

  .point_wrap dd sup {
    font-size: calc(13 * (100vw / 750));
  }

  .aroma_area .notes {
    margin-top: calc(28 * (100vw / 750));
    font-size: calc(20 * (100vw / 750));
  }

  .pyramid_wrap {
    width: auto;
    margin: calc(78 * (100vw / 750)) auto 0;
  }

  .aroma_list_wrap {
    z-index: 1;
    display: block;
    overflow: visible;
    padding: calc(50 * (100vw / 750)) 0;
  }

  .aroma_list_wrap::after {
    bottom: auto;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1 !important;
    border: none !important;
    margin-left: 0 !important;
  }

  .aroma_list_wrap.top::after {
    background: #E4EADE;
    left: 0;
  }

  .aroma_list_wrap.middle::after {
    background: #D7E3D1;
    left: 0;
  }

  .aroma_list_wrap.last::after {
    background: #CEDEC6;
    left: 0;
  }

  .pyramid_wrap .aroma_list_wrap:nth-of-type(n+2)::before {
    display: none;
  }

  .aroma_list_wrap dt {
    width: auto;
    margin-bottom: calc(25 * (100vw / 750));
    padding-left: 0;
    font-size: calc(26 * (100vw / 750));
  }

  .aroma_list_wrap.top dt{
    padding-top: 0;
  }

  .aroma_list_wrap dt span {
    display: block;
  }

  .aroma_list_wrap.top dt span {
    margin-top: 0;
  }

  .aroma_list_wrap.last dt span {
    margin-bottom: 0;
  }

  .aroma_list {
    gap: 0.8rem;
    width: 100%;
  }

  .aroma_list_wrap.top .aroma_list,
  .aroma_list_wrap.middle .aroma_list,
  .aroma_list_wrap.last .aroma_list {
    padding: 0;
  }

  .aroma_list_wrap.last .aroma_list {
    margin-left: 0;
  }

  .aroma_list li {
    min-width: 11rem;
    width: fit-content;
    padding: 0 1.5rem;
  }

  .aroma_list li .aroma_name {
    margin-bottom: calc(28 * (100vw / 750));
    font-size: calc(22 * (100vw / 750));
    letter-spacing: .1em;
  }

  .aroma_list li .aroma_name .txt_S {
    margin-top: calc(12 * (100vw / 750));
    font-size: calc(20 * (100vw / 750));
  }

  .aroma_list li figure {
    width: calc(150 * (100vw / 750));
  }

  #lp_contents .aroma_area .note{
    text-align: left;
    padding: 2rem 1.5rem;
  }


  /*------------ products ------------*/

  #lp_contents .product_area .sec_ttl{
    margin-bottom: 4rem;
  }

  .product_list{
    width: 100%;
    row-gap: 4rem;
  }

  .product_list li {
    width: 36rem;
    margin: 0 auto;
  }

  #lp_contents .product_list li .icon{
    width: 6.5rem;
    height: 6.5rem;
    top: -2rem;
    left: 0;
  }

  #lp_contents .product_list li .category{
    font-size: 1.1rem;
    margin: 0 auto 2rem;
  }

  #lp_contents .product_list li .category b{
    font-size: 1.6rem;
  }

  .product_list li .product_inner{
    padding: 4rem 0;
  }

  .product_list li .content_wrap {
    justify-content: center;
    gap: 0;
    margin: 0 auto 2.5rem;
  }

  #lp_contents .product_list li .product_img img{
    height: 16rem;
  }

  .product_list li > .content_wrap {
    gap: calc(40 * (100vw / 750));
  }

  .product_list li .txt_wrap{
    width: 22rem;
  }

  .product_list li .product_name {
    margin-bottom: calc(30 * (100vw / 750));
    font-size: calc(24 * (100vw / 750));
  }

  .product_list li .product_capacity {
    margin-bottom: calc(20 * (100vw / 750));
    font-size: calc(24 * (100vw / 750));
  }

  .product_list li .product_price {
    margin-bottom: calc(40 * (100vw / 750));
    font-size: calc(24 * (100vw / 750));
  }

  .product_list li.set-item .product_price {
    margin-bottom: calc(30 * (100vw / 750));
    text-align: center;
  }

  .product_list li .product_price .tax {
    font-size: calc(19.07 * (100vw / 750));
    vertical-align: 0;
  }

  .product_area .accordion_wrap.active {
    padding-bottom: calc(50 * (100vw / 750));
  }

  #lp_contents .product_text_wrap{
    padding: 0 2rem;
  }

  #lp_contents .product_text_wrap p{
    font-size: 1.1rem;
  }


  /*------------ allbtn_wrap ------------*/

  #lp_contents .allbtn_wrap{
    gap: 2rem;
  }

  #lp_contents .allbtn_wrap a{
    width: 36rem;
  }

  #lp_contents .allbtn_wrap a img{
    width: 10.5rem;
  }


  /*------------ sec_use ------------*/

  #lp_contents .sec_use .use_wrap{
    padding: 2.5rem 0 3rem;
    width: 36rem;
  }

  #lp_contents .sec_use .use_wrap:not(:first-child){
    margin-top: 2rem;
  }

  #lp_contents .sec_use .use_wrap .use_ttl{
    font-size: 2rem;
    margin: 0 auto 2rem;
  }

  #lp_contents .sec_use .use_wrap .use_ttl img{
    width: 2rem;
  }

  #lp_contents .sec_use .use_wrap ul{
    gap: 1.2rem;
    width: 67rem;
    margin: 0 1.5rem;
    padding-bottom: 1.5rem;
    padding-right: 1.5rem;
  }

  #lp_contents .sec_use .use_wrap li{
    width: 12rem;
  }

  #lp_contents .sec_use .use_wrap li:not(:last-child):before{
    width: 3.2rem;
    height: 0.8rem;
    right: -2.2rem;
    z-index: 2;
  }

  #lp_contents .sec_use .use_wrap .category{
    font-size: 1.1rem;
  }


  /*------------ sec_comment ------------*/

  #lp_contents .sec_comment .staff_wrap ul{
    gap: 1rem;
  }

  #lp_contents .sec_comment .staff_wrap li{
    width: 36rem;
  }

  #lp_contents .sec_comment .staff_wrap figure{
    margin: 0 auto 1rem;
  }

  #lp_contents .sec_comment .staff_wrap figure img{
    width: 6rem;
    height: 6rem;
  }


  /*------------ sec_concept ------------*/

  #lp_contents .sec_concept:before{
    height: 20rem;
    background-image: url(../img/concept-bg_sp.jpg);
  }

  #lp_contents .sec_concept .concept_wrap{
    width: 36rem;
  }

  #lp_contents .sec_concept .concept_wrap figure,
  #lp_contents .sec_concept .concept_wrap .text_blk{
    width: 100%;
    font-size: 1.3rem;
  }

  #lp_contents .sec_concept .concept_wrap .text_blk{
    padding-top: 4rem;
  }

}