/* =====================================================
   共通パーツ CSS（下部CTA・注意喚起・フッター）
   CSS変数は index_202602.css で定義済み
   ===================================================== */

/* =====================================================
   下部CTA群（SVGバナー3列）
   ===================================================== */

.bottom-cta {
  padding: 40px 20px;
  background: #fff;
  border-top: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
}

.bottom-cta__list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: 1400px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  text-align: center;
}

.bottom-cta__item {
  display: inline-block;
  position: relative;
  margin: 0 25px;
}

.bottom-cta__item img {
  width: 30vw;
  max-width: 300px;
  height: auto;
}

/* 1000px以上：現行サイト準拠 */
@media only screen and (min-width: 1000px) {
  .bottom-cta__item img {
    width: 25vw;
    max-width: 400px;
  }
}

.bottom-cta__item a {
  display: block;
  transition: opacity 0.3s;
}

.bottom-cta__item a:hover {
  opacity: 0.8;
}

/* =====================================================
   注意喚起導線ボタン
   ===================================================== */

.precautions {
  padding: 40px 20px 0;
  background: #fff;
}

.precautions__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
  padding: 16px 30px;
  border: 1px solid var(--color-text);
  border-radius: 0;
  font-size: 14px;
  transition: background 0.3s;
}

.precautions__btn:hover {
  background: #f5f5f5;
}

.precautions__arrow {
  font-size: 16px;
  font-weight: bold;
}

/* =====================================================
   Footer
   ===================================================== */

.footer {
  background: #fff;
  padding: 20px 0 40px;
}

.footer__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.footer__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  font-size: 12px;
}

.footer__nav a {
  transition: opacity 0.3s;
}

.footer__nav a:hover {
  opacity: 0.7;
}

.footer__nav-divider {
  color: #999;
}

.footer__sns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 80px;
}

.footer__sns a {
  display: block;
  transition: opacity 0.3s;
}

.footer__sns a:hover {
  opacity: 0.7;
}

.footer__sns img {
  width: 32px;
  height: 32px;
}

.footer__logo {
  margin-bottom: 20px;
}

.footer__logo img {
  width: 120px;
  height: auto;
}

.footer__copyright {
  font-size: 11px;
  color: var(--color-text-light);
  margin: 0;
}

/* =====================================================
   SP対応
   ===================================================== */

@media (max-width: 768px) {
  .bottom-cta__list {
    flex-direction: column;
    gap: 15px;
  }

  .bottom-cta__item {
    margin: 0;
  }

  .bottom-cta__item img {
    width: 60vw;
    min-width: 300px;
    max-width: none;
  }
}
