@charset "utf-8";
/* CSS Document */

.top-read {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 80px;
}

.section-products-lashaddict h2 {
  font-size: 1.6rem;
  color: #fff;
}
.section-products-lashaddict_image {
  width: 50%;
  margin: 0 auto 10px;
}
.section-products-lashaddict_image img {
  width: 100%;
}

/*inputを非表示*/
input[type="checkbox"].on-off{
  opacity: 0;
}
/*ラベル（「開く」ボタン）*/
.open-label{
  width: 50%;
  margin: 0 auto 10px;
  font-family: 'Georgia',serif;
  display: block;
  color: #fff;
  text-align: center;
  box-shadow: 2px 2px 4px #142124;
  background: #18282c;
  border-radius: 12px;
}
/*エフェクト*/
.open-label:active{
  box-shadow: 0 0 0 0;
}
.open-label:hover{
  opacity: 0.5;
}
/*ラベルに表示するテキスト*/
.open-label::after{
  content:'view more';
}
.on-off:checked ~ .open-label::after{
  content: 'close';
}

/*開閉エリア*/
.open{
  height: 0;
  opacity: 0;
  transition: .5s;
  overflow: hidden;
}
/*「開く」をタップで表示*/
.on-off:checked  ~ .open{
  padding: 20px;
  height: auto;
  opacity: 1;
  background-color: #18282c;
  width: 90%;
  margin: 0 auto;
  font-size: 1.2rem;
  text-align: left;
}

.section-products-omeme {
  margin-top: 100px;
}
.section-products-omeme h2 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 30px;
}
.section-products-omeme_image {
  width: 90%;
  margin: 0 auto 10px;
}
.section-products-omeme_image img {
  width: 100%;
}
.section-products-omeme ul {
  text-align: center;
}
.section-products-omeme ul li {
  list-style: none;
}
.section-products-omeme ul li h3 {
  margin-bottom: 10px;
}
.section-products-omeme ul li img {
  width: 20%;
  margin-bottom: 10px;
}
.section-products-omeme ul li p {
  text-align: left;
  margin-bottom: 30px;
}

.section-products-cleanse {
  margin-top: 100px;
  margin-bottom: 100px;
}
.section-products-cleanse h2 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 30px;
}
.section-products-cleanse_image {
  width: 90%;
  margin: 0 auto 10px;
}
.section-products-cleanse_image img {
  width: 100%;
}










