/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 15 2026 | 15:38:19 */
/* ===== 疑似要素削除 ===== */
.dp-footer-bar-icon::before {
  content: none !important;
  display: none !important;
}

/* ===== リスト ===== */
.dp-footer-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

/* ===== 縦並び ===== */
.dp-footer-bar-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ===== アイコン＋テキスト ===== */
.dp-footer-bar-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  font-size: 12px; /* ←これが超重要（0にしない） */
  line-height: 1.2;
  color: #333;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 26px;
  padding-top: 35px; /* ←アイコン分スペース */
}
#dp-footer-bar .dp-footer-bar-item + .dp-footer-bar-item {
    border-left: solid 2px #dbdbdb;
}
#dp-footer-bar .dp-footer-bar {
    border-top: solid 2px #ffffff;
    border: none;
    background: #ffffffd4;
    padding: 0;
}
/* ===== 疑似要素を完全削除 ===== */
.dp-footer-bar-icon::before {
  content: none !important;
  display: none !important;
}

/* ===== TEL ===== */
.icon-phone {
  background-image: url("https://hogushimanoutcallmassagenaha.com/wp-content/uploads/2026/04/tel-79acd5.svg");
}

/* ===== LINE ===== */
.icon-pencil {
  background-image: url("https://hogushimanoutcallmassagenaha.com/wp-content/uploads/2026/04/line-ca40df.svg");
}
.dp-footer-bar-type1 #dp-footer-bar {
    transform: translateY(60px);
    opacity: 0;
    filter: blur(6px);
    visibility: hidden;

    transition: 
        transform 1s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 1.2s ease,
        filter 1s ease;
}

.dp-footer-bar-type1 #dp-footer-bar.active {
    transform: translateY(0);
    opacity: 1;
    filter: blur(0);
    visibility: visible;
}