/* フッター全体の背景と余白 */
footer.footer {
  background: #111111;
  color: #ffffff;
  padding: 15px 20px; 
  text-align: center;
}

/* リンクの並びと余白 */
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px 25px;
  margin-bottom: 6px; 
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
}

/* 著作権表示 */
.copyright {
  color: #777777;
  font-size: 11px;
  margin: 0;
}

/* -----------------------------------------
   スマホ用 下部固定コンタクトバー
----------------------------------------- */
.fixed-contact-bar {
  display: none;
}

.fixed-btn {
  flex: 1;
  text-align: center;
  padding: 18px 0;
  color: #ffffff !important;
  font-weight: bold;
  font-size: 16px;
  display: block;
  text-decoration: none;
}

.btn-line {
  background-color: #06C755;
}

.btn-tel {
  background-color: #f39c12; /* アクセントカラー（オレンジ/イエロー） */
}

/* スマホ表示（画面幅768px以下）の時だけ最下部に固定表示 */
@media (max-width: 768px) {
  body {
    padding-bottom: 80px; /* 固定バーと被らないよう下部に余白を作る */
  }
  .fixed-contact-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.7);
  }
}