/* New Header CSS */

/* ヘッダー（保険LP用）のスタイル */
.header-hoken {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 24px 0 28px;
}

/* ヘッダー内のロゴ */
.header-hoken .logo img {
  max-height: 36px;
}

/* ヘッダー内のナビゲーション */
.header-hoken .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

/* レスポンシブ対応 */
@media (max-width: var(--breakpoint-mobile)) {
  .header-hoken {
    padding: 10px 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .header-hoken .nav {
    margin-top: 10px;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  /* ヘッダー（保険LP用）のスタイル */
  .header-hoken {
    padding: 135px 0 50px;
  }

  /* ヘッダー内のロゴ */
  .header-hoken .logo img {
    max-height: 82px;
  }
}
