/* =========================================================
   HP-FOOTER-001 フッター共通
========================================================= */
.site-footer{
  padding:30px 20px;
  background:#2d19c3;
  color:#fff;
  opacity:0.8;
  font-size:14px;                           /* 旧footer指定で有効だった文字サイズを統合 */
  user-select:none;                         /* フッター内の不要な文字選択を抑止 */
  -webkit-user-select:none;                 /* Safari向け文字選択抑止 */
}

/* =========================================================
   HP-FOOTER-002 内部レイアウト
========================================================= */
.footer-inner{
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding-top:10px;
}

/* =========================================================
   HP-FOOTER-003 左エリア・会社情報
========================================================= */
.footer-company{
  flex:1;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:5px;
}

.footer-logo{
  height:140px;
  width:auto;
}

.footer-logo-n{
  height:60px;
  width:auto;
}

.footer-isms{
  height:58px;
  width:auto;
}

.footer-info{
  margin-top:10px;
  user-select:text;                         /* 社名・郵便番号・住所・TEL・FAXのみ選択可能 */
  -webkit-user-select:text;                 /* Safari向け文字選択許可 */
}

.footer-info p{
  margin-top:10px;
  line-height:1.2;
  font-size:16px;
  color:rgba(255,255,255,0.92);
}

/* =========================================================
   HP-FOOTER-004 右エリア・リンク
========================================================= */
.footer-nav{
  width:600px;
}

.footer-links{
  display:flex;
  flex-direction:column;
  margin-top:10px;
  gap:18px;
}

.footer-links a{
  color:white;
  text-decoration:none;
  font-size:16px;
  transition:0.25s;
}

.footer-links a:hover{
  opacity:0.7;
}

/* =========================================================
   HP-FOOTER-005 お問い合わせボタン
========================================================= */
.contact-button-wrap{
  padding:40px 0 0;
}

.contact-button{
  display:inline-block;
  padding:8px 40px;
  background:#0b4ea2;
  color:#fff;
  text-decoration:none;
  border-radius:999px;
  font-size:16px;
  border:2px solid #fff;
  transition:0.3s;
}

.contact-button:hover{
  background:#fff;
  color:#0b4ea2;
}

/* =========================================================
   HP-FOOTER-006 下部・コピーライト
========================================================= */
.footer-bottom{
  margin-top:30px;
  text-align:center;
}

.footer-bottom p{
  font-size:14px;
  color:rgba(255,255,255,0.75);
}

/* =========================================================
   HP-FOOTER-007 バナー広告
========================================================= */
.banner-area{
  width:100%;
  display:flex;
  justify-content:flex-end;
  padding:10px 20px;
  box-sizing:border-box;
}

/* =========================================================
   HP-FOOTER-101 SP表示（768px以下）
========================================================= */
@media(max-width:768px){
  .footer-inner{
    flex-direction:column;                  /* SPでは左右エリアを縦並びに変更 */
    align-items:center;                     /* 全体を中央寄せ */
    gap:28px;                               /* 上下ブロック間の余白 */
    text-align:center;                      /* テキストを中央揃え */
  }

  .footer-company{
    width:100%;                             /* 会社情報エリアを横幅いっぱいにする */
  }

  .footer-brand{
    justify-content:center;                 /* ロゴ群を中央寄せ */
    flex-wrap:wrap;                         /* 画面幅が狭い場合は折り返す */
    gap:8px;                                /* ロゴ同士の間隔 */
  }

  .footer-logo{
    height:72px;                            /* SPではロゴを小さくする */
    width:auto;                             /* 縦横比を維持 */
  }

  .footer-isms{
    height:42px;                            /* SPでは認証画像を小さくする */
    width:auto;                             /* 縦横比を維持 */
  }

  .footer-info p{
    font-size:14px;                         /* SP用に文字サイズを少し下げる */
    line-height:1.6;                        /* 読みやすい行間に調整 */
  }

  .footer-nav{
    width:100%;                             /* 右エリアの固定幅を解除 */
  }

  .footer-links{
    align-items:center;                     /* リンクを中央寄せ */
    gap:14px;                               /* リンク間隔を少し詰める */
  }

  .contact-button-wrap{
    text-align:center;                      /* お問い合わせボタンを中央寄せ */
    padding-top:28px;                       /* 上余白をSP向けに調整 */
  }

  .banner-area{
    justify-content:center;                 /* バナーを中央寄せ */
    padding:16px 0 0;                       /* SP向け余白 */
  }
}
