<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/**************************************/
.u-staff__copy-wrap {
  display: grid;
  grid-template-columns: 45rem 1fr;
  gap: 9%;
  margin-bottom: 14rem;
}
@media (max-width: 834px) {
  .u-staff__copy-wrap {
    grid-template-columns: 1fr;
    margin-bottom: 5rem;
  }
}

.u-staff__copy {
  line-height: 1.6;
}

.u-staff__lead {
  margin-top: 0.5rem;
}
@media (max-width: 834px) {
  .u-staff__lead {
    margin-top: 1rem;
  }
}

/* スタッフリスト */
.u-staff-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8rem 5rem;
}
@media (max-width: 834px) {
  .u-staff-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
@media (max-width: 499px) {
  .u-staff-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.u-staff-list__staff-img {
  position: relative;
}

.u-staff-list__item:hover {
  cursor: pointer;
}
.u-staff-list__item:hover .u-staff-list__staff-img-txt {
  opacity: 1;
}

.u-staff-list__staff-img-txt {
  -webkit-transition: opacity 0.5s ease, -webkit-backdrop-filter 0.2s ease;
  transition: opacity 0.5s ease, -webkit-backdrop-filter 0.2s ease;
  transition: opacity 0.5s ease, backdrop-filter 0.2s ease;
  transition: opacity 0.5s ease, backdrop-filter 0.2s ease, -webkit-backdrop-filter 0.2s ease;
  color: #fff;
  width: 100%;
  height: 100%;
  margin: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(53, 68, 83, 0.5);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 3rem;
  line-height: 2;
}
@media (max-width: 834px) {
  .u-staff-list__staff-img-txt {
    padding: 1rem;
  }
}

.u-staff-list__salon-labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
  margin-block: 2.5rem 2rem;
}
@media (max-width: 834px) {
  .u-staff-list__salon-labels {
    font-size: 1.2rem;
  }
}
@media (max-width: 639px) {
  .u-staff-list__salon-labels {
    font-size: 1.4rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-block: 1rem;
  }
}

.u-staff-list__salon-label {
  padding: 0 1.2rem;
  color: #4f667d;
  background-color: #e4e7ea;
  font-weight: 500;
}

.u-staff-list__staff-role {
  line-height: 1;
  font-weight: 500;
}

.u-staff-list__staff-name {
  font-weight: 500;
}
.u-staff-list__staff-name .en {
  margin-left: 1rem;
  color: #babfc3;
}/*# sourceMappingURL=staff.css.map */</pre></body></html>