/*----------------------------------------------------------------------
ヘッダー
----------------------------------------------------------------------*/
header {
    height: 66px;
    position: fixed;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    width: 100%;
    background-color: #fff;
    z-index: 1000;
    /* max-width: 980px; */
    margin: auto;
    border-bottom: 1px solid #DBDBDB;
	padding: 0;
	font-family: "Noto Sans JP",Helvetica,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro',"メイリオ",Meiryo,sans-serif;
    font-size: 14px;
    font-weight: normal;
    color: #333;
}
@media screen and (max-width: 767px) {
	header {
    	height: 44px;
	}
}

header.open{
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: left;
}

.header-inner{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 981px;
    margin: auto;
    background-color: #FFF;
}

.header-logo{
    width: 101px;
    height: 37px;
}
@media screen and (max-width: 767px) {
	.header-logo{
    	width: 90px;
    	height: 28px;
    	margin: 12.5px 17.5px;
	}
}

.header-logo img{
    width: 100%;
}

.header-spacer {
    height: 66px;
}
@media screen and (max-width: 767px) {
	.header-spacer {
    	height: 44px;
	}
}
