@charset "utf-8";
/*
Theme Name:genesis_tcd103-child
Theme URI:
Description:WordPressテーマ「Genesis」の自作子テーマです。
Template:genesis_tcd103
Author:Kenta Sato
Author URI:http://tcd-theme.com/
*/
@charset "utf-8";
/*
Theme Name:genesis_tcd103-child
Theme URI:
Description:WordPressテーマ「Genesis」の自作子テーマです。
Template:genesis_tcd103
Author:Kenta Sato
Author URI:http://tcd-theme.com/
*/

/* ===== フッターバナー：広告バナー用（小さく並べる） ===== */
#footer_banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  border-top: 1px solid #ddd;
  padding: 10px 0;
}

/* 1つのバナー枠 */
#footer_banner .item {
  width: auto;
  margin: 0;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: static;
  box-sizing: border-box;
}

/* 画像ラッパー */
#footer_banner .image_wrap {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
}

/* 実際の画像 */
#footer_banner .image {
  position: static;
  width: auto;
  height: 50px;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

/* モバイル */
@media (max-width: 768px) {
  #footer_banner {
    gap: 10px;
  }
}