/*
Theme Name: Divi tofutech
Theme URI: https://tofutech.xyz
Description: tofutechが提供する、Diviの日本語を直した子テーマです。
Author: Naomi Suzuki
Author URI: https://tofutech.xyz
Template: Divi
Version: 1.0.0
*/

/* Start your custom CSS bellow this comment
============================================ */

.et_pb_equal_columns > .et_pb_column {
  margin-top: auto;
  margin-bottom: auto;
}


/* デフォルト（PC表示）で横並び */
.footer-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
  flex-direction: row; /* 横並び */
}

/* モバイル（768px以下）でも横並び */
@media (max-width: 768px) {
  .footer-icons {
    display: flex;
    flex-direction: row; /* 横並びを強制 */
    justify-content: center;
    gap: 10px;
  }
}