@charset "UTF-8";
.p-staff-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin: 60px 0 0;
  padding: 0;
}
.p-staff-list > li {
  margin: 0;
  list-style: none;
}
.p-staff-list:where(.is-2col) {
  grid-template-columns: repeat(2, 1fr);
}

.p-staff-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.p-staff-card__img {
  aspect-ratio: 220/262;
  width: 100%;
  overflow: hidden;
  border-radius: 30px;
  background-color: #D6F0EA;
}
.p-staff-card__img.is-noimage {
  border: 2px solid var(--color-main);
}
.p-staff-card__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: transform 0.3s ease-in;
}
:where(a):hover .p-staff-card__img img {
  transform: scale(1.1);
}

.p-staff-card__detail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 16px;
}
.p-staff-card__detail > :first-child {
  margin-top: 0 !important;
}
.p-staff-card__detail > :last-child {
  margin-bottom: 0 !important;
}

.p-staff-card__title {
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 500;
}

.p-staff-card__name {
  position: relative;
  margin-top: 20px;
  padding-top: 12px;
  line-height: 1.6;
  font-size: 0.9375rem;
  font-weight: 700;
}
.p-staff-card__name::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 61px;
  height: 2px;
  background-color: var(--color-sub);
}

.p-staff-card__list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 4px;
  margin: 8px 0 0;
  padding: 0;
}

.p-staff-card__list__tag,
.p-staff-card__list__tag02 {
  padding: 5px 12px;
  line-height: 1.5;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 8px;
}

.p-staff-card__list__tag {
  background-color: var(--color-sub);
  border: 1px solid var(--color-sub);
}

.p-staff-card__list__tag02 {
  color: var(--color-main);
  background-color: #fff;
  border: 1px solid var(--color-main);
}
.p-staff-card__list__tag02.is-career {
  color: var(--color-grey);
  border: 1px solid var(--color-grey);
}

.p-staff-message {
  position: relative;
  margin: 120px 0 0;
  padding: 67px 0;
  z-index: 2;
}
.p-staff-message::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -220px;
  width: calc(100% + 440px);
  height: 100%;
  background-color: var(--color-light);
  border-radius: 60px;
  z-index: -1;
}

.p-staff-message__title {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

.p-staff-media-text {
  display: flex;
  align-items: center;
  gap: 64px;
}

.p-staff-media-text__detail {
  flex-grow: 1;
}
.p-staff-media-text__detail > :first-child {
  margin-top: 0 !important;
}
.p-staff-media-text__detail > :last-child {
  margin-bottom: 0 !important;
}

.p-staff-media-text__img {
  flex-shrink: 0;
  position: relative;
  padding: 24px 24px 0 0;
  width: 246px;
}
.p-staff-media-text__img::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 1px;
  width: 47px;
  height: 47px;
  background: url(../img/common/icon-plus01.svg) no-repeat 0 0/contain;
}

.p-staff-media-text__img__frame {
  aspect-ratio: 241/285;
  border-radius: 0 0 200px 200px;
  overflow: hidden;
}
.p-staff-media-text__img__frame.is-noimage {
  border: 2px solid var(--color-main);
}
.p-staff-media-text__img__frame img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.p-staff-jobs {
  margin-top: 120px;
  padding: 67px 36px;
  border-radius: 60px;
  background-color: var(--color-light);
}
.p-staff-jobs > :first-child {
  margin-top: 0 !important;
}
.p-staff-jobs > :last-child {
  margin-bottom: 0 !important;
}

.p-staff-jobs__title {
  margin: 30px 0 0;
  line-height: 1.5;
  text-align: center;
  color: var(--color-main);
  font-size: 1.75rem;
  font-weight: 700;
}

.p-staff-jobs__text {
  margin: 16px 0 0;
  line-height: 1.5;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
}

.p-staff-jobs-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin: 24px 0 0;
  padding: 0;
}
.p-staff-jobs-list > li {
  margin: 0;
  width: 375px;
  list-style: none;
}

.p-staff-jobs-list__type {
  display: block;
  position: relative;
  overflow: hidden;
  background-color: var(--color-white);
  border-radius: 30px;
}
.p-staff-jobs-list__type::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(2em + 42px);
  height: 100%;
  font-size: 1.625rem;
  background-color: var(--color-main);
  z-index: 1;
  mix-blend-mode: multiply;
}
.p-staff-jobs-list__type:hover .p-staff-jobs-list__img {
  --icon-bg-color: var(--color-main);
  --icon-arrow-color: var(--color-white);
}
.p-staff-jobs-list__type:hover .p-staff-jobs-list__img img {
  transform: scale(1.05);
}

.p-staff-jobs-list__img {
  --icon-bg-color: var(--color-white);
  --icon-arrow-color: var(--color-main);
  display: block;
  position: relative;
  aspect-ratio: 375/200;
}
.p-staff-jobs-list__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: transform 0.2s ease-in;
}
.p-staff-jobs-list__img::before, .p-staff-jobs-list__img::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: background-color 0.2s ease-in;
}
.p-staff-jobs-list__img::before {
  bottom: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 21px;
  background-color: var(--icon-bg-color);
}
.p-staff-jobs-list__img::after {
  bottom: 28px;
  right: 26px;
  width: 22px;
  height: 17px;
  -webkit-mask-image: url("../img/common/icon-arrow.svg");
          mask-image: url("../img/common/icon-arrow.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--icon-arrow-color);
  overflow: hidden;
}

.p-staff-jobs-list__detail {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px;
  min-width: 100px;
  height: 100%;
  color: var(--color-white);
  z-index: 2;
}

.p-staff-jobs-list__title {
  display: block;
  writing-mode: vertical-rl;
  line-height: 1.2;
  color: var(--color-white);
  font-size: 1.625rem;
  font-weight: 700;
}

.p-staff-jobs-list__title.is-indent01 {
  text-indent: 0.8em;
}

/* モーダル全体 */
.modal {
  display: none;
}

.modal.is-open {
  display: block;
}

/* オーバーレイ */
.modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

/* コンテナ */
.modal__container {
  position: relative;
  width: 90%;
  max-width: 960px;
  background: #000;
  border-radius: 8px;
  padding: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* 動画比率 */
.video-wrapper {
  aspect-ratio: 16/9;
}
.video-wrapper iframe {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border: none;
}

.modal__close {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  position: absolute;
  top: -50px;
  right: 0;
  margin: 0;
  padding: 0;
  width: 50px;
  height: 50px;
  background: var(--color-white);
  overflow: hidden;
  border: none;
  border-radius: 0;
  text-indent: -9999px;
  cursor: pointer;
}
.modal__close::before, .modal__close::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 60%;
  background-color: var(--color-main);
}
.modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal__close:hover {
  background: var(--color-main);
}
.modal__close:hover::before, .modal__close:hover::after {
  background-color: var(--color-white);
}

@media screen and (max-width: 767px) {
  .p-staff-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
    margin: 60px 0 0;
  }
  .p-staff-card__img {
    aspect-ratio: 220/262;
    border-radius: 22px;
  }
  .p-staff-card__detail {
    margin-top: 12px;
  }
  .p-staff-card__title {
    font-size: 0.875rem;
  }
  .p-staff-card__name {
    margin-top: 15px;
    padding-top: 10px;
    font-size: 0.8125rem;
  }
  .p-staff-card__name::before {
    width: 46px;
    height: 2px;
  }
  .p-staff-card__list {
    gap: 3px;
    margin: 6px 0 0;
  }
  .p-staff-card__list__tag,
  .p-staff-card__list__tag02 {
    padding: 4px 9px;
    font-size: 0.8125rem;
    border-radius: 6px;
  }
  .p-staff-message {
    position: relative;
    margin: 80px 0 0;
    padding: 40px 0;
  }
  .p-staff-message::before {
    left: var(--content-negative-space);
    width: calc(100% + var(--content-space) * 2);
  }
  .p-staff-message__title {
    position: static;
    width: 100%;
  }
  .p-staff-media-text {
    flex-direction: column;
    gap: 40px;
  }
  .p-staff-media-text__img {
    padding: 24px 24px 0 0;
    max-width: 528px;
    width: 100%;
  }
  .p-staff-jobs {
    margin: 60px var(--content-negative-space);
    padding: 40px var(--content-space);
  }
  .p-staff-jobs__title {
    font-size: 1.375rem;
  }
  .p-staff-jobs__text {
    margin: 8px 0 0;
    text-align: left;
    font-size: 1rem;
  }
  .p-staff-jobs-list {
    gap: 20px;
    margin: 12px 0 0;
  }
  .p-staff-jobs-list > li {
    max-width: 375px;
    width: 100%;
  }
  .p-staff-jobs-list__type {
    border-radius: 18px;
  }
  .p-staff-jobs-list__type::before {
    width: calc(2em + 60px);
    font-size: calc(36 / 828 * 100vw);
  }
  .p-staff-jobs-list__img {
    aspect-ratio: 350/150;
  }
  .p-staff-jobs-list__img::before {
    bottom: calc(16 / 828 * 100vw);
    right: calc(16 / 828 * 100vw);
    width: calc(50 / 828 * 100vw);
    height: calc(50 / 828 * 100vw);
    border-radius: calc(25 / 828 * 100vw);
  }
  .p-staff-jobs-list__img::after {
    bottom: calc(30 / 828 * 100vw);
    right: calc(28 / 828 * 100vw);
    width: calc(26 / 828 * 100vw);
    height: calc(20 / 828 * 100vw);
  }
  .p-staff-jobs-list__title {
    line-height: 1.3;
    font-size: calc(36 / 828 * 100vw);
  }
}
:where(.parent-pageid-1669) .u-contents .inner {
  display: grid;
  grid-template-columns: 1fr var(--u-content-width) 1fr;
  width: 100%;
}
:where(.parent-pageid-1669) .u-contents .inner > * {
  grid-column: 2/3;
}
:where(.parent-pageid-1669) .u-contents .inner > :first-child {
  margin-top: 0;
}
:where(.parent-pageid-1669) .u-contents .inner .p-staff-mv {
  grid-column: 1/4;
}

.p-staff-heading {
  font-size: 1.75rem;
}

.p-staff-mv {
  margin-top: 240px;
}

.p-staff-mv.p-staff-mv-reverse {
  grid-template-columns: auto 205px 461px;
}
.p-staff-mv.p-staff-mv-reverse .p-staff-mv__detail {
  grid-column: 2/4;
  border-radius: 60px 0 0 60px;
}
.p-staff-mv.p-staff-mv-reverse .p-staff-mv__img {
  grid-column: 1/3;
  border-radius: 0 60px 60px 0;
}

@media screen and (max-width: 767px) {
  .p-staff-heading {
    font-size: 1.25rem;
  }
  .p-staff-mv {
    margin-top: 110px;
  }
  .p-staff-mv__img {
    margin: 0 var(--content-space) 0 0;
    border-radius: 0 30px 30px 0;
  }
}