/* 採用情報 追従バナー */
.recruit-bnr {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9999;
}

/* relative 用ラッパー */
.recruit-bnr-inner {
  position: relative;
}

.recruit-bnr-link img {
  display: block;
  width: 300px; /* PC時のバナー画像サイズ */
  height: auto;
}

/* ×ボタン */
.recruit-bnr-close {
  position: absolute;
  top: -5px;
  right: -5px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 10000;
}

.recruit-bnr-close img {
  display: block;
  width: 25px; /* PCサイズ */
  height: auto;
}

/* SP */
@media screen and (max-width: 767px) {
  .recruit-bnr {
    left: 10px;
    bottom: 10px;
  }

  .recruit-bnr-link img {
    width: 200px; /* SP時のバナー画像サイズ */
  }

  .recruit-bnr-close {
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
  }

  .recruit-bnr-close img {
    width: 20px; /* SPサイズ（自由に変更可） */
  }
}