/* assets/css/style-footer-banner.css */
.footer-banner {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Noto Serif JP', serif;
}

.footer-banner__link {
  display: inline-block;
  margin-bottom: 30px;
}

.footer-banner__logo {
  width: 100px;
  height: auto;
}

.footer-banner__title {
  font-size: 1.8em;
  color: #111;
  margin-bottom: 20px;
}

.footer-banner__text {
  color: #555;
  font-size: 1em;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* モバイル調整例 */
@media (max-width: 767px) {
  .footer-banner {
    padding: 40px 15px;
  }
  .footer-banner__title {
    font-size: 1.6em;
  }
  .footer-banner__text {
    font-size: 0.95em;
  }
}