/* header.css */

.header {
    background: #000;
    height: 100px;
    width: 330px;
    position: fixed;
    display: flex;
    align-items: center;
    z-index: 5;
}
.header .tit_logo {
    background: url(../images/header_logo.png) no-repeat center;
    background-size: contain;
    width: 232px;
    height: 70px;
}

a.link {
    display: inline-block;
    width: 100%;
    height: 100%;
}


/***********************************************************************
「★PC版 CSS★」ブラウザの幅が751px以上ならここの記述が有効になる
**********************************************************************/
@media all and (min-width: 751px) {

.header {
    clip-path: polygon(0% 0%, 0% 100%, 85% 100%, 100% 0%);
}

.header .tit_logo {
    margin-left: 30px;
}

}


/***********************************************************************
「★SP版 CSS★」ブラウザの幅が750px以下ならここの記述が有効になる
**********************************************************************/
@media only all and (max-width: 750px) {

.header {
    width: 100%;
    height: 120px;
    justify-content: center;
}

.header .tit_logo {
    width: 330px;
    height: 100px;
}

}

/***********************************************************************
Key frame
**********************************************************************/

