/*
Theme Name: Cocoon Child
Template: cocoon-master
*/

/* ヘッダーナビ：1行横並びに固定（フロントのみ）
   親テーマ style.css:1165 の flex-wrap:wrap と li:width:176px を上書き */
body:not(.wp-admin) #navi .navi-in > ul {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  justify-content: center;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

body:not(.wp-admin) #navi .navi-in > ul > li {
  width: auto !important;
}

/* ul.menu セレクターでも同様に確保 */
body:not(.wp-admin) #navi ul.menu {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  justify-content: center !important;
  gap: 40px !important;
  list-style: none !important;
  padding: 0 !important;
}
