html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

.site-header {
  background-color: #eaf6ee;
  padding: 18px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}

.clinic-info {
  display: flex;
  align-items: center;
  transform: translateY(-4px);
}

.clinic-logo {
  height: 60px;
  width: auto;
  margin-right: 12px;
}

.clinic-info h1 {
  font-size: 28px;
  margin: 0;
  color: #2f6b3f;
}

.clinic-info h1 a {
  text-decoration: none;
  color: #2f6b3f;
}

.clinic-info .address {
  font-size: 16px;
  margin: 0 0 0 8px;
  color: #555;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 2px;
  margin-right: 12px;
  transform: translateY(-4px);
}

.nav a {
  text-decoration: none;
  color: #2f6b3f;
  font-weight: bold;
  font-size: 16px;
}

.header-spacer {
  height: 1.2em;
}

.footer {
  text-align: center;
  padding: 12px 0;
  font-size: 14px;
  color: #555;
  margin-top: 36px;
}

@media (max-width: 768px) {
  .nav {
    justify-content: flex-start;
    margin-top: 1em;
    column-gap: 16px;
    row-gap: 6px;
  }

  .site-header {
    padding-left: 20px;
    padding-right: 0;
  }

  .address {
    line-height: 1.4;
  }

  .address br {
    line-height: 1.4;
  }
}
