/* ===== フッター全体 ===== */
.site-footer {
  width: 100%;
  background: #2fa4c9;
  color: #fff;
  font-size: 13px; /* ← 基本サイズ */
}

/* 中央1080 */
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* ===== 上段 ===== */
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-col {
  width: 50%;
}

.footer-title-s {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 13px;
}

.footer-title {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 16px;
}

/* ===== 中段ナビ（a前提）===== */
.footer-nav {
  border-top: 1px solid rgba(255,255,255,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding: 20px 0;
  margin-bottom: 20px;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* 上下共通ロジック */
.footer-nav li,
.footer-bottom li {
  position: relative;
  padding-left: 12px;
  margin-right: 25px;
  margin-bottom: 8px;
}

/* 矢印 */
.footer-nav li::before,
.footer-bottom li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
}

/* a */
.footer-nav a,
.footer-bottom a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.6;
  transition: 0.2s;
}

/* hover */
.footer-nav a:hover,
.footer-bottom a:hover {
  text-decoration: none;
  color : #f4f4f4;
}

/* ===== 下段 ===== */
.footer-bottom ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ===== SP ===== */
@media (max-width: 768px) {

  .footer-top {
    flex-direction: column;
  }

  .footer-col {
    width: 100%;
  }

}