/* Fixed Footer */
.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: #b60020;
  color: white;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none; /* 初期状態では非表示 */
  overflow: hidden;
  padding: 5px 10px;
  box-sizing: border-box;
}

.fixed-footer .ja {
  display: none; /* テキスト非表示 */
}

/* 電話番号エリア */
.fixed-footer .tel {
  position: absolute;
  left: 0;
  right: 0;
  top: 5px;
  margin: 0 auto;
  line-height: 1;
  text-align: center;
  width: fit-content;
}

.fixed-footer .tel a {
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.fixed-footer .tel a:before {
  content: "\f095";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 5px;
  font-size: 0.9rem;
}

/* SNSリンクエリア */
.fixed-footer .sns-links {
  display: none;
}

/* スマホ表示時のみSNSを表示 */
@media (max-width: 767px) {
  .fixed-footer .sns-links {
    display: flex;
    position: absolute;
    left: 10px;
    bottom: 5px;
    gap: 8px;
  }
  
  .fixed-footer .sns-links .sns-icon {
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
  }
}

.fixed-footer .sns-links .sns-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  font-size: 0.8rem;
  transition: transform 0.2s;
}

.fixed-footer .sns-links .sns-icon:hover {
  transform: translateY(-2px);
}

.fixed-footer .sns-links .instagram { background: #E1306C; }
.fixed-footer .sns-links .twitter { background: #1DA1F2; }
.fixed-footer .sns-links .facebook { background: #3B5998; }
.fixed-footer .sns-links .youtube { background: #FF0000; }

/* お問い合わせボタン */
.fixed-footer .contact {
  position: absolute;
  right: 10px;
  top: 5px;
}

.fixed-footer .contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 12px 0 8px;
  background: white;
  color: #b60020;
  border-radius: 12px;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.75rem;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.fixed-footer .contact a:before {
  content: "\f0e0";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 4px;
  font-size: 0.9rem;
}

/* スマホ表示時のみ表示 */
@media (max-width: 768px) {
  .fixed-footer {
    display: block;
    padding: 5px 10px;
  }
  
  /* 画面幅が狭い場合の調整 */
  @media (max-width: 480px) {
    .fixed-footer .tel a {
      font-size: 0.7rem;
    }
    
    .fixed-footer .contact a {
      font-size: 0.7rem;
      padding: 0 12px;
      height: 32px;
    }
    
    .fixed-footer .sns-links .sns-icon {
      width: 22px;
      height: 22px;
      font-size: 0.7rem;
    }
  }
}

/* フッターが表示されている場合の余白調整 */
body {
  padding-bottom: 0;
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}
