/* ==========================================================
   Footer（header転用OK / media 6個 左半分）
========================================================== */

.site-footer {
  border-top: 1px solid #eee;
  background: #ffffff;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 左：メディアアイコン */
.footer-media {
  flex: 0 0 50%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.footer-media a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-media img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* 右：コピーライト */
.footer-copy {
  margin-left: 150px;
  font-size: 0.8rem;
  color: #6D7972;
  text-align: right;
  letter-spacing: 0.08em;
}

@media (max-width:768px){

  .footer-inner{
    flex-direction:column;
    align-items:center;
    gap:1rem;
  }

  .footer-media{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:nowrap;      /* 折り返さない */
    gap:10px;
  }

  .footer-media a{
    width:36px;
    height:36px;
    flex-shrink:0;
  }

  .footer-media img{
    width:36px;
    height:36px;
    object-fit:contain;
  }

  .footer-copy{
    width:100%;
    margin:0;
    text-align:center;
    font-size:0.75rem;
    line-height:1.5;
  }

.footer-created{
  font-size:0.7rem;
  color:#6D7972;
  letter-spacing:0.15em;
  font-style:italic;
  }
}