
/* ==============================
   ヘッダー
============================== */
header.site-header {

}

.site-header .site-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
}

.site-header .site-description {
  font-size: 0.9rem;
  color: #666;
}

/* ==============================
   ナビゲーション
============================== */
.global-nav {
  margin-top: 10px;
  text-align: center;
}

.nav-list {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
}

.nav-list li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-list li a:hover {
  color: #07307B;
}

/* ==============================
   フッター
============================== */
footer.site-footer {
  text-align: center;
  background-color: #00a3d9;
  color: #ffffff;
  padding: 60px 20px;
}
footer .footer-info a {
  color: #ffffff;
  text-decoration: none;
}
.footer-nav {
  margin-top: 10px;
}

.footer-list {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.footer-list li a {
  color: #ccc;
  text-decoration: none;
}
.footer-list li a:hover {
    text-decoration: underline;
}
.footer-list li a:hover {
  color: #fff;
}

.pagetop {
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #0076ff;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: all 0.3s ease;
}

.pagetop:hover {
  transform: translateY(-4px);
  background: #005ed3;
}

.breadcrumb {
  font-size: 12px;
  margin: 8px;
  padding-right: 8px;
}

.breadcrumb ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 0;
  margin: 0;
  justify-content: flex-end;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  color: #555;
}

.breadcrumb li::after {
  content: ">";
  margin: 0 8px;
  color: #999;
}

.breadcrumb li:last-child::after {
  content: "";
  margin: 0;
}

.breadcrumb a {
  text-decoration: none;
  color: #007BFF;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

