
.contents-main {
  margin-bottom: 120px;
}

.staff-list {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 38px 53px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 120px 0 95px;
}
.staff-list .staff-card .thumbnail {
  border-radius: 20px;
  height: 284px;
  margin: 0 0 12px;
  text-align: center;
  width: 210px;
  overflow: hidden;
  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;
}
.staff-list .staff-card .thumbnail img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-width: none;
}
.staff-list .staff-card .thumbnail .noimg {
  border: 1px solid #DDD;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 284px;
  width: 210px;
}
.staff-list .staff-card .thumbnail .noimg p {
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 50%;
  height: 120px;
  width: 120px;
}
.staff-list .staff-card .occupation {
  font-weight: 700;
  margin: 0 0 2px;
}
.staff-list .staff-card .staff-name {
  font-size: 2.4rem;
  font-weight: 700;
  position: relative;
}
.staff-list .staff-card .staff-name::after {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  display: block;
  height: 28px;
  margin: auto;
  position: absolute;
  right: 0;
  top: -4px;
  width: 28px;
}

.staff-name-head {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0;
  padding: 0 0 30px;
}
.staff-name-head .staf-icon {
  border-radius: 100px;
  height: 120px;
  width: 120px;
  overflow: hidden;
  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;
}
.staff-name-head .staf-icon img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-width: none;
}
.staff-name-head .staf-icon + .staff-ttl {
  padding: 0 0 0 20px;
  width: calc(100% - 120px);
}
.staff-name-head .staf-icon .no-img {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.staff-name-head .staff-ttl {
  font-size: 2.8rem;
}
.staff-name-head .staff-ttl .occupation {
  color: #333;
  display: block;
  font-size: 2rem;
  margin: 5px 0 10px;
}

.staff-profile {
  border-bottom: 1px solid #ddd;
  padding: 30px 20px;
}
.staff-profile:last-of-type {
  border-bottom: none;
}
.staff-profile .ttl {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 14px;
}
.staff-profile .detail p {
  line-height: 1.88;
}
.staff-profile .dotted-txt {
  padding: 0 0 0 1.3em;
  position: relative;
}
.staff-profile .dotted-txt:last-of-type {
  margin-bottom: 0;
}
.staff-profile .dotted-txt::before {
  background: #aaa;
  border-radius: 50px;
  content: "";
  height: 6px;
  left: 4px;
  position: absolute;
  top: 13px;
  width: 6px;
}

.js-popup-area:hover {
  cursor: pointer;
  opacity: 0.7;
}

.popup-container {
  background: rgba(0, 0, 0, 0.4);
  bottom: 0;
  height: 100%;
  left: 0;
  margin: auto;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.popup-container.is-hidden {
  display: none;
}
.popup-container .popup-wrapper {
  max-height: 100dvh;
  overflow: auto;
}
.popup-container .popup-inner {
  background: #fff;
  border-radius: 20px;
  margin: 40px auto;
  padding: 40px 40px;
  position: relative;
  width: 790px;
}
.popup-container .popup-close {
  border: 2px solid;
  border-radius: 50px;
  cursor: pointer;
  height: 28px;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 28px;
}
.popup-container .popup-close:hover {
  opacity: 0.7;
}
.popup-container .popup-close::before, .popup-container .popup-close::after {
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 10px;
}
.popup-container .popup-close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.popup-container .popup-close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.staff-list.type-vertical {
  display: block;
}
.staff-list.type-vertical .staff-card {
  margin: 0 0 62px;
}
.staff-list.type-vertical .staff-card:last-of-type {
  margin-bottom: 0;
}
.staff-list.type-vertical .staff-profile {
  padding: 34px 10px 24px;
}
.staff-list.type-vertical .staff-profile .ttl {
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.staff-list.type-vertical .staff-profile .detail p {
  line-height: 2;
}
.staff-list.type-vertical .staff-profile:last-of-type {
  border-bottom: 1px solid #ddd;
}