/*
Theme Name: ctsys12 Child
Theme URI: http://templatetoaster.com
Template: works02
Author: TemplateToaster
Author URI: http://TemplateToaster.com
Description: Theme Description
Tags: blog,one-column,two-columns,left-sidebar,right-sidebar,custom-background,custom-colors,custom-logo,custom-menu,editor-style,featured-images,footer-widgets,full-width-template,rtl-language-support,sticky-post,theme-options,threaded-comments,translation-ready
Version: 1.0.1771832356
Updated: 2026-02-23 16:39:16

*/

/* ヘッダーとメニューをまとめて固定 */
.custom-sticky-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030; /* メニューより前面に来るように設定 */
    background-color: #fff; /* 背景色が必要な場合は指定 */
}

/* コンテンツがヘッダーの下に潜り込まないように調整 */
body {
    /* ヘッダー＋メニューの合計高さ分、上に余白を作る */
    /* 高さは実際のサイトに合わせて調整してください */
    padding-top: 200px !important; 
}

/* WordPress管理バーが表示されている時の位置調整 */
.admin-bar .custom-sticky-container {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .custom-sticky-container {
        top: 46px;
    }
}

/* ヘッダー全体の高さ制限を解除し、中身が見えるようにする */
#ttr_header, 
#ttr_header_inner {
    height: auto !important;
    min-height: 130px; /* 必要に応じて調整 */
    overflow: visible !important; /* はみ出しても隠さない */
}
