/* ===============================
/* ===============================
   ヘッダー固定 + メニュー設定
   =============================== */

/* -------------------------------
   固定ヘッダー共通
---------------------------------*/
header.site-header,
.header-wrapper {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    background-color: #ffcc00 !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1) !important;
    overflow: visible !important;
}

/* 下のコンテンツがヘッダーに隠れないように余白確保 */
body {
    padding-top: 80px;
}

/* -------------------------------
   ナビゲーション（通常時）
---------------------------------*/
.wp-block-navigation-item__content {
    text-decoration: none !important;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 700 !important;
    box-shadow: none !important;
    display: inline-block;
}

/* -------------------------------
   ホバー時：白ふちを表示
---------------------------------*/
.wp-block-navigation-item__content:hover {
    color: #FFAE00 !important;
    transform: scale(1.3);
    transition: all 0.3s ease;
    text-shadow:
        -1px -1px 0 #ffffff,
         1px -1px 0 #ffffff,
        -1px  1px 0 #ffffff,
         1px  1px 0 #ffffff;
}

/* -------------------------------
   フォーカス時
---------------------------------*/
.wp-block-navigation-item__content:focus {
    outline: none !important;
    text-shadow:
        -1px -1px 0 #ffffff,
         1px -1px 0 #ffffff,
        -1px  1px 0 #ffffff,
         1px  1px 0 #ffffff;
}

/* -------------------------------
   レスポンシブ調整
---------------------------------*/

/* スマホ用 */
@media (max-width: 767px) {
    body { padding-top: 60px; }
    header.site-header { height: 60px !important; }
}

/* iPad縦向き */
@media (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
    body { padding-top: 70px; }
    header.site-header { height: 70px !important; }
}

/* iPad横向き */
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: landscape) {
    body { padding-top: 80px; }
    header.site-header { height: 80px !important; }
}

/* PC（1280px以上） */
@media (min-width: 1280px) {
    body { padding-top: 80px; }
    header.site-header { height: 80px !important; }
}


