/* フッターレイアウト調整 */
footer #footerContainer .flex_jcs {
  align-items: flex-start;
}

footer #footerContainer .right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center; /* Contact Usボタンと著作権表示を中央軸で揃える */
  height: 100%;
  min-height: 120px; /* 左側のナビゲーション高さに合わせて調整 */
}

/* 製品情報と著作権を上部にグループ化 */
footer #footerContainer .footer_info {
  margin-bottom: 5px;
  order: -2;
}

footer #footerContainer .footer_copy {
  margin-top: 0;
  margin-bottom: 15px;
  order: -1;
}

footer #footerContainer .buyBtn {
    margin-top: 0;
    margin-bottom: 5px;
    order: -3;
}

/* フッターナビゲーションリンクの間隔を調整 */
footer #footerContainer .rotatelinks_wrap li {
    margin-bottom: 10px; /* デフォルトの間隔を半分に短縮 */
}

footer #footerContainer .rotatelinks_wrap li:last-child {
    margin-bottom: 0;
}

/* レスポンシブ対応 */
@media screen and (max-width: 750px) {
  footer #footerContainer .right {
    min-height: auto;
    margin-top: 30px;
  }
  
  footer #footerContainer .buyBtn {
    margin-bottom: 20px;
  }
}