/* サイドメニューヘッダー部分(ロゴ画像部分) */
.header-custom{
    display: flex;
    align-items: center;
    justify-content: center;
    weight: 100%;
    height:122px;
    border: none;
    border-bottom:solid 1px #fff;

}

/* ロゴ画像通常サイズ(Large) */
.header-logo-img-xl{
    display: block;
    width: 140px;
    position: static;
    /* padding-left: 13px; */ /* 195pxの時は、左padding不要 */
}


/* ロゴ画像スリム表示時のサイズ(Small) */
.header-logo-img-xs{
    display: block;
    width: 42px;
    padding-top: 37px;
    margin-left: auto;
    margin-right: auto;
}

/* --------------------------------スマホ表示--------------------------------< */
@media screen and (max-width: 768px) {

/* サイドメニューヘッダー部分(ロゴ画像部分) */
.header-custom{
    display: none;
}
    
    
}
/* --------------------------------<END>スマホ表示-------------------------------- */