@charset "UTF-8";
strong {
  font-weight: 700;
}

.sec-interview-mv {
  position: relative;
  display: block;
  top: 60px;
  margin-bottom: 60px;
}
.sec-interview-mv .mv {
  position: relative;
  display: block;
  background-image: url(../img/interview/interview-main.jpg);
  width: 100vw;
  height: 22vw;
  background-size: cover;
  background-position: center;
}

.overray {
  z-index: 5;
  background-color: #385A4E;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  opacity: 0.4;
}

.mv-title {
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: rgb(255, 255, 255);
}
.mv-title h2 {
  position: relative;
  text-align: center;
  font-size: 64px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .mv-title h2 {
    font-size: 36px;
  }
}
.mv-title .sub-title {
  position: relative;
  text-align: center;
}
.mv-title .sub-title::before {
  content: "";
  position: relative;
  display: inline-block;
  height: 2px;
  width: 270px;
  top: -4px;
  background-color: rgb(255, 255, 255);
  margin-right: 20px;
}
.mv-title .sub-title::after {
  content: "";
  position: relative;
  display: inline-block;
  height: 2px;
  width: 270px;
  top: -4px;
  background-color: rgb(255, 255, 255);
  margin-left: 20px;
}
@media (max-width: 768px) {
  .mv-title .sub-title::before {
    width: 50px;
  }
  .mv-title .sub-title::after {
    width: 50px;
  }
}

.sec-interview-list {
  padding: 30px 0;
  background-color: rgb(246, 250, 251);
}
.sec-interview-list .l-inner {
  max-width: 1100px;
  width: 90%;
  margin: auto;
}
.sec-interview-list .l-inner .interview-title h2 {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  color: #202020;
}
@media (max-width: 960px) {
  .sec-interview-list .l-inner .interview-title h2 {
    font-size: 26px;
  }
}
.sec-interview-list .l-inner .interview-title h2:first-letter {
  color: rgb(58, 192, 145);
}
.sec-interview-list .l-inner .interview-title .sub-title {
  color: rgb(183, 192, 191);
  text-align: center;
}
.sec-interview-list .l-inner .interview-title .sub-title::before {
  content: "";
  position: relative;
  top: -3px;
  display: inline-block;
  margin-right: 10px;
  height: 2px;
  width: 150px;
  background-color: #202020;
}
@media (max-width: 960px) {
  .sec-interview-list .l-inner .interview-title .sub-title::before {
    width: 50px;
  }
}
.sec-interview-list .l-inner .interview-title .sub-title::after {
  content: "";
  position: relative;
  top: -3px;
  display: inline-block;
  margin-left: 10px;
  height: 2px;
  width: 150px;
  background-color: #202020;
}
@media (max-width: 960px) {
  .sec-interview-list .l-inner .interview-title .sub-title::after {
    width: 50px;
  }
}
.sec-interview-list .l-inner .interview-list {
  padding: 50px 0;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 32px 0;
}
@media (max-width: 960px) {
  .sec-interview-list .l-inner .interview-list {
    display: block;
  }
}
.sec-interview-list .l-inner .interview-list .no-post {
  text-align: center;
  width: 100%;
}
.sec-interview-list .l-inner .interview-list .interview-item {
  position: relative;
  width: 330px;
  height: 100px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 20px;
}
@media (max-width: 960px) {
  .sec-interview-list .l-inner .interview-list .interview-item {
    margin: 30px auto;
  }
  .sec-interview-list .l-inner .interview-list .interview-item + .interview-item {
    margin-top: 32px;
  }
}
.sec-interview-list .l-inner .interview-list .interview-item a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.sec-interview-list .l-inner .interview-list .interview-item a::after {
  position: absolute;
  bottom: 20px;
  right: 20px;
  content: "";
  display: inline;
  background-image: url(../img/common/btn-corporate.svg);
  width: 30px;
  height: 30px;
  z-index: 10;
}
.sec-interview-list .l-inner .interview-list .interview-item a::after:hover {
  background-position: right center;
}
.sec-interview-list .l-inner .interview-list .interview-item a .thumbnail {
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: 0.3s;
}
.sec-interview-list .l-inner .interview-list .interview-item a .thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-interview-list .l-inner .interview-list .interview-item a:hover .thumbnail {
  transform: scale(1.1);
}
.sec-interview-list .l-inner .interview-list .interview-item a .employee-info {
  position: absolute;
  width: 100%;
  height: 100px;
  bottom: 0;
  background-color: #202020;
  opacity: 0.6;
  z-index: 5;
  color: rgb(255, 255, 255);
  padding: 10px;
}
@media (max-width: 960px) {
  .sec-interview-list .l-inner .interview-list .interview-item a .employee-info {
    padding: 14px 10px 10px;
  }
}
.sec-interview-list .l-inner .interview-list .interview-item a .employee-info .department {
  position: relative;
}

.sec-interview {
  padding: 65px 0;
}
.sec-interview .interview-item {
  position: relative;
  padding: 65px 0 30px;
  width: 100vw;
}
.sec-interview .interview-item + .interview-item {
  margin-top: 60px;
}
.sec-interview .interview-item .index {
  position: absolute;
  top: 0;
  left: 10%;
  max-width: 445px;
  width: 70%;
  height: 135px;
  z-index: 20;
}
.sec-interview .interview-item .index img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 960px) {
  .sec-interview .interview-item .index {
    left: 50%;
    transform: translateX(-50%);
  }
}
.sec-interview .interview-item .copy-box {
  position: relative;
  height: 41vw;
  width: 100vw;
}
@media (max-width: 960px) {
  .sec-interview .interview-item .copy-box {
    height: auto;
  }
}
.sec-interview .interview-item .copy-box .description-box {
  position: relative;
  width: 46vw;
  left: 54vw;
  background: linear-gradient(90deg, #119844 0%, #3fd19e 50%, #119844);
  background-size: 200% auto;
  z-index: 15;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  padding: 40px 60px;
  color: rgb(255, 255, 255);
}
@media (max-width: 960px) {
  .sec-interview .interview-item .copy-box .description-box {
    padding: 20px;
    width: 90%;
    margin: auto;
    left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
.sec-interview .interview-item .copy-box .description-box .catch-copy {
  font-size: 36px;
  font-weight: 700;
}
@media (max-width: 1200px) {
  .sec-interview .interview-item .copy-box .description-box .catch-copy {
    font-size: 28px;
  }
}
@media (max-width: 960px) {
  .sec-interview .interview-item .copy-box .description-box .catch-copy {
    font-size: 22px;
  }
}
.sec-interview .interview-item .copy-box .description-box .department {
  margin: 20px auto 10px;
}
@media (max-width: 960px) {
  .sec-interview .interview-item .copy-box .description-box .department {
    margin: 10px auto;
  }
}
.sec-interview .interview-item .copy-box .description-box .name {
  margin-bottom: 40px;
  font-size: 26px;
  font-weight: 700;
  width: 70%;
}
@media (max-width: 960px) {
  .sec-interview .interview-item .copy-box .description-box .name {
    width: 100%;
    margin-bottom: 20px;
    font-size: 22px;
  }
}
.sec-interview .interview-item .copy-box .description-box .name span {
  margin-left: 15px;
  font-size: 15px;
}
.sec-interview .interview-item .copy-box .description-box .body-copy {
  width: 70%;
}
@media (max-width: 960px) {
  .sec-interview .interview-item .copy-box .description-box .body-copy {
    width: 100%;
  }
}
.sec-interview .interview-item .copy-box .image-box {
  position: absolute;
  top: 2vw;
  width: 70vw;
  height: 34vw;
  z-index: 10;
}
@media (max-width: 960px) {
  .sec-interview .interview-item .copy-box .image-box {
    position: relative;
    width: 90%;
    height: auto;
    margin: auto;
    top: 0;
  }
}
.sec-interview .interview-item .copy-box .image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-interview .interview-item .interview-box1 {
  position: relative;
  max-width: 1300px;
  width: 90%;
  margin: 50px auto 150px;
}
@media (max-width: 960px) {
  .sec-interview .interview-item .interview-box1 {
    display: block;
    margin: 50px auto;
  }
}
.sec-interview .interview-item .interview-box1 .description-box {
  width: 56%;
  background-color: rgb(246, 250, 251);
  padding: 55px 60px;
  box-shadow: -3px 3px 6px rgba(100, 100, 100, 0.1);
}
@media (max-width: 960px) {
  .sec-interview .interview-item .interview-box1 .description-box {
    padding: 40px 20px;
    width: 100%;
  }
}
.sec-interview .interview-item .interview-box1 .description-box h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 30px;
  width: 80%;
}
@media (max-width: 960px) {
  .sec-interview .interview-item .interview-box1 .description-box h3 {
    width: 100%;
  }
}
.sec-interview .interview-item .interview-box1 .description-box h3::after {
  content: "";
  display: block;
  margin-top: 20px;
  height: 3px;
  background: linear-gradient(90deg, #119844 0%, #3fd19e 50%, #119844);
  background-size: 200% auto;
}
.sec-interview .interview-item .interview-box1 .description-box p {
  width: 80%;
}
@media (max-width: 960px) {
  .sec-interview .interview-item .interview-box1 .description-box p {
    width: 100%;
  }
}
.sec-interview .interview-item .interview-box1 .image-box {
  position: absolute;
  top: -3vw;
  right: 0;
  height: 30%;
  width: 52%;
}
@media (max-width: 960px) {
  .sec-interview .interview-item .interview-box1 .image-box {
    position: relative;
    top: 0;
    width: 100%;
    height: auto;
  }
}
.sec-interview .interview-item .interview-box1 .image-box img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}
.sec-interview .interview-item .interview-box2 {
  position: relative;
  max-width: 1300px;
  width: 90%;
  margin: 50px auto 150px;
}
@media (max-width: 960px) {
  .sec-interview .interview-item .interview-box2 {
    display: block;
    margin: 50px auto;
  }
}
.sec-interview .interview-item .interview-box2 .description-box {
  position: relative;
  width: 65%;
  right: -35%;
  background-color: rgb(246, 250, 251);
  padding: 55px 60px;
  box-shadow: -3px 3px 6px rgba(100, 100, 100, 0.1);
}
@media (max-width: 960px) {
  .sec-interview .interview-item .interview-box2 .description-box {
    width: 100%;
    right: auto;
    padding: 40px 20px;
  }
}
.sec-interview .interview-item .interview-box2 .description-box h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 30px;
}
.sec-interview .interview-item .interview-box2 .description-box h3::after {
  content: "";
  display: block;
  margin-top: 20px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #119844 0%, #3fd19e 50%, #119844);
  background-size: 200% auto;
}
.sec-interview .interview-item .interview-box2 .description-box p {
  width: 100%;
}
.sec-interview .interview-item .interview-box2 .image-box {
  position: absolute;
  top: -3vw;
  left: 0;
  width: 45%;
  height: 29%;
}
@media (max-width: 960px) {
  .sec-interview .interview-item .interview-box2 .image-box {
    position: relative;
    top: 0;
    width: 100%;
    height: auto;
  }
}
.sec-interview .interview-item .interview-box2 .image-box img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}
.sec-interview .interview-item .interview-box3 {
  position: relative;
  max-width: 1100px;
  width: 90%;
  margin: 50px auto 150px;
  display: flex;
  align-items: center;
  background-color: rgb(221, 231, 230);
  border-radius: 30px;
}
@media (max-width: 960px) {
  .sec-interview .interview-item .interview-box3 {
    display: block;
    margin: 50px auto;
  }
}
.sec-interview .interview-item .interview-box3::after {
  content: "メッセージ";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 125px;
  height: 40px;
  font-size: 13px;
  background-color: #202020;
  color: rgb(255, 255, 255);
  padding: 9px 5px;
  text-align: center;
}
.sec-interview .interview-item .interview-box3 .image-box {
  width: 60%;
  padding: 60px 40px;
}
@media (max-width: 960px) {
  .sec-interview .interview-item .interview-box3 .image-box {
    width: 100%;
    padding: 60px 10px 20px;
  }
}
.sec-interview .interview-item .interview-box3 .image-box img {
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-interview .interview-item .interview-box3 .description-box {
  position: relative;
  width: 40%;
  padding: 55px 60px;
}
@media (max-width: 960px) {
  .sec-interview .interview-item .interview-box3 .description-box {
    width: 100%;
    padding: 0 20px 20px;
  }
}
.sec-interview .interview-item .interview-box3 .description-box h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 30px;
}
.sec-interview .interview-item .interview-box3 .description-box h3::after {
  content: "";
  display: block;
  margin-top: 20px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #119844 0%, #3fd19e 50%, #119844);
  background-size: 200% auto;
}
.sec-interview .interview-item .interview-box3 .description-box p {
  width: 100%;
}
.sec-interview .interview-item.even {
  background-color: rgb(246, 250, 251);
  margin-top: 0;
}
.sec-interview .interview-item.even .index {
  margin-top: 60px;
}
.sec-interview .interview-item.even .copy-box {
  margin-top: 90px;
}
@media (max-width: 960px) {
  .sec-interview .interview-item.even .copy-box {
    margin-top: 60px;
  }
}
.sec-interview .interview-item.even .interview-box1 {
  margin-top: 90px;
}
.sec-interview .interview-item.even .interview-box1 .description-box {
  background-color: rgb(255, 255, 255);
}
.sec-interview .interview-item.even .interview-box2 {
  margin-top: 90px;
}
.sec-interview .interview-item.even .interview-box2 .description-box {
  background-color: rgb(255, 255, 255);
}

/*768px以下は現在地表示のテキストを非表示*/
@media screen and (max-width: 768px) {
  .pagination a .hover-text {
    display: none;
  }
}