/* ========================================
   Footer
======================================== */

.site-footer {
  background: #91D8F5;
  color: #4C4F50;
  padding: 50px 20px 22px;
}

.footer-inner {
  width: min(1000px, 100%);
  margin: 0 auto;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  padding-bottom: 35px;
}

.footer-nav div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-nav strong {
  margin-bottom: 3px;
  font-size: 15px;
}

.footer-nav a {
  color: #4C4F50;
  text-decoration: none;
  font-size: 15px;
}

.footer-nav a:hover {
  text-decoration: underline;
}
/* ========================================
   Footer Extra Links
======================================== */

.footer-extra-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;

    margin-top: 25px;
}


/* 共通リンク */

.footer-extra-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4C4F50;    
    font-size: 15px;
    line-height: 1.5;

    text-decoration: none;
}


/* アイコン */

.footer-icon-link img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.footer-contact {
  text-align: center;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 45px;
}

.footer-contact p {
  margin: 0;
}

.footer-logo {
  display: block;
  width: min(340px, 70%);
  margin: 30px auto 5px;
}

.copyright {
  margin: 0;
  text-align: center;
  font-size: 11px;
}

