.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  max-width: 1024px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

#site-header-logo-container {
  display: flex;
  justify-content: space-between;
}

#site-header {
  background: #D7DEE8;
}

#site-header-container {
  display: grid;
  min-height: 70px;
}

#global-nav ul {
  width: 100%;
  justify-content: space-between;
}

.global-nav-list li a {
  padding-block: 1.5em;
  padding-inline: 0 !important;
}

.global-nav-name {
  font-size: 16px !important;
  font-weight: normal;
  color: #093263;
  font-family: Noto Sans JP;
}

.global-nav-name a {
  color: #093263;
}

.global-nav-position {
  font-weight: bold;
  display: flex;
  align-items: flex-end;
}


.site-footer {
  background: #093263;
  color: #ffffff;
  font-size: 17px;
}

.nav li a {
  color: #ffffff;
  font-size: 17px;
}


.site-footer-container {
  display: flex;
}

#site-footer-left {
  display: flex;
  justify-content: space-around;
  width: 50%;
}

#site-footer-left a {
  color: #ffffff;
}

#site-footer-left-menu {
  display: flex;
  align-items: center;
}

#site-footer-right {
  width: 50%
}

/* Footer Navigation Layout */
.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Social Menu Layout */
.footer-social-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin-top: 30px;
  margin-right: 36px;
  margin-bottom: 16px;
  padding: 0;
}

/* Base Icon Style */
.footer-social-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: #1a2f5d; /* Default navy background */
}

.footer-social-list a i {
  margin: 0 auto;
}

/* Individual Brand Colors */
.footer-social-list a[href*="facebook.com"] {
  background-color: #1877f2;
}

.footer-social-list a[href*="twitter.com"],
.footer-social-list a[href*="x.com"] {
  background-color: #000000;
}

.footer-social-list a[href*="instagram.com"] {
  background: radial-gradient(circle at 30% 30%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.footer-social-list a[href*="youtube.com"] {
  background-color: #ff0000;
}

.footer-social-list a[href*="linkedin.com"] {
  background-color: #0077b5;
}

.footer-social-list a[href*="tiktok.com"] {
  background-color: #000000;
}

.footer-social-list a[href*="github.com"] {
  background-color: #24292e;
}

/* Hover Animation */
.footer-social-list a:hover {
  opacity: 0.8;
  color: #fff;
}

/* Optional: responsive size for smaller screens */
@media (max-width: 768px) {
  .footer-social-list a {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  #site-header-logo-container .global-nav-position a {
    display: none;
  }

  #site-header { 
    height: 60px;
  }
}
