@charset "UTF-8";
/* CSS Document */ :root {
  --ink: #111;
  --muted: #7a7a86;
  --pad: min(5vw, 24px);
  --max: 1200px;
  --bd: #e9e9ee;
  --bg: #666666;
  --fg: #fff;
}
.mp-footer {
  background: var(--bg);
  color: var(--fg);
  margin-top: clamp(24px, 6vw, 64px);
}
.mp-footer__legal {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px var(--pad) 48px;
}
.mp-footer__links {
  list-style: none;
  display: flex;
  gap: 14px;
  padding: 0;
  margin: 0 0 12px;
  flex-wrap: wrap;
}
.mp-footer__links a {
  color: #dfe3ea;
  text-decoration: none;
  font-size: 13px;
}
.mp-footer__links a:hover {
  text-decoration: underline
}
.mp-footer__copy {
  font-size: 12px;
  color: #b9bfca;
  margin: 0;
  line-height: 1.8;
}
/* コピーライトとロゴを左右に並べる */
.mp-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap; /* スマホ時に折り返し可 */
}
.mp-footer__lp-logo img {
  height: 48px;
  width: auto;
  display: block;
}
/* ▼ 既存の横並び（PC）は維持したまま、リンクは中央寄せ */
.mp-footer__links {
  justify-content: center; /* 既にflexなら中央寄せに */
  text-align: center;
}
/* ▼ スマホ時：ナビ → コピーライト → ロゴ の順で縦並び＆中央寄せ */
@media (max-width: 767px) {
  .mp-footer__bottom {
    display: flex; /* 既存の指定があってもOK。上書きします */
    flex-direction: column; /* 縦並び */
    align-items: center; /* 中央寄せ */
    text-align: center; /* コピーライト中央寄せ */
    gap: 12px;
  }
  .mp-footer__copy {
    margin: 0; /* 余白を整える */
    text-align: center;
  }
  .mp-footer__lp-logo img {
    height: 40px; /* モバイルは少し小さめ（お好みで調整可） */
    width: auto;
    display: block;
  }
}
/* 768px〜：文字サイズ微調整 */
@media (min-width:768px) {
  .mp-footer__copy {
    font-size: 13px
  }
}
.mp-footer__banners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  background-color: #666666; /* 任意で背景を薄く */
}

.mp-footer__banners img {
  max-width: 360px;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.mp-footer__banners img:hover {
  transform: scale(1.03);
}

@media (max-width: 600px) {
  .mp-footer__banners {
    flex-direction: column;
    gap: 16px;
  }
  .mp-footer__banners img {
    width: 80%;
  }
}
