@charset "UTF-8";

/* apply */

.apply-documents {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

.apply-documents > li {
  display: grid;
  gap: 10px;
}

.apply-documents-button {
  color: #fff;
  text-align: center;
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  box-sizing: border-box;
  padding: 12px 34px 12px 14px;
  line-height: 1.45;
  font-size: 14px;
  font-weight: 800;
  transition: opacity 0.3s;
}

.apply-documents-button::after {
  content: "\0203a";
  font-weight: normal;
  font-size: 30px;
  line-height: 1;
  margin-left: 0.3em;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-55%);
}

.apply-documents-button:hover {
  opacity: 0.7;
}

@media only screen and (min-width: 768px) {
  .apply-documents {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px;
  }

  .apply-documents > li:first-child .apply-documents-button {
    width: 100%;
    min-height: 110px;
  }

  .apply-documents > li:last-child {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .apply-documents > li:last-child .apply-documents-button {
    width: 100%;
    min-height: 50px;
    padding: 8px 34px 8px 14px;
    letter-spacing: 0.12em;
  }
}

@media only screen and (max-width: 767px) {
  .apply-documents {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
  }

  .apply-documents-button::after {
    font-size: 28px;
  }
}

.feature-separator {
  display: block;
  margin-right: -20px;
  margin-left: -20px;
  margin-top: clamp(40px, 10vw, 60px);
}

.feature-separator img {
  display: block;
  max-width: none;
  width: 100%;
}


@media only screen and (min-width: 768px) {
  .footer-list {
    font-size: 15px;
  }
}
