@charset "utf-8";

/* subheader
------------------------------*/
.p-subheader {
  padding: 95px 0 85px;
  background-color: rgba(255, 255, 255, 0.8);
}

@media all and (max-width: 576px) {
  .p-subheader {
    padding: 70px 25px 50px;
  }
}

.p-subheader__inner {
  width: min(966px, 96.6rem);
  margin: 0 auto;
}

@media all and (max-width: 576px) {
  .p-subheader__inner {
    width: 100%;
  }
}

.p-subheader .p-subheader__inner .c-bread {
  width: 100%;
  padding: 0;
}

.p-subheader__heading {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #140078;
  margin: 0;
}

@media all and (max-width: 576px) {
  .p-subheader__heading {
    font-size: 26px;
  }
}

/* subcontent
------------------------------*/
.p-subcontent {
  padding: 80px 0 150px;
}

@media all and (max-width: 576px) {
  .p-subcontent {
    padding: 60px 25px 80px;
  }
}

.p-subcontent__inner {
  width: min(966px, 96.6rem);
  margin: 0 auto;
}
@media all and (max-width: 576px) {
  .p-subcontent__inner {
    width: 100%;
  }
}


/* list
------------------------------*/
.p-list {
}

.p-list__container {
  display: grid;
  row-gap: 30px;
}

.p-list__item {
}

.p-list__frame {
  display: flex;
  justify-content: space-between;
  column-gap: 14px;
  min-height: min(340px, 34rem);
  overflow: hidden;
  background-image: url("../images/interview/bg_frame.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-sizing: border-box;
}
@media all and (max-width: 966px) {
  .p-list__frame {
    flex-direction: column-reverse;
    min-height: auto;
    background-image: url("../images/interview/bg_frame-sp.jpg");
    background-position: bottom center;
  }
}

@media (hover: hover) {
  .p-list__frame:hover .p-list__arrow i {
    background-color: #140078;
  }
  .p-list__frame:hover .p-list__arrow i::before {
    background-color: #ffffff;
  }
  .p-list__frame:hover .p-list__thumbFrame img {
    transform: scale(1.05);
  }
}

.p-list__main {
  width: calc(455 / 966 * 100%);
  display: flex;
  flex-direction: column;
  padding-block: min(52px, 5.2rem);
  padding-left: min(56px, 5.6rem);
}
@media all and (max-width: 966px) {
  .p-list__main {
    width: 100%;
    padding-block: 28px 40px;
    padding-inline: 26px;
  }
}

.p-list__heading {
  display: flex;
  flex-direction: column-reverse;
  row-gap: min(10px, 1rem);
}
@media all and (max-width: 966px) {
  .p-list__heading {
    row-gap: 10px;
  }
}

.p-list__title {
  margin: 0;
  font-size: min(28px, 2.8rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #ffffff;
}
@media all and (max-width: 966px) {
  .p-list__title {
    font-size: 26px;
    min-height: calc(4 * 1.5em);
  }
}
@media all and (max-width: 576px) {
  .p-list__title {
    font-size: 18px;
  }
}

.p-list__title span {
  display: block;
}

.p-list__label {
  margin: 0;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #ffffff;
}

.p-list__arrow {
  display: flex;
  margin-top: auto;
}
@media all and (max-width: 966px) {
  .p-list__arrow {
    margin-top: 20px;
  }
}

.p-list__arrow i {
  display: inline-block;
  width: 56px;
  aspect-ratio: 56 / 20;
  border-radius: 9999px;
  background-color: #ffffff;
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease-out;
  vertical-align: -0.45em;
  transition: all 0.3s ease-out;
}
.p-list__arrow i::before {
  content: '';
  display: block;
  width: 15px;
  aspect-ratio: 15 / 9;
  mask-image: url(../images/common/ico_arrow.svg);
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: contain;
  background-color: #140078;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  transition: all 0.3s ease-out;
}

.p-list__thumb {
  width: calc(516 / 966 * 100%);
  mask-image: url(../images/interview/thumb_mask.jpg);
  mask-size: 100% 100%;
  overflow: hidden;
}
@media all and (max-width: 966px) {
  .p-list__thumb {
    mask-image: url(../images/interview/thumb_mask-sp.jpg);
    width: 100%;
  }
}
@media all and (max-width: 576px) {
  .p-list__thumb {
    mask-image: url(../images/interview/thumb_mask-sp.jpg);
    aspect-ratio: unset;
  }
}

.p-list__thumbFrame {
  display: flex;
  height: 100%;
  width: 100%;
}

.p-list__thumbFrame img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transform-origin: center;
  transition: transform 0.3s ease-out;
}

