@charset "UTF-8";

/* =========================================================
  doc
========================================================= */

/* pageTitle
----------------------------------------------- */
#pageTitle h1 {
  position: relative;
  margin: 0 0 15px;
  padding: 0 0 15px;
  border-bottom: 1px solid var(--mono-color-5);
  font-weight: 700;
  font-size: 1.9rem;
}

#pageTitle h1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 2px;
  background: var(--ac-color-green-1);
}

@media only screen and (max-width: 959px) {
  #pageTitle h1 {
    font-size: 1.5rem;
  }

  #pageTitle h1::before {
    width: 50px;
  }
}