/* --------------------------------- */
.interview-list {
  margin-block-start: clamp(40px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  gap: max(10vw, 40px);
}
@media screen and (min-width: 1024px) {
  .interview-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5vw;
  }
}
.interview-list__item.hidden {
  display: none;
}
.interview-list__item a {
  display: flex;
  flex-direction: column;
  gap: max(1vw, 10px);
  text-decoration: none;
}
.interview-list__image {
  width: 100%;
  aspect-ratio: 3/2;
  position: relative;
  border-radius: 0 9999px 9999px 0;
  overflow: hidden;
  position: relative;
}
.interview-list__image div {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.interview-list__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  transition: transform 400ms cubic-bezier(0.65, 0, 0.35, 1);
}
a:hover .interview-list__image img {
  transform: scale3d(1.1, 1.1, 1.1);
}

.interview-list__image .category {
  height: 32px;
  padding-inline: clamp(10px, 1vw, 20px);
  display: flex;
  align-items: center;
  background-color: var(--white-color);
  border: 1px solid var(--accent-color);
  border-radius: 2px 16px 16px 2px;
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 1;
  font-size: clamp(0.8125rem, 0.7695rem + 0.16vw, 0.9375rem);
  box-sizing: border-box;
}
.interview-list__title {
  font-size: clamp(1.5rem, 1.328rem + 0.64vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--accent-color);
}
.interview-list__title span {
  display: inline;
}
@media screen and (min-width: 1024px) {
  .interview-list__title span {
    display: block;
  }
}
.interview-list__data {
  color: rgb(0, 0, 0);
}
.interview-list__data .department,
.interview-list__data .year {
  font-size: clamp(0.875rem, 0.8535rem + 0.08vw, 0.9375rem);
  line-height: 1.2;
}
.interview-list__data .inner {
  display: flex;
  align-items: end;
  gap: 10px;
}
.interview-list__data .name {
  font-size: clamp(1.5rem, 1.328rem + 0.64vw, 2rem);
  font-weight: 600;
  line-height: 1;
}
.interview-header {
  position: relative;
}
.interview-header .image {
  width: calc(100% + 5vw);
  height: max(100px + 40vw, 300px);
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 0 9999px 9999px 0;
  overflow: hidden;
  position: relative;
  left: -5vw;
  z-index: 0;
}
.interview-header .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.interview-header .copy {
  margin-block-start: calc(-20px - 1vw);
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.interview-header .copy span {
  padding-inline: 10px;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 4px;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  font-size: clamp(1.5rem, 0.64rem + 3.2vw, 4rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--accent-color);
}
.interview-wrapper {
  margin-block: clamp(60px, 12vw, 240px);
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 5vw, 120px);
}
@media screen and (min-width: 1024px) {
  .interview-wrapper {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2vw;
  }
}
.interview-profile {
  grid-column: 1/4;
}
.interview-profile__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}
.interview-profile .image {
  width: 100%;
  display: none;
  aspect-ratio: 4/3;
  border-radius: 0 9999px 9999px 0;
  overflow: hidden;
}
.interview-profile .image div {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
}
.interview-profile .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .interview-profile .image {
    display: block;
  }
}
.interview-data {
  color: rgb(0, 0, 0);
}
.interview-data .department,
.interview-data .year {
  font-size: clamp(0.875rem, 0.8535rem + 0.08vw, 0.9375rem);
  line-height: 1.2;
}
.interview-data .inner {
  display: flex;
  align-items: end;
  gap: 10px;
}
.interview-data .name {
  font-size: clamp(1.5rem, 1.328rem + 0.64vw, 2rem);
  font-weight: 600;
  line-height: 1;
}
.interview-contents {
  grid-column: 5/13;
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 8vw, 120px);
}
.interview-section {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 40px);
}
.interview-section .title {
  display: flex;
  flex-direction: column;
  color: var(--accent-color);
}
.interview-section .title .number {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(0.8125rem, 0.748rem + 0.24vw, 1rem);
  font-weight: 500;
}
.interview-section .title .number:after {
  content: "";
  width: 40px;
  height: 1px;
  display: block;
  background-color: var(--accent-color);
}
.interview-section .title .text {
  font-size: clamp(1.25rem, 0.82rem + 1.6vw, 2.5rem);
  font-weight: 500;
  line-height: 1.4;
}
.interview-section .text {
  font-size: clamp(1rem, 0.914rem + 0.32vw, 1.25rem);
  line-height: 2;
}
.interview-insert {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.interview-insert.right {
  border-radius: 0 9999px 9999px 0;
}
.interview-insert.left {
  border-radius: 9999px 0 0 9999px;
}
.interview-insert div {
  border-radius: 10px;
  overflow: hidden;
}
.interview-insert img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.interview-other {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 40px);
}
.interview-other__title {
  padding-inline: 5vw;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--accent-color);
}
.interview-other__title .jp {
  font-size: clamp(1.5rem, 1.156rem + 1.28vw, 2.5rem);
  font-weight: 700;
  line-height: 1.4;
}
.interview-other__title .en {
  font-size: clamp(0.875rem, 0.832rem + 0.16vw, 1rem);
  font-weight: 600;
  line-height: 1.2;
}
.interview-slider {
  padding-inline: 5vw;
  overflow: hidden;
  position: relative;
}
.interview-slider-list {
  padding-block-end: clamp(40px, 5vw, 80px);
  position: relative;
}
.interview-slider-list ul {
  padding: 0;
  list-style: none;
}
.interview-slider-list a {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 2vw, 20px);
  text-decoration: none;
}
.interview-slider-list .image {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 0 9999px 9999px 0;
  overflow: hidden;
}
.interview-slider-list .image div {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
}
.interview-slider-list .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.interview-slider-list .title {
  font-size: clamp(1.25rem, 0.992rem + 0.96vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
}