/* 共通スタイル */
.footer-icon-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #FFCC00;
  border-bottom: 0.1px solid #3333332b;
  overflow: hidden;
  padding: 32px 15px;
  gap: 4px;
}

.footer-icon-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* アイコン共通 */
.footer-icon {
  padding: 4px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 電話番号部分 */
.footer-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-left: 1px solid #333;
  padding-left: 8px;
  color: #333;
  font-family: 'Noto Sans Thai';
  font-weight: bold;
}

/* SPデフォルトサイズ */
.footer-icon {
  max-width: 40px;
  height: 40px;
}

.footer-icon-text {
  font-size: 15px;
}

/* PC用にオーバーライド */
@media screen and (min-width: 768px) {
  .footer-icon-wrapper {
    padding: 40px 240px;
  }

  .footer-icon-group {
    gap: 20px;
  }

  .footer-icon {
    width: 40px;
    height: 40px;
  }

  .footer-tel {
    padding-left: 20px;
  }

  .footer-icon-text {
    font-size: 24px;
  }
}
