@charset "utf-8";
/* CSS Document */
.header-top {
    font-family: "-apple-system, BlinkMacSystemFont", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "游ゴシック Medium", YuGothic, YuGothicM, "メイリオ", Meiryo, sans-serif;
}

.header-top li {
    list-style: none;
}

.header-top a {
    text-decoration: none;
    color: #000; /* リンクの色 */
}

.header-wrap {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    justify-content: space-between;
	width: 1200px;
    margin: 0 auto;
  }

.header-top_logo, .header-top_title {
  display: flex;
  align-items: center;
}

.header-top_logo {
  flex: 1; /* ロゴに柔軟なスペースを与える */
  margin: 7px 0 0 -30px;
}

.header_logo_inner {
  display: flex; /* Flexbox を有効化 */
  justify-content: center; /* 水平方向の中央揃え */
  align-items: center; /* 垂直方向も中央揃えにする場合 */
  width: 100%; /* コンテナの幅、必要に応じて調整 */
  height: 100%; /* コンテナの高さ、必要に応じて調整 */
}

  .header-top {
    margin: 10px 0 0 0;
    line-height: 1.4;
    color: #fff;
    text-align: left;
    background: #fff;
  }
  
  .header-top_title {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

  .header-top_title {
    font-size: 11px;
    color: #222;
  }

.header-top_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px; /* ナビゲーションアイテム間のスペース */
  justify-content: space-between;
  align-items: center;
  margin-left: 20px; /* 既に存在するので、これを調整するか、保持する */
  font-size: 10px;
}

  .header-top_listItem {
    display: flex;
	color: #222;
  }

  .header-top_listItem:not(:last-child):after {
    content: "|";
    margin-left: 10px;
  }

