.site-footer {
    background-color: rgba(111, 152, 60, 0.8); /* 透明度80% */;
    color: #fff;
    padding: 60px 20px 30px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
  }
  
  .footer-top {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }
  
  .footer-info {
    flex: 1;
    min-width: 280px;
  }
  
  .footer-logo {
    width: 300px;
    margin-bottom: 20px;
  }
  
  .footer-address {
    margin-bottom: 20px;
    line-height: 1.8;
  }
  
  .footer-hours {
    margin-top: 20px;
  }
  
  .hours-table {
    width: 100%;
    background-color: #6F983C; /* グリーン背景 */
    color: #fff;
    border-collapse: collapse;
    text-align: center;
    font-size: 14px;
  }
  
  .hours-table th,
  .hours-table td {
    padding: 10px;
    border: 1px solid #fff;
  }
  
  .hours-table th {
    font-weight: bold;
    white-space: nowrap;
  }
  
  .hours-table td:empty {
    background-color: transparent;
  }
  
  .footer-menu {
    flex: 1;
    min-width: 280px;
    margin-top: 100px;
  }
  
  .footer-menu h4 {
    margin-bottom: 15px;
    font-weight: bold;
  }
  
  .footer-menu ul {
    list-style: none;
    padding: 0;
    columns: 2;
    gap: 20px;
  }
  
  .footer-menu li {
    margin-bottom: 8px;
  }
  
  .footer-menu a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-menu a:hover {
    text-decoration: underline;
  }
  
  .footer-banner {
    margin-top: 20px;
  }
  
  .footer-banner img {
    max-width: 300px;
    height: auto;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    color: #fff;
    font-size: 12px;
  }
  
  /* モバイル対応 */
  @media screen and (max-width: 768px) {
    .footer-top {
      flex-direction: column;
    }
	.footer-menu {
    margin-top: 0px;
}
  
    .footer-menu ul {
      columns: 1;
    }
  
    .footer-logo {
      width: 160px;
    }
  }
 /*==================================================================================================================================

  *固定CTAラッパー

==================================================================================================================================*/
.fixed-cta {
  position: fixed;
  bottom: 20px; /* 画面下部に配置 */
  right: 20px;  /* 画面右端に配置 */
  display: flex;
  gap: 10px; /* ボタン間隔を少し広げる */
  z-index: 9999;
  flex-wrap: nowrap; /* ボタンが折り返さないように設定 */
  justify-content: flex-end; /* 右端に配置 */
}

/* 各ボタン共通スタイル */
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px; /* アイコンとテキストの間隔を少し広げる */
  padding: 12px 18px; /* 横長にするためにパディングを調整 */
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: #fff;
  font-size: 1rem;
  box-sizing: border-box;
  border: 2px solid;
  white-space: nowrap; /* テキストを改行させない */
  overflow: hidden; /* ボタン内のテキストが長い場合に隠れる */
  text-overflow: ellipsis; /* 長いテキストは「...」で切り捨て */
}

/* アイコン */
.cta-btn i {
  font-size: 1.3em; /* アイコンサイズ調整 */
}

/* 電話ボタン */
.cta-tel {
  color: #111b2f; /* 文字色変更 */
  border-color: #111b2f; /* ボーダー色変更 */
}
.cta-tel:hover {
  background: #525c6c;
  color: #fff;
}

/* TOPボタン（正方形の〇囲み） */
.cta-top {
  color: #fff;
  border-color: #B5CB5D; /* ボーダー色変更 */
  background-color: #B5CB5D; /* 背景色変更 */
  border-radius: 50%; /* 〇形にする */
  width: 55px; /* サイズを少し小さく */
  height: 55px; /* サイズを少し小さく */
  font-size: 1rem; /* アイコンサイズ調整 */
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative; /* 上段に表示しないように */
}

.cta-top:hover {
  background-color: #B5CB5D; /* 背景色をさらに薄く */
  border-color: #B5CB5D; /* ボーダー色をさらに薄く */
}

/* スマホ対応 */
@media (max-width: 768px) {
  .fixed-cta {
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    padding: 8px;
  }

  .cta-btn {
    width: 48%; /* 電話とWEB予約ボタンを横並びにする */
    padding: 12px 0;
    font-size: 0.8rem; /* フォントサイズを調整 */
    text-align: center;
  }

  .cta-btn span {
    display: block;
    text-align: center;
  }

  .cta-top {
    position: absolute;
    top: -55px; /* TOPボタンを少し上に配置 */
    right: 20px; /* 右端に配置 */
    width: 55px;
    height: 55px;
    font-size: 1rem; /* アイコンサイズ調整 */
  }
}

/* PC版 */
@media (min-width: 769px) {
  .fixed-cta {
    bottom: 20px;
    left: 0;
    width: auto;
    justify-content: flex-end; /* 右端に配置 */
    gap: 15px; /* ボタン間隔を調整 */
  }

  .cta-btn {
    width: auto; /* ボタンの幅を自動調整 */
    padding: 15px 25px; /* ボタンを大きく */
    font-size: 1.2rem; /* フォントサイズ調整 */
  }

  .cta-top {
    width: 70px; /* サイズを大きく */
    height: 70px; /* サイズを大きく */
    font-size: 1.2rem; /* アイコンサイズ調整 */
    position: relative; /* 上段に表示しないように */
  }
}
/* PC版：非表示にする */
@media (min-width: 769px) {
  .fixed-cta {
    display: none; /* ←これだけでOK */
  }
 