/* 固定ヘッダー */
.site-header-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #f4f4f4;
  box-shadow: var(--header-shadow, 0 2px 4px rgba(0,0,0,0.1));
  z-index: 9999;
}
.site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 65px;
  box-sizing: border-box;
}
.header-contact-btn {
  background: #bf2d06;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.header-contact-btn:hover {
  background: #005f8d;
}

/* ヘッダー分の余白確保 */
body {
  padding-top: 65px;
}

/* PCナビメニュー（デスクトップ） */
/* PCナビ：全体帯 */
.pc-nav {
	  background : #010101;
  border-bottom : 1px solid #555151;
  position: sticky;
  top: 65px;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* 中身の幅制限のみ（paddingは無し！） */
.pc-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* 均等メニュー配置 */
.pc-nav ul.eq-menu {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* 各メニューを均等幅・中央揃え */
.pc-nav ul.eq-menu li {
  flex: 1;
  text-align: center;
}

/* aタグをblock化して上下余白を除去 */
.pc-nav ul.eq-menu li a {
  display: block;
  width: 100%;
  padding: 16px 0;
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  transition: background-color 0.3s ease;
  line-height: 1.4;
}

/* オンマウス時：背景を全体にピッタリ密着 */
.pc-nav ul.eq-menu li a:hover {
  background-color: #a83d49; /* 赤系背景 */
  color: #fff;
}

/* SPハンバーガー */
/* 背面のスクロールを禁止 */
body.no-scroll {
  overflow: hidden;
  height: 100%;
}

.sp-nav-toggle {
  display: none;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 10000;
}
.sp-nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  margin: 4px 0;
  background-color: #333;
  border-radius: 2px;
}

/* スマホ用ナビメニュー本体 */
.sp-nav {
  /* すでに記述してあるスタイルの一部として以下を含めてください */
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100% - 60px);
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  padding: 20px;
  box-sizing: border-box;
  overflow: auto;
}

.sp-nav ul {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 10px;
  list-style: none;
  margin: 0;
  max-height: 100%;
  overflow-y: auto;
}


.sp-nav li {
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
}

.sp-nav li:last-child {
  border-bottom: none;
}

.sp-nav li a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  display: block;
}
.sp-nav li a:hover {
  color: #0073aa;
}


/* 開閉状態 */
.sp-nav.open {
  display: block;
}

/* スマホレイアウト */
@media screen and (max-width: 768px) {
  .pc-nav {
    display: none;
  }
  .sp-nav-toggle {
    display: block;
  }
  .site-header-inner {
    height: 60px;
  }
  .header-contact-btn {
    font-size: 13px;
    padding: 6px 12px;
    margin-right: 45px;
  }
}
