.interview-wrap {
  /* width: 680px; */
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
}
.interview-wrap .interview {
  width: 320px;
  height: auto;
  margin: 16px auto;
}
.interview-wrap .interview .interview-img {
  height: 200px;
  width: 100%;
  background-color: #5c5c5c;
}
.interview-wrap .interview .interview-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.interview-wrap .interview .interview-title {
  font-size: 18px;
  border-bottom: 1px solid black;
  line-height: 24px;
  margin-top: 8px;
}
.interview-wrap .interview .interview-float {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}
.interview-wrap .interview .interview-float .interview-depart {
  font-size: 18px;
  line-height: 21.6px;
  color: #5c5c5c;
}
.interview-wrap .interview .interview-float .interview-name {
  font-size: 18px;
  line-height: 21.6px;
  color: #5c5c5c;
}
.interview-wrap .interview .interview-link {
  width: 246px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #5c5c5c;
  color: white;
  margin: 24px auto 8px;
  position: relative;
}
.interview-wrap .interview .interview-link:after {
  content: "";
  position: absolute;
  right: 8px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 12px;
  width: 8px;
  background-image: url("../img/arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.interview-id-wrap {
  /* width: 680px; */
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin: 0 auto;
}
.interview-id-wrap .id-fv {
  width: 100%;
  height: auto;
}

.interview-id-wrap .id-fv img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.interview-id-wrap .id-fv .pc {
  display: block;
}

.interview-id-wrap .id-fv .sp {
  display: none;
}

.interview-id-wrap .id-fv .id-title {
  font-size: 48px;
  line-height: 64px;
  margin: 36px 0 36px 36px;
}
.interview-id-wrap .id-fv .id-auth {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 36px;
  left: 36px;
}
.interview-id-wrap .id-fv .id-auth .id-depart {
  border: 1px solid #5c5c5c;
  display: inline-block;
  padding: 8px;
  font-size: 18px;
  margin: 0;
}
.interview-id-wrap .id-fv .id-auth .id-name {
  font-size: 24px;
  margin: 0 0 0 24px;
}
.interview-id-wrap .id-content {
  width: 100%;
}
.interview-id-wrap .id-content h2 {
  text-align: left;
  height: 60px;
  width: 100%;
  border-bottom: 1px solid #5c5c5c;
  font-size: 24px;
  line-height: 28px;
  margin: 36px 0 0 0;
  display: flex;
  align-items: center;
  flex: 1;
}
.interview-id-wrap .id-content h2:before {
  content: "Q";
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  min-height: 60px;
  width: 60px;
  min-width: 60px;
  background-color: #5c5c5c;
  color: white;
  margin-right: 16px;
}
.interview-id-wrap .id-content p {
  display: inline-block;
  margin: 24px 0 24px 68px;
  line-height: 26px;
  font-size: 18px;
}

@media screen and (max-width: 800px) {
  .interview-id-wrap .id-fv .pc {
    display: none;
  }

  .interview-id-wrap .id-fv .sp {
    display: block;
  }

  .interview-id-wrap .id-content p {
    margin: 24px 0;
  }
}
