/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 15 2026 | 05:21:42 */
/* 固定お問い合わせボタン */

.fixed-contact-buttons {
  position: fixed;
  left: 20px;
  bottom: 20px;
  display: flex;
  gap: 12px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.fixed-contact-buttons.is-show {
  opacity: 1;
  transform: translateY(0);
}

.fixed-contact-btn {
	display: block;
	width: 100px;
	line-height: 0;
}

.fixed-contact-btn img {
	display: block;
	width: 100%;
	height: auto;
	filter:
	  drop-shadow(2px 2px 2px rgba(0, 0, 0, .1))
	  drop-shadow(4px 4px 4px rgba(0, 0, 0, .3));
}

/* スマホで少し小さくしたい場合 */
@media (max-width: 767px) {
  .fixed-contact-buttons {
    left: 10px;
    bottom: 10px;
    gap: 8px;
  }

  .fixed-contact-btn {
    width: 80px;
  }
}