/* グローバルメニュー文字スタイル */
#navi .navi-in > .menu-header .item-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* サブメニューのアングルダウン非表示 */
.navi-in .menu-item-has-children > a::after,
.navi-in .fa-angle-down {
    display: none;
}

/* サブメニュー表示 */
.fixed-header .navi-in > ul li:hover > ul {
    display: block;
}

/* ヘッダーのスタイル */
.header-container {
  width: 100%;
  z-index: 600;
  padding-top: 26px;
  transition: all 0.5s ease;
  box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.4);
}

.header-container::after {
  content: '';
  position: absolute;
  z-index: 600;
  bottom: -7px;
  left: 0;
  right: 0;
  height: 7px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
}

/* スマホ用ロゴサイズ調整 */
@media (max-width: 768px) {
.header-container::after {
     display: none;
  }
}



/* ロゴの初期サイズ */
.logo-header svg {
  width: 80%;
  transition: all 0.5s ease;
  position: relative;
  top: -12px;
}

/* スクロール時のロゴ縮小 */
.sticky .logo-header svg {
  width: 60%;
  padding-top: 7px;
}
