@charset "UTF-8";
/* CSS Document */
/*---------------------------------

  mainContainer（共通スタイル）

---------------------------------*/
#mainContainer {
  /*background: #F3F4F2;*/
}
section {
  padding: 12rem 0;
}
section h2 {
  font-size: 1.7em;
  font-weight: 400;
}
section h3 {
  font-size: 1.2em;
  font-weight: 500;
  margin-bottom: 1rem;
}
section h4 {
  font-size: 1.1em;
  font-weight: 400;
  margin-bottom: 1rem;
}
.wrapper {
  max-width: 1024px;
  width: 90%;
  margin: 0 auto;
}
.wrap {
  display: flex;
}
.txt {
  line-height: 1.8;
  text-align: justify;
}
.txt p + p {
  margin-top: 1rem;
}
.txt span {
  background: #F4F29A;
}
p.note {
  font-size: 13px;
}
p sup {
  font-size: 10px;
  vertical-align: text-top;
}
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
figure._graph {
  margin: 5rem auto;
  max-width: 65rem;
}
figure._graph figcaption {
  background: #fff;
  font-size: .8em;
  margin-top: 1rem;
  text-align: center;
}
@media screen and (max-width: 895px) {
  section {
    padding: 8rem 0;
  }
}
@media screen and (max-width: 580px) {
  section {
    padding: 4.5rem 0;
  }
  section h2 {
    font-size: 1.7rem;
  }
  .txt p br {
    display: none;
  }
}
/*---------------------------------

  メインビジュアル

---------------------------------*/
#mainvisual {
  background: #ccc;
  max-width: 124rem;
  margin: auto;
}
.readBlock {
  padding-top: 5rem;
}
.readBlock h1 {
  font-size: 2em;
  font-weight: 400;
  margin: 5rem 0 3rem;
  text-align: center;
}
.readBlock figure {
  margin: 2rem auto;
  max-width: 63rem;
}
.readBlock .txt {
  margin: auto;
  text-align: center;
}
.readBlock ._about {
  border: 1rem solid #f2f2f2;
  margin-top: 5rem;
  padding: 2rem;
}
.readBlock ._about h2 {
  margin: 2rem 0 2rem;
  text-align: center;
}
@media screen and (max-width: 895px) {
  .readBlock {
    padding-top: 0;
  }
}
@media screen and (max-width: 580px) {
  .readBlock h1 {
    font-size: 1.6em;
    margin: 3rem 0 1.5rem;
  }
}
/*---------------------------------

	原因

---------------------------------*/
.treatmentBlock {
  background: #E9EDEE;
}
.treatmentBlock .wrapper + .wrapper {
  margin-top: 10rem;
}
.treatmentBlock h2 {
  margin-bottom: 2rem;
}
.treatmentBlock .contentWrap {}
.treatmentBlock .contentWrap .wrap {
  border-top: 1px solid #aaa;
  gap: 4rem;
  padding: 4rem 0;
}
.treatmentBlock .contentWrap .wrap figure {
  flex-basis: 40%;
  order: -1;
}
.treatmentBlock .contentWrap .wrap .txtBox {
  flex-basis: 60%;
}
.treatmentBlock .contentWrap .current_situation {
  background: #fff;
  border-radius: 1rem;
  padding: 3rem 5%;
}
.treatmentBlock .contentWrap .current_situation h4 {
  background: #f2f2f2;
  padding: 1rem;
  text-align: center;
}
@media screen and (max-width: 895px) {
  .treatmentBlock .wrapper + .wrapper {
    margin-top: 7rem;
  }
  .treatmentBlock .contentWrap .wrap {
    flex-direction: column;
    gap: 2.5rem;
    padding: 3rem 0;
  }
  .treatmentBlock .contentWrap .wrap figure {
    flex-basis: auto;
  }
  .treatmentBlock .contentWrap .wrap .txtBox {
    flex-basis: auto;
  }
  .treatmentBlock .contentWrap .current_situation figure {
    margin: 3rem 0 0;
  }
}
@media screen and (max-width: 580px) {
  .treatmentBlock .wrapper + .wrapper {
    margin-top: 5rem;
  }
  .treatmentBlock .contentWrap .current_situation figure {
    margin-top: 2rem;
  }
}
/*---------------------------------

	部位別の処理のポイントをご紹介

---------------------------------*/
.methodBlock h2 {
  position: relative;
  letter-spacing: 0.1em;
  font-weight: 400;
  max-width: 45rem;
  text-align: center;
  margin: auto;
}
.methodBlock h2 div {
  padding: 2rem 16px;
  position: relative;
}
.methodBlock h2 span {
  display: inline-block;
}
.methodBlock h2::before, .methodBlock h2::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 50px;
}
.methodBlock h2::before {
  border-left: solid 1px #333;
  border-top: solid 1px #333;
  top: 0;
  left: 0;
}
.methodBlock h2::after {
  border-right: solid 1px #333;
  border-bottom: solid 1px #333;
  bottom: 0;
  right: 0;
}
.methodBlock h2 div::before, .methodBlock h2 div::after {
  content: '';
  position: absolute;
  width: 66px;
  height: 66px;
  rotate: 45deg;
}
.methodBlock h2 div::before {
  border-left: solid 1px #333;
  top: 2px;
  left: 2px;
}
.methodBlock h2 div::after {
  border-right: solid 1px #333;
  bottom: 2px;
  right: 2px;
}
.methodBlock .txt {
  text-align: center;
}
.methodBlock figure {
  margin: 5rem auto;
  max-width: 65rem;
}
@media screen and (max-width: 895px) {
  .methodBlock .txt {
    text-align: justify;
  }
  .methodBlock figure {
    margin: 3rem auto;
  }
}
@media screen and (max-width: 580px) {
  .methodBlock h2::before, .methodBlock h2::after {
    width: 30px;
    height: 30px;
  }
  .methodBlock h2 div::before, .methodBlock h2 div::after {
    width: 46px;
    height: 46px;
  }
}
/*---------------------------------

	howtoBlock

---------------------------------*/
.howtoBlock {
  background: #E6E6DF;
  border-radius: 2rem;
  margin: 7rem auto;
  padding: 5rem 0 7rem;
  width: 90%;
}
.howtoBlock h2 {
  margin-bottom: 2rem;
  text-align: center;
}
.howtoBlock h2 + .txt {
  text-align: center;
}
.howtoWrap {
  margin-top: 5rem;
}
.howtoWrap ._box + ._box {
  margin-top: 4rem;
}
.howtoWrap ._box h3 {
  border-top: 1px solid;
  border-bottom: 1px solid;
  margin-bottom: 2rem;
  padding: 1rem;
  text-align: center;
}
.howtoWrap ._box .wrap {
  display: flex;
  align-items: flex-end;
  gap: 5rem;
  padding: 0;
}
.howtoWrap ._box figure {
  flex: 0 0 17rem;
  order: -1;
}
.howtoWrap ._box .txt {
  text-align: justify;
  margin: 0;
}
@media screen and (max-width: 895px) {
  .howtoWrap ._box .wrap {
    align-items: flex-start;
    gap: 2.5rem;
  }
  .howtoWrap ._box figure {
    flex: 0 0 10rem;
  }
}
@media screen and (max-width: 580px) {
  .howtoBlock {
    margin: 5rem auto;
    padding: 3rem 0;
  }
  .howtoBlock h2 {
    margin-bottom: 1.3rem;
  }
  .howtoBlock h2 + .txt {
    text-align: justify;
  }
  .howtoWrap {
    margin-top: 3rem;
  }
  .howtoWrap ._box + ._box {
    margin-top: 2rem;
  }
  .howtoWrap ._box h3 {
    padding-left: 9rem;
    text-align: left;
    min-height: 75px;
    display: grid;
    align-items: center;
  }
  .howtoWrap ._box .wrap {
    display: block;
    position: relative;
  }
  .howtoWrap ._box figure {
    max-width: 7rem;
    position: absolute;
    top: -10rem;
    left: 0;
    width: 100%;
  }
}
/*---------------------------------

	商品・口コミ

---------------------------------*/
.productBlock {
  background: #eeeee9;
}
.productBlock .item_box {
  border: 1px solid #aaa;
  margin-bottom: 7rem;
}
.productBlock ._copy {
  border-bottom: 1px solid #aaa;
  font-size: 1.2em;
  font-weight: 500;
  margin-bottom: 5rem;
  padding: .7rem 1rem;
  text-align: center;
}
.productBlock .wrap {
  padding: 0 3rem 5rem;
  justify-content: space-between;
}
.productBlock .item_box figure {
  width: 300px;
  height: 300px;
  text-align: center;
}
.productBlock .item_box figure img {
  height: 100%;
  object-fit: contain;
}
.productBlock .item_box .txt_wrap {
  width: 660px;
}
.productBlock .item_box .txt_wrap p.type {
  padding: 3px 15px;
  margin-bottom: 20px;
  display: inline-block;
  font-size: 1.3rem;
  border: 1px solid #BBB6B5;
}
.productBlock .item_box .txt_wrap h3 {
  margin: 0;
  line-height: 1.3;
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
.productBlock .item_box .txt_wrap h3 a {
  color: #5f5046;
  background-image: linear-gradient(to right, #5f5046 100%, #5f5046 100%);
  background-position: 0 1.25em;
  background-repeat: repeat-x;
  background-size: 8px 1px;
}
.productBlock .item_box .txt_wrap h3 a:hover {
  color: #006d4b;
  background-image: linear-gradient(to right, #006d4b 100%, #006d4b 100%);
}
.productBlock .item_box .txt_wrap .yotpo_ster {
  display: inline-block;
  margin: 20px 0;
}
.productBlock .item_box .txt_wrap ._txt {
  margin: 0 0 2rem;
  font-size: .9em;
  line-height: 1.7;
}
.productBlock .item_box .btn {
  margin: 0;
  max-width: 25rem;
  text-align: center;
}
.productBlock .item_box .btn a {
  background: #006d4b url("../../images/a_arr_w.svg") center right 2rem /.5rem no-repeat;
  color: #fff;
  display: block;
  padding: 1.5rem;
}
.productBlock .b_wrap + .b_wrap {
  margin-top: 5rem;
}
.productBlock .b_wrap .ttl {
  font-weight: 500;
  font-size: 1.1em;
  margin-bottom: 2rem;
}
.productBlock .b_wrap .review_outer {
  background: #fff;
  padding: 1rem;
}
@media screen and (max-width: 895px) {
  .productBlock .item_box figure {
    width: 200px;
    height: 200px;
  }
}
@media screen and (max-width: 580px) {
  .productBlock .item_box {
    margin-bottom: 3rem;
  }
  .productBlock ._copy {
    font-size: 1em;
    margin-bottom: 2rem;
  }
  .productBlock .wrap {
    padding: 0 1.5rem 2rem;
  }
  .productBlock .wrap {
    display: block;
  }
  .productBlock .item_box figure {
    margin: auto;
    width: 100%;
    height: 16rem;
  }
  .productBlock .item_box .txt_wrap {
    margin-top: 2rem;
    width: 100%;
    text-align: center;
  }
  .productBlock .item_box .txt_wrap p.type {
    margin-bottom: 10px;
    font-size: 1.1rem;
  }
  .productBlock .item_box .txt_wrap h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .productBlock .item_box .txt_wrap ._txt {
    text-align: left;
  }
  .productBlock .item_box .btn {
    margin: 0 auto;
    max-width: 23rem;
  }
  .productBlock .b_wrap {
    margin-top: 5rem;
  }
  .productBlock .b_wrap + .b_wrap {
    margin-top: 3rem;
  }
}