/* ============================================
   TOPページ専用のスタイル
   ============================================ */

/* ============================================
   KV（キービジュアル）背景
   ============================================ */
.kv {
  margin: 105px 0 120px;
  position: relative;
  width: 100%;
  height: 344px;
  background-color: var(--boat-blue);
}

/* 上部の青（右上がりの下端） */
.kv::before {
  content: '';
  position: absolute;
  top: -105px;
  left: 0;
  width: 100%;
  height: 105px;
  background-color: var(--boat-blue);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 0;
}

/* 下部の青（右上がりの上端） */
.kv::after {
  content: '';
  position: absolute;
  bottom: -105px;
  left: 0;
  width: 100%;
  height: 105px;
  background-color: var(--boat-blue);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 0;
}

/* KV画像配置 */
.kv__bg-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.kv__racer-img {
  position: absolute;
  object-fit: cover;
  animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  animation-fill-mode: both;
  will-change: transform, opacity;
}

.kv__title {
  position: absolute;
  top: 13px;
  right: 5px;
  width: 382.15px;
  height: auto;
  z-index: 10;
  animation: slideInFromLeftTitle 0.3s 0.2s both;
}

.kv__title-bubble {
  position: absolute;
  top: 0px;
  left: 142.57px;
  width: 239.58px;
  height: auto;
  z-index: 2;
}

.kv__title-text {
  position: absolute;
  top: 55px;
  right: 10px;
  width: 342.02px;
  height: auto;
  z-index: 1;
}

/* ============================================
   KVレーサー画像の配置とアニメーション
   ============================================ */

/* 優勝戦_5121_定松勇樹 (kv-racer1.png) - 左から飛び込む */
.kv__racer-img--1 {
  top: -179px;
  left: -125px;
  z-index: 1;
  width: 521px;
  height: auto;
  transform: rotate(-14.72deg);
  animation: slideInFromLeft1 0.3s 0s both;
}

/* 5174 kawai (kv-racer2.png) - 左から飛び込む */
.kv__racer-img--2 {
  width: 243px;
  height: auto;
  top: -90px;
  left: 0;
  z-index: 3;
  animation: slideInFromLeft2 0.5s 0.3s both;
}

/* 4851_関　浩哉 (kv-racer3.png) - 左から飛び込む */
.kv__racer-img--3 {
  width: 520px;
  height: auto;
  bottom: -225px;
  left: -203px;
  z-index: 6;
  transform: rotate(-10.64deg);
  animation: slideInFromLeft3 0.5s 0.7s both;
}

/* 5121定松勇樹② (kv-racer4.png) - フェードイン */
.kv__racer-img--4 {
  width: 189px;
  height: auto;
  bottom: -100px;
  right: 30px;
  z-index: 4;
  animation: fadeIn 0.8s 0.5s both;
}

/* 5217_藤原碧生 (kv-racer5.png) - フェードイン */
.kv__racer-img--5 {
  width: 242px;
  height: auto;
  bottom: -100px;
  right: -90px;
  z-index: 11;
  animation: fadeIn 0.8s 0.5s both;
}

/* ============================================
   アニメーション定義
   ============================================ */

@keyframes slideInFromLeft1 {
  0% {
    transform: translate(-200%, 0) rotate(-14.72deg);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0) rotate(-14.72deg);
    opacity: 1;
  }
}

@keyframes slideInFromLeft2 {
  0% {
    transform: translate(-200%, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes slideInFromLeft3 {
  0% {
    transform: translate(-200%, 0) rotate(-10.64deg);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0) rotate(-10.64deg);
    opacity: 1;
  }
}

@keyframes slideInFromLeftTitle {
  0% {
    transform: translate(-80%, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* 水しぶき画像 */
.kv__splash--1 {
  position: absolute;
  width: 100%;
  height: auto;
  top: -220px;
  left: 0;
  z-index: 2;
}

.kv__splash--2 {
  position: absolute;
  width: 265px;
  height: auto;
  bottom: -80px;
  left: 0;
  z-index: 3;
}

/* ============================================
   アピールポイント
   ============================================ */
.appeal-points {
  display: flex;
  gap: 12px;
  padding: 0 18px;
  margin-top: -47px;
  position: relative;
  z-index: 100;
}

.appeal-points__item {
  flex: 1;
  background-color: var(--white);
  padding: 12px 6px 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  box-shadow: -2px -2px 0px 0px var(--boat-yellow), 4px 4px 0px 0px var(--boat-blue);
}

.appeal-points__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #0069D5;
}

/* フォントサイズ指定 */
.appeal-points__text-16 {
  font-size: 16px;
  line-height: 1.4;
  display: inline-block;
}

.appeal-points__text-18 {
  font-size: 18px;
  line-height: 1.4;
  display: inline-block;
}

.appeal-points__text-19 {
  font-size: 19px;
  line-height: 1.4;
  display: inline-block;
}

.appeal-points__text-28 {
  font-size: 28px;
  line-height: 1.4;
  display: inline-block;
}

.appeal-points__text-large {
  font-size: 28px;
  line-height: 1.4;
  display: inline-block;
}

/* ============================================
   追従ボタンエリア（応募手順 + WEBエントリー）
   ============================================ */
.follow-btn-area {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100%); /* 初期状態では下に隠す */
  width: 360px;
  display: flex;
  gap: 6px;
  z-index: 99;
  opacity: 0;
  transition: all 0.3s ease;
}

.follow-btn-area.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.follow-btn-area:hover {
  transform: translateX(-50%) translateY(-2px);
}

/* PC版では非表示 */
@media (min-width: 1024px) {
  .follow-btn-area {
    display: none;
  }
}

@media (max-width: 389px) {
  .follow-btn-area {
    width: calc(100% - 30px);
    min-width: 360px;
  }
}

/* ============================================
   応募手順チェックボタン
   ============================================ */
.howto-btn {
  flex: 1;
  background-color: var(--boat-blue);
  border: 2px solid var(--white);
  border-radius: 0;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: stretch;
}

.howto-btn:hover {
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.15);
}

.howto-btn__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px;
}

.howto-btn__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.05em;
  text-align: center;
  color: var(--white);
}

.howto-btn__check {
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  color: var(--boat-yellow);
}

/* ============================================
   新WEBエントリーボタン
   ============================================ */
.entry-btn-new {
  width: 290px;
  height: 80px;
  background-color: var(--boat-yellow);
  border: 2px solid var(--white);
  border-radius: 0;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  padding: 8px 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.entry-btn-new:hover {
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.15);
}

.entry-btn-new:focus {
  outline: 3px solid var(--boat-blue);
  outline-offset: 2px;
}

.entry-btn-new__content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 15px;
}

.entry-btn-new__main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.entry-btn-new__title {
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4em;
  text-align: left;
  color: #0D72E5;
  margin: 0;
}

.entry-btn-new__info {
  display: flex;
  gap: 4px;
  align-items: center;
}

.entry-btn-new__badge {
  background-color: var(--white);
  padding: 2px 7px;
  border-radius: 60px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.4em;
  text-align: center;
  color: var(--boat-text);
  white-space: nowrap;
}

.entry-btn-new__period {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  line-height: 1.4em;
  text-align: center;
  margin: 0;
}

.entry-btn-new__date {
  font-size: 15.66px;
  color: var(--boat-text);
}

.entry-btn-new__day {
  font-size: 12px;
  color: var(--boat-text);
}

.entry-btn-new__divider {
  width: 0.5px;
  height: 59px;
  background-color: var(--white);
  flex-shrink: 0;
}

.entry-btn-new__arrow img {
  width: 16px;
  height: 16px;
}

/* ============================================
   Newsセクション
   ============================================ */
.news-section {
  padding: 26px 20px 0;
  margin-bottom: 25px;
}

.news-section > div {
  display: flex;
  gap: 12px;
}

.news-section__header {
  display: flex;
  flex-direction: column;
  gap: -4px;
}

.news-section__title {
  font-family: "din-2014", sans-serif;
  font-weight: 600;
  font-size: 23px;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: var(--boat-blue);
}

.news-section__more {
  display: flex;
  align-items: center;
  align-self: stretch;
  justify-content: space-between;
  gap: 4px;
  padding: 0 2px;
  text-decoration: none;
  color: var(--boat-text);
  font-weight: 500;
  font-size: 9px;
  line-height: 2.747;
}

.news-section__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 0;
}
.news-section__list a {
  text-decoration: none !important;
  color: var(--boat-text);
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.news-section__list a:link,
.news-section__list a:visited,
.news-section__list a:hover,
.news-section__list a:active {
  text-decoration: none !important;
}

.news-section__arrow-icon {
  display: inline-flex;
}

.news-section__arrow-icon img {
  width: 8px;
  height: 8px;
  display: block;
}

/* ============================================
   Howセクション
   ============================================ */
.how-section {
  position: relative;
  padding: 0 20px 0;
  margin-bottom: 36px;
}

.how-section::after {
  content: '';
  position: absolute;
  top: -60px;
  left: -5px;
  width: 185px;
  height: 180px;
  background: url('../images/how-items.png') no-repeat center;
  background-size: contain;
  z-index: 1;
}

.how-section__title-area {
  position: relative;
  text-align: right;
  margin-bottom: 41px;
  z-index: 2;
}

.how-section__title-area .section__title-en {
  margin-left: auto;
  margin-right: 0;
}

.how-section__title-area .section__title-ja {
  text-align: right;
}

.how-section__banner {
  margin: 36px 0 0 36px;
  display: flex;
  justify-content: center;
}

.how-section__banner-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 9px 20px;
  background-color: var(--boat-yellow);
  border: 2px solid var(--boat-yellow);
  text-decoration: none;
  color: var(--boat-text);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.65;
  letter-spacing: 0.04em;
  border-radius: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.how-section__banner-link:hover {
  background-color: #ffd700;
  border-color: #ffd700;
}

/* ============================================
   Whatセクション
   ============================================ */
.what-section {
  position: relative;
  padding: 32px 0 40px 0;
  background: linear-gradient(to bottom, transparent 0, transparent 0px, var(--gray-light) 0px);
  overflow: visible;
}

.what-section__wave-top {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
}

.what-section__wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  transform: rotate(180deg);
}

.what-section::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 9px,
    #F2F2F2 9px,
    #F2F2F2 10px
  );
  pointer-events: none;
  z-index: 0;
}

/* タイトルエリア */
.what-section__title-area {
  position: relative;
  margin-bottom: 40px;
  z-index: 5;
}

.what-section__title-area .section__title-en {
  margin-left: 20px;
  margin-top: 23px;
}

.what-section__title-area .section__title-ja {
  margin-left: 20px;
  margin-top: 8px;
}

.what-section__title-area::after {
  content: '';
  position: absolute;
  top: 30px;
  right: -30px;
  width: 224.45px;
  height: 144.91px;
  background: url('../images/what-racer.png') no-repeat center;
  background-size: contain;
  opacity: 1;
  z-index: 2;
  transform: rotate(12deg);
}

/* コンテンツカード */
.content-card {
  position: relative;
  margin-bottom: 56px;
  padding: 0 20px;
  z-index: 5;
}


.content-card__header {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.content-card__header::before {
  content: '';
  width: 12.8px;
  height: 14.02px;
  clip-path: polygon(0% 0%, 100% 100%, 100% 0%);
  margin-right: 10px;
  flex-shrink: 0;
  position: absolute;
  bottom: -12.8px;
  left: 10px;

}

.content-card--yellow .content-card__header::before {
  background-color: var(--boat-yellow);
}

.content-card--green .content-card__header::before {
  background-color: var(--boat-green);
}

.content-card--red .content-card__header::before {
  background-color: var(--boat-red);
}

.content-card__title {
  padding: 8px 16px;
  width: auto;
  min-width: 200px;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: var(--boat-text);
  border-radius: 0;
  white-space: nowrap;
}

.content-card--yellow .content-card__title {
  background-color: var(--boat-yellow);
}

.content-card--green .content-card__title {
  background-color: var(--boat-green);
}

.content-card--red .content-card__title {
  background-color: var(--boat-red);
}

.content-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
}

.content-card__body .btn {
  width: 100%;
}

/* ============================================
   フォトスライド
   ============================================ */
.photo-slide-wrapper {
  position: relative;
  margin: 0 0 36px;
  overflow: hidden;
  width: 100%;
  z-index: 10;
}

@media (min-width: 480px) {
  .photo-slide-wrapper {
    margin: 0;
    width: 100%;
  }
}

.photo-slide {
  overflow: hidden;
  padding: 0 0 0 10px;
}

.photo-slide__track {
  display: flex;
  gap: 12px;
  animation: slideLoop 30s linear infinite;
  will-change: transform;
  transform: translateZ(0); /* ハードウェアアクセラレーション */
}

@keyframes slideLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-200px - 12px - 112px - 12px - 173px - 12px - 112px - 12px));
  }
}

.photo-slide__item {
  height: 155px;
  flex-shrink: 0;
  border-radius: 0;
  object-fit: cover;
}

.photo-slide__item:nth-child(4n + 1),
.photo-slide__item:nth-child(4n + 5) {
  width: 200px;
}

.photo-slide__item:nth-child(4n + 2),
.photo-slide__item:nth-child(4n + 6) {
  width: 112px;
}

.photo-slide__item:nth-child(4n + 3),
.photo-slide__item:nth-child(4n + 7) {
  width: 173px;
}

.photo-slide__item:nth-child(4n),
.photo-slide__item:nth-child(4n + 8) {
  width: 112px;
}

/* ============================================
   関連サイト
   ============================================ */
.related-sites {
  position: relative;
  background-color: var(--boat-blue);
  padding: 20px 20px 36px;
  margin: 0;
  margin-top: 5px;
}

/* 上部のWave SVG */
.related-sites::before {
  content: '';
  position: absolute;
  top: -105px;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/footer-wave.svg) top left;
  background-size: 100% 100%;
  z-index: 1;
}

@media (min-width: 480px) {
  .related-sites {
    margin-top: -105px;
    width: 100%;
  }
}

.related-sites__title {
  position: relative;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.65;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-top: 105px;
  margin-bottom: 30px;
  z-index: 2;
}

.related-sites__banners {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  z-index: 2;
}

.related-sites__banner {
  width: calc((100% - 12px) / 2);
  aspect-ratio: 181.5 / 45;
  background-color: var(--gray);
  border: 1px solid var(--boat-text);
  border-radius: 0;
  display: block;
  overflow: hidden;
}

.related-sites__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   新しいKV（TOP_SP_3rd_B_v2）
   ============================================ */
.kv-talent {
  margin: 95px 0 105px;
  position: relative;
  width: 100%;
  height: 302px;
  background-color: #0099FF;
  overflow: visible;
}

/* 上部の青（右上がりの下端） */
.kv-talent::before {
  content: '';
  position: absolute;
  top: -105px;
  left: 0;
  width: 100%;
  height: 105px;
  background-color: #0099FF;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 0;
}

/* 下部の青（右上がりの上端） */
.kv-talent::after {
  content: '';
  position: absolute;
  bottom: -105px;
  left: 0;
  width: 100%;
  height: 105px;
  background-color: #0099FF;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 0;
}

.kv-talent__splash {
  position: absolute;
  top: -101px;
  left: 0;
  width: 100%;
  height: 508px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 403px, 0 508px);
  z-index: 1;
}

.kv-talent__splash-img {
  position: absolute;
}

.kv-talent__splash-img--1 {
  top: 193.74px;
  left: -448.84px;
  transform: rotate(-0.9846784474511479deg);
  z-index: 2;
}

.kv-talent__splash-img--2 {
  top: -407.69px;
  left: 121.99px;
  transform: rotate(2.3226738825040294deg);
  z-index: 2;
}

.kv-talent__racer-img {
  position: absolute;
  object-fit: cover;
  z-index: 3;
  animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  animation-fill-mode: both;
  will-change: transform, opacity;
}

.kv-talent__racer-img--1 {
  top: -73px;
  left: -83px;
  width: 429.07px;
  height: 842.41px;
  animation: slideInFromLeftTalent1 0.6s 0.2s both;
}

.kv-talent__racer-img--2 {
  top: 0px;
  left: 110px;
  width: 283px;
  animation: slideInFromRightTalent2 0.4s 0.4s both;
}

@keyframes slideInFromLeftTalent1 {
  0% {
    transform: translateX(-150%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromRightTalent2 {
  0% {
    transform: translateX(150%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.kv-talent__title {
  position: absolute;
  top: -15px;
  left: 9.13px;
  width: 376.41px;
  height: 285.16px;
  z-index: 10;
  animation: slideInFromLeftTitle 0.3s 0.2s both;
}

.kv-talent__title-text {
  position: absolute;
  top: 64.97px;
  left: 0;
  width: 358.69px;
  height: 220.19px;
}

.kv-talent__bubble {
  position: absolute;
  top: 0;
  left: 124.85px;
  width: 251.55px;
  height: 107.01px;
}

/* ============================================
   新しいアピールポイント
   ============================================ */
.appeal-points-new {
  position: relative;
  padding: 0 20px;
  z-index: 100;
}

.appeal-points-new__item {
  margin-bottom: 10px;
}

.appeal-points-new__item:nth-child(1) {
  margin-left: 24px;
}

.appeal-points-new__item:nth-child(2) {
  margin-left: 5px;
}

.appeal-points-new__item:nth-child(3) {
  margin-left: 102px;
}

.appeal-points-new__box {
  position: relative;
  display: inline-block;
}

.appeal-points-new__bg-green {
  position: relative;
  background-color: #5ACB60;
  border: 1.2960000038146973px solid #0069D5;
  display: inline-block;
}

.appeal-points-new__bg-white {
  position: relative;
  background-color: #FFFFFF;
  border: 1.2960000038146973px solid #0069D5;
  display: inline-block;
}

.appeal-points-new__icon {
  position: absolute;
  width: 25.05px;
  height: 20.28px;
  top: 50%;
  transform: translateY(-50%);
}

.appeal-points-new__yellow-bar {
  position: absolute;
  background-color: #FFE434;
  height: 11.66px;
}

.appeal-points-new__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 22.312089920043945px;
  line-height: 1.3999999658060067em;
  text-align: center;
  color: #0069D5;
  padding: 4.52px 12px;
  position: relative;
  z-index: 2;
}

.appeal-points-new__exclamation {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24.543296813964844px;
  line-height: 1.3999999689145488em;
  text-align: center;
  color: #0069D5;
  position: absolute;
}

/* ============================================
   Figmaデザイン対応アピールポイント（KV重なり）
   ============================================ */
.kv-appeal-points {
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
  height: 155px;
  z-index: 150;
}


.kv-appeal-points__item {
  position: absolute;
}

/* 養成費無料 - Figma位置調整 */
.kv-appeal-points__item--training {
  top: 0px;
  right: 19px;
  width: 205px;
  height: 44.48px;
}

/* 平均年収2,000万円 - Figma位置調整 */
.kv-appeal-points__item--salary {
  top: 55px;
  left: 5px;
  width: 304.83px;
  height: 44.48px;
}

/* 退職金・年金積立制度あり - Figma位置調整 */
.kv-appeal-points__item--benefits {
  top: 110px;
  left: 24px;
  width: 345.8px;
  height: 44.48px;
}

/* 共通ボックススタイル */
.kv-appeal-points__box {
  transform: skewX(-15deg);
  position: relative;
  width: 100%;
  height: 100%;
}

/* 緑の背景レイヤー */
.kv-appeal-points__bg-green {
  position: absolute;
  top: 3.8px;
  background-color: #5ACB60;
  border: 1.296px solid #0069D5;
  height: 40.68px;
  border-radius: 0;
}

.kv-appeal-points__item--training .kv-appeal-points__bg-green {
  left: 16.85px;
  width: 179px;
}

.kv-appeal-points__item--salary .kv-appeal-points__bg-green {
  left: 27.72px;
  width: 276.31px;
}

.kv-appeal-points__item--benefits .kv-appeal-points__bg-green {
  left: 23.33px;
  width: 321.67px;
}

/* 白の背景レイヤー */
.kv-appeal-points__bg-white {
  position: absolute;
  top: 0px;
  background-color: #FFFFFF;
  border: 1.296px solid #0069D5;
  height: 40.68px;
  border-radius: 0;
}

.kv-appeal-points__item--training .kv-appeal-points__bg-white {
  left: 0;
  width: 162px;
}

.kv-appeal-points__item--salary .kv-appeal-points__bg-white {
  left: 0;
  width: 256.02px;
}

.kv-appeal-points__item--benefits .kv-appeal-points__bg-white {
  left: 0;
  width: 310.18px;
}

/* 黄色のバー */
.kv-appeal-points__yellow-bar {
  position: absolute;
  top: 22.03px;
  background-color: #FFE434;
  height: 11.66px;
}

.kv-appeal-points__item--training .kv-appeal-points__yellow-bar {
  left: 16px;
  width: 112px;
}

.kv-appeal-points__item--salary .kv-appeal-points__yellow-bar {
  left: 106px;
  width: 128.12px;
}

.kv-appeal-points__item--benefits .kv-appeal-points__yellow-bar {
  left: 10px;
  width: 178.56px;
}

/* アイコン */
.kv-appeal-points__icon {
  position: absolute;
  top: 13.34px;
  width: 25.05px;
  height: 20.28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

/* 養成費無料のアイコン - Figma: x:233.74 */
.kv-appeal-points__item--training .kv-appeal-points__icon {
  left: 165px;
}

/* 平均年収2,000万円!!のアイコン */
.kv-appeal-points__item--salary .kv-appeal-points__icon {
  left: 268.73px;
}

/* 退職金・年金積立制度ありのアイコン */
.kv-appeal-points__item--benefits .kv-appeal-points__icon {
  left: 309.7px;
}

.kv-appeal-points__icon {
  background-image: url('../images/appeal-arrow.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.kv-appeal-points__icon img {
  display: none; /* 背景画像を使用するため非表示 */
}

/* テキスト */
.kv-appeal-points__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 22.31px;
  line-height: 1.4em;
  text-align: center;
  color: #0069D5;
  position: absolute;
  top: 4.52px;
  height: 31.51px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}

.kv-appeal-points__item--training .kv-appeal-points__text {
  left: 16px;
}

.kv-appeal-points__item--salary .kv-appeal-points__text {
  left: 16px;
}

.kv-appeal-points__item--benefits .kv-appeal-points__text {
  left: 16px;
}

/* ============================================
   イベント情報バナーセクション
   ============================================ */
.event-banner-section {
  position: relative;
  margin: 0 20px 8px;
  background-color: #0099FF; /* Figmaの正確な色 */
  width: 350px;
  height: 64px;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.event-banner-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* 背景画像レイヤー */
.event-banner-section__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 255px;
  height: 64px;
  background-image: url('../images/event-banner-bg.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left top;
  z-index: 2;
}

/* コンテンツエリア（テキスト + アイコン） */
.event-banner-section__content {
  text-decoration: none;
  position: absolute;
  top: 15px;
  left: 77px;
  width: 261px;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 4;
}

.event-banner-section__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 24px;
  line-height: 1.2;
  color: var(--white);
  text-align: left;
  white-space: nowrap;
}

/* 更新日（バナーの下に配置） */
.event-banner-section__update-date {
  margin: 0 20px 25px;
  padding: 4px 0 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  color: #666666;
  text-align: right;
  width: 350px;
}

.event-banner-section__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: block; /* 確実に表示されるように */
}

/* 下部の白いライン */
.event-banner-section__line {
  position: absolute;
  bottom: 8px; /* 64px - 56px = 8px from bottom */
  left: 0;
  width: 350px;
  height: 1px;
  background-image: url('../images/event-banner-line.svg');
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1; /* アイコン（z-index: 4）より背面 */
}

@media (min-width: 480px) {
  .event-banner-section {
    margin: 0 auto 8px;
  }

  .event-banner-section__update-date {
    margin: 0 auto 25px;
  }
}

@media (max-width: 389px) {
  .event-banner-section {
    width: calc(100% - 40px);
    margin: 0 20px 8px;
  }

  .event-banner-section__bg-image {
    width: 100%;
  }

  .event-banner-section__line {
    width: 100%;
  }

  .event-banner-section__content {
    width: calc(100% - 90px);
  }

  .event-banner-section__update-date {
    width: calc(100% - 40px);
  }
}

/* ============================================
   Q&Aバナーセクション
   ============================================ */
.qa-banner-section {
  position: relative;
  margin: 36px 20px -105px;
  padding: 0;
  box-sizing: border-box;
  z-index: 10;
}

.qa-banner-section__link {
  display: block;
  text-decoration: none;
  width: 100%;
  max-width: 100%;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.qa-banner-section__link:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.qa-banner-section__image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  box-sizing: border-box;
}

@media (min-width: 480px) {
  .qa-banner-section {
    max-width: 480px;
    margin: 36px auto -105px;
  }
}

@media (min-width: 1024px) {
  .qa-banner-section {
    max-width: 1200px;
    margin: 36px auto -105px;
    padding: 0 20px;
  }
}

