
/* footer-style.css */
.modern-footer {
  background-color: #e6f5ea;
  color: #333;
  padding: 3em 1.5em;
  font-family: "ヒラギノ角ゴ ProN", "游ゴシック", sans-serif;
}
.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-column h3 {
  font-size: 1.2em;
  margin-bottom: 1em;
  color: #2e5942;
}
.footer-phone a {
  font-size: 1.6em;
  color: #2e5942;
  font-weight: bold;
  text-decoration: none;
}
.note, .hours-title {
  margin-top: 0.5em;
  color: #cc0000;
}
.hours {
  list-style: none;
  padding-left: 0;
  margin: 0.5em 0;
}
.footer-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  justify-content: center;
  margin-top: 1em;
}
.footer-buttons .btn {
  display: inline-block;
  text-align: center;
  padding: 0.75em 1em;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.95em;
}
.btn.primary {
  background-color: #2e5942;
  color: #ffffff;
}
.btn.outline {
  border: 1px solid #2e5942;
  color: #2e5942;
  background-color: #fff;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.5em;
}
.footer-links a {
  color: #2e5942;
  text-decoration: none;
}
.footer-links .disabled {
  color: #888888;
}
.footer-banners img {
  max-width: 100%;
  height: auto;
  margin-top: 1em;
}
.footer-bottom {
  text-align: center;
  margin-top: 3em;
  border-top: 1px solid #ccc;
  padding-top: 1em;
  font-size: 0.9em;
  color: #555;
}
.footer-sns {
  text-align: center;
  margin-top: 2em;
}
.footer-sns a {
  margin: 0 0.5em;
  text-decoration: none;
  font-size: 1.1em;
}
.footer-map iframe {
  width: 100%;
  height: 250px;
  border: none;
  margin-top: 1em;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}
