/* Custom styles for Starter Theme */

/* PoC時点のサンプルCSS */

.site-header {
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-logo a {
  font-size: 20px;
  font-weight: 700;
  color: #0b1220;
  text-decoration: none;
	display: block;
	width: 200px;
}
.site-logo a img {
	width: 100%;
}
.site-nav .nav-list {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav .nav-list li a {
  text-decoration: none;
  color: #0b1220;
  font-weight: 500;
  transition: color .2s ease;
}
.site-nav .nav-list li a:hover {
  color: #39aa63; /* グリーンのアクセント */
}


