@charset "UTF-8";
/* CSS Document */
/*---------------------------------

  除毛クリーム 商品一覧

---------------------------------*/
article {}
article h1 {
  font-size: 1.6em;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  text-align: center;
}
.firstView {
  background: var(--bg-color);
  padding: 5rem 0;
}
.wrapper {
  max-width: var(--width);
  margin: auto;
  width: 90%;
}
.pc_none {
  display: none;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (min-width: 581px) {}
@media screen and (max-width: 580px) {
  .firstView {
    padding: 3rem 0 3rem;
  }
  .sp_none {
    display: none;
  }
  .pc_none {
    display: block;
  }
}
/*---------------------------------
  一覧スタイル
---------------------------------*/
ul.item_list {
  background: var(--bg-color);
  margin: 5rem auto 0;
  display: flex;
  gap: 1.5%;
  list-style: none;
  padding: 1rem;
}
ul#item_list {
  max-width: 55rem;
}
ul#item_list li {
  width: calc(100%/2);
}
ul.item_list._more {
  flex-wrap: wrap;
  gap: 1rem 1%;
}
ul.item_list._more li {
  width: calc(100%/5 - 0.8%);
}
/* 商品本体 */
.item_list li .product_details {
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  height: 100%;
  position: relative;
}
.item_list li .product_details ._tag {
  background: #dae0e0;
  color: #333;
  font-size: .8em;
  padding: .3rem .2rem;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  width: calc(100%);
}
.item_list li .product_details > div {
  padding: 1rem;
  width: 100%;
}
.item_list li figure {}
/* タグと商品名 */
.item_list li .product_name .cat span {
  border: 1px solid;
  display: inline-block;
  margin-bottom: .2rem;
  color: var(--link-color);
  line-height: 1;
  font-size: 1.3rem;
  margin-right: .5rem;
  padding: 0.3rem .6rem;
}
.item_list li .product_name p {
  color: #5f5046;
  font-size: 1.5rem;
  margin: .5rem 0;
}
.item_list li .product_name input {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: none;
  border-radius: 0;
  font-family: inherit;
  font-size: 1.6rem;
  color: #5f5046;
  text-decoration: none;
  padding: 0;
  cursor: pointer;
  white-space: normal;
  text-align: left;
}
.item_list li .product_name input:hover {
  color: #006D4B;
}
.item_list li .product_name p.aside {
  margin-top: 10px;
}
.item_list li .product_name p.aside span {
  display: inline-block;
  line-height: 1;
  font-size: 1.2rem;
  padding: 3px 8px;
  border: 1px solid;
  margin-right: 5px;
}
/* 星 */
.item_list li .ster_block {
  margin-bottom: 1rem;
}
/* 価格 */
.item_list li .priceBox {
  border-top: 1px solid #eee;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.item_list li dl.price {
  width: 100%;
  display: flex;
  /*flex-wrap: wrap;*/
  justify-content: space-between;
  align-items: flex-end;
  padding: 1rem 0;
}
.item_list li dl.price + .price {
  border-top: 1px dashed #eee;
}
.item_list li dl.price dt {
  flex: 0 1 150px;
}
.item_list li dl.price dt > span {
  border: 1px solid;
  font-size: 9px;
  margin-top: 10px;
  padding: .1rem .5rem;
}
.item_list li dl.price dt p {
  font-size: 2rem;
}
.item_list li dl.price dt p span {
  font-size: 1.2rem;
  margin-left: .2rem;
}
.item_list li dl.price dt.greatvalue p span {
  color: #5f5046;
}
.item_list li dl.price dt.greatvalue span.matome, .item_list li dl.price dt.greatvalue p, .item_list li dl.price dt.greatvalue p span span {
  color: #E60012;
}
.item_list li dl.price dd {
  flex: 0 1 auto;
  text-align: right;
}
.item_list li dl.price dd .prd_btn {
  width: 4rem;
  height: 4rem;
}
.item_list li dl.price dd .prd_btn form {
  height: 100%;
}
.item_list li dl.price dd .prd_btn input {
  background-image: url("../../images/cart.svg");
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center;
  border-radius: 3px;
  display: block;
  border: none;
  color: #fff;
  cursor: pointer;
  outline: none;
  width: 100%;
  height: 100%;
}
.item_list li dl.price dd .prd_btn.teiki input {
  background-color: #FFB231;
}
.item_list li dl.price dd .prd_btn.order input {
  background-color: #95C71E;
}
@media screen and (min-width: 1025px) {}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  .item_list li dl.price dt > span {
    display: inline-block;
    line-height: 1.2;
  }
}
@media screen and (max-width: 580px) {
  ul.item_list {
    justify-content: space-between;
    margin-top: 2rem;
  }
  ul.item_list._more {}
  ul.item_list._more li {
    width: calc(100%/2 - 1%);
  }
  .item_list li .product_name .cat span, .item_list li dl.price dt > span {
    font-size: 1.2rem;
  }
  .item_list li .product_name p {
    font-size: 1.6rem;
  }
  .item_list li .ster_block {
    margin-bottom: 0;
  }
  .item_list li dl.price dt p {
    font-size: 1.6rem;
  }
}
/*---------------------------------

  sectionBlock

---------------------------------*/
.sectionBlock {
  margin: 10rem auto;
}
.sectionBlock h2.ttl {
  border-left: 2px solid #9ABDB4;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .25rem;
  margin-bottom: 4rem;
  padding-left: 1.5rem;
}
.sectionBlock .conBox h3 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.sectionBlock .conBox h3::before {
  content: '・';
}
.sectionBlock .conBox {
  margin-bottom: 5rem;
}
.sectionBlock ._readtxt h3 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.sectionBlock img {
  width: 100%;
  vertical-align: bottom;
}
@media screen and (max-width: 580px) {
  .sectionBlock {
    margin: 4rem auto;
  }
  .sectionBlock h2.ttl {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .sectionBlock .conBox h3 {
    font-size: 1.6rem;
  }
  .sectionBlock .conBox {
    margin-bottom: 2.5rem;
  }
}
/*---------------------------------
  3ステップ
---------------------------------*/
.hair_treatment_block {
  margin: 0 auto;
  max-width: 75rem;
}
.hair_treatment_block dl {
  margin: 2rem auto 5rem;
}
.hair_treatment_block dl dt {
  background: #BCDCE5;
  border: 2px solid #89BDE5;
  border-radius: 3rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2rem;
  padding: 10px;
  text-align: center;
}
.hair_treatment_block dl dd ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
}
.hair_treatment_block dl dd ul li {
  width: 28%;
  text-align: center;
  position: relative;
}
.hair_treatment_block dl dd ul li:not(:last-child)::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 0 25px 2rem;
  border-color: transparent transparent transparent #85BAE4;
  position: absolute;
  right: -20%;
  top: 90px;
  margin: auto;
}
.hair_treatment_block dl dd ul li p.step {
  background: #BCDCE5;
  display: inline-block;
  line-height: 3rem;
  margin: 10px auto;
  position: relative;
  padding: 5px;
  text-align: center;
}
.hair_treatment_block dl dd ul li p.step::before, .hair_treatment_block dl dd ul li p.step::after {
  position: absolute;
  top: 0;
  display: block;
  height: 3rem;
  content: '';
  border: 20px solid #BCDCE5;
}
.hair_treatment_block dl dd ul li p.step::before {
  left: -3rem;
  border-left-width: 10px;
  border-left-color: transparent;
}
.hair_treatment_block dl dd ul li p.step::after {
  right: -3rem;
  border-right-width: 10px;
  border-right-color: transparent;
}
.hair_treatment_block dl dd ul li p.txt {
  text-align: justify;
  line-height: 1.5;
}
@media screen and (max-width: 580px) {
  .hair_treatment_block dl {
    margin: 0rem auto 3rem;
  }
  .hair_treatment_block dl dt {
    border-radius: 1rem;
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    padding: .6rem;
  }
  .hair_treatment_block dl dd ul {
    display: block;
  }
  .hair_treatment_block dl dd ul li {
    width: 100%;
  }
  .hair_treatment_block dl dd ul li:not(:last-child)::before {
    border-width: 20px 25px 0 25px;
    border-color: #85BAE4 transparent transparent transparent;
    right: 0;
    left: 0;
    top: auto;
    bottom: -30px;
    margin: auto;
  }
  .hair_treatment_block dl dd ul li + li {
    margin-top: 5rem;
  }
  .hair_treatment_block dl dd ul li figure {
    margin: auto;
    max-width: 20rem;
  }
  .hair_treatment_block dl dd ul li p.txt {
    margin: auto;
    width: 90%;
  }
}
/*---------------------------------
  Vラインに使えるの？
---------------------------------*/
.sectionBlock .conBox .img {
  margin: auto;
  max-width: 64rem;
}
.sectionBlock .conBox .__vline {
  display: flex;
  justify-content: space-between;
}
.sectionBlock .conBox .__vline picture {
  flex-basis: 20%;
}
.sectionBlock .conBox .__vline .txt {
  flex-basis: 75%;
  background: var(--bg-color);
  padding: 2rem;
  line-height: 1.8;
  text-align: justify;
}
.sectionBlock .conBox .__vline .txt p a {
  color: #006d4b;
  text-decoration: underline;
}
@media screen and (max-width: 580px) {
  .sectionBlock .conBox .__vline {
    display: block;
  }
  .sectionBlock .conBox .__vline picture img {
    display: block;
    margin: 2rem auto;
    max-width: 15rem;
  }
}
/*---------------------------------

  この商品のよくあるご質問

---------------------------------*/
.faqBlock {
  background: var(--bg-color);
  padding: 5rem 0;
}
.faqBlock .faq-list {}
.faqBlock .faq-list .faqItem {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: .5rem;
  margin-bottom: 1rem;
}
.faqBlock .faq-list .faqItem ._question {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  position: relative;
}
.faqBlock .faq-list .faqItem ._question h3 {
  display: flex;
  align-items: center;
  font-size: 1.1em;
  font-weight: 500;
  position: relative;
}
.faqBlock .faq-list .faqItem ._question h3::before {
  background: var(--link-color);
  border-radius: 50%;
  color: #fff;
  content: 'Q';
  display: grid;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  margin-right: 2rem;
  height: 4rem;
  width: 4rem;
}
.faqBlock .faq-list .faqItem ._question .toggle {
  flex: 0 0 auto;
  position: relative;
  height: 2rem;
  width: 2rem;
}
.faqBlock .faq-list .faqItem ._question .toggle::before, .faqBlock .faq-list .faqItem ._question .toggle::after {
  background: var(--link-color);
  content: '';
  display: block;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  transition: all .3s;
}
.faqBlock .faq-list .faqItem ._question .toggle::before {}
.faqBlock .faq-list .faqItem ._question .toggle::after {
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.faqBlock .faq-list .faqItem ._question.active .toggle::before {
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.faqBlock .faq-list .faqItem ._question.active .toggle::after {
  opacity: 0;
}
.faqBlock .faq-list .faqItem ._answer {
  display: none;
  padding: 1rem 2rem 3rem;
}
.faqBlock .faq-list .faqItem ._answer .__inner {
  border-top: 1px solid #e6e6e6;
  display: flex;
  padding-top: 2rem;
}
.faqBlock .faq-list .faqItem ._answer .__inner::before {
  border: 1px solid;
  border-radius: 50%;
  content: 'A';
  color: #9ABDB4;
  display: grid;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  margin-right: 2rem;
  height: 4rem;
  width: 4rem;
}
.faqBlock .faq-list .faqItem ._answer .__inner p a {
  color: var(--link-color);
  text-decoration: underline;
}
.faqBlock .btn {
  margin-top: 5rem;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 580px) {
  .faqBlock {
    padding: 3rem 0 2rem;
  }
  .faqBlock .faq-list .faqItem ._question {
    padding: 1.5rem 1rem;
  }
  .faqBlock .faq-list .faqItem ._question p::before {
    margin-right: 1rem;
    width: 3rem;
    height: 3rem;
  }
  .faqBlock .faq-list .faqItem ._question .toggle {
    height: 1.5rem;
    width: 1.5rem;
  }
  .faqBlock .faq-list .faqItem ._answer {
    padding: 1rem 1.3rem 1rem 1rem;
  }
  .faqBlock .faq-list .faqItem ._answer .__inner {
    padding-top: 1.5rem;
  }
  .faqBlock .faq-list .faqItem ._answer .__inner::before {
    margin-right: 1rem;
    height: 3rem;
    width: 3rem;
  }
}
/*---------------------------------

  除毛・脱毛・ムダ毛処理のお悩み

---------------------------------*/
.columBlock ul.colum_list {
  display: flex;
  gap: 2%;
  flex-wrap: wrap;
  list-style: none;
}
.columBlock ul.colum_list li {
  flex-basis: calc(100% / 3 - 1.4%);
}
.columBlock ul.colum_list li a {
  border-radius: 10px;
  background: #fff;
  color: #5f5046;
  display: block;
  height: 100%;
}
.columBlock ul.colum_list li a figure {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.columBlock ul.colum_list li a figure::before, .columBlock ul.colum_list li a figure::after {
  content: '';
  position: absolute;
  transition: all .3s;
  opacity: 0;
  z-index: 1;
}
.columBlock ul.colum_list li a figure::before {
  background: rgba(0, 109, 75, 0.6);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.columBlock ul.colum_list li a figure::after {
  background: url("../../../colum/images/read_more.svg") no-repeat;
  background-size: contain;
  background-position: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 50px;
}
.columBlock ul.colum_list li a figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all .3s;
}
.columBlock ul.colum_list li a p {
  text-align: center;
  padding: 10px;
}
@media (hover: hover) {
  .columBlock ul.colum_list li a:hover {
    background: #f3f3f3;
    opacity: 1;
  }
  .columBlock ul.colum_list li a:hover figure::before, .columBlock ul.colum_list li a:hover figure::after {
    opacity: 1;
  }
  .columBlock ul.colum_list li a:hover figure img {
    transform: scale(1.1);
  }
}
@media screen and (max-width: 580px) {
  .columBlock ul.colum_list li {
    flex-basis: calc(100% / 2 - 1.4%);
  }
}
/*---------------------------------

  バナー

---------------------------------*/
.bunnerWrap {
  display: flex;
  gap: 2%;
  margin-top: 5rem;
}
.bunnerWrap .__box {
  flex-basis: 50%;
}
@media (hover: hover) {
  .bunnerWrap .__box a:hover {
    opacity: .7;
  }
}
@media screen and (max-width: 580px) {
  .bunnerWrap {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .bunnerWrap .__box {
    flex-basis: auto;
  }
}