@charset "UTF-8";

/* =============================
Company & Recruit
============================= */

.important__inner {
  padding: 40px var(--contentPaddingSp) 80px;
}

.document {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.document:last-of-type {
  margin-top: 80px;
}

.document__title {
  font-size: 2rem;
}

.document__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-bottom: 1px solid var(--black);
  width: fit-content;
}

.document__link p {
  font-size: 2rem;
}

.document__link::after {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  background-image: url("../images/icon/link.png"); /* ← 実際のパスに */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* important pc */
@media screen and (min-width: 769px) {
  .important__inner {
    padding: 0 var(--contentPaddingSp) 120px;
  }

  .document:last-of-type {
    margin-top: 100px;
  }

  .document__title {
    font-size: 2.4rem;
  }

  .document__link::after {
    content: "";
    display: inline-block;
    width: 0.8em;
    height: 0.8em;
    background-image: url("../images/icon/link.png"); /* ← 実際のパスに */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
}
