h2 {
  margin-top: 80px;
  margin-bottom: 40px;
  border-bottom: 2px #B1A07C solid;
  font-size: 2.8rem;
  font-weight: 600;
  color: #B1A07C;
  line-height: 1.5;
  padding-bottom: 16px;
}

.staffpage-list {
  padding-top: 0px;
}
.staffpage-list:last-of-type {
  padding-bottom: 100px;
}
.staffpage-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 4%;
}
.staffpage-list ul li {
  width: 22%;
}
.staffpage-list ul li .thumb {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.staffpage-list ul li .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #F5F2EC;
  transition: transform 0.3s ease;
}
.staffpage-list ul li .thumb img:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
  cursor: pointer;
  opacity: 0.8;
}
.staffpage-list ul li .role {
  margin-top: 16px;
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: #222;
  text-align: center;
}
.staffpage-list ul li p {
  margin-top: 4px;
  font-size: 2rem;
  color: #222;
  font-weight: 600;
  text-align: center;
}
.staffpage-list ul li .desc {
  display: block;
  margin-top: 4px;
  line-height: 1.8;
  font-size: 1.4rem;
}

.staff-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  transition-duration: 0.5s;
  pointer-events: none;
}
.staff-modal.is-active {
  opacity: 1;
  transition-duration: 0.5s;
  pointer-events: auto;
}
.staff-modal.is-active .staff-modal__content {
  transform: translateY(0);
  transition-duration: 0.5s;
  transition-delay: 0.25s;
  opacity: 1;
}
.staff-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.77);
}
.staff-modal__content {
  overflow-y: auto;
  position: relative;
  transform: translateY(10%);
  opacity: 0;
  z-index: 1;
  background: #fff;
  width: 100%;
  max-height: 90vh;
  padding: 40px;
}
.staff-modal__content .lr {
  display: flex;
  justify-content: space-between;
}
.staff-modal__content .lr .left {
  width: 320px;
}
.staff-modal__content .lr .right {
  width: calc(100% - 320px);
  padding-left: 40px;
}
.staff-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #222 !important;
}
.staff-modal__thumb img {
  max-width: 100%;
  border-radius: 0px;
  width: 100%;
}
.staff-modal__info {
  margin-top: 16px;
  text-align: left;
}
.staff-modal__info .staff-modal__copy {
  display: block;
  font-size: 2.4rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 16px;
}
.staff-modal__info .staff-modal__role {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 1.4rem;
}
.staff-modal__info .staff-modal__name {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.5;
}
.staff-modal__info .copy {
  font-size: 2.8rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 16px;
}
.staff-modal__info .staff-modal__desc {
  font-size: 1.6rem;
  color: #222;
  line-height: 1.8;
}
.staff-modal__info .box {
  margin-top: 16px;
  padding: 24px;
  background-color: #F5F2EC;
}
.staff-modal__info .box ul li {
  display: flex;
  font-size: 1.6rem;
  margin-top: 12px;
}
.staff-modal__info .box ul li .box {
  margin-top: 0;
  width: 100px;
  height: 28px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 4px 8px;
  background-color: #B1A07C;
  color: #fff;
}
.staff-modal__info .box ul li .txt {
  margin-left: 16px;
}
.staff-modal__info .box ul li:first-of-type {
  margin-top: 0;
}
.staff-modal__info .qa {
  margin-top: 32px;
}
.staff-modal__info .qa dl dt {
  margin-top: 24px;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 600;
  color: #B1A07C;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 2px #B1A07C solid;
}
.staff-modal__info .qa dl dd {
  font-size: 1.6rem;
  color: #222;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 2rem;
    padding-bottom: 8px;
  }
  .staffpage-list {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .staffpage-list:last-of-type {
    padding-bottom: 40px;
  }
  .staffpage-list ul {
    justify-content: space-between;
    gap: 20px 0;
  }
  .staffpage-list ul li {
    width: 48%;
  }
  .staffpage-list ul li .role {
    margin-top: 8px;
    font-size: 1.2rem;
  }
  .staffpage-list ul li p {
    margin-top: 4px;
    font-size: 1.6rem;
  }
  .staffpage-list ul li .desc {
    margin-top: 4px;
    font-size: 1.2rem;
  }
  .staff-modal__content {
    max-height: 90vh;
    padding: 64px 16px 40px;
  }
  .staff-modal__content .lr {
    display: block;
  }
  .staff-modal__content .lr .left {
    width: 65%;
    margin-left: auto;
    margin-right: auto;
  }
  .staff-modal__content .lr .right {
    width: 100%;
    padding-left: 0px;
  }
  .staff-modal__info {
    margin-top: 16px;
  }
  .staff-modal__info .staff-modal__copy {
    font-size: 2rem;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 8px;
  }
  .staff-modal__info .staff-modal__role {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 8px;
    text-align: center;
  }
  .staff-modal__info .staff-modal__name {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
  }
  .staff-modal__info .copy {
    font-size: 1.5rem;
    margin-bottom: 8px;
    text-align: center;
  }
  .staff-modal__info .staff-modal__desc {
    font-size: 1.3rem;
    color: #222;
    line-height: 1.8;
    text-align: left;
  }
  .staff-modal__info .box {
    margin-top: 16px;
    padding: 24px 16px;
  }
  .staff-modal__info .box ul li {
    font-size: 1.4rem;
    margin-top: 8px;
    display: block;
  }
  .staff-modal__info .box ul li .box {
    margin-top: 24px;
    margin-bottom: 12px;
    width: 100%;
    height: auto;
    font-size: 1.2rem;
  }
  .staff-modal__info .box ul li .box:first-of-type {
    margin-top: 0;
  }
  .staff-modal__info .box ul li .txt {
    margin-left: 0;
  }
  .staff-modal__info .qa {
    margin-top: 12px;
  }
  .staff-modal__info .qa dl dt {
    margin-top: 16px;
    font-size: 1.6rem;
    margin-bottom: 7px;
    padding-bottom: 7px;
  }
  .staff-modal__info .qa dl dd {
    font-size: 1.3rem;
  }
}/*# sourceMappingURL=staff.css.map */