@charset "UTF-8";

/* =================================
recruit-message
================================= */

.recruit-message__txts {
  text-align: center;
  margin-top: 30px;
}

/* =================================
recruit-bnr
================================= */

.recruit-bnr {
  padding-top: 0;
}
.recruit-bnr__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}
.recruit-bnr__link {
  display: block;
  width: min(100%, 900px);
  transition: opacity 0.3s;
}
.recruit-bnr__link:hover {
  opacity: 0.75;
}
.recruit-bnr__link--small {
  width: min(100%, 360px);
}
.recruit-bnr__img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .recruit-bnr__inner {
    gap: 28px;
  }
  .recruit-bnr__link--small {
    width: min(100%, 300px);
  }
}