/* ===== Footer ===== */
.clubaction_footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 40px 16px 60px;
  font-family: "Noto Sans JP", sans-serif;
}

/* SNSリンクエリア */
.clubaction_sns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}

.clubaction_sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}
.clubaction_sns a:hover {
  opacity: 0.7;
}

.clubaction_sns img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* スローガンロゴ（ココロ、たぎる。） */
.clubaction_purpose_img {
  display: block;
  margin: 0 auto 20px;
  width: 95px;
  height: auto;
}

/* B.LEAGUEロゴ */
.clubaction_bleague_img {
  display: block;
  margin: 0 auto 28px;
  width: 32px;
  height: auto;
}

/* 法人名とコピーライト */
.clubaction_corp {
  font-size: 0.8rem;
  line-height: 1.8;
  margin-bottom: 4px;
  color: #fff;
}

.clubaction_copy {
  font-size: 0.75rem;
  color: #aaa;
}

/* ===== PC（700px以上） ===== */
@media (min-width: 700px) {
  .clubaction_footer {
    padding: 60px 20px 80px;
  }
}