/* Font Size ----- */
.is-recruit-modal-open {
  overflow: hidden;
}

.recruit-entry-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: block;
  width: 100%;
  height: 100vh;
  background-color: rgba(11, 71, 115, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.recruit-entry-modal__overlay {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.recruit-entry-modal__viewport {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  padding: 2rem 1.5rem;
}
.recruit-entry-modal__panel {
  position: relative;
  width: min(83.2vw, 144rem);
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  border-radius: 1.6rem;
  background-color: #eef7f8;
  box-shadow: 0 2.4rem 8rem rgba(0, 31, 52, 0.28);
  transform: translateY(1.6rem) scale(0.98);
  transition: transform 0.3s ease;
}
.recruit-entry-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.recruit-entry-modal.is-open .recruit-entry-modal__panel {
  transform: translateY(0) scale(1);
}
.recruit-entry-modal__inner {
  max-width: 100rem;
  margin-inline: auto;
  padding: 11rem 5rem 13rem;
}
@media screen and (max-width:767px) {
  .recruit-entry-modal__inner {
    padding: 5rem 2.5rem;
  }
}
@media screen and (min-width:768px) and (max-width:1023px) {
  .recruit-entry-modal__inner {
    padding: 6rem 5rem;
  }
}
.recruit-entry-modal__close {
  position: absolute;
  top: 2.6rem;
  right: 2.6rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.4rem;
  height: 6.4rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #004b75;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media screen and (max-width:767px) {
  .recruit-entry-modal__close {
    top: 13px;
    right: 13px;
    width: 30px;
    height: 30px;
  }
}
@media screen and (min-width:768px) and (max-width:1023px) {
  .recruit-entry-modal__close {
    width: 4rem;
    height: 4rem;
  }
}
.recruit-entry-modal__close:hover, .recruit-entry-modal__close:focus {
  opacity: 0.7;
}
.recruit-entry-modal__close:focus-visible {
  outline: solid 2px #004b75;
  outline-offset: 4px;
}
.recruit-entry-modal__close span {
  display: block;
  position: relative;
  width: 4.8rem;
  height: 4.8rem;
}
@media screen and (max-width:767px) {
  .recruit-entry-modal__close span {
    width: 30px;
    height: 30px;
  }
}
.recruit-entry-modal__close span::before, .recruit-entry-modal__close span::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5.6rem;
  height: 1px;
  background-color: currentColor;
  content: "";
}
@media screen and (max-width:767px) {
  .recruit-entry-modal__close span::before, .recruit-entry-modal__close span::after {
    width: 100%;
  }
}
.recruit-entry-modal__close span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.recruit-entry-modal__close span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.recruit-entry-modal__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin: 0;
  color: #004b75;
  font-size: clamp(2rem, 2.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width:1023px) {
  .recruit-entry-modal__title {
    gap: 1.35rem;
  }
}
.recruit-entry-modal__title-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.4rem;
  height: 6.4rem;
}
@media screen and (max-width:767px) {
  .recruit-entry-modal__title-icon {
    width: 4rem;
    height: 4rem;
  }
}
@media screen and (min-width:768px) and (max-width:1023px) {
  .recruit-entry-modal__title-icon {
    width: 5rem;
    height: 5rem;
  }
}
.recruit-entry-modal__title-icon > img {
  width: 100%;
  height: 100%;
}
.recruit-entry-modal__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5rem;
  margin-top: 6rem;
}
@media screen and (max-width:767px) {
  .recruit-entry-modal__cards {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
}
@media screen and (min-width:768px) and (max-width:1023px) {
  .recruit-entry-modal__cards {
    gap: 3rem;
    margin-top: 4rem;
  }
}
.recruit-entry-modal__card {
  display: block;
  color: #001f3f;
  text-decoration: none;
}
.recruit-entry-modal__card:focus-visible {
  outline: solid 3px rgba(0, 167, 225, 0.45);
  outline-offset: 8px;
}
.recruit-entry-modal__card:hover .recruit-entry-modal__logo, .recruit-entry-modal__card:focus .recruit-entry-modal__logo {
  box-shadow: 0 1.8rem 4rem rgba(0, 75, 117, 0.16);
  transform: translateY(-0.4rem);
}
@media screen and (max-width:767px) {
  .recruit-entry-modal__card {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2.5rem;
  }
}
.recruit-entry-modal__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.recruit-entry-modal__description {
  display: block;
  margin-top: 2.4rem;
  color: #001f3f;
  font-size: clamp(12px, 10.592px + 0.376vw, 16px);
  line-height: 1.8;
}
@media screen and (max-width:767px) {
  .recruit-entry-modal__description {
    margin-top: 10px;
  }
}
@media screen and (min-width:768px) and (max-width:1023px) {
  .recruit-entry-modal__description {
    margin-top: 1.6rem;
  }
}/*# sourceMappingURL=style-modal.css.map */