/* footer.css — フッター専用スタイル（header.css から分離） */

/* Footer: 黒背景 + 白ロゴ + 薄グレーライン + コピーライト */
.site-footer{
  background:#000000;
  color:#ffffff;
  padding:36px 16px;
}

.site-footer-inner{
  max-width:1100px;
  margin:0 auto;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}

/* ロゴ：幅180pxで中央表示（SVGが白なのでそのまま使える） */
.footer-logo{
  width:180px;
  max-width:90%;
  height:auto;
  display:block;
  margin:0 auto;
}

/* 薄いグレーライン（ロゴの下） */
.footer-line{
  width:60%;
  max-width:480px;
  height:1px;
  background:#e6e6e6; /* 薄グレー */
  opacity:0.6;
  margin-top:8px;
  margin-bottom:8px;
}

/* コピーライト文言 */
.footer-copy{
  margin:0;
  color:#d1d5db; /* 白より少し落ち着いたグレー */
  font-size:10px;
  line-height:1.6;
}

/* レスポンシブ: 小さい画面ではロゴを縮小 */
@media (max-width:680px){
  .site-footer{
    padding:24px 12px;
  }
  .footer-logo{
    width:180px;
  }
  .footer-line{
    width:80%;
    max-width:360px;
  }
  .footer-copy{
    font-size:13px;
  }
}