@charset "utf-8";

/*============================
#person
============================*/

#person {
  counter-reset: no;
}

#person img {
  width: 330px;
  border-radius: 3px;
}

#person ol {
  width: 420px;
  padding: 28px 30px;
  background-color: #f8f8f8;
  border-radius: 3px;
}

#person ol li {
  padding: 0 0 15px 45px;
  margin-bottom: 15px;
  line-height: 1;
  position: relative;
  border-bottom: 1px solid #10348f;
}

#person ol li:last-of-type {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

#person ol li::before {
  counter-increment: no;
  display: block;
  content: counter(no, decimal-leading-zero) ' /';
  font-size: 18px;
  font-weight: 400;
  color: #10348f;
  font-family: "Bebas Neue", sans-serif;
  position: absolute;
  top: 2px;
  left: 5px;
}

@media only screen and (max-width: 768px) {
  #person img {
    width: 100%;
    border-radius: 3px 3px 0 0;
  }

  #person ol {
    width: 100%;
    padding: 15px;
    border-radius: 0 0 3px 3px;
  }

  #person ol li {
    padding: 0 0 10px 40px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.4;
  }
}