* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  min-width: 320px;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  padding: 0;
  background: none;
  color: inherit;
  font: inherit;
}

p {
  line-break: strict;
}

.interview__heading {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 15px;
  width: 100%;
  height: 80px;
  background: #f5f3ef;
}
@media screen and (max-width: 768px) {
  .interview__heading {
    display: block;
    padding: 18px 20px 18px;
    height: auto;
  }
}

.interview__en {
  color: #013388;
  font-family: "Roboto", sans-serif, "Arial", "Noto Sans JP", sans-serif;
  font-size: 6.4rem;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .interview__en {
    font-size: 5.4rem;
  }
}

.interview__ja {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .interview__ja {
    margin-top: 4px;
    font-size: 1.5rem;
  }
}

.interview__header-img {
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.interview__header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@media screen and (max-width: 768px) {
  .interview__header-img {
    height: 200px;
  }
}

.interview-list {
  padding-bottom: 100px;
}

.interview-list .interview__slider {
  height: auto;
  overflow: visible;
  max-width: 1030px;
  margin: 80px auto 0;
  padding: 0 15px;
}

.interview-list .interview__track {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 36px;
  height: auto !important;
}

.interview-list .interview-card {
  width: 100%;
  height: auto;
}

.interview-list .interview-card__body {
  padding: 16px 15px 16px 120px;
}

.interview-list .interview-card__person img {
  left: 0;
}

@media screen and (max-width: 900px) {
  .interview-list .interview__track {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .interview-list .interview__slider {
    padding: 0 16px;
  }
  .interview-list .interview__track {
    grid-template-columns: 1fr;
    gap: 72px 0;
  }
  .interview-list .interview-card {
    max-width: min(78vw, 320px);
    margin: 0 auto;
  }
}/*# sourceMappingURL=page_interview_list.css.map */