@charset "UTF-8";
@media (max-width: 767px) {
    /* _title 内 h1 を横並びにして疑似要素左・文字右 */
    .brand-common-title ._title h1 {
        display: flex;
        align-items: center;
        gap: 0.25rem;
        margin: 5px 0 0 0;
        line-height: 1;
    }

    /* MENUの文字 */
    .brand-common-title ._title h1 span._en {
        display: inline-block;
        padding-left: 0 !important;
        /* 不要な余白削除 */
    }

    /* 疑似要素（アイコンや装飾） */
    .brand-common-title ._title h1 span._en:before {
        content: '';
        display: inline-block;
        width: 30px;
        /* アイコン幅 */
        height: 30px;
        /* アイコン高さ */
        position: relative;
        /* top を効かせるため */
        top: 0;
        /* 必要に応じて微調整可能 */
        margin-right: 3px;
        /* MENU文字との間隔 */
    }

    /* _skip 内リンクを横並び */
    .brand-common-title ._skip ul {
        display: flex;
        justify-content: center;
        align-items: center;
        /* 縦中央揃え */
        gap: 1rem;
        /* 各リンクの間隔 */
        list-style: none;
        margin: 0;
        padding: 0;
        font-size: 11px;
    }

    .brand-common-title ._skip ul li {
        display: inline-block;
    }

    .brand-common-title ._skip a {
        display: flex;
        align-items: center;
        line-height: 1.6;
        padding: 0 4px;
        box-sizing: border-box;
    }

    /* _skip 内の矢印は非表示 */
    .brand-common-title ._skip a:before {
        display: none;
        content: none;
    }

}