.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;
    }
  }
  