@charset "utf-8";

/* === Site Header (No JS Version) === */
.site_header_nojs {
    background-color: #ffffff; /* 不透明な白背景 */
    border-bottom: 1px solid #e0e6ec; /* 少し濃いめの区切り線 */
    left: 0;
    padding: 0 30px;
    position: fixed; /* スクロール追従（fixedより扱いやすい場合も） */
    top: 0;
    width: 100%;
    z-index: 1000;
    /* backdrop-filter と 半透明背景は削除 */
    /* box-shadow も初期状態ではなし、または常に薄く表示 */
    box-shadow: 0 1px 5px rgba(0,0,0,0.03);
}

.header_container_nojs {
    align-items: center;
    display: flex;
    height: 70px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1300px;
}

.site_logo_link_nojs {
    text-decoration: none;
}
.logo_text_nojs {
    color: #1a2b3c;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4em;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.main_navigation_nojs {
    /* スタイルはほぼ同じ */
}
.nav_list_nojs {
    align-items: center;
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav_item_nojs {
    position: relative;
}
.nav_link_nojs {
    align-items: center;
    background-color: transparent;
    border-radius: 6px;
    color: #534428;
    display: flex;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.95em;
    font-weight: 500;
    gap: 4px;
    padding: 10px 15px;
    position: relative;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease;
}
/* ホバー時のスタイルは維持 */
.nav_link_nojs:hover {
    background-color: rgba(0,0,0,0.04);
    color: #1a2b3c;
}
.arrow_icon_nojs { /* 矢印アイコンは回転させない */
    fill: currentColor;
    height: 18px;
    /* transition: transform 0.3s ease; ← 回転アニメーション削除 */
    width: 18px;
}
/* .megamenu_toggle[aria-expanded="true"] 関連のスタイルは削除 */


/* Megamenu Panel (No JS Version) */
.megamenu_panel_nojs {
    background-color: #ffffff;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    left: 0;
    opacity: 0;
    padding: 30px 35px;
    pointer-events: none;
    position: absolute;
    top: 100%;
    transform: translateY(10px); /* 少しだけY軸方向にずらす */
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s 0.25s; /* visibilityの遅延 */
    visibility: hidden;
    width: auto;
    min-width: 600px;
    max-width: 1000px;
    padding: 2rem;
    z-index: 999;
}
/* ホバーでメガメニュー表示 */
.nav_item_nojs.has_megamenu_nojs:hover > .megamenu_panel_nojs {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s, 0s, 0s; /* 表示時の遅延をリセット */
    visibility: visible;
}
/* フォーカス時の表示（キーボード操作のため、ただし完全ではない） */
.nav_item_nojs.has_megamenu_nojs:focus-within > .megamenu_panel_nojs {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s, 0s, 0s;
    visibility: visible;
}


.megamenu_content_wrapper_nojs {
    display: flex;
    gap: 30px;
}
.megamenu_column_nojs {
    flex: 1;
    min-width: 180px;
}
.megamenu_column_title_nojs {
    color: var(--dark-orange);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9em;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0 0 15px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #e0e6ec;
    text-transform: uppercase;
}
.megamenu_sub_list_nojs {
    list-style: none;
    margin: 0;
    padding: 0;
}
.megamenu_sub_list_nojs li a {
    border-radius: 4px;
    color: #495057;
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9em;
    padding: 8px 10px;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.megamenu_sub_list_nojs li a:hover {
    background-color: #f0f4f8;
    color: var(--dark-orange);
}
.sub_text_nojs {
    color: #86909c;
    display: block;
    font-size: 0.8em;
    margin-top: 2px;
}

.megamenu_featured_column_nojs {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 20px;
    flex-basis: 250px;
    flex-grow: 0;
}
.megamenu_featured_item_nojs {
    border-radius: 6px;
    display: block;
    margin-bottom: 15px;
    padding: 12px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}
.megamenu_featured_item_nojs:last-child {
    margin-bottom: 0;
}
.megamenu_featured_item_nojs:hover {
    background-color: #e9ecef;
}
.featured_item_icon_nojs {
    display: inline-block;
    font-size: 1.1em;
    margin-right: 8px;
}
.featured_item_title_nojs {
    color: #2c3e50;
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 0.95em;
}
.megamenu_featured_item_nojs:hover .featured_item_title_nojs {
    color: var(--dark-orange);
}
.featured_item_description_nojs {
    color: #6c757d;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.8em;
    line-height: 1.5;
    margin-top: 4px;
}


/* Header Actions (No JS Version) */
.header_actions_nojs {
    align-items: center;
    display: flex;
    gap: 15px;
}
.action_button_nojs {
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.85em;
    font-weight: 600;
    padding: 9px 20px;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.action_button_nojs img {
    max-width: 140px;
    display: inline-block;
    padding-right: 2px;
    vertical-align: bottom;
}

.primary_button_nojs {
    background-color: #007bff;
    color: #ffffff;
}
.primary_button_nojs:hover {
    background-color: #0056b3;
    box-shadow: 0 2px 8px rgba(0,123,255,0.3);
}
.secondary_button_nojs {
    background-color: transparent;
    border: 1px solid #ced4da;
    color: #495057!important;
}
.secondary_button_nojs:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
    color: #212529;
}

/* Mobile Menu Toggle は削除 */
/* .mobile_navigation_panel も削除 (CSSのみでは困難なため) */


/* === Responsive Adjustments for Header (No JS Version) === */
@media (max-width: 992px) {
    .main_navigation_nojs {
        display: none; /* モバイルではメインナビを非表示にする（簡略化） */
    }
    /* モバイルではロゴとアクションボタンのみが残る形 */
    .header_actions_nojs {
        /* 必要であればさらにスタイル調整 */
    }
}

@media (max-width: 768px) {
    .site_header_nojs {
        padding: 0 20px;
    }
    .logo_text_nojs {
        font-size: 1.4em;
    }
    .action_button_nojs {
        font-size: 0.8em;
        padding: 8px 14px; /* ボタンを少し小さく */
    }
    /* .header_actions_nojs .secondary_button_nojs { display: none; } CTAを1つに絞る場合など */
}