

footer {
  background: #fff;
  color: #000;
  text-align: left;
  position: relative;
}


.top-back{
  border-top: 1px  solid #c3c3c3;
  border-bottom: 1px  solid #c3c3c3;
  text-align:  center;
  width:100%;
}
.arrow {
  display: inline-block;
  transform: rotate(-90deg);
  padding-left: 4px;
  font-size: 2.4rem;
  color: #c3c3c3;
}



.footer-content {
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-links {
  display: flex;
  gap: 60px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #000;
  text-decoration: none;
}

.footer-company {
  text-align: left;
  max-width: 320px;
}

.footer-company .logo {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.footer-company address {
font-style: normal;
text-align: left;
  
}

.footer-bottom {
  background: #e60012;
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
}
/* SP（スマホ）表示時の順番入れ替え */
@media screen and (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-company {
    order: -1; /* ← ロゴ側を上に */
    text-align: center;
  }

 
 .footer-links {
  gap: 104px;
}
}
