@charset "UTF-8";
/* ==========================================================================
INTERVIEWアーカイブページ
========================================================================== */
.archive-interview .main-content {
  margin-bottom: -2px;
}

.archive-interview .page-head-inner {
  max-width: 1340px;
  margin: auto;
  padding-top: 110px;
  padding-right: 90px;
  padding-left: 90px;
  padding-bottom: 70px;
}
@media (max-width: 1440px) {
  .archive-interview .page-head-inner {
    padding-top: 7.6388888889vw;
    padding-right: 6.25vw;
    padding-left: 6.25vw;
    padding-bottom: 4.8611111111vw;
  }
}
@media (max-width: 959px) {
  .archive-interview .page-head-inner {
    padding-top: 127px;
    padding-bottom: 0px;
  }
}

.category-box {
  display: flex;
  justify-content: space-between;
  max-width: 1160px;
  margin: auto;
}
@media (max-width: 959px) {
  .category-box {
    flex-direction: column;
  }
}

.category-title {
  font-family: "shippori-antique-b1", sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 20.88%;
  line-height: 1;
  margin-right: 50px;
  font-size: 32px;
}
@media (max-width: 1440px) {
  .category-title {
    margin-right: 3.4722222222vw;
    font-size: 2.2222222222vw;
  }
}
@media (max-width: 959px) {
  .category-title {
    width: 100%;
    margin-right: 0;
    font-size: 15px;
    margin-bottom: 20px;
  }
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
@media (max-width: 1440px) {
  .category-list {
    gap: 1.25vw;
  }
}
@media (max-width: 959px) {
  .category-list {
    gap: 10px;
  }
}

.category-item {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
@media (max-width: 1440px) {
  .category-item {
    border-radius: 3.4722222222vw;
    font-size: 1.25vw;
  }
}
@media (max-width: 959px) {
  .category-item {
    border-radius: 50px;
    font-size: 14px;
  }
}
.category-item.current a {
  background: #e6e6e6;
  color: #053c7e;
}

.category-item a {
  background: #053c7e;
  border-radius: 50px;
  padding: 0 18px;
  line-height: 40px;
}
@media (max-width: 1440px) {
  .category-item a {
    padding: 0 1.25vw;
    line-height: 2.7777777778vw;
  }
}
@media (max-width: 959px) {
  .category-item a {
    padding: 0 10px;
    line-height: 32px;
  }
}
@media (hover: hover) {
  .category-item a:hover {
    background: #e6e6e6;
    color: #053c7e;
  }
}

.interview-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 959px) {
  .interview-list {
    grid-template-columns: 1fr 1fr;
  }
}

.interview-item.border-height--right::before {
  background: #053c7e;
  content: "";
  position: absolute;
  display: block;
  right: 0;
  top: 0;
  width: 2px;
  height: 0;
  transition: height 0.5s 0.2s cubic-bezier(0, 0, 0, 1.02);
  z-index: 3;
}
@media (max-width: 959px) {
  .interview-item.border-height--right::before {
    width: 1px;
  }
}

.interview-item.border-height--right.active::before {
  height: 100%;
}

.interview-item.border-height--right.active::after {
  height: 2px;
  top: auto;
}
@media (max-width: 959px) {
  .interview-item.border-height--right.active::after {
    height: 1px;
  }
}

.interview-item:nth-child(3n) {
  border-right: none;
}

.interview-item-link {
  display: block;
  cursor: pointer;
  height: 100%;
  position: relative;
}

.interview-item-link .btn {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.interview-item-img {
  position: relative;
  overflow: hidden;
  max-height: 356px;
}
@media (max-width: 1440px) {
  .interview-item-img {
    max-height: 24.7222222222vw;
  }
}
@media (max-width: 959px) {
  .interview-item-img {
    max-height: 100%;
  }
}

.interview-item-img img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.interview-item-img .interview-item-img01 {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 2;
  position: relative;
}
@media (max-width: 959px) {
  .interview-item-img .interview-item-img01 {
    opacity: 1;
    visibility: visible;
  }
}

.interview-item-img .interview-item-img02 {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease;
  z-index: 1;
}
@media (max-width: 959px) {
  .interview-item-img .interview-item-img02 {
    display: none;
  }
}

.interview-item .num-box {
  position: absolute;
  left: 25px;
  top: 25px;
}
@media (max-width: 1440px) {
  .interview-item .num-box {
    left: 1.7361111111vw;
    top: 1.7361111111vw;
  }
}

.interview-item .num-box .num {
  letter-spacing: 0.06em;
  position: relative;
  z-index: 3;
  font-size: 24px;
}
@media (max-width: 1440px) {
  .interview-item .num-box .num {
    font-size: 1.6666666667vw;
  }
}

.interview-item-contents {
  padding: 30px;
  position: relative;
}
@media (max-width: 1440px) {
  .interview-item-contents {
    padding: 2.0833333333vw;
  }
}
@media (max-width: 959px) {
  .interview-item-contents {
    padding: 10px 15px;
  }
}

.interview-item-link {
  transition: transform 0.3s, opacity 0.5s ease-in-out 0.7s, width 0.5s 0.2s cubic-bezier(0, 0, 0, 1.02), height 0.5s 0.2s cubic-bezier(0, 0, 0, 1.02);
}
@media (hover: hover) {
  .interview-item-link:hover .interview-item-img01 {
    opacity: 1;
    visibility: visible;
  }
  .interview-item-link:hover .interview-item-img01,
  .interview-item-link:hover .interview-item-img02 {
    scale: 1.03;
  }
  .interview-item-link:hover .btn-arrow::before,
  .interview-item-link:hover .btn-arrow::after {
    transform: translateX(120%);
  }
}

.interview-item-link .btn {
  position: absolute;
  right: 25px;
}
@media (max-width: 959px) {
  .interview-item-link .btn {
    display: none;
  }
}

.interview-item-name {
  letter-spacing: 0;
  font-size: 29px;
  line-height: 1;
}
@media (max-width: 1440px) {
  .interview-item-name {
    font-size: 2.0138888889vw;
  }
}
@media (max-width: 959px) {
  .interview-item-name {
    font-size: 15px;
  }
}

.interview-item-info {
  letter-spacing: 0.06em;
  margin-top: 10px;
  padding-right: 45px;
  font-size: 18px;
}
@media (max-width: 1440px) {
  .interview-item-info {
    margin-top: 0.6944444444vw;
    padding-right: 3.125vw;
    font-size: 1.25vw;
  }
}
@media (max-width: 959px) {
  .interview-item-info {
    margin-top: 5px;
    font-size: 12px;
    padding-right: 0;
    line-height: 1.2;
  }
}

.interview-item .category-list {
  margin-top: 10px;
  gap: 8px;
}
@media (max-width: 1440px) {
  .interview-item .category-list {
    margin-top: 0.6944444444vw;
    gap: 0.5555555556vw;
  }
}
@media (max-width: 959px) {
  .interview-item .category-list {
    margin-top: 10px;
    gap: 8px;
  }
}

.interview-item .category-item {
  background: #053c7e;
  font-size: 12px;
  line-height: 30px;
  padding: 0 8px;
  border-radius: 50px;
}
@media (max-width: 1440px) {
  .interview-item .category-item {
    font-size: 0.8333333333vw;
    line-height: 2.0833333333vw;
    padding: 0 0.5555555556vw;
    border-radius: 3.4722222222vw;
  }
}
@media (max-width: 959px) {
  .interview-item .category-item {
    font-size: 10px;
    line-height: 23px;
    padding: 0 5px;
    border-radius: 50px;
  }
}

.interview-item .btn {
  right: 30px;
  top: 30px;
  transform: translateY(0);
}
@media (max-width: 1440px) {
  .interview-item .btn {
    right: 2.0833333333vw;
    top: 2.0833333333vw;
  }
}

.interview-item .btn-circle {
  width: 48px;
  height: 48px;
}
@media (max-width: 1440px) {
  .interview-item .btn-circle {
    width: 3.3333333333vw;
    height: 3.3333333333vw;
  }
}
.interview-item .btn-circle .btn-arrow {
  width: 27px;
  height: 15px;
}
@media (max-width: 1440px) {
  .interview-item .btn-circle .btn-arrow {
    width: 1.875vw;
    height: 1.0416666667vw;
  }
}
.interview-item .btn-circle .btn-arrow::before,
.interview-item .btn-circle .btn-arrow::after {
  background: url("./img/common/btn-arrow-blue.svg") no-repeat center center/27px 15px;
  width: 27px;
  height: 15px;
}
@media (max-width: 1440px) {
  .interview-item .btn-circle .btn-arrow::before,
  .interview-item .btn-circle .btn-arrow::after {
    background: url("./img/common/btn-arrow-blue.svg") no-repeat center center/1.875vw 1.0416666667vw;
    width: 1.875vw;
    height: 1.0416666667vw;
  }
}

.no-post {
  text-align: center;
}

/* ==========================================================================
INTERVIEW詳細ページ
========================================================================== */
.single-head {
  height: 780px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  background-size: cover;
  position: relative;
  background-color: transparent;
}
@media (max-width: 1440px) {
  .single-head {
    height: 54.1666666667vw;
  }
}
@media (max-width: 959px) {
  .single-head {
    height: 480px;
  }
}
.single-head::before {
  background: url("./img/interview/interview-title-bg.svg") no-repeat center center/cover;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  z-index: 0;
}
@media (max-width: 959px) {
  .single-head::before {
    background: url("./img/interview/interview-title-bg-sp.svg") no-repeat center center/cover;
  }
}

.single-head-inner {
  position: relative;
  z-index: 1;
  padding: 50px 60px;
}
@media (max-width: 1440px) {
  .single-head-inner {
    padding: 3.4722222222vw 4.1666666667vw;
  }
}
@media (max-width: 959px) {
  .single-head-inner {
    padding: 20px;
  }
}
.single-head-inner .en {
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.12em;
}
@media (max-width: 1440px) {
  .single-head-inner .en {
    font-size: 1.3888888889vw;
  }
}
@media (max-width: 959px) {
  .single-head-inner .en {
    display: none;
  }
}

.single-head-title {
  color: #fff;
  font-size: 38px;
  line-height: 1.7894736842;
  letter-spacing: 0.12em;
}
@media (max-width: 1440px) {
  .single-head-title {
    font-size: 2.6388888889vw;
  }
}
@media (max-width: 959px) {
  .single-head-title {
    font-size: 20px;
  }
}

.interview-profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 959px) {
  .interview-profile {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

.interview-profile-name {
  font-size: 42px;
  line-height: 1.75;
  letter-spacing: 0.12em;
  padding: 20px 50px;
  line-height: 1;
}
@media (max-width: 1440px) {
  .interview-profile-name {
    font-size: 2.9166666667vw;
    padding: 1.3888888889vw 3.4722222222vw;
  }
}
@media (max-width: 959px) {
  .interview-profile-name {
    font-size: 18px;
    padding: 20px;
  }
}

.interview-profile-info {
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.06em;
  line-height: 1.75;
  text-align: right;
  font-size: 20px;
  padding: 24px 40px;
}
@media (max-width: 1440px) {
  .interview-profile-info {
    font-size: 1.3888888889vw;
    padding: 1.6666666667vw 2.7777777778vw;
  }
}
@media (max-width: 959px) {
  .interview-profile-info {
    font-size: 12px;
    padding: 20px;
    width: 100%;
    justify-content: flex-start;
  }
  .interview-profile-info.border-height--left::before {
    width: 0;
    height: 1px;
    transition: width 0.5s cubic-bezier(0, 0, 0, 1.02);
    bottom: auto;
    top: 0;
  }
  .interview-profile-info.border-height--left.active::before {
    width: 100%;
  }
}

/* ==================================
インタビューコンテンツ
================================== */
.interview-contents {
  display: flex;
}
@media (max-width: 959px) {
  .interview-contents .width50 {
    display: none;
  }
}

.interview-contents .inner {
  padding-top: 100px;
  padding-bottom: 0;
}
@media (max-width: 1440px) {
  .interview-contents .inner {
    padding-top: 6.9444444444vw;
  }
}
@media (max-width: 959px) {
  .interview-contents .inner {
    padding: 30px 40px;
  }
}

.interview-content {
  max-width: 990px;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .interview-content {
    max-width: 68.75vw;
  }
}
@media (max-width: 959px) {
  .interview-content {
    max-width: 100%;
  }
}

.interview-content:not(:first-child) {
  margin-top: 50px;
}
@media (max-width: 1440px) {
  .interview-content:not(:first-child) {
    margin-top: 3.4722222222vw;
  }
}
@media (max-width: 959px) {
  .interview-content:not(:first-child) {
    margin-top: 30px;
  }
}

.interview-content-title {
  font-size: 34px;
  line-height: 1.75;
  letter-spacing: 0.12em;
}
@media (max-width: 1440px) {
  .interview-content-title {
    font-size: 2.3611111111vw;
  }
}
@media (max-width: 959px) {
  .interview-content-title {
    font-size: 18px;
    line-height: 1.75;
  }
}

.interview-content-text {
  line-height: 2.2727272727;
  letter-spacing: 0.08em;
  font-family: "kinto-sans", sans-serif;
  font-size: 22px;
  margin-top: 30px;
}
@media (max-width: 1440px) {
  .interview-content-text {
    font-size: 1.5277777778vw;
    margin-top: 2.0833333333vw;
  }
}
@media (max-width: 959px) {
  .interview-content-text {
    font-size: 14px;
    margin-top: 30px;
  }
}

.interview-content-text + .interview-content-text {
  margin-top: 30px;
}
@media (max-width: 1440px) {
  .interview-content-text + .interview-content-text {
    margin-top: 2.0833333333vw;
  }
}

.interview-content-img {
  width: calc(100vw - 100px);
  margin: 100px auto 100px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1440px) {
  .interview-content-img {
    width: 93.06vw;
    margin: 6.9444444444vw auto 6.9444444444vw;
  }
}
@media (max-width: 959px) {
  .interview-content-img {
    width: calc(100vw + 80px);
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.interview-content-img img {
  width: 100%;
}
@media (max-width: 959px) {
  .interview-content-img img {
    aspect-ratio: 296/266;
    object-fit: cover;
  }
}

.interview-slide-single .border-width--top.active::before,
.interview-slide-single .border-width--bottom.active::after {
  width: 125vw !important;
  margin-inline: calc(50% - 62.5vw + 50px);
  position: relative;
  z-index: 4;
  padding-inline: 25vw;
}
@media (max-width: 1440px) {
  .interview-slide-single .border-width--top.active::before,
  .interview-slide-single .border-width--bottom.active::after {
    margin-inline: calc(50% - 62.5vw + 3.4722vw);
  }
}
@media (max-width: 959px) {
  .interview-slide-single .border-width--top.active::before,
  .interview-slide-single .border-width--bottom.active::after {
    margin-inline: calc(50% - 62.5vw);
  }
}

.swiper-interview-single {
  width: 100vw;
  margin: 100px calc(50% - 50vw);
  position: relative;
  z-index: 4;
}
@media (max-width: 1440px) {
  .swiper-interview-single {
    margin: 6.9444444444vw calc(50% - 50vw);
  }
}
@media (max-width: 959px) {
  .swiper-interview-single {
    margin: 30px calc(50% - 50vw);
  }
}

.interview-contents .interview-slide-single-item {
  width: 100%;
}

.interview-contents .interview-slide-single-item img {
  width: 100%;
}
@media (max-width: 959px) {
  .interview-contents .interview-slide-single-item img {
    aspect-ratio: 376/336;
    object-fit: cover;
  }
}

/* ==================================
1日のスケジュール
================================== */
.interview-schedule {
  display: flex;
  margin-bottom: -2px;
}
@media (max-width: 959px) {
  .interview-schedule {
    flex-direction: column;
  }
}

.interview-schedule .border-height--left {
  min-width: 50px;
}
@media (max-width: 1440px) {
  .interview-schedule .border-height--left {
    min-width: 3.4722222222vw;
  }
}
@media (max-width: 959px) {
  .interview-schedule .border-height--left {
    min-width: initial;
  }
}

.interview-schedule-title {
  width: 175px;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 50px;
}
@media (max-width: 1440px) {
  .interview-schedule-title {
    width: 12.1527777778vw;
    padding: 3.4722222222vw;
  }
}
@media (max-width: 959px) {
  .interview-schedule-title {
    width: 100%;
    padding: 20px;
  }
}
@media (max-width: 959px) {
  .interview-schedule-title .section-title--large {
    width: 100%;
    flex-direction: row;
    align-items: flex-end;
  }
  .interview-schedule-title .section-title--large .en {
    font-size: 30px;
  }
  .interview-schedule-title .section-title--large .ja {
    font-size: 16px;
  }
}
.interview-schedule-title .section-title--large .beside {
  writing-mode: initial;
  letter-spacing: 0;
}

.interview-schedule-content {
  width: 100%;
}

@media (max-width: 959px) {
  .interview-schedule-list {
    border-top: 1px solid;
  }
}

.interview-schedule-item {
  display: flex;
}
.interview-schedule-item:nth-child(odd) {
  background: #f1f1f1;
}
.interview-schedule-item:last-child .interview-schedule-left::before {
  content: none;
}

.interview-schedule-left {
  padding: 65px 0;
  min-width: 182px;
}
@media (max-width: 1440px) {
  .interview-schedule-left {
    padding: 4.5138888889vw 0;
    min-width: 12.6388888889vw;
  }
}
@media (max-width: 959px) {
  .interview-schedule-left {
    padding: 20px;
    min-width: 90px;
    display: flex;
    align-items: center;
  }
}
.interview-schedule-left .interview-schedule-date {
  font-size: 26px;
  letter-spacing: 0.12em;
  text-align: center;
}
@media (max-width: 1440px) {
  .interview-schedule-left .interview-schedule-date {
    font-size: 1.8055555556vw;
  }
}
@media (max-width: 959px) {
  .interview-schedule-left .interview-schedule-date {
    font-size: 13px;
  }
}
.interview-schedule-left::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  border: 2px solid #053c7e;
  z-index: 5;
  border-radius: 50px;
  background: url("./img/common/btn-arrow-blue.svg") no-repeat center center/20px 20px #f1f1f1;
  width: 35px;
  height: 35px;
  bottom: -17px;
}
@media (max-width: 1440px) {
  .interview-schedule-left::before {
    background: url("./img/common/btn-arrow-blue.svg") no-repeat center center/1.3888888889vw 1.3888888889vw #f1f1f1;
    width: 2.4305555556vw;
    height: 2.4305555556vw;
    bottom: -1.1805555556vw;
  }
}
@media (max-width: 959px) {
  .interview-schedule-left::before {
    background: url("./img/common/btn-arrow-blue.svg") no-repeat center center/12px 12px #f1f1f1;
    width: 22px;
    height: 22px;
    bottom: -10px;
  }
}

.interview-schedule-right {
  font-family: "kinto-sans", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 35px;
}
@media (max-width: 1440px) {
  .interview-schedule-right {
    padding: 2.4305555556vw;
  }
}
@media (max-width: 959px) {
  .interview-schedule-right {
    padding: 15px 20px;
  }
}
.interview-schedule-right .interview-schedule-item-title {
  font-weight: 500;
  font-size: 22px;
}
@media (max-width: 1440px) {
  .interview-schedule-right .interview-schedule-item-title {
    font-size: 1.5277777778vw;
  }
}
@media (max-width: 959px) {
  .interview-schedule-right .interview-schedule-item-title {
    font-size: 14px;
  }
}
.interview-schedule-right .interview-schedule-text {
  margin-top: 10px;
  font-size: 20px;
}
@media (max-width: 1440px) {
  .interview-schedule-right .interview-schedule-text {
    margin-top: 0.6944444444vw;
    font-size: 1.3888888889vw;
  }
}
@media (max-width: 959px) {
  .interview-schedule-right .interview-schedule-text {
    font-size: 12px;
  }
}

/* ==================================
ほかのインタビューを見る
================================== */
.single-interview .section-head-inner {
  background: #053c7e;
  color: #fff;
  padding: 50px;
  display: flex;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
  justify-content: space-between;
}
@media (max-width: 959px) {
  .single-interview .section-head-inner {
    padding: 0px;
    flex-direction: column;
  }
}
@media (max-width: 959px) {
  .single-interview .section-head-inner .section-title {
    padding: 20px;
  }
}
.single-interview .section-head-inner .section-title .ja {
  font-size: 40px;
}
@media (max-width: 1440px) {
  .single-interview .section-head-inner .section-title .ja {
    font-size: 2.7777777778vw;
  }
}
@media (max-width: 959px) {
  .single-interview .section-head-inner .section-title .ja {
    font-size: 20px;
  }
}

.swiper-controls {
  display: flex;
  justify-content: space-between;
  height: 144px;
}
@media (max-width: 1440px) {
  .swiper-controls {
    height: 10vw;
  }
}
@media (max-width: 959px) {
  .swiper-controls {
    background: #053c7e;
    height: 50px;
    order: 1;
    border-top: 1px solid #fff;
  }
}

.swiper-pagination {
  position: relative;
  width: 455px;
  border-left: 2px solid #fff;
}
@media (max-width: 1440px) {
  .swiper-pagination {
    width: 31.5972222222vw;
  }
}
@media (max-width: 959px) {
  .swiper-pagination {
    width: 100%;
    border-left: none;
    font-size: 14px;
  }
}

.swiper-pagination-fraction {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0;
  font-size: 30px;
  width: 188px;
  margin: 0 134px;
  border-right: 2px solid #fff;
  border-left: 2px solid #fff;
}
@media (max-width: 1440px) {
  .swiper-pagination-fraction {
    font-size: 2.0833333333vw;
    width: 13.0555555556vw;
    margin: 0 9.3055555556vw;
  }
}
@media (max-width: 959px) {
  .swiper-pagination-fraction {
    font-size: 14px;
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    color: #fff;
    width: auto;
    margin: 0 50px;
  }
}

.swiper-button-next,
.swiper-button-prev {
  z-index: 100;
  background: url("./img/common/btn-arrow.svg") no-repeat center center/34px 20px;
  width: 134px;
  padding: 43px;
  margin-top: -43px;
}
@media (max-width: 1440px) {
  .swiper-button-next,
  .swiper-button-prev {
    background: url("./img/common/btn-arrow.svg") no-repeat center center/2.3611111111vw 1.3888888889vw;
    width: 9.3055555556vw;
    padding: 2.9861111111vw;
    margin-top: -2.9861111111vw;
  }
}
@media (max-width: 959px) {
  .swiper-button-next,
  .swiper-button-prev {
    background: url("./img/common/btn-arrow.svg") no-repeat center center/17px 10px;
    width: 17px;
    padding: 25px;
    margin-top: -25px;
  }
}
@media (hover: hover) {
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    opacity: 0.7;
  }
}

.swiper-button-prev {
  left: 0px;
  transform: rotate(180deg);
}

.swiper-button-next {
  right: 0px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  content: none;
}

.interview .swiper-slide {
  width: 420px;
  height: 562px;
}
@media (max-width: 1440px) {
  .interview .swiper-slide {
    height: auto;
  }
}
.interview .swiper-slide .interview-item-img {
  max-height: initial;
}
.interview .swiper-slide img {
  aspect-ratio: 420/562;
}

.interview .interview-slide-box {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  color: #fff;
  padding: 20px 15px;
}
@media (max-width: 1440px) {
  .interview .interview-slide-box {
    padding: 1.3888888889vw 1.0416666667vw;
  }
}
@media (max-width: 959px) {
  .interview .interview-slide-box {
    padding: 15px;
  }
}

.interview .interview-item-link .btn {
  position: absolute;
  right: 25px;
  top: auto;
  transform: none;
  bottom: 20px;
  z-index: 1;
}
@media (max-width: 1440px) {
  .interview .interview-item-link .btn {
    right: 1.7361111111vw;
    bottom: 1.3888888889vw;
  }
}
@media (max-width: 959px) {
  .interview .interview-item-link .btn {
    right: 15px;
    bottom: 15px;
  }
}

.list-btn {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 959px) {
  .list-btn .width50 {
    display: none;
  }
}

.list-btn-content {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px;
}
@media (max-width: 1440px) {
  .list-btn-content {
    padding: 3.4722222222vw;
  }
}
@media (max-width: 959px) {
  .list-btn-content {
    padding: 15px;
  }
}
.list-btn-content .en {
  font-size: 24px;
  letter-spacing: 0.12em;
}
@media (max-width: 1440px) {
  .list-btn-content .en {
    font-size: 1.6666666667vw;
  }
}
@media (max-width: 959px) {
  .list-btn-content .en {
    font-size: 12px;
  }
}
.list-btn-content .list-btn-text {
  font-size: 40px;
  margin-top: 5px;
  letter-spacing: 0.12em;
}
@media (max-width: 1440px) {
  .list-btn-content .list-btn-text {
    font-size: 2.7777777778vw;
    margin-top: 0.3472222222vw;
  }
}
@media (max-width: 959px) {
  .list-btn-content .list-btn-text {
    font-size: 20px;
  }
}
.list-btn-content .btn {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1440px) {
  .list-btn-content .btn {
    right: 3.4722222222vw;
  }
}
@media (max-width: 959px) {
  .list-btn-content .btn {
    right: 20px;
  }
}/*# sourceMappingURL=interview.css.map */