@charset "UTF-8";

@media print, screen {
  :root {
    /* ==================== color ==================== */
    --color-key: #2E2E63;
    --color-yellow: #FFF845;
    --color-green: #C9C461;
    --color-blue-2: #9494B1;
  }
}
.interview .interview-inner {
  width: 100%;
  max-width: 1320px;
  padding: 0 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
@media screen and (max-width: 960px) {
  .interview .interview-inner {
    max-width: calc(1280px + 6%);
    padding: 0 3%;
  }
}
@media screen and (max-width: 420px) {
  .interview .interview-inner {
    width: 100%;
    max-width: 390px;
    padding: 0 80px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 420px) and (max-width: 960px) {
  .interview .interview-inner {
    max-width: calc(350px + 6%);
    padding: 0 3%;
  }
}
.interview .interview-wrap {
  background-color: #fff;
  padding-top: 178px;
  padding-bottom: 232px;
}
@media screen and (max-width: 420px) {
  .interview .interview-wrap {
    padding-top: 102px;
    padding-bottom: 184px;
  }
}
.interview .interview-list {
  width: 100%;
  max-width: calc(998px + 0%);
  padding: 0 0%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 90px 38px;
}
@media screen and (max-width: 960px) {
  .interview .interview-list {
    max-width: calc(998px + 0%);
    padding: 0 0%;
  }
}
@media screen and (max-width: 420px) {
  .interview .interview-list {
    width: 100%;
    max-width: 340px;
    padding: 0 80px;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 45px;
  }
}
@media screen and (max-width: 420px) and (max-width: 960px) {
  .interview .interview-list {
    max-width: calc(300px + 0%);
    padding: 0 0%;
  }
}
.interview .interview-list .interview-item {
  width: calc((100% - 76px) / 3);
}
@media screen and (max-width: 420px) {
  .interview .interview-list .interview-item {
    width: 100%;
  }
}
.interview .interview-list .interview-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
  gap: 27px;
  -webkit-transition: all 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (max-width: 750px) {
  .interview .interview-list .interview-item a {
    gap: 30px;
  }
}
@media (hover: hover) {
  .interview .interview-list .interview-item a:hover img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.interview .interview-list .interview-item .interview-item-img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.interview .interview-list .interview-item .interview-item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.interview .interview-list .interview-item .interview-item-box {
  margin-top: 2px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.interview .interview-list .interview-item .interview-title {
  color: #222;
  font-size: clamp(22px, 1.625vw + 0.2rem, 26px);
  font-weight: 700;
  line-height: 140%; /* 36.4px */
}
.interview .interview-list .interview-item .interview-date {
  color: #222;
  font-size: clamp(13px, 0.875vw + 0.2rem, 14px);
  font-weight: 500;
  line-height: 30px; /* 187.5% */
  letter-spacing: 0.8px;
}
@media screen and (max-width: 420px) {
  .interview .interview-list .interview-item .interview-date {
    margin-top: 3px;
  }
}
.interview .interview-list .interview-item .interview-item-title {
  color: #222;
  font-size: 20px;
  font-weight: 700;
  line-height: 170%; /* 34px */
  letter-spacing: 1px;
  margin-top: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}