/* ============================================================
// about
============================================================ */
.about-page-ttl-wrap {
  background: url(../images/about/page-ttl-bg.png) no-repeat center center/cover;
}

.salon-info-box {
  display: flex;
  gap: 20px 40px;
  margin: 0 60px 40px;
}
.salon-info-box .box {
  width: calc((100% - 40px) / 2);
}
.salon-info-box .box dl dt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  line-height: 1;
  margin: 10px 0;
  padding: 6px 15px 4px;
  background: #ff1493;
  border-radius: 6px;
}
.salon-info-box .box dl dd {
  margin-bottom: 30px;
}
.salon-info-box .box dl dd a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #ff1493;
}
.salon-info-box .box dl dd .note {
  font-size: 14px;
}
.salon-info-box .box .main-img img {
  padding: 2px;
  background: #ffffff;
}
.salon-info-box .box .sub-img {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}
.salon-info-box .box .sub-img img {
  width: calc((100% - 15px) / 2);
  padding: 2px;
  background: #ffffff;
}
@media print, screen and (max-width: 767px) {
  .salon-info-box {
    flex-direction: column;
    margin: 0 auto 15px;
  }
  .salon-info-box .box {
    width: 100%;
  }
}

.google-maps {
  margin: 0 60px;
  padding: 2px;
  background: #ffffff;
}
@media print, screen and (max-width: 767px) {
  .google-maps {
    margin: 0 auto;
  }
}

.parking-box {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0 60px;
}
.parking-box .img-box {
  width: 50%;
}
.parking-box .img-box img {
  padding: 2px;
  background: #ffffff;
}
.parking-box .txt-box {
  flex: 1;
}
.parking-box .txt-box .white-box {
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 10px;
}
@media print, screen and (max-width: 767px) {
  .parking-box {
    flex-direction: column;
    gap: 15px;
    margin: 0;
  }
  .parking-box .img-box {
    width: 100%;
  }
  .parking-box .txt-box {
    width: 100%;
  }
  .parking-box .txt-box .white-box {
    padding: 30px 20px;
  }
}

.staff-list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 20px;
  margin: 0 60px;
}
.staff-list li {
  width: calc((100% - 60px) / 4);
}
.staff-list li .name {
  color: #ffffff;
  text-align: center;
  padding: 6px 5px 4px;
  background: #ff1493;
  border-radius: 6px;
}
.staff-list li .category {
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 18px;
  padding: 10px 15px;
  border-bottom: 1px dashed #ffffff;
}
.staff-list li .txt {
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  line-height: 1.4;
}
@media print, screen and (max-width: 991px) {
  .staff-list li {
    width: calc((100% - 20px) / 2);
  }
}
@media print, screen and (max-width: 767px) {
  .staff-list {
    margin: 0 auto;
  }
  .staff-list li {
    width: 100%;
  }
}