.site-footer {
  background-color: #1d3147;
  color: #fff;
  padding: 40px 20px;
  font-family: sans-serif;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-column {
  min-width: 180px;
}

.footer-column h4 {
  font-size: 16px;
  color:#fff;
  margin-bottom: 12px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 4px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #fff !important;
  text-decoration: none !important;
  font-size: 14px;
}
.footer-column ul li a:hover {
  color: #fff !important;
  text-decoration: none !important;
}

.site-footer a:not(.button):not(.components-button){
	color: #fff !important;
}

.footer-company-box {
  background-color: #fff;
  color: #000;
  border-radius: 10px;
  padding: 20px;
  max-width: 280px;
  font-size: 14px;
  line-height: 1.6;
}

/* フッターのズレ対策（必須） */
.site-footer{
  clear: both;          /* ← これで商品一覧の float を確実にクリア */
  width: 100%;
  padding: 40px 0;
}


.site-footer{
  background: #0f2b3a;  /* 必要ならテーマに合わせて */
  color: #fff;
}
.site-footer a{ color: inherit; }
.site-footer .footer-inner{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 24px;
}
.site-footer .footer-company-box{
  grid-column: 1 / -1;  /* 下段で横いっぱいに */
}
.site-footer ul{ list-style: none; margin: 0; padding: 0; }
.site-footer li + li{ margin-top: .4rem; }