/*
Theme Name: Lightning Child Sample
Theme URI:
Template: lightning
Description:
Author:
Tags:
Version: 0.6.1
*/


/* =======================================
   電話番号整理
======================================= */
/*電話番号の見せ方*/
.acf-tel-group {
  display: flex !important;
  align-items: center;
  gap: 0.25em !important; /* ← アイコンと数字の間隔 */
  margin: 0 !important;
  padding: 0 !important;
}

.acf-tel-group p {
  margin: 0 !important;
}


/* =======================================
   ２ボタン整理
======================================= */
/* ボタン行：左揃え ＆ スキマ詰める */
.acf-button-row {
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem; /* 好みで調整 */
}

/* 空の p タグを消す */
.acf-button-row > p {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* 子要素を flex item として扱わせる（重要） */
.acf-button-row > div {
  display: flex !important;
  align-items: center;
  margin: 0 !important;
}

/* VKボタンの不要余白を削る */
.acf-button-row .vk_button {
  margin: 0 !important;
}


