/*--------------------------------------------------------------
  about
--------------------------------------------------------------*/
#about {
  padding-bottom: 0;
}

#about .about_line {
  font-weight: bold;
  color: #56ba2e;
}

.infoArea dl {
  max-width: 950px;
  background: #f7f7f7;
  padding: 40px 40px 20px 40px;
  box-sizing: border-box;
  margin: 0 auto;
  height: 280px;
  border-radius: 5px;
  overflow: scroll;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.infoArea dt {
  width: 20%;
  font-size: 14px;
  font-weight: normal;
  border-bottom: 1px dotted #ddd;
  margin-bottom: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
}

.infoArea dd {
  width: 80%;
  font-size: 15px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dotted #ddd;
}

.infoArea dd i,
.infoArea dd a {
  color: #900808;
  font-size: 14px;
}


/* modal */
.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
.modal__bg {
  background: rgba(0, 0, 0, 0.7);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.modal__content {
  background: #fff;
  left: 50%;
  padding: 10px 40px 20px 40px;
  position: absolute;
  top: 55%;
  transform: translate(-50%, -50%);
  width: 80%;
  border-radius: 5px;
  line-height: 2;
  overflow: scroll;
  max-width: 1100px;
}
.js-modal-close {
  font-size: 2rem;
  font-weight: bold;
  text-align: right;
  display: block;
  padding-bottom: 10px;
}

/* modal01 モーダル内 */
.modal__content .grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}
.modal__content.small_txt {
  font-size: 12px;
  line-height: 1.5;
}.modal__content.small_txt ul {
  margin: 0;
  padding: 0  ;
}
.modal__content.small_txt li {
  list-style: none;
  padding-bottom: 15px;
}
.modal__content.small_txt li img {
  width: 10px;
}
.modal__content.small_txt li span {
  background: #ebebeb;
  padding: 0 5px;
}

/* img3枚 横並び */
.modal__content ul.img3clm {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 0;
}
.modal__content ul.img3clm li {
  list-style: none;
}

@media only screen and (max-width: 767px) {
  .infoArea dl {
    height: 350px;
    overflow: scroll;
    padding: 20px 15px 10px 15px;
  }

  .infoArea dt {
    width: 100%;
    border-bottom: none;
    padding-left: 0;
    padding-bottom: 0;
  }

  .infoArea dd {
    width: 100%;
    line-height: 1.8;
    font-size: 14px;
    padding-left: 10px;
  }

  /* モーダル 縦方向にスクロール */
  .modal {
    overflow-y: scroll;
  }
  .modal__bg {
    height: 170%;
  }
  .modal__content {
    padding: 10px 20px 20px 20px;
    width: 90%;
  }
  /* modal01 モーダル内 */
  .modal__content.small_txt {
    font-size: 12px;
    line-height: 1.2;
    height: 75vh;
  }
  .modal__content .grid {
    display: block;
  }

  /* img3枚 縦並び */
  .modal__content ul.img3clm {
    gap: 10px;
    grid-template-columns: 1fr 1fr;
  }
  #calendar {
    padding: 0 15px;
  }
}


/*--------------------------------------------------------------
  post
--------------------------------------------------------------*/
.post-thumbnail {
  position: relative;
}

.post-thumbnail img {
  display: block;
  overflow: hidden;
  width: 100%;
}

.post-thumbnail:after {
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  display: block;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.post-thumbnail .post-caption {
  bottom: 50%;
  opacity: 1;
  z-index: 3;
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
  width: 100%;
  padding: 0 20px;
  position: absolute;
  text-align: center;
  overflow: hidden;
}

.post-caption h3.post-title {
  color: #fff;
}


/*--------------------------------------------------------------
  salon
--------------------------------------------------------------*/
#salon {
  padding-top: 0;
}

#salon small.color_red {
  color: #900808;
  font-weight: bold;
}

#salon .salon_btn {
  text-align: center;
  margin-top: 30px;
}

#salon button {
  background-color: #900808;
  color: #fff;
  border: 1px solid #900808;
  font-size: 15px;
  border-radius: 30px;
  padding: 15px 70px;
  font-weight: bold;
}

#salon button:hover {
  background: #fff;
  color: #900808;
}