@charset "UTF-8";
/**
 * SCSS Mixins
 *
 * 利用例:
 * @use 'mixin' as m;
 *
 * .example {
 *   font-size: 14px;
 *   @include m.mq('pc') {
 *     font-size: 18px;
 *   }
 * }
 */
/**
 * スタッフ一覧ページ
 */
.l-staff__body {
  padding: 50px 0 60px;
}
@media screen and (min-width: 768px) {
  .l-staff__body {
    padding: 60px 0 80px;
  }
}

/* Filter */
.p-staff-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 13px 10px;
  margin-bottom: 56px;
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  .p-staff-filter {
    gap: 33px 10px;
    margin-bottom: 72px;
    padding: 0 99px;
  }
}

.p-staff-filter__btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding-inline: 20px;
  border: 1px solid #4c4948;
  border-radius: 999px;
  background-color: #fff;
  font-family: "EB Garamond", serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #4c4948;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  width: 48%;
}
@media screen and (min-width: 768px) {
  .p-staff-filter__btn {
    min-height: 50px;
    padding: 0 8px;
    min-width: 117px;
    font-size: 18px;
    width: auto;
  }
}
.p-staff-filter__btn.is-active {
  background-color: #4c4948;
  border-color: #4c4948;
  color: #fff;
}

/* Group */
.p-staff-group {
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .p-staff-group {
    padding: 0 24px;
  }
}
.p-staff-group + .p-staff-group {
  margin-top: 92px;
}
@media screen and (min-width: 768px) {
  .p-staff-group + .p-staff-group {
    margin-top: 125px;
  }
}
.p-staff-group__title {
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 768px) {
  .p-staff-group__title {
    margin-bottom: 32px;
    font-size: 25px;
    letter-spacing: 0.2em;
  }
}

/* Staff grid */
.p-staff-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .p-staff-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px 27px;
  }
}

.p-staff-list__item {
  min-width: 0;
}

/* Card */
.p-staff-card {
  color: #4c4948;
}
.p-staff-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.p-staff-card__photo {
  margin: 0;
  aspect-ratio: 158/195;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-staff-card__photo {
    aspect-ratio: 226/280;
  }
}
.p-staff-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-staff-card__body {
  padding-top: 27px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-staff-card__body {
    padding-top: 35px;
  }
}
.p-staff-card__title {
  margin: -15px 0 4px;
  font-family: "EB Garamond", serif;
  font-size: 14px;
  letter-spacing: 0em;
  line-height: 1.4;
  color: #4C4948;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .p-staff-card__title {
    font-size: 15px;
    margin: -15px 0 14px;
    line-height: 1.7;
  }
}
.p-staff-card__name {
  margin: 0 0 20px;
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  color: #4C4948;
  line-height: 1.4;
  letter-spacing: 0.25em;
}
@media screen and (min-width: 768px) {
  .p-staff-card__name {
    font-size: 20px;
    letter-spacing: 0.25em;
  }
}
.p-staff-card__en {
  margin: 4px 0 0;
  font-family: "EB Garamond", serif;
  font-size: 12px;
  line-height: 1.4;
  color: #8d8d8e;
}
@media screen and (min-width: 768px) {
  .p-staff-card__en {
    font-size: 14px;
  }
}
.p-staff-card__position {
  display: inline-block;
  margin: 0 0 14px;
  padding: 4px 15px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1;
  width: 100%;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-staff-card__position {
    margin-bottom: 24px;
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 14px;
    width: auto;
  }
}
.p-staff-card__position--green {
  background-color: #e5ede8;
}
.p-staff-card__position--orange {
  background-color: #fbecdf;
}
.p-staff-card__position--purple {
  background-color: #e3e0ee;
}
.p-staff-card__store {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  margin-top: 0;
  padding: 0 12px;
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  line-height: 1.4;
  color: #fff !important;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-staff-card__store {
    height: 50px;
    padding: 0 16px;
    font-size: 17px;
  }
}
@media (any-hover: hover) {
  .p-staff-card__store:hover {
    opacity: 0.85;
  }
}
.p-staff-card__store--green {
  background-color: #288c4d;
}
.p-staff-card__store--orange {
  background-color: #e47e2a;
}
.p-staff-card__store--purple {
  background-color: #3a2186;
}

.p-staff-empty {
  margin: 0;
  padding: 48px 0;
  font-size: 14px;
  text-align: center;
  color: #8d8d8e;
}
/*# sourceMappingURL=staff.css.map */