/* ========================================
   INTERVIEW VARIABLES
========================================= */

:root {
  --interview-main: #5d9fac;
  --interview-dark: #305e67;
  --interview-light: #eaf5f6;
  --interview-text: #333333;
  --interview-gray: #777777;
  --interview-line: #d8e8ea;
}


/* ========================================
   BASE
========================================= */

.staff-interview,
.interview-modal {
  font-family:
    "Noto Sans JP",
    "Yu Gothic",
    "Hiragino Kaku Gothic ProN",
    sans-serif;
}

.staff-interview *,
.interview-modal * {
  box-sizing: border-box;
}

.interview-card,
.interview-modal button {
  font-family: inherit;
}


/* ========================================
   STAFF INTERVIEW
========================================= */

.staff-interview {
  padding: 110px 30px 130px;
  background: #ffffff;
}

.staff-interview__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}


/* ========================================
   HEADING
========================================= */

.staff-interview__heading {
  display: flex;
  align-items: flex-start;
  gap: 55px;
  margin-bottom: 60px;
}

.staff-interview__en {
  margin: 0;
  color: var(--interview-main);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 15px;
  line-height: 1;
  letter-spacing: .16em;

  writing-mode: vertical-rl;
}

.staff-interview__heading-content {
  flex: 1;
}

.staff-interview__heading h2 {
  margin: 0 0 18px;

  color: var(--interview-text);

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: clamp(26px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .12em;
}

.staff-interview__lead {
  margin: 0;

  color: #666666;

  font-size: 14px;
  line-height: 2;
  letter-spacing: .06em;
}


/* ========================================
   INTERVIEW LIST
========================================= */

.staff-interview__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  column-gap: 70px;
  row-gap: 70px;
}


/* ========================================
   INTERVIEW CARD
========================================= */

.interview-card {
  display: block;

  width: 100%;
  margin: 0;
  padding: 0;

  border: 0;
  border-radius: 0;

  appearance: none;

  background: transparent;

  color: inherit;
  text-align: left;

  cursor: pointer;
}


/* ========================================
   CARD IMAGE
========================================= */

.interview-card__image {
  position: relative;
  overflow: hidden;

  width: 100%;
  background: #f4f4f4;
}

.interview-card__image::after {
  position: absolute;
  inset: 0;

  background: rgba(70, 137, 150, .08);

  content: "";

  opacity: 0;
  pointer-events: none;

  transition: opacity .4s ease;
}

.interview-card__image img {
  display: block;

  width: 100%;
  aspect-ratio: 1.55 / 1;

  object-fit: cover;

  transition:
    transform .65s cubic-bezier(.22, .61, .36, 1);
}

.interview-card:hover .interview-card__image img {
  transform: scale(1.035);
}

.interview-card:hover .interview-card__image::after {
  opacity: 1;
}


/* ========================================
   CARD NUMBER
========================================= */

.interview-card__number {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: -1px;

  display: flex;
  align-items: center;
  gap: 13px;

  padding: 11px 0 5px 18px;

  background: #ffffff;

  color: var(--interview-main);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: .03em;
}

.interview-card__number::before {
  display: block;

  width: 35px;
  height: 1px;

  background: var(--interview-main);

  content: "";
}


/* ========================================
   CARD INFO
========================================= */

.interview-card__info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 20px;

  padding-top: 16px;
}

.interview-card__profile {
  min-width: 0;
}

.interview-card__position {
  margin-bottom: 5px;

  color: var(--interview-main);

  font-size: 12px;
  line-height: 1.7;
  letter-spacing: .08em;
}

.interview-card__name {
  color: var(--interview-text);

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: 17px;
  line-height: 1.6;
  letter-spacing: .12em;
}

.interview-card__date {
  flex-shrink: 0;

  padding-bottom: 2px;

  color: #888888;

  font-size: 11px;
  line-height: 1.7;
  letter-spacing: .04em;
}


/* ========================================
   VIEW INTERVIEW
========================================= */

.interview-card__more {
  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 15px;

  margin-top: 20px;

  color: var(--interview-main);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 10px;
  line-height: 1;
  letter-spacing: .18em;
}

.interview-card__more span {
  position: relative;

  display: block;

  width: 45px;
  height: 1px;

  overflow: hidden;

  background: #d0e2e5;
}

.interview-card__more span::before {
  position: absolute;
  top: 0;
  left: -100%;

  width: 100%;
  height: 100%;

  background: var(--interview-main);

  content: "";

  transition: left .35s ease;
}

.interview-card:hover .interview-card__more span::before {
  left: 0;
}


/* ========================================
   MODAL
========================================= */

/*
  初期状態では完全に非表示。
  モーダルの一部が最初から表示されるのを防ぎます。
*/

.interview-modal {
  display: none;

  position: fixed;
  z-index: 999999;
  inset: 0;

  width: 100%;
  height: 100%;
}


/* OPEN */

.interview-modal.is-open {
  display: block;
}


/* ========================================
   MODAL OVERLAY
========================================= */

.interview-modal__overlay {
  position: absolute;
  z-index: 1;
  inset: 0;

  width: 100%;
  height: 100%;

  background: rgb(255 255 255 / 72%);

  cursor: pointer;
}


/* ========================================
   MODAL WINDOW
========================================= */

.interview-modal__window {
  position: absolute;
  z-index: 2;

  top: 4vh;
  left: 50%;

  width: min(1180px, calc(100% - 70px));
  height: 92vh;

  overflow: hidden;

  background: #ffffff;

  transform: translateX(-50%);

  box-shadow:
    0 15px 60px rgba(0, 0, 0, .18);
}


/* ========================================
   MODAL SCROLL
========================================= */

.interview-modal__scroll {
  width: 100%;
  height: 100%;

  overflow-x: hidden;
  overflow-y: auto;

  overscroll-behavior: contain;

  background: #ffffff;
}

.interview-modal__scroll::-webkit-scrollbar {
  width: 7px;
}

.interview-modal__scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.interview-modal__scroll::-webkit-scrollbar-thumb {
  background: #a9cbcf;
}


/* ========================================
   MODAL CONTENT
========================================= */

.interview-modal__content {
  width: 100%;
  min-height: 100%;
  background: #ffffff;
}


/* ========================================
   MODAL CLOSE
========================================= */

.interview-modal__close {
  position: absolute;
  z-index: 50;

  top: 24px;
  right: 27px;

  width: 54px;
  height: 54px;

  margin: 0;
  padding: 0;

  border: 0;
  border-radius: 50%;

  appearance: none;

  background: rgba(255, 255, 255, .94);

  cursor: pointer;

  transition:
    background .3s ease,
    transform .3s ease;
}

.interview-modal__close:hover {
  background: var(--interview-light);
  transform: rotate(5deg);
}

.interview-modal__close span {
  position: absolute;

  top: 50%;
  left: 50%;

  display: block;

  width: 22px;
  height: 1px;

  background: var(--interview-dark);
}

.interview-modal__close span:first-child {
  transform:
    translate(-50%, -50%)
    rotate(45deg);
}

.interview-modal__close span:last-child {
  transform:
    translate(-50%, -50%)
    rotate(-45deg);
}


/* ========================================
   MODAL HERO
========================================= */

.interview-modal__hero {
  display: grid;
  grid-template-columns: 42% 58%;

  width: 100%;
  min-height: 570px;

  background: #ffffff;
}


/* ========================================
   HERO TEXT
========================================= */

.interview-modal__hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;

  min-width: 0;

  padding: 75px 8%;

  background: #ffffff;
}


/* ========================================
   HERO LABEL
========================================= */

.interview-modal__label {
  display: none;
  align-items: center;

  gap: 20px;

  margin-bottom: 45px;

  color: var(--interview-main);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 11px;
  line-height: 1;
  letter-spacing: .2em;
}

.interview-modal__label span:last-child {
  display: flex;
  align-items: center;

  gap: 10px;
}

.interview-modal__label span:last-child::before {
  display: block;

  width: 40px;
  height: 1px;

  background: var(--interview-main);

  content: "";
}


/* ========================================
   HERO CATCH
========================================= */

.interview-modal__catch {
  margin-bottom: 48px;

  color: var(--interview-text);

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: clamp(27px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: .12em;
}


/* ========================================
   HERO PROFILE
========================================= */

.interview-modal__profile {
  padding-top: 25px;

  border-top: 1px solid var(--interview-line);
}

.interview-modal__position,
.interview-modal__date {
  color: var(--interview-gray);

  font-size: 11px;
  line-height: 1.7;
  letter-spacing: .08em;
}

.interview-modal__name {
  margin: 8px 0;

  color: var(--interview-text);

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: 18px;
  line-height: 1.6;
  letter-spacing: .16em;
}


/* ========================================
   HERO IMAGE
========================================= */

.interview-modal__hero-image {
  min-width: 0;
  min-height: 570px;

  overflow: hidden;

  background: #f4f4f4;
}

.interview-modal__hero-image img {
  display: block;

  width: 100%;
  height: 100%;
  min-height: 570px;

  object-fit: cover;
}


/* ========================================
   ARTICLE
========================================= */

.interview-modal__article {
  position: relative;

  width: 100%;

  overflow: hidden;

  background: #ffffff;
}


/* ========================================
   INTRO
========================================= */

.interview-modal__intro {
  width: min(820px, calc(100% - 80px));

  margin: 0 auto;

  padding: 100px 0 50px;
}

.interview-modal__intro-en {
  margin-bottom: 24px;

  color: var(--interview-main);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 11px;
  line-height: 1;
  letter-spacing: .2em;
}

.interview-modal__intro-text {
  color: #555555;

  font-size: 14px;
  line-height: 2.2;
  letter-spacing: .06em;
}


/* ========================================
   INTERVIEW SECTION
========================================= */

.interview-modal__section {
  position: relative;
  z-index: 1;

  display: grid;
/*   grid-template-columns: 75px minmax(0, 1fr); */

  gap: 45px;

  width: min(940px, calc(100% - 100px));

  margin: 80px auto 130px;
}


/* ========================================
   SECTION NUMBER
========================================= */

.interview-modal__section-number {
  display: none;
  padding-top: 8px;

  color: #a0c7cc;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 13px;
  line-height: 1;
  letter-spacing: .1em;
}


/* ========================================
   SECTION CONTENT
========================================= */

.interview-modal__section-content {
  min-width: 0;
}


/* ========================================
   SECTION HEADING
========================================= */

.interview-modal__section-content h3 {
  position: relative;

  margin: 0 0 40px;
  padding: 0 0 25px;

  color: var(--interview-text);

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: clamp(23px, 2.5vw, 31px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: .11em;
}

.interview-modal__section-content h3::after {
  position: absolute;

  bottom: 0;
  left: 0;

  width: 45px;
  height: 1px;

  background: var(--interview-main);

  content: "";
}


/* ========================================
   SECTION TEXT
========================================= */

.interview-modal__text {
  color: #555555;

  font-size: 14px;
  line-height: 2.25;
  letter-spacing: .055em;
}

.interview-modal__text > div {
  margin-bottom: 24px;
}

.interview-modal__text > div:last-child {
  margin-bottom: 0;
}


/* ========================================
   SECTION IMAGE
========================================= */

.interview-modal__section figure {
  display: block;

  margin: 55px 0 0;
  padding: 0;
}

.interview-modal__section figure img {
  display: block;

  width: 100%;
  max-height: 540px;

  object-fit: cover;
}


/* ========================================
   COLORED SECTION
========================================= */

.interview-modal__section--bg::before {
  position: absolute;
  z-index: -1;

  top: -65px;
  right: -60px;
  bottom: -65px;
  left: -60px;


  content: "";
}


/* ========================================
   MODAL BOTTOM
========================================= */

.interview-modal__bottom {
  padding: 80px 30px;

  background: var(--interview-light);

  text-align: center;
}

.interview-modal__bottom-en {
  margin-bottom: 25px;

  color: var(--interview-main);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 11px;
  line-height: 1;
  letter-spacing: .25em;
}

.interview-modal__bottom-close {
  min-width: 200px;

  margin: 0;
  padding: 15px 25px;

  border: 1px solid var(--interview-main);
  border-radius: 0;

  appearance: none;

  background: transparent;

  color: var(--interview-main);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 11px;
  line-height: 1;
  letter-spacing: .2em;

  cursor: pointer;

  transition:
    background .3s ease,
    color .3s ease;
}

.interview-modal__bottom-close:hover {
  background: var(--interview-main);
  color: #ffffff;
}


/* ========================================
   BODY SCROLL LOCK
========================================= */

body.is-modal-open {
  overflow: hidden;
}


/* ========================================
   TABLET
========================================= */

@media screen and (max-width: 1000px) {

  .staff-interview__list {
    column-gap: 40px;
  }

  .interview-modal__window {
    width: calc(100% - 40px);
  }

  .interview-modal__hero {
    grid-template-columns: 45% 55%;
  }

  .interview-modal__hero-text {
    padding-right: 45px;
    padding-left: 45px;
  }

  .interview-modal__section {
    width: calc(100% - 80px);
  }

  .interview-modal__section--bg::before {
    right: -40px;
    left: -40px;
  }

}


/* ========================================
   SMARTPHONE
========================================= */

@media screen and (max-width: 767px) {

  .pc-only {
    display: none;
  }


  /* ========================================
     STAFF INTERVIEW
  ========================================= */

  .staff-interview {
    padding: 70px 20px 90px;
  }

  .staff-interview__heading {
    gap: 22px;
    margin-bottom: 45px;
  }

  .staff-interview__en {
    font-size: 10px;
  }

  .staff-interview__heading h2 {
    margin-bottom: 15px;

    font-size: 24px;
    line-height: 1.6;
  }

  .staff-interview__lead {
    font-size: 12px;
    line-height: 1.9;
  }


  /* ========================================
     LIST
  ========================================= */

  .staff-interview__list {
    grid-template-columns: 1fr;

    gap: 55px;
  }


  /* ========================================
     CARD
  ========================================= */

  .interview-card__image img {
    aspect-ratio: 1.4 / 1;
  }

  .interview-card__number {
    font-size: 23px;
  }

  .interview-card__info {
    gap: 10px;
  }

  .interview-card__position {
    font-size: 11px;
  }

  .interview-card__name {
    font-size: 16px;
  }

  .interview-card__date {
    font-size: 10px;
  }


  /* ========================================
     MODAL
  ========================================= */

  .interview-modal__window {
    top: 0;
    left: 0;

    width: 100%;
    height: 100dvh;

    transform: none;

    box-shadow: none;
  }


  /* ========================================
     CLOSE
  ========================================= */

  .interview-modal__close {
    position: fixed;

    top: 15px;
    right: 15px;

    width: 46px;
    height: 46px;
  }

  .interview-modal__close span {
    width: 19px;
  }


  /* ========================================
     HERO
  ========================================= */

  .interview-modal__hero {
    display: flex;
    flex-direction: column-reverse;

    min-height: 0;
  }

  .interview-modal__hero-image {
    width: 100%;
    height: 52vh;
    min-height: 350px;
  }

  .interview-modal__hero-image img {
    width: 100%;
    height: 100%;
    min-height: 0;

    object-fit: cover;
  }

  .interview-modal__hero-text {
    width: 100%;

    padding: 45px 25px 55px;
  }

  .interview-modal__label {
    margin-bottom: 28px;
  }

  .interview-modal__catch {
    margin-bottom: 30px;

    font-size: 25px;
    line-height: 1.75;
  }

  .interview-modal__profile {
    padding-top: 20px;
  }


  /* ========================================
     INTRO
  ========================================= */

  .interview-modal__intro {
    width: auto;

    margin: 0;
    padding: 65px 25px 20px;
  }

  .interview-modal__intro-text {
    font-size: 13px;
    line-height: 2.05;
  }


  /* ========================================
     SECTION
  ========================================= */

  .interview-modal__section {
    display: block;

    width: auto;

    margin: 70px 25px 95px;
  }

  .interview-modal__section-number {
    margin-bottom: 18px;
    padding-top: 0;
  }

  .interview-modal__section-content h3 {
    margin-bottom: 30px;
    padding-bottom: 20px;

    font-size: 22px;
  }

  .interview-modal__text {
    font-size: 13px;
    line-height: 2.1;
  }

  .interview-modal__text > div {
    margin-bottom: 20px;
  }

  .interview-modal__section figure {
    margin-top: 35px;
  }


  /* ========================================
     BACKGROUND SECTION
  ========================================= */

  .interview-modal__section--bg::before {
    top: -45px;
    right: -25px;
    bottom: -45px;
    left: -25px;
  }


  /* ========================================
     BOTTOM
  ========================================= */

  .interview-modal__bottom {
    padding: 60px 25px;
  }

  .interview-modal__bottom-close {
    width: 100%;
    max-width: 280px;
  }

}


/* ========================================
   SMALL SMARTPHONE
========================================= */

@media screen and (max-width: 400px) {

  .staff-interview {
    padding-right: 15px;
    padding-left: 15px;
  }

  .staff-interview__heading {
    gap: 15px;
  }

  .interview-card__info {
    display: block;
  }

  .interview-card__date {
    margin-top: 5px;
    padding-bottom: 0;
  }

  .interview-modal__hero-image {
    min-height: 310px;
  }

  .interview-modal__hero-text {
    padding-right: 20px;
    padding-left: 20px;
  }

  .interview-modal__catch {
    font-size: 23px;
  }

  .interview-modal__intro {
    padding-right: 20px;
    padding-left: 20px;
  }

  .interview-modal__section {
    margin-right: 20px;
    margin-left: 20px;
  }

  .interview-modal__section--bg::before {
    right: -20px;
    left: -20px;
  }
}



.topvisual .img{
  max-height: none;
}


.topvisual .img:before{
 padding-top: 55%;
}
