@charset "UTF-8";
/* ============================================================
   260511 入社祝金 告知ボックス（noticeBonus）
   - トップページ：#topAbout の手前
   - エントリーページ：.contactPage_nav の直下
   ============================================================ */

/* ---------- レイアウト基盤 ---------- */
.noticeBonus {
  max-width: calc(1000px + 16.6666666667vw);
  padding: 0 8.3333333333vw;
  margin: 0 auto 120px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .noticeBonus {
    margin-bottom: 80px;
  }
}

/* エントリーページの contactPage_nav 直下に置く場合の余白調整
   （contactPage_nav 自体が margin-bottom: 200px なので、noticeBonus 側は詰める） */
.contactPage_nav + .noticeBonus {
  margin-top: -120px; /* contactPage_nav の余白を一部食う */
  margin-bottom: 200px;
}
@media screen and (max-width: 767px) {
  .contactPage_nav + .noticeBonus {
    margin-top: -60px;
    margin-bottom: 120px;
  }
}

/* ---------- 本体カード ---------- */
.noticeBonus_inner {
  position: relative;
  background: #fff7f8; /* 既存サイトのピンク系最淡 */
  border: 2px solid #ff5186;
  border-radius: 24px;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  gap: 40px;
  box-shadow: 0 8px 32px rgba(255, 81, 134, 0.12);
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .noticeBonus_inner {
    padding: 40px 36px;
    gap: 28px;
  }
}
@media screen and (max-width: 767px) {
  .noticeBonus_inner {
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    border-radius: 18px;
    text-align: center;
  }
}

/* 装飾 */
.noticeBonus_inner::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  background: #ffd7de;
  border-radius: 50%;
  filter: blur(60px);
  right: -60px;
  bottom: -80px;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .noticeBonus_inner::after {
    width: 140px;
    height: 140px;
    filter: blur(40px);
    right: -40px;
    bottom: -50px;
  }
}

/* ---------- 左カラム：金額バッジ ---------- */
.noticeBonus_badge {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(125deg, #ff5186 0%, #ffa4ac 100%);
  color: #ffffff;
  border-radius: 20px;
  padding: 22px 30px;
  text-align: center;
  min-width: 200px;
  box-shadow: 0 6px 20px rgba(255, 81, 134, 0.25);
}
@media screen and (max-width: 991px) {
  .noticeBonus_badge {
    min-width: 170px;
    padding: 18px 24px;
  }
}
@media screen and (max-width: 767px) {
  .noticeBonus_badge {
    padding: 16px 30px;
    min-width: 0;
    width: 100%;
    max-width: 320px;
    border-radius: 16px;
  }
}

.noticeBonus_badge-label {
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
@media screen and (max-width: 767px) {
  .noticeBonus_badge-label {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.noticeBonus_badge-amount {
  display: block;
  font-weight: 700;
  line-height: 1;
}
.noticeBonus_badge-amount .num {
  font-size: 56px;
  font-size: 5.6rem;
  letter-spacing: 0.02em;
  vertical-align: -2px;
}
.noticeBonus_badge-amount .unit {
  font-size: 24px;
  font-size: 2.4rem;
  margin-left: 4px;
}
.noticeBonus_badge-amount .prefix {
  font-size: 18px;
  font-size: 1.8rem;
  margin-right: 4px;
  vertical-align: 6px;
}
@media screen and (max-width: 767px) {
  .noticeBonus_badge-amount .num {
    font-size: 48px;
    font-size: 4.8rem;
  }
  .noticeBonus_badge-amount .unit {
    font-size: 20px;
    font-size: 2rem;
  }
  .noticeBonus_badge-amount .prefix {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/* ---------- 右カラム：本文 ---------- */
.noticeBonus_body {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
}

.noticeBonus_title {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ff5186;
  margin: 0 0 14px;
  line-height: 1.5;
}
@media screen and (max-width: 991px) {
  .noticeBonus_title {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .noticeBonus_title {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
}

.noticeBonus_areaLabel {
  display: inline-block;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #ffffff;
  background: #ff5186;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .noticeBonus_areaLabel {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.noticeBonus_areaList {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}
@media screen and (max-width: 767px) {
  .noticeBonus_areaList {
    justify-content: center;
  }
}
.noticeBonus_areaList li {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #333333;
  background: #ffffff;
  border: 1px solid #ffd7de;
  padding: 6px 14px;
  border-radius: 8px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .noticeBonus_areaList li {
    font-size: 13px;
    font-size: 1.3rem;
    padding: 5px 12px;
  }
}

.noticeBonus_note {
  font-size: 12px;
  font-size: 1.2rem;
  color: #626264;
  line-height: 1.7;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .noticeBonus_note {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

/* ---------- トップページ用の上下スペース微調整 ---------- */
/* keyvisual と topAbout の間に挟まる場合、上にも適切な余白を確保 */
.topPage_inner > .noticeBonus:first-child {
  margin-top: 0;
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .topPage_inner > .noticeBonus:first-child {
    padding-top: 40px;
  }
}
