body {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #f4f7f6;
  color: #333;
  margin: 2em;
}


/* =================================== */
/* ヘッダー
/* =================================== */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 12px 2em;
  margin: -2em -2em 2em -2em;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #3a679c;
  text-decoration: none;
  transition: opacity 0.2s;

  img {
    height: 35px;
    width: auto;
    border-radius: 4px;
  }
}

.site-logo:hover {
  opacity: 0.8;
}


/* =================================== */
/* 既存スタイルの調整
/* =================================== */
h1 {
  margin-top: 0;
}


/* =================================== */
/* レスポンシブ調整
/* =================================== */
@media (max-width: 768px) {
  body {
    margin: 1.5em 0.8em;
  }
  .site-header {
    padding: 12px 1.5em;
    margin: -1.5em -0.8em 1.5em -0.8em;
  }
}