/* スムーススクロール */ 
html { scroll-behavior: smooth; }
@media screen and (max-width:767px) {
    .pcOnly {
        display: none;
    }
}
@media screen and (min-width:768px) {
    .spOnly {
        display: none;
    }
}
        :root {
            --gdo-blue: #0068B7;
            --text-main: #333;
            --btn-blue: #0071BE;
            --border-light: #ddd;
            --bg-gray: #f5f5f5;
            --accent-red: #D32F2F;
        }

        #str_container {
            font-family: sans-serif, 'Noto Sans JP',  "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "ＭＳ ゴシック" !important;
        }


        /* ヘッダー */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 15px;
            border-bottom: 1px solid var(--border-light);
        }
        .header-logo {
            font-weight: 900;
            color: var(--gdo-blue);
            font-size: 20px;
            line-height: 1;
        }
        .header-logo span {
            font-size: 8px;
            display: block;
            color: #666;
        }
        .hamburger {
            font-size: 24px;
            color: var(--gdo-blue);
        }

        

        /* 検索フィルター枠（グラデーション枠） */
        .container {
            max-width: 1000px;
            margin: 0 auto 45px;
            padding: 0;
        }

        .mainText {
            font-size: 40px;
            font-weight: bold;
            text-align: center;
            margin-top: 84px;
        }
        .subText {
            font-size: 16px;
            text-align: center;
        }