@charset "UTF-8";

/* @font-face {
  font-family: "Vogue";
  src: url("../font/Vogue.ttf") format("opentype");
} */

:root {
    --bg-color:#FCF9E6;
    --bg-green-color:#DFECE8;
    --bg-pink-color:#FDF5F9;
    --bg-pink2-color:#FAE8F0;
    --orange-color:#FD883F;
    --campaign-bg:#FFECE0;
    --btn-color:#FDBF3F;
    --white-color: #ffffff;
    --font-color:#313131;
    /* --font-mincho-ja: "shippori-mincho", sans-serif; */
    --font-gothic-ja: "Noto Sans JP", serif;
    --font-en: "futura-pt", sans-serif;
}

@media screen and (max-width: 1400px){
html {
  font-size: calc(10 * (100vw / 1400));
}

}

@media only screen and (max-width: 768px) {
html {
	font-size: calc(10 * (100vw / 450));
}	
	
#lp-page .sp_only {
  display: block;
}
#lp-page .pc_only {
  display: none;
}
	
}

#share {
    bottom: 10% !important;
    left: 3% !important;
}
#share img {
    margin: 0 auto;
}
#lp-page {
  margin: 0 auto;
  position: relative;
  color: var(--font-color);
  font-family: var(--font-gothic-ja);
  font-style: normal;
  letter-spacing: 0;
  z-index: 0;
  width: 100%;
  overflow: hidden;
  background: #FFFDF2;
}
#lp-page img,
#lp-page svg {
  display: block;
  opacity: 1;
  width: 100%;
  height: auto;
}
#lp-page picture {
  display: block;
}
#lp-page a {
  display: block;
  color: inherit;
}
#lp-page *:focus {
  outline: none;
}
#lp-page a,
#lp-page label {
  /* -webkit-tap-highlight-color: rgba(240, 164, 149, 0.6); */
}
#lp-page input {
  display: none;
}
#lp-page li,
#lp-page ol {
  list-style-type: none;
}


  main {
    max-width: 100vw;
  }
  #Wrap {
    width: auto;
  }
  .wrapTop,
.wrapBottom {
    width: 100%;
  }

  #lp-page a {
    cursor: pointer;
  }

/* 追従メニュー */
.fixed-nav {
	display: none;
}
.fixed-nav.m_fixed {
	position: fixed;
	bottom: 0;
	left: 0;
	/* border-top: 1px solid #C3AE8E; */
	/* border-bottom: 1px solid #C3AE8E; */
	width: 100%;
	animation: fadein 1s ease-out forwards;
	display: block;
	z-index: 20;
}

.fixed-nav.m_fixed .nav-list {
    display: flex;
    align-items: center;
    /* height: 6rem; */
    background: #FAF5D8;
    /* color: #BC9A64; */
    /* font-family: "Marcellus", "Noto Sans JP", sans-serif; */
    box-shadow: 0 0 2px #ddd;
    /* padding: 0 6rem; */
    overflow-x: scroll;
    overflow-y: hidden;
    height: calc(56*(100vw / 390));
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 1rem 0;
}

.fixed-nav.m_fixed .nav-list li a {
    border-right: 1px solid #E5E1CD;
    height: 3.6rem;
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.fixed-nav a.active {
    opacity: 1 !important;
    font-weight: 600;
}



/* slick */
#lp-page .slick-img img {
  height: auto;
  opacity: .5;
  transform: scale(.9);
  transition: opacity .6s, transform .6s;
  width: 100%;
}

#lp-page .slider .slick-center img {
  opacity: 1;
  transform: scale(1);
}
/*----------アニメーション----------*/

/* .zoomin.is-animated {
  animation: zoomIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
 
@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
} */
.slidein.is-animated {
  animation: slideIn 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
 
@keyframes slideIn {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
  }
  40%,100% {
    opacity: 1;
  }
}

.popup.is-animated {
  animation: popup 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
 
@keyframes popup {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1.0);
  }
  80%, 100% {
    opacity: 1;
  }
}

.fadein {
    opacity: 0;
    transform: translateY(0);
    transition: opacity 2s 0s, transform 2s 0s;
  }
  
  .fadein.fade-active {
    opacity: 1;
    transform: translateY(0) translateZ(0);
    transition: opacity 2s 0s, transform 2s 0s;
  }
  
  
  .fadeup {
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity 1s 0s, transform 1s 0s;
  }
  
  .fadeup.fade-active {
    opacity: 1;
    transform: translateY(0) translateZ(0);
    transition: opacity 1s 0s, transform 1s 0s;
  }
  
  .fadein-load {
    opacity: 0;
    transition: opacity 1s;
  }
  
  .fadein-load.fade-active {
    opacity: 1;
    transition: opacity 1s;
  }
  
  .fadeup-load {
    opacity: 0;
    transform: translateY(4rem) translateZ(0);
    transition: opacity 1s 0s, transform 1s 0s;
  }
  
  .fadeup-load.fade-active {
    opacity: 1;
    transform: translateY(0) translateZ(0);
    transition: opacity 1s 0s, transform 1s 0s;
  }

  #lp-page .zoomin {
    overflow: hidden;
  }
  
  #lp-page .zoomin img{
    opacity: 0;
    transition: all 2s;
    transform: scale(0.8);
    filter: blur(5px);
  }
  
  #lp-page .zoomin.is-animated img{
    opacity: 1;
    transform: scale(1.0);
    filter: blur(0);
  }

  #lp-page .SlideUp{
    overflow: hidden;
  }
  
  #lp-page .SlideUp .ani {
    display: block;
    opacity: 0;
    transform: translateY(5rem);
    transition: transform 1s ease-in-out, opacity 1.5s ease-in-out;
  }
  
  #lp-page .SlideUp span:nth-of-type(2) {
    transition-delay: 0.2s;
  }
  
  #lp-page .SlideUp.fade-active .ani {
    opacity: 1;
    transform: translateY(0);
  }

    #lp-page .line::before  {
    width: 0;
    height: 1px;
    left: 0;
    }

    #lp-page .line.fade-active::before {
    width: 100%;
    }

/* アコーディオン */
#lp-page .accordion_wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .8s;
}

#lp-page .open > .accordion_wrap {
  grid-template-rows: 1fr;
}

#lp-page .accordion_inner {
  position: relative;
  /* padding-bottom: 3.6rem; */
  min-height: 20rem;
  overflow: hidden;
  font-size: 1.3rem;
  line-height: 2;
  text-align: center;
}

#lp-page .accordion_inner::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10rem;
  background: linear-gradient(transparent, #fcfaef);
  content: "";
  z-index: 3;
}

#lp-page .open .accordion_inner::before {
  display: none;
}

#lp-page .accordion_btn {
  position: relative;
  width: auto;
  margin: 1rem auto 3rem;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
}

#lp-page .accordion_btn .to_open,
#lp-page .accordion_btn .to_close {
  /* text-decoration: underline; */
  /* text-underline-offset: 6px; */
  /* white-space: nowrap; */
  /* text-decoration-color: #ffffff; */
}

#lp-page .accordion_btn .to_open,
#lp-page .open .accordion_btn .to_close {
  display: block;
}

#lp-page .accordion_btn .to_close,
#lp-page .open .accordion_btn .to_open {
  display: none;
}



/* ＝＝＝＝＝＝＝＝ LP ＝＝＝＝＝＝＝＝ */
#lp-page .intro-txt {
    margin-top: 4.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    line-height: 2;
}

#lp-page .menu-area {
    margin-top: 6rem;
    background-color: var(--search-bg);
    padding: 4rem 2rem 2rem;
}

#lp-page .menu-inner {
    text-align: center;
    position: relative;
    background: url(../img/serach_bg.svg) no-repeat;
    background-size: 100%;
    margin: 0 auto;
    padding: 4rem 1rem 6rem;
    z-index: 0;
}

#lp-page .menu-inner h3 {
    font-size: 3.5rem;
    font-family: var(--font-en);
    line-height: 1;
}

#lp-page .menu-inner h3:nth-of-type(n+2) {
    padding-top: 4rem;
}

#lp-page .menu-inner h3 .subttl {
    display: block;
    margin-top: 1rem;
    font-size: 1.2rem;
}

#lp-page .menu-area {
  width: 38rem;
  margin: 4.5rem auto 0;
  padding: 1.5rem 2rem 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: rgba(253, 252, 243, .8);
}

#lp-page .menu-area h2 {
  text-align: center;
  font-family: var(--font-en);
  font-style: oblique;
  font-size: 2.8rem;
  color: #FDB82C;
}

#lp-page .menu-wrap {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border: #FDD685 solid 0.1rem;
}

#lp-page .menu-blk {
  position: relative;
  width: 18.5rem;
  padding: 1.5rem 0 2rem;
  text-align: center;
  font-size: 1.2rem;
  font-family: var(--font-mincho-ja);
  font-weight: 600;
  z-index: 0;
}

#lp-page .menu-wrap .icon_img {
  width: 6rem;
  margin: auto;
}

#lp-page .menu-wrap .text {
  margin-top: .8rem;
}

#lp-page .menu-wrap.price a {
    height: 8.3rem;
    font-size: 2.2rem;
    line-height: 1.3;
    font-family: var(--font-en);
    text-align: left;
}

#lp-page .menu-wrap .menu-blk:nth-of-type(1)::before  {
    position: absolute;
    display: block;
    content: "";
    /* width: 0.1rem; */
    height: 10rem;
    border-right: #FDD685 dotted 0.2rem;
    top: 50%;
    right: 0;
    transform: translate(-50%, -50%);
    z-index: 1;
}

#lp-page .menu-wrap .menu-blk:nth-of-type(3)::after  {
    position: absolute;
    display: block;
    content: "";
    width: 17.5rem;
    border-top: #FDD685 dotted 0.2rem;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

#lp-page .menu-wrap .menu-blk.last::before  {
  position: absolute;
  display: block;
  content: "";
  /* width: 0.1rem; */
  height: 10rem;
  border-left: #FDD685 dotted 0.2rem;
  border-right: unset;
  top: 50%;
  left: 0;
  right: unset;
  transform: translate(-50%, -50%);
  z-index: 1;
}

#lp-page .menu-wrap .menu-blk.last::after  {
  position: absolute;
  display: block;
  content: "";
  width: 17.5rem;
  border-top: #FDD685 dotted 0.2rem;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}


#lp-page .all-btn {
    margin: 3rem auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35rem;
    height: 7rem;
    font-size: 2rem;
    font-family: var(--font-en);
    color: var(--white-color);
    background-color: var(--btn-color);
}


/* ＝＝＝＝ campaign_area ＝＝＝＝ */
#lp-page .campaign_area {
  padding: 4rem 0;
  background: #FFECE0;
}

#lp-page .campaign_area.second {
  padding: 6rem 0 5rem;
}

#lp-page .campaign_area h2 {
  width: 28rem;
  margin: 0 auto;
}

#lp-page .campaign_area .campaign_inner {
  position: relative;
  width: 41rem;
  margin: 3rem auto 0;
  padding: 4.5rem 0 2rem;
  text-align: center;
  background: rgba(255, 255, 255, .5);
  border-radius: 1rem;
  z-index: 0;
}

#lp-page .campaign_area .campaign_inner::before {
  position: absolute;
  content: "";
  display: block;
  width: 8.2rem;
  height: 7rem;
  top: -3rem;
  right: 1.5rem;
  z-index: 1;
}

#lp-page .campaign_area .campaign_inner:nth-of-type(2)::before {
  background: url(../img/campaign_1.png) no-repeat;
  background-size: 100%;
}
#lp-page .campaign_area .campaign_inner:nth-of-type(3)::before {
  background: url(../img/campaign_2.png) no-repeat;
  background-size: 100%;
  height: 9rem;
}

#lp-page .campaign_area .campaign_ttl {
  position: absolute;
  width: 13rem;
  padding: .5rem 0 1rem;
  background: var(--white-color);
  border-radius: 10rem;
  border: #FFB181 0.1rem solid;
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 600;
  font-style: oblique;
  display: flex;
  align-items: center;
  z-index: 1;
}

#lp-page .campaign_area .campaign_ttl {
  position: absolute;
  width: 13rem;
  padding: .5rem 1rem;
  background: var(--white-color);
  border-radius: 10rem;
  border: #FFB181 0.1rem solid;
  color: var(--orange-color);
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 600;
  font-style: oblique;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

#lp-page .campaign_area .campaign_ttl .number {
  width: 2.8rem;
  height: 2.8rem;
  background: var(--orange-color);
  color: var(--white-color);
  border-radius: 10rem;
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 600;
  font-style: oblique;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

#lp-page .campaign_text {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.7;
}

#lp-page .campaign_text .off {
  position: relative;
  display: inline-block;
  padding: 0.5rem;
  font-family: var(--font-en);
  font-size: 3rem;
  line-height: 1;
  color: var(--orange-color);
  z-index: 0;
}

#lp-page .campaign_text .off::before {
  position: absolute;
  display: block;
  content: "+";
  font-size: 2rem;
  top: 10px;
  left: -3px;
  z-index: 1;
}

#lp-page .campaign_text .off span {
  font-size: 1.8rem;
}

#lp-page .campaign_text .up {
  display: inline-block;
  font-size: 2.2rem;
  font-family: var(--font-en);
  color: var(--orange-color);
  transform: rotate(15deg);
  padding: 0.5rem;
}

#lp-page .info {
  font-size: 1rem;
  margin-top: 1.5rem;
}


/* ＝＝＝＝＝＝＝＝ content ＝＝＝＝＝＝＝＝ */

#lp-page .content {
    margin-top: 2.5rem;
}

#lp-page .content-area {
    position: relative;
    z-index: 0;
    padding: 6.5rem 0 3rem;
    text-align: center;
    z-index: 0;
}

#lp-page .content-area h3 {
  position: relative;
  display: inline-block;
  line-height: 1.7;
  font-size: 1.8rem;
  font-weight: 600;
  z-index: 0;
}

#lp-page .content-area h3::before {
  position: absolute;
  content: "ITCHY";
  font-size: 5rem;
  font-family: var(--font-en);
  font-style: oblique;
  font-weight: 600;
  top: -4rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(240, 201, 105, .3);
  z-index: -1;
}

#lp-page .content-area.drying h3::before {
  content: "DRYING";
  color: rgba(250, 199, 224, .3);
}

#lp-page .content-area.itchy {
  background: var(--bg-color);
}

#lp-page .content-area.drying {
  background: var(--bg-pink-color);
  padding: 8rem 0 3rem;
}

#lp-page .content-area .main_text {
  margin-top: 2rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
}

#lp-page .kit_content {
  width: 41rem;
  margin: 2.5rem auto 0;
  border-radius: 1rem;
  background: var(--white-color);
  padding-bottom: 2.5rem;
}

#lp-page .kit_content:nth-of-type(n+2) {
  margin: 2rem auto 0;
}

#lp-page .kit_content h4 {
  padding: 1.5rem 0;
  font-size: 2rem;
  font-weight: 600;
  border-radius: 1rem 1rem 0 0;
  color: var(--white-color);
  background: #F0C969;
}

#lp-page .kit_content .kit_text {
  margin-top: 2.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 2;
}

#lp-page .content-area .kit_wrap {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

#lp-page .content-area .kit_item {
  width: 11.6rem;
}

#lp-page .content-area .kit_item p {
  position: relative;
  text-align: center;
  padding: 1rem 0;
  font-size: 1.4rem;
  font-weight: 600;
  font-family: var(--font-en);
  background: #FCF9E6;
  z-index: 0;
}

#lp-page .content-area .kit_item p::before {
  position: absolute;
  content: "";
  display: block;
  background: url(../img/model_icon.svg) no-repeat;
  background-size: 100%;
  width: 1.5rem;
  height: 1.5rem;
  top: 1.3rem;
  right: 1rem;
  z-index: 1;
  transition: .6s;
}

#lp-page .content-area .kit_item:hover p::before {
  transform: rotate(180deg);
}

#lp-page .price_blk {
  margin-top: 1.5rem;
}

#lp-page .price_blk .price {
  margin-top: 1.5rem;
  font-size: 1.8rem;
  font-family: var(--font-en);
  font-style: oblique;
  font-weight: 600;
  line-height: 1;
}

#lp-page .price_blk .price .border {
  text-decoration: line-through;
}

#lp-page .price_blk .price .tax {
  font-size: 1rem;
}

#lp-page .price_blk .price.off {
  margin-top: .8rem;
  font-size: 2.8rem;
  color: #CE4242;
}

#lp-page .kit_list {
  text-align: left;
  position: relative;
  width: 33rem;
  margin: 1.5rem auto 0;
  background: rgba(252, 249, 230, .5);
  border-radius: 1rem;
  padding: 1rem 2rem;
  z-index: 0;
}

#lp-page .kit_list::before {
  position: absolute;
  content: "";
  background: url(../img/kit_icon.png) no-repeat;
  background-size: 100%;
  width: 7rem;
  height: 7rem;
  top: -4rem;
  right: 2rem;
  z-index: 1;
}

#lp-page .kit_list p {
  font-size: 1.4rem;
  padding: 1rem 0;
}

#lp-page .kit_list p:nth-of-type(n+2) {
  border-top: #FCE1A0 dotted 2px;
}


/* ＝＝＝＝ pickup_area ＝＝＝＝ */
#lp-page .pickup_area {
  position: relative;
  text-align: center;
  padding-bottom: 3rem;
  z-index: 0;
}

#lp-page .pickup_area.first {
  background: var(--bg-green-color);
}
#lp-page .pickup_area.second {
  background: var(--bg-pink2-color);
}

#lp-page .pickup_area::before {
  position: absolute;
  display: block;
  content: "";
  background: url(../img/pickup_1_bg.svg) no-repeat;
  background-size: 100%;
  width: 100%;
  height: 3rem;
  bottom: -3rem;
  left: 0;
  z-index: 1;
}

#lp-page .pickup_area.second::before {
  background: url(../img/pickup_2_bg.svg) no-repeat;
  background-size: 100%;
}


#lp-page .pickup_mv {
  width: 100%;
}

#lp-page .pickup_lead {
  font-size: 1.4rem;
  line-height: 2;
  margin-top: 2.5rem;
}

#lp-page .pickup_ttl {
  position: relative;
  display: inline-block;
  font-size: 2.2rem;
  font-family: var(--font-en);
  font-weight: 600;
  line-height: 1.2;
  margin-top: 2rem;
  color: var(--orange-color);
  z-index: 0;
}

#lp-page .pickup_ttl::before {
  position: absolute;
  content: "";
  width: 0.1rem;
  height: 2rem;
  background: var(--orange-color);
  transform: rotate(-45deg);
  bottom: 0;
  left: -1rem;
  z-index: 1;
}

#lp-page .pickup_ttl::after {
  position: absolute;
  content: "";
  width: 0.1rem;
  height: 2rem;
  background: var(--orange-color);
  transform: rotate(45deg);
  bottom: 0;
  right: -1rem;
  z-index: 1;
}

#lp-page .item-list {
  margin-top: 2rem;
}

#lp-page .item-list .item-cont {
  position: relative;
  text-align: left;
  width: 22rem;
  margin: 0 .5rem;
  background: #FFFFFF;
  border-radius: 1rem;
  height: auto;
  z-index: 0;
}

#lp-page .item-list .item-cont::before {
  position: absolute;
  content: "";
  width: 7rem;
  height: 7rem;
  font-size: 1.4rem;
  background: var(--orange-color);
  color: var(--white-color);
  transform: rotate(-15deg);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
  top: 1rem;
  left: 1rem;
  z-index: 1;
}

#lp-page .pickup_area.first .item-list .item-cont.__1::before {
  content: "人気";
}
#lp-page .pickup_area.first .item-list .item-cont.__2::before {
  content: "NEW";
}
#lp-page .pickup_area.first .item-list .item-cont.__3::before {
  content: "お試し";
}

#lp-page .pickup_area.second .item-list .item-cont.__1::before {
  font-size: 1.2rem;
  content: "レスキュー";
}
#lp-page .pickup_area.second .item-list .item-cont.__2::before {
  font-size: 1.2rem;
  content: "持ち歩きに";
}
#lp-page .pickup_area.second .item-list .item-cont.__3::before {
  content: "";
  display: none;
}

#lp-page .item-list .item-txt {
  font-size: 1.1rem;
  padding: 1rem 1.5rem 1rem;
  line-height: 1.7;
}

#lp-page .item-list .item-name {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0 1.5rem 1.5rem;
  line-height: 1.7;
}

#lp-page .fl-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#lp-page .item-list .item-price {
  font-family: var(--font-en);
  font-size: 1.6rem;
  padding: 0 0 1.5rem 1.5rem;
  font-weight: 600;
}

#lp-page .item-list .tax {
  font-size: 1rem;
  padding-left: .5rem;
}

#lp-page .detail-btn {
  border-radius: 10rem;
  font-size: 1.2rem;
  width: 8rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 600;
  margin: 0 1.5rem 1.5rem 0;
  color: var(--white-color);
  background: var(--btn-color);
}

#lp-page .detail-btn a {
  padding: .5rem 0;
}

#lp-page .item-list .slick-dots li button::before {
  font-size: .8rem;
}

#lp-page .item-list .slick-dots li {
  width: 1.6rem;
  height: 1.6rem;
}

.slick-track {
  display: flex;
}
.slick-slide {
  height: auto !important;
}


/* ＝＝＝＝ QA_area ＝＝＝＝ */
#lp-page .QA_area {
  text-align: center;
  margin: 3rem auto 0;
}

#lp-page .QA_area h4 {
  display: inline-block;
  font-size: 1.8rem;
  padding: 1.5rem 2rem;
  border-radius: 5rem;
  border: var(--white-color) 0.2rem solid;
}

#lp-page .QA_area h4 span {
  font-size: 2.1rem;
  font-family: var(--font-en);
  padding-left: 0.5rem;
}

/* 必須 */
.accordion-content {
  display: none;
}

.accordion-header {
  background-color: #FCE1A0;
  width: 75%;
  padding: 1.5rem 5rem 1.5rem 1.5rem;
  margin: 1.5rem auto 0;
  transition: background .3s ease;
  border-radius: .5rem;
  cursor: pointer;
  position: relative;
}

.accordion-header.active {
  border-radius: .5rem .5rem 0 0;
}


.accordion-header::before,
.accordion-header::after{
  position:absolute;
  content:'';
  top:.1rem;
  right:2rem;
  bottom:0;
  width:1.5rem;
  height:.1rem;
  margin:auto;
  background:#151E2F;
}
.accordion-header::after{
  transform:rotate(-90deg);
  transition:transform 0.3s;
}
.accordion-header.active::after{transform:rotate(0deg);}

.accordion-content {
  width: 71.5%;
  margin: auto;
  background-color: var(--white-color);
  padding: 1.5rem 5rem 2rem 3rem;
  border-radius: 0 0 .5rem .5rem;
}

.accordion-header span,
.accordion-content .text {
  padding-left: 25px;
  position: relative;
  text-align: left;
  display: block;
  line-height: 1.7;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.accordion-header span::before{
  position: absolute;
  content:"Q.";
  top: -0.5rem;
  left: 0;
  font-size: 2rem;
  font-weight: 600;
  font-family: var(--font-en);
}

.accordion-content .text::before{
  position: absolute;
  content:"A.";
  top: 3px;
  left: 0;
  font-size: 2rem;
  font-weight: 600;
  font-family: var(--font-en);
}

.QA_area .accordion-content .mark {
  background:linear-gradient(transparent 60%, #FFD6BE 60%);
}







#lp-page .slider {
    max-width: 100%;
    margin-top: 3rem;
    margin-left: 2rem;
}

#lp-page .slider .slide_item {
    width: 22rem;
    margin: 0 1rem;
}

#lp-page .detail_blk {
    width: 95%;
}

#lp-page .detail_blk .text {
    font-size: 1.2rem;
    line-height: 1.7;
    padding: 0.8rem 0 0;
}

#lp-page .detail_blk .brand {
    text-align: left;
    font-family: var(--font-en);
    font-size: 1.8rem;
    margin-top: 1rem;
    line-height: 1;
}

#lp-page .detail_blk .name {
    text-align: left;
    margin-top: 0.5rem;
    font-size: 1.2rem;
    line-height: 1.5;
}

#lp-page .detail_blk .price {
    margin-top: 1rem;
    font-family: var(--font-en);
    font-size: 1.8rem;
    line-height: 1;
}

#lp-page .detail_blk .price span {
    font-size: 1.2rem;
}

#lp-page .detail_blk .link_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 4rem;
    font-size: 1.4rem;
    font-family: var(--font-en);
    font-weight: 600;
    color: var(--white-color);
    background-color: var(--btn-color);
    margin-top: 1.5rem;
}



#lp-page .thumbnail-slider {
    max-width: 100%;
}

#lp-page .thumbnail-slider .slick-list {
    padding: 2.5rem 0 0 1rem;
}

#lp-page .thumbnail-slider .slick-current {
    border: 2px solid #8B6A6B;
}

#lp-page .thumbnail-slider .slide_item {
    position: relative;
    width: 7.4rem !important;
    aspect-ratio: 1 / 1;
    margin: 0 0.5rem;
    z-index: 0;
}

#lp-page .thumbnail-slider .slide_item.slick-current::before {
    transition: .6s;
    opacity: 0;
}

#lp-page .thumbnail-slider .slide_item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #050505;
    opacity: .4;
    z-index: 1;
}

#lp-page .thumbnail-slider .slick-track {
    transform: unset !important;
}


#lp-page .content-btn {
    margin: 2rem auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24rem;
    height: 5rem;
    font-size: 2rem;
    font-weight: 600;
    font-family: var(--font-en);
    color: var(--white-color);
    background-color: var(--btn-color);
    border-radius: 10rem;
}


#lp-page .content-all-btn {
    margin: 5rem auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 37rem;
    height: 7rem;
    font-size: 1.6rem;
    color: var(--white-color);
    background-color: var(--btn-color);
    border-radius: 10rem;
}

#lp-page .campaign_area .content-all-btn {
  color: var(--white-color);
  background-color: var(--orange-color);
  margin: 2.5rem auto 0;
}


/* ===================
  　　  ▽ MODAL ▽
=================== */
/* modal */
body.no_scroll {
  height: 100vh;
  overflow: hidden;
  
}

header.hide {
  opacity: 0;
  pointer-events: none;
}

.modal_outside.hide {
  opacity: 0;
  pointer-events: none;
}

.modal_outside {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: opacity .3s;
}

.modal_outside::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}

.modal_overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100vw;
  height: 100%;
  backdrop-filter: blur(2px);
  background-color: rgba(49, 49, 49, .6);
  margin: 0 calc(50% - 50vw);
}

.modal_inner {
  position: relative;
  z-index: 1;
  width: 37rem;
  height: auto;
  overflow: scroll;
}

.modal_outer {
  position: relative;
}

.modal_outer.__2 .modal_inner {
  width: 67.5rem;
}

.btn_close {
  position: absolute;
  top: -5rem;
  right: 2rem;
  z-index: 2;
  width: 4rem;
  height: 4rem;
}

.btn_close:hover {
  cursor: pointer;
}

.btn_close::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 4rem;
  height: 1.5px;
  background: var(--white-color);
  content: "";
}

.btn_close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 1.5px;
  height: 4rem;
  background: var(--white-color);
  content: "";
}

.review_area .modal_wrap {
  position: relative;
  background-color: var(--white-color);
  padding: 3.5rem 2rem;
  border-radius: 1rem;
}

.review_area .modal_wrap .modal_wrap_blk {
  width: 100%;
  text-align: center;
}

.review_area .modal_wrap .modal_item_img {
  width: 20rem;
  margin: 2rem auto 0;
}

.review_area .modal_wrap .modal_item_img img {
  width: 100%;
}

.review_area .modal_wrap .modal_item_text {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.7;
  text-align: justify;
  margin-top: 1.5rem;
}

.review_area .item_info .name {
  text-align: left;
  font-size: 1.6rem;
  margin-top: 1.5rem;
  line-height: 1.5;
}

.review_area .item_info .price {
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 600;
  margin-top: 1.2rem;
}

.review_area .price_blk {
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review_area  .price_blk .price {
  margin-top: 1rem;
  font-size: 2.6rem;
  font-family: var(--font-en);
  font-style: oblique;
  font-weight: 600;
  line-height: 1;
}

.review_area  .price_blk .price .tax {
  font-size: 1.2rem;
}

.review_area  .content-btn {
  margin: 2rem 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 14rem;
  height: 4rem;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--font-en);
  color: var(--white-color);
  background-color: var(--btn-color);
  border-radius: 10rem;
}

.review_area  .review_blk {
  text-align: left;
  margin-top: 2rem;
  width: fit-content;
  background: #FDFCF5;
  border-radius: 1rem;
  padding: 1.5rem 1.5rem 1.2rem;
}

.review_area  .review_blk h4 {
  font-size: 1.6rem;
  font-family: var(--font-en);
  font-style: oblique;
}

.review_area  .review_blk .review_text {
  font-size: 1.2rem;
  line-height: 1.7;
  text-align: justify;
  padding: 1.5rem 0 1rem;
  margin-top: .5rem;
  border-top: #FDD685 dotted 0.2rem;
}

.review_area  .review_blk .review_name {
  text-align: right;
  font-size: 1.1rem;
}


/* ===== kit_menu ===== */
#kit_menu img ,
#kit_menu_2 img {
  width: 100%;
}

#kit_menu .modal_inner ,
#kit_menu_2 .modal_inner {
  height: 80vh;
}

#kit_menu .btn_close ,
#kit_menu_2 .btn_close {
  top: -5rem;
}

#kit_menu .modal_inner ,
#kit_menu_2 .modal_inner {
  width: 41rem;
}

#kit_menu .kit_content ,
#kit_menu_2 .kit_content {
  width: 100%;
  margin: 2.5rem auto 0;
  border-radius: 1rem;
  background: var(--white-color);
}

#kit_menu .kit_content:nth-of-type(n+2) ,
#kit_menu_2 .kit_content:nth-of-type(n+2) {
  margin: 2rem auto 0;
}

#kit_menu .kit_content h4 ,
#kit_menu_2 .kit_content h4 {
  padding: 1.5rem 0;
  font-size: 2rem;
  font-weight: 600;
  border-radius: 1rem 1rem 0 0;
  color: var(--white-color);
  background: #F0C969;
}

#kit_menu .kit_content .kit_menu_text ,
#kit_menu_2 .kit_content .kit_menu_text {
  text-align: left;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 2;
}

#kit_menu  .price_wrap ,
#kit_menu_2  .price_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#kit_menu  .price_blk ,
#kit_menu_2  .price_blk {
  text-align: left;
  display: block;
}

#kit_menu  .price_blk .price ,
#kit_menu_2  .price_blk .price {
  margin-top: 1rem;
  font-size: 1.8rem;
  font-family: var(--font-en);
  font-style: oblique;
  font-weight: 600;
  line-height: 1;
}

#kit_menu  .price_blk .price .border ,
#kit_menu_2 .price_blk .price .border {
  text-decoration: line-through;
}

#kit_menu  .price_blk .price .tax ,
#kit_menu_2  .price_blk .price .tax {
  font-size: 1rem;
}

#kit_menu  .price_blk .price.off ,
#kit_menu_2  .price_blk .price.off {
  margin-top: .8rem;
  font-size: 2.8rem;
  color: #CE4242;
}

#kit_menu  .content-btn ,
#kit_menu_2  .content-btn {
  margin: 2rem 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15rem;
  height: 4.5rem;
  font-size: 2rem;
  font-weight: 600;
  font-family: var(--font-en);
  color: var(--white-color);
  background-color: var(--btn-color);
  border-radius: 10rem;
}

/* ===================
  　　  △ MODAL △
=================== */




/* =============== follow-nav =============== */
#lp-page .follow_nav {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  box-sizing: border-box;
  transition: all 0.6s 0.2s ease;
  overflow-x: scroll;
  white-space: nowrap;
  bottom: 0;
  left: 0;
  width: 100%;
  display: block;
  z-index: 20;
}


#lp-page .follow_wrap {
  display: flex  ;
    align-items: center;
    /* height: 6rem; */
    background: #FAF5D8;
    /* color: #BC9A64; */
    /* font-family: "Marcellus", "Noto Sans JP", sans-serif; */
    box-shadow: 0 0 2px #ddd;
    /* padding: 0 6rem; */
    overflow-x: scroll;
    overflow-y: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    border-top: #FDD685 0.1rem solid;
    background: #FDFCF3;
}

#lp-page .follow_nav a {
  text-align: center;
  position: relative;
  display: block;
  font-family: var(--font-ja_write);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0;
  padding: 1.5rem 2rem;
  color: var(--color-white);
  z-index: 0;
}

#lp-page .follow_wrap li {
  position: relative;
}

#lp-page .follow_wrap li:nth-of-type(n+2):before {
  position: absolute;
  content: "";
  height: 5rem;
  width: 0.1rem;
  border-left: #FDD685 dotted 0.2rem;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

#lp-page .follow_nav a:hover {
  opacity: 1;
}

#lp-page .follow_nav.up-active {
  visibility: visible;
  opacity: 1;
  z-index: 10;
  bottom: calc(0 * 100vw/390);
}

#lp-page .follow_nav.down-active {
  visibility: visible;
  opacity: 0;
  z-index: 10;
}


#lp-page .follow_banner {
  position: fixed;
  align-items: center;
  transition: all 0.6s 0.2s ease;
  bottom: calc(75 * 100vw/390);
  right: calc(-100 * 100vw/390);
  opacity: 0;
  visibility: hidden;
  box-sizing: border-box;
  width: calc(200 * 100vw/390);
}
#lp-page .follow_banner.up-active {
  visibility: visible;
  opacity: 1;
  z-index: 10;
  right: calc(0 * 100vw/390);
}
#lp-page .follow_banner.down-active {
  visibility: visible;
  opacity: 0;
  z-index: 10;
}

#lp-page .follow_banner.hidden {
  display: none;
}

#lp-page .follow_banner_close {
  display: block;
  position: absolute;
  width: calc(25* 100vw / 390);
  top: calc(-5* 100vw / 390);
  right: calc(20* 100vw / 390);
  z-index: 10;
}


#lp-page .follow_banner {
  position: fixed;
  align-items: center;
  transition: all 0.6s 0.2s ease;
  bottom: 10rem;
  right: calc(-100* 100vw / 390);
  opacity: 0;
  visibility: hidden;
  box-sizing: border-box;
  width: 20rem;
  height: 6rem;
  border-radius: 10rem;
  color: var(--white-color);
  background: var(--orange-color);
  border: #FFB181 0.1rem solid;
  font-size: 1.2rem;
  padding: 1.5rem 0 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#lp-page .follow_banner::before {
  position: absolute;
  content: "";
  background: url(../img/follow_banner_arrow.svg) no-repeat;
  background-size: 100%;
  width: 1.2rem;
  height: 1.3rem;
  top: 2.3rem;
  right: 1.6rem;
  z-index: 2;
}

#lp-page .follow_banner::after {
  position: absolute;
  content: "";
  background: var(--white-color);
  border-radius: 10rem;
  width: 2.5rem;
  height: 2.5rem;
  top: 1.6rem;
  right: 1rem;
  animation: arrow 2s linear infinite;
  z-index: 1;
}

  @keyframes arrow {
  0%,100% {
    transform:scale(1);
  }
    60% {
      transform:scale(.8);
    }
  }

#lp-page .follow_banner.up-active {
  visibility: visible;
  opacity: 1;
  z-index: 10;
  right: 1rem;
}
#lp-page .follow_banner.down-active {
  visibility: visible;
  opacity: 0;
  z-index: 10;
}



@media only screen and (min-width: 769px) {	
#lp-page .sp_only {
  display: none;
}
#lp-page .pc_only {
  display: block;
}
	
#lp-page .follow_banner::before {
  right: 1.7rem;
}

#lp-page .fixed_area {
    position: fixed;
    left: 50%;
    translate: -50% -45%;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 160rem;
    height: 100%;
    margin: 0 auto;
    top: 50%;
}

#lp-page .lp_bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    background: url(../img/bg.jpg) center center / cover no-repeat;
}

#lp-page .page-inner {
    width: 45rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    background: var(--white-color);
}

#lp-page .fixed_left {
    display: grid;
    place-items: center;
    width: calc((100% - 45rem) / 2);
    max-width: calc((160rem - 45rem) / 2);
    height: 100%;
}

#lp-page .fixed_right {
    display: grid;
    place-items: center;
    width: calc((100% - 45rem) / 2);
    max-width: calc((168rem - 45rem) / 2);
    height: 100%;
}

#lp-page .fixed_left h2 {
    width: 30.8rem;
}

#lp-page .fixed_right .nav-list {
  padding-left: 8rem;
}

#lp-page .fixed_right .nav-wrap {
  margin-top: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8rem;
  flex-wrap: wrap;
}

#lp-page .fixed_right .nav-wrap li {
    position: relative;
    font-family: var(--font-mincho-ja);
    font-size: 1.4rem;
    font-weight: 600;
    z-index: 0;
}


#lp-page .fixed_right .nav-wrap li::before {
  position: absolute;
  content: "";
  width: 6rem;
  height: 6rem;
  top: 50%;
  transform: translateY(-50%);
  transition: 1s all;
  left: -7rem;
  z-index: 1;
}

#lp-page .fixed_right .nav-wrap a:nth-of-type(1) li::before {
  background: url(../img/menu_1_pc.png) no-repeat;
  background-size: 100%;
}
#lp-page .fixed_right .nav-wrap a:nth-of-type(2) li::before {
  background: url(../img/menu_2_pc.png) no-repeat;
  background-size: 100%;
}
#lp-page .fixed_right .nav-wrap a:nth-of-type(3) li::before {
  background: url(../img/menu_3_pc.png) no-repeat;
  background-size: 100%;
}
#lp-page .fixed_right .nav-wrap a:nth-of-type(4) li::before {
  background: url(../img/menu_4_pc.png) no-repeat;
  background-size: 100%;
}

#lp-page .fixed_right .nav-blk:nth-of-type(1) .nav-wrap {
    width: 30rem;
}
#lp-page .fixed_right .nav-blk:nth-of-type(2) .nav-wrap {
    width: 29rem;
}
#lp-page .fixed_right .nav-blk:nth-of-type(3) .nav-wrap {
    width: 24rem;
}

#lp-page .fixed_right .nav-blk:nth-of-type(1) .nav-wrap li {
    min-width: 13rem;
}
#lp-page .fixed_right .nav-blk:nth-of-type(2) .nav-wrap li {
    min-width: 12rem;
}
#lp-page .fixed_right .nav-blk:nth-of-type(3) .nav-wrap li {
    min-width: 10rem;
}

#lp-page .fixed_right .all-btn {
    margin: 4rem auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 4rem;
    font-size: 1.6rem;
    font-family: var(--font-en);
    color: var(--font-color);
    border: var(--font-color) solid 0.1rem;
    background-color: #C1B7AB;
    transition: 1s;
}

#lp-page .fixed_right .all-btn:hover {
    color: var(--white-color);
    background-color: var(--btn-color);
    border: var(--btn-color) solid 0.1rem;
    transition: 1s;
}


#kit_menu .modal_inner, #kit_menu_2 .modal_inner {
  width: 50rem;
}

.review_area .modal_wrap {
  position: relative;
  background-color: var(--white-color);
  padding: 3.5rem 3rem 4rem;
  border-radius: 1rem;
}

#lp-page .follow_banner {
  bottom: 5rem;
}

#lp-page .follow_banner::after {
  top: 1.7rem;
}


#FooterWrap {
    position: relative;
}

}