/*----------------- 
ヘッダーメニュー
-----------------*/

.header {
    width: 100%;
    position: fixed;
    background-color: #333;
    z-index: 1;
}
.header img {
    max-width: 122px;
}
.header_flex {
    align-items: center;
    display: flex;
    justify-content: space-between;
}
.header_menu {
    width: 100%;
    display: flex;
    justify-content: end;
    margin: 5px auto;
    align-items: center;
}
.header_menu img {
    max-width: 35px;
}
.hd_sns_icon img {
    margin: 0 10px;
}
.header_menu p {
    letter-spacing: 1.2px;
    font-size: 0.8rem;
    width: fit-content;
    display: inline;
    color: #fff;
    margin: 0 2%;
}

.rightline {
    position:relative;
    display:inline-block;
}
.rightline a {
    color: #fff;
}
.rightline a:hover {
    color: #d7ebeb;
}
.rightline::after {
    content:"";
    display: inline-block;
    width: 1px;
    height: 18px;
    background-color: #fff;
    position: absolute;
    top: 7px;
    right: -25%;
}
.header_menu .headbtn {
    margin-right: 0;
}


/*----------------- 
レスポンシブ
-----------------*/
@media screen and (max-width:1300px) {
    .rightline::after {
        right: -20%;
    }
}

@media screen and (max-width:1000px) {
    .rightline::after {
        right: -15%;
    }
}


