@charset "UTF-8";
.fv {
  position: relative;
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .fv {
    margin-top: 80px;
  }
}
.fv::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("../img/interview_08-01.jpg");
  background-size: 1860px 600px;
  background-position: top center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .fv::before {
    background: url("../img/interview_08-01_sp.jpg");
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
  }
}
.interview_title1 {
  font-size: 1.8rem;
  top: 30px;
  right: 20px;
  text-shadow: 0px 0px 10px #001B42, 0px 0px 15px #001B42;
}
.interview_title2 {
  font-size: 3.2rem;
  bottom: 160px;
  left: 600px;
  text-shadow: 0px 0px 10px #001B42, 0px 0px 15px #001B42;
}
.interview_title3 {
  font-size: 2.4rem;
  bottom: 70px;
  left: 600px;
  text-shadow: 0px 0px 10px #001B42, 0px 0px 15px #001B42;
}
.vertical2 {
  position: absolute;
  writing-mode: vertical-rl;
  color: #fff;
  font-size: 3rem;
  padding: 2rem 1rem;
  background-color: #2f5597;
  top: 0;
  left: 160px;
}
@media screen and (max-width: 768px) {
  .interview_title1 {
    font-size: 1.6rem;
    top: 30px;
    right: 20px;
  }
  .interview_title2 {
    font-size: 2.4rem;
    bottom: 95px;
    left: 90px;
  }
  .interview_title3 {
    font-size: 2rem;
    bottom: 30px;
    left: 90px;
  }
  .vertical2 {
    font-size: 2rem;
    padding: 2rem 1rem;
    top: 0%;
    left: 30px;
  }
}
/*--------------------------------------------------------------
# Security
--------------------------------------------------------------*/
#security {
    background: #eee;
    padding: 20px 0;
    margin: 7rem 0 0;
}
.pSecurity {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}
.pSecurity_row {
    width: 80%;
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    padding: 20px 100px;
}
.pSecurity_col {
    flex-basis: 24%;
    text-align: center;
    color: #111;
    font-size: 14px;
}
.pSecurity_col:hover {
    color: #888;
    transition: 0.3s ease;
}
@media screen and (max-width: 768px) {
    #security {
        padding: 20px 0;
        margin: 5rem 0 0;
    }
    .pSecurity_row {
        flex-direction: column;
        padding: 0px 30px;
    }
    .pSecurity_col {
        flex-basis: 100%;
        padding: 0.6rem 0;
        font-size: 12px;
    }
}