/* フッター全体 */
footer {
  width: 100%;
  background: #ffffff;
  border-top: 2px solid #0000c8;
  font-family: 'Noto Sans JP', sans-serif;
}

.footer-inner {
  width: 800px;
  margin: 0 auto;
  padding: 40px 0 20px;
}

.link-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
 
.link-group {
  display: flex;
  align-items: center;
  gap: 16px;
}
 
.section-label {
  font-size: 12px;
  font-weight: 700;
  color: #000096;
  letter-spacing: 1px;
  white-space: nowrap;
}
 
.divider-v {
  width: 1px;
  height: 40px;
  background: #ccccee;
}
 
.divider-h {
  width: 1px;
  height: 44px;
  background: #0000c8;
}
 
.logo-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
 
.logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: box-shadow 0.15s;
}

.logo-link:hover {
  box-shadow: 0 2px 8px rgba(0,0,150,0.12);
}

.logo-link img {
  width: auto;
  height: 28px;
  object-fit: contain;
  display: block;
}

.section-label{
    font-size: 15px;
}

/* ナビ */
.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 14px;
  margin-bottom: 5px;
}

.footer-nav a {
  text-decoration: none;
  color: #000096;
  font-size: 15px;
  padding: 5px 12px;
  border-radius: 16px;
  transition: background 0.15s, color 0.15s;
}

.footer-nav a:hover {
  background: #000096;
  color: #ffffff;
}

/* コピーライト */
.footer-copy {
  text-align: center;
  font-size: 14px;
  color: #ffffff;
  /*border-top: 1px solid #0000c8;*/
  background-color: #000096;
  padding: 8px 0;
}