@charset "UTF-8";

/* ------------------------------------

people archive

------------------------------------ */
.page-system.page-people.page-system-index .list-page__main {
  width: 100%;
  padding: 0;
  background-color: transparent;
}

.people-archive {
  background-color: #fff000;
  padding: 0 0 130px;
}

.people-archive__container {
  width: 1100px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.people-archive__category {
  color: #1e288b;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}

.people-archive__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 36px;
  row-gap: 70px;
}

.people-archive__item a {
  color: #1e288b;
  text-decoration: none;
  display: block;
}

.people-archive__image {
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 1.23 / 1;
  background-color: #fff;
}

.people-archive__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.people-archive__item a:hover .people-archive__image img {
  transform: scale(1.04);
}

.people-archive__content {
  padding: 0 0 0 10px;
  margin-top: -13px;
  position: relative;
}

.people-archive__catch {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
}

.people-archive__catch span {
  color: #1e288b;
  background-color: #fff;
  padding: 2px 6px 3px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.people-archive__name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 6px;
}

.people-archive__content--no-catch .people-archive__name {
  margin-top: 30px;
}

.people-archive__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}

.people-archive__tags .icon {
  color: #1e288b !important;
  background: transparent !important;
  padding: 0;
  margin: 0;
}

.people-archive__tags .icon::before {
  content: "#";
}

.people-archive__pager {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 100px;
}

.people-archive__pager a {
  min-width: 220px;
  color: #fff;
  background-color: #1e288b;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  padding: 17px 42px 17px 24px;
  display: block;
  position: relative;
}

.people-archive__pager a::after {
  content: "›";
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-52%);
}

.people-archive__pager a:hover {
  background-color: #111a72;
}

@media print, screen and (min-width: 761px) {
  .people-archive__item:nth-child(3n + 2) {
    transform: translateY(26px);
  }
  .people-archive__item:nth-child(3n) {
    transform: translateY(52px);
  }
}

@media print, screen and (max-width: 760px) {
  .people-archive {
    padding: 7vw 0;
  }
  .people-archive__container {
    max-width: 86%;
  }
  .people-archive__category {
    font-size: 4.3vw;
    margin-bottom: 10vw;
  }
  .people-archive__list {
    grid-template-columns: 1fr;
    row-gap: 8vw;
  }
  .people-archive__image {
    border-radius: 4px;
  }
  .people-archive__content {
    padding-left: 2.5vw;
    margin-top: -3.4vw;
  }
  .people-archive__catch {
    font-size: 5.6vw;
    margin-bottom: 3vw;
  }
  .people-archive__catch span {
    padding: 0.4vw 1.2vw 0.6vw;
  }
  .people-archive__name {
    font-size: 4.2vw;
    margin-bottom: 1.3vw;
  }
  .people-archive__content--no-catch .people-archive__name {
    margin-top: 8.5vw;
  }
  .people-archive__tags {
    gap: 0 3vw;
    font-size: 3.6vw;
  }
  .people-archive__pager {
    flex-direction: column;
    align-items: center;
    gap: 4vw;
    margin-top: 17vw;
  }
  .people-archive__pager a {
    min-width: 63vw;
    font-size: 3.8vw;
    padding: 4.2vw 10vw 4.2vw 5vw;
  }
  .people-archive__pager a::after {
    font-size: 7vw;
    right: 4vw;
  }
}

/* ------------------------------------

people single

------------------------------------ */
.page-system.page-people.page-system-detail .list-page__header {
  display: none;
}

.page-system.page-people.page-system-detail .list-page__main {
  width: 100%;
  padding: 0;
  background-color: transparent;
}

.people-single {
  color: #1e288b;
  background-color: #fff000;
  padding: 100px 0 0;
}

.people-single__container {
  width: 1100px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.people-single__hero {
  min-height: 525px;
  position: relative;
}

.people-single__visual {
  width: 59%;
  aspect-ratio: 1.3 / 1;
  border-radius: 5px;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
}

.people-single__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.people-single__hero-content {
  width: 62%;
  padding-top: 50px;
  position: relative;
  z-index: 1;
}

.people-single__eyebrow {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 12px;
}

.people-single__eyebrow span {
  font-size: 14px;
  margin-left: 8px;
}

.people-single__catch {
  color: #fff;
  font-size: 43px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.03em;
  margin: 0;
}

.people-single__catch span {
  background-color: #1e288b;
  padding: 5px 14px 7px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.people-single__profile {
  margin: 45px 0 0 24px;
}

.people-single__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.people-single__tags .icon {
  color: #1e288b !important;
  background: #fff !important;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  padding: 7px 34px;
  margin: 0;
}

.people-single__person,
.people-single__profile-item {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  margin: 0;
}

.people-single__person {
  margin-bottom: 17px;
}

.people-single__article {
  width: 920px;
  max-width: 88%;
  background-color: #fff;
  border-radius: 5px;
  padding: 45px 80px 55px;
  margin: 30px auto 0;
}

.people-single__question + .people-single__question {
  margin-top: 30px;
}

.people-single__question h2 {
  color: #1e288b;
  background-color: #fff000;
  border-radius: 4px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding: 15px 20px;
  margin: 0 0 20px;
}

.people-single__question h2::before {
  content: "●";
  margin-right: 3px;
}

.people-single__answer {
  color: #1e288b;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  padding: 0 38px;
}

.people-single__free-content {
  color: #1e288b;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

.people-single__free-content > :first-child {
  margin-top: 0;
}

.people-single__password {
  width: 920px;
  max-width: 88%;
  background-color: #fff;
  border-radius: 5px;
  padding: 45px;
  margin: 30px auto 0;
}

.people-single__pager {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 50px;
  margin-top: 42px;
}

.people-single__pager a {
  min-width: 160px;
  color: #fff;
  background-color: #1e288b;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  padding: 14px 36px;
  display: block;
  position: relative;
}

.people-single__pager-back__sp {
  display: none;
}
@media print, screen and (max-width: 760px) {
  .people-single__pager-back__sp {
    display: block;
  }
  .people-single__pager-back__pc {
    display: none;
  }
}

.people-single__pager-back a::before,
.people-single__pager-prev a::before {
  content: "‹";
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-52%);
}

.people-single__pager-next a::after {
  content: "›";
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-52%);
}

.people-single__pager a:hover {
  background-color: #111a72;
}

.page-system.page-people.page-system-detail .l-interview {
  background-color: transparent;
  width: 100vw;
  padding: 115px 0 0;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.page-system.page-people.page-system-detail .l-interview__container {
  width: 100%;
  max-width: none;
  padding-left: 5%;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  /*align-items: flex-end;*/
  gap: 50px;
  margin: 0;
}

.page-system.page-people.page-system-detail .l-interview .p-header.interview {
  width: 210px;
  flex: 0 0 210px;
  display: block;
  margin-top: 0;
}

.page-system.page-people.page-system-detail .l-interview .p-header__title {
  color: #1e288b;
  font-size: 36px;
  line-height: 0.95;
  margin: 0 0 14px;
}

.page-system.page-people.page-system-detail .l-interview .p-header__subtitle,
.page-system.page-people.page-system-detail .l-interview .p-header__text {
  color: #1e288b;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  margin: 0 0 12px;
}

.page-system.page-people.page-system-detail .l-interview .p-header .c-button {
  margin-top: 28px;
}

.page-system.page-people.page-system-detail .l-interview .p-header .c-button a {
  color: #1e288b;
  background: transparent;
  border: 0;
  padding: 0;
}

.page-system.page-people.page-system-detail .l-interview__list {
  width: auto;
  min-width: 0;
}

/* PC：READ MORE の下にスライダー操作ボタンを配置 */
@media print, screen and (min-width: 761px) {
  .page-system.page-people.page-system-detail .l-interview__list .slick-prev,
  .page-system.page-people.page-system-detail .l-interview__list .slick-next {
    top: 300px;
    width: 46px;
    height: 46px;
    z-index: 2;
  }

  .page-system.page-people.page-system-detail .l-interview__list .slick-prev {
    left: -260px;
  }

  .page-system.page-people.page-system-detail .l-interview__list .slick-next {
    left: -190px;
  }
}

.page-system.page-people.page-system-detail .l-interview .p-item {
  color: #1e288b;
}

.page-system.page-people.page-system-detail .l-interview .p-item a {
  color: #1e288b;
  text-decoration: none;
}

.page-system.page-people.page-system-detail .l-interview .p-item__photo {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0;
}

.page-system.page-people.page-system-detail
  .l-interview
  .p-item__photo.ph_sys
  img {
  aspect-ratio: 1.23 / 1;
}

.page-system.page-people.page-system-detail .l-interview .p-item__inner {
  padding-left: 10px;
  margin-top: -13px;
  position: relative;
}

.page-system.page-people.page-system-detail .l-interview .p-item__title {
  color: #1e288b;
  background-color: #fff;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 2px 6px 3px;
  display: inline;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 8px;
  overflow: visible;
}

.page-system.page-people.page-system-detail .l-interview .p-item__title:empty {
  display: none;
}

.page-system.page-people.page-system-detail
  .l-interview
  .p-item__title:empty
  + .p-item__text {
  margin-top: 30px;
}

.page-system.page-people.page-system-detail .l-interview .p-item__text,
.page-system.page-people.page-system-detail
  .l-interview
  .p-item__icons-category {
  color: #1e288b;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 6px;
}

.page-system.page-people.page-system-detail
  .l-interview
  .p-item__icons-category
  .icon {
  color: #1e288b;
  background: transparent !important;
  padding: 0;
  margin-right: 10px;
}

.page-system.page-people.page-system-detail
  .l-interview
  .p-item__icons-category
  .icon::before {
  content: "#";
}

@media print, screen and (min-width: 1200px) {
  .page-system.page-people.page-system-detail .l-interview__container {
    padding-left: calc((100vw - 1100px) / 2);
  }
}

@media print, screen and (max-width: 760px) {
  .people-single {
    padding: 20vw 0 0;
  }
  .people-single__container {
    max-width: 90%;
  }
  .people-single__hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
  .people-single__visual {
    width: 88%;
    position: relative;
    order: 1;
    margin: auto;
  }
  .people-single__hero-content {
    width: 100%;
    padding-top: 7vw;
    order: 2;
  }
  .people-single__eyebrow {
    font-size: 4.2vw;
    margin-bottom: 2.5vw;
  }
  .people-single__eyebrow span {
    font-size: 3.4vw;
  }
  .people-single__catch {
    font-size: 8.2vw;
  }
  .people-single__catch span {
    padding: 1vw 2vw 1.3vw;
  }
  .people-single__profile {
    margin: 7vw 0 0 3vw;
  }
  .people-single__tags {
    margin-bottom: 4vw;
  }
  .people-single__tags .icon {
    font-size: 3.8vw;
    padding: 1.5vw 6vw;
  }
  .people-single__person,
  .people-single__profile-item {
    font-size: 4vw;
  }
  .people-single__person {
    margin-bottom: 3vw;
  }
  .people-single__article,
  .people-single__password {
    max-width: 100%;
    padding: 7vw 5vw;
    margin-top: 12vw;
  }
  .people-single__question + .people-single__question {
    margin-top: 8vw;
  }
  .people-single__question h2 {
    font-size: 4.3vw;
    padding: 3vw 3.5vw;
    margin-bottom: 4vw;
  }
  .people-single__answer,
  .people-single__free-content {
    font-size: 3.7vw;
    line-height: 1.9;
    padding: 0 2.5vw;
  }
  .people-single__pager {
    gap: 4vw;
    margin-top: 9vw;
  }
  .people-single__pager a {
    min-width: 36vw;
    font-size: 3.7vw;
    padding: 3.7vw 7vw;
  }
  .page-system.page-people.page-system-detail .l-interview {
    padding-top: 20vw;
    margin-bottom: 0;
  }
  .page-system.page-people.page-system-detail .l-interview__container {
    display: block;
    padding-left: 0;
  }
  .page-system.page-people.page-system-detail .l-interview .p-header.interview {
    width: 100%;
  }
  .page-system.page-people.page-system-detail .l-interview .p-header__title {
    font-size: 10vw;
  }
  .page-system.page-people.page-system-detail .l-interview__list {
    width: 100%;
    margin-top: 8vw;
    margin-bottom: 0;
  }
  .page-system.page-people.page-system-detail
    .l-interview
    .p-item__title:empty
    + .p-item__text {
    margin-top: 8.5vw;
  }
}
