@charset "UTF-8";
/* ==========================================================================
   ヘッダーナビゲーション（ロゴ・メニュー両方縮小版）
   ========================================================================== */
.l-header {
  width: 100%;
  background-color: #791336;
  /* --------------------------------------------------
     PC表示
     -------------------------------------------------- */
}
.l-header__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  box-sizing: border-box;
}
.l-header__logo a {
  color: #ffffff;
  text-decoration: none;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  letter-spacing: 0.05em;
}
.l-header__nav ul {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.l-header__nav li:not(:last-child)::after {
  content: "|";
  color: #ffffff;
  margin-left: 10px;
  opacity: 0.5;
}
.l-header__nav a {
  color: #ffffff;
  text-decoration: none;
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
}
@media screen and (min-width: 769px) {
  .l-header__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    gap: 20px;
  }
  .l-header__logo {
    max-width: 350px;
    width: 100%;
    flex-shrink: 1;
  }
  .l-header__logo img {
    width: 100%;
    height: auto;
  }
  .l-header__logo a {
    font-size: 20px;
  }
  .l-header__nav {
    flex-shrink: 1;
    white-space: nowrap;
  }
  .l-header__nav ul {
    gap: clamp(10px, 1.5vw, 20px);
  }
  .l-header__nav li:not(:last-child)::after {
    margin-left: clamp(10px, 1.5vw, 20px);
  }
  .l-header__nav a {
    font-size: clamp(13px, 1.2vw, 15px);
    transition: color 0.3s;
  }
  .l-header__nav a:hover {
    color: #aa853e;
  }
}
