header{
    background-color:#E6AD07;
}
.header-box{
    display: flex;
    align-items: center;
}
header{
    height: 60px;
}
.header-box {
    width: 1000px;
    margin: 0 auto;
    justify-content: space-between;
}
.header-img-box {
    height: 60px;
}
.header-link {
    display: flex;
    align-items: center;
}
.button-box {
    display: flex;
    align-items: center;
}
.hamburger {
    display: none;
}
.globalMenuSp {
    display: none;
}
.inqury-button {
    border: solid 2px #292823;
    border-radius: 5px;
    padding: 5px;
    background: #FF0202;
    color: #FFF;
    font-weight: bold;
    font-size: 1em;
    margin: 5px;
}
.inqury-button:hover {
    opacity: 0.8;
}
.login-button {
    border: solid 2px #292823;
    border-radius: 5px;
    padding: 5px;
    background: #86660b;
    color: #f5f5eb;
    font-weight: bold;
    font-size: 1em;
    margin: 5px;
}
.login-button:hover {
    opacity: 0.8;
}
.register-button {
    border: solid 2px #292823;
    border-radius: 5px;
    padding: 5px;
    background: #f5f5eb;
    color: #181716;
    font-weight: bold;
    font-size: 1em;
    margin: 5px;
}
.register-button:hover {
    opacity: 0.8;
}
.nav {
    display: none;
}

@media screen and (max-width: 1199px){
    header{
        height: 60px;
    }
    .header-box {
        max-width: 700px;
        margin: 0 auto;
    }
    .header-contents {
        display: none;
    }
    .button-box {
        display: none;
    }
    /* チェックボックスを非表示にする */
    .drawer_hidden {
        display: none;
    }
    
    /* ハンバーガーアイコンの設置スペース */
    .drawer_open {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        right: 20px;
        z-index: 100;/* 重なり順を一番上にする */
        cursor: pointer;
    }
    
    /* ハンバーガーメニューのアイコン */
    .drawer_open span,
    .drawer_open span:before,
    .drawer_open span:after {
        content: '';
        display: block;
        height: 3px;
        width: 25px;
        border-radius: 3px;
        background: #333;
        transition: 0.5s;
        position: absolute;
    }
    
    /* 三本線の一番上の棒の位置調整 */
    .drawer_open span:before {
        bottom: 8px;
    }
    
    /* 三本線の一番下の棒の位置調整 */
    .drawer_open span:after {
        top: 8px;
    }
    
    /* アイコンがクリックされたら真ん中の線を透明にする */
    #drawer_input:checked ~ .drawer_open span {
        background: rgba(255, 255, 255, 0);
    }
    
    /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
    #drawer_input:checked ~ .drawer_open span::before {
        bottom: 0;
        transform: rotate(45deg);
    }
    
    #drawer_input:checked ~ .drawer_open span::after {
        top: 0;
        transform: rotate(-45deg);
    }
    .nav {
        display: initial;
    }
    /* メニューのデザイン*/
    .nav_content {
        width: 100%;
        height: 100%;
        position: fixed;
        bottom: 100%;
        left: 0%; /* メニューを画面の外に飛ばす */
        z-index: 99;
        background: rgb(110, 110, 110);
        transition: .5s;
        text-align: center;
        padding-top: 20px;
    }
    
    /* メニュー黒ポチを消す */
    .nav_list {
        list-style: none;
    }
    
    .nav_item a {
        color: #fff;
        text-decoration: none;
    }
    
    /* アイコンがクリックされたらメニューを表示 */
    #drawer_input:checked ~ .nav_content {
        bottom: 0;/* メニューを画面に入れる */
        
    }
}
@media screen and (max-width: 767px){
    header{
        height: 60px;
    }
    .header-box {
        /*width: 300px;*/
        margin: 0 auto;
    }
    .header-contents {
        display: none;
    }
    .button-box {
        display: none;
    }
    /* チェックボックスを非表示にする */
    .drawer_hidden {
        display: none;
    }
    
    /* ハンバーガーアイコンの設置スペース */
    .drawer_open {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        right: 20px;
        z-index: 100;/* 重なり順を一番上にする */
        cursor: pointer;
    }
    
    /* ハンバーガーメニューのアイコン */
    .drawer_open span,
    .drawer_open span:before,
    .drawer_open span:after {
        content: '';
        display: block;
        height: 3px;
        width: 25px;
        border-radius: 3px;
        background: #333;
        transition: 0.5s;
        position: absolute;
    }
    
    /* 三本線の一番上の棒の位置調整 */
    .drawer_open span:before {
        bottom: 8px;
    }
    
    /* 三本線の一番下の棒の位置調整 */
    .drawer_open span:after {
        top: 8px;
    }
    
    /* アイコンがクリックされたら真ん中の線を透明にする */
    #drawer_input:checked ~ .drawer_open span {
        background: rgba(255, 255, 255, 0);
    }
    
    /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
    #drawer_input:checked ~ .drawer_open span::before {
        bottom: 0;
        transform: rotate(45deg);
    }
    
    #drawer_input:checked ~ .drawer_open span::after {
        top: 0;
        transform: rotate(-45deg);
    }
    .nav {
        display: initial;
    }
    /* メニューのデザイン*/
    .nav_content {
        width: 100%;
        height: 100%;
        position: fixed;
        bottom: 100%;
        left: 0%; /* メニューを画面の外に飛ばす */
        z-index: 99;
        background: rgb(110, 110, 110);
        transition: .5s;
        text-align: center;
        padding-top: 20px;
    }
    
    /* メニュー黒ポチを消す */
    .nav_list {
        list-style: none;
    }
    
    .nav_item a {
        color: #fff;
        text-decoration: none;
    }
    
    /* アイコンがクリックされたらメニューを表示 */
    #drawer_input:checked ~ .nav_content {
        bottom: 0;/* メニューを画面に入れる */
        
    }
}