@media screen and (min-width:1201px) {
    #nav-drawer {
    display:none;
    }
}

/* 1200px */
@media screen and (max-width:1200px) {
    /* settings */
    .wrap {
        width: 100%;
        padding-left: 8px;
        padding-right: 8px;
    }
    .br_tab {
        display: block;
    }

    /* menu */
    .header .globalnav {
        display: none;
    }
    #nav-drawer {
        position: relative;
    }
    
    /*チェックボックス等は非表示に*/
    .nav-unshown {
        display:none;
    }
    
    /*アイコンのスペース*/
    #nav-open {
        display: inline-block;
        width: 30px;
        height: 40px;
        vertical-align: middle;
        z-index: 100;
        position: relative;
        right: -10px;
    }

    #nav-open:after {
        content: "";
        position: absolute;
        top: -10px;
        right: -5px;
        width: 40px;
        height: 40px;
    }

    #nav-input:checked ~ #nav-open span {
        /* メニューオープン時は三本線の真ん中の線を透明にする */
        background-color: rgba(255, 255, 255, 0);
    }
    #nav-input:checked ~ #nav-open span::before {
        /* メニューオープン時は三本線の上の線を 45 度傾ける */
        bottom: 0;
        transform: rotate(45deg);
        /* 若干短く見えるのでちょっと大きく */
        width: 34px;
    }
    #nav-input:checked ~ #nav-open span::after {
        /* メニューオープン時は三本線の下の線を -45 度傾ける */
        top: 0;
        transform: rotate(-45deg);
        /* 若干短く見えるのでちょっと大きく */
        width: 34px;
    }
    
    /*ハンバーガーの形をCSSで表現*/
    #nav-open span, #nav-open span:before, #nav-open span:after {
        position: absolute;
        height: 3px;/*線の太さ*/
        width: 30px;/*長さ*/
        border-radius: 3px;
        background: var(--txt_color);
        display: block;
        content: '';
        cursor: pointer;
        z-index: 100;
        transition: all 0.5s
    }
    #nav-open span:before {
        bottom: 10px;
    }
    #nav-open span:after {
        top: 10px;
    }
    
    /*閉じる用の薄黒箇所*/
    #nav-close {
        display: none;
        position: fixed;
        z-index: 80;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: black;
        opacity: 0;
        transition: .3s ease-in-out;
    }
    
    /*メニューの中身*/
    #nav-content {
        overflow: auto;
        position: fixed;
        top: 0;
        right: -200%;
        z-index: 99;
        width: 90%;
        max-width: 500px;/*最大幅（お好みで調整を）*/
        height: 100%;
        background: var(--bg_color);
        transition: .3s ease-in-out;
        -webkit-transform: translateX(-105%);
        transform: translateX(-105%);
    }
    
    /*チェックがついたら表示させる*/
    #nav-input:checked ~ #nav-close {
        display: block;
        opacity: .5;
    }
    
    #nav-input:checked ~ #nav-content {
        right: 0;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        box-shadow: 6px 0 25px rgba(0,0,0,.15);
    }
    
    .header-logo-menu{
    display: flex;
    display: -moz-flex;
    display: -o-flex;
    display: -webkit-flex;
    display: -ms-flex;
    flex-direction: row;
    -moz-flex-direction: row;
    -o-flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    }


    #nav-content ul {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: var(--txt_color);
        margin-top: 88px;
        padding: 0;
    }

    #nav-content ul li {
        margin-bottom: 16px;
    }

    #nav-content ul a {
        position: relative;
        display: inline-block;
        text-decoration: none;
    }
    
    #nav-content ul a::after {
        position: absolute;
        bottom: -4px;
        left: 0;
        content: '';
        width: 100%;
        height: 1px;
        background: var(--txt_color);
        transform: scale(0, 1);
        transform-origin: left top;
        transition: transform .3s;
    }
    
    #nav-content ul a:hover::after {
        transform: scale(1, 1);
    }

    .sp_reserve {
        width: 200px;
        text-align: center;
        margin: 32px auto;
    }

    .sp_reserve a:hover {
        opacity: 0.7;
    }

    #nav-content .sns {
        justify-content: center;
    }

    #nav-content .sns a {
        margin-left: 16px;
    }

    #nav-contene .sns a:first-child {
        margin-left: 0;
    }

    /* ここまでmenu */

    /* header */
    .header {
        background: none;
        padding: 0 16px;
    }
    .header_reseve_area {
        display: none;
    }
    .header .header_sns {
        display: none;
    }
    /* mainvisual */
    .mainvisual {
        background-position: 10% 100%;
    }
    .mv_txt .copy {
        top: 40%;
        width: 48%;
    }
    .mv_txt .mv_starry {
        right: 20%;
        top: 60%;
        width: 350px;
    }
    /* news */
    .news .flex {
        flex-direction: column-reverse;
    }
    .news .news-list {
        width: 100%;
    }
    .news ul {
        padding-left: 0;
    }
    /* info */
    .info_container {
        margin: 0 32px;
        padding-top: 16px;
    }
    h4 {
        margin-top: 80px;
    }
}/* 1200px */

/* 960px */
@media screen and (max-width:960px) {
     /* charm */
    .charm_inner, .beer .charm_inner {
        flex-direction: column;
        position: static;
    }
    .charm .charm_txt, .beer .charm_txt{
        position: static;
        max-width: 100%;
        text-align: left;
    }
    h3 {
        max-width: 100%;
        margin-top: -10px;
    }
    .charm img {
        max-width: 100%;
    }
    .charm .pic-container {
        max-width: 100%;
    }
    /* access */
    .access .flex {
        flex-direction: column-reverse;
    }
    .access iframe {
        width: 100%;
        margin-bottom: 32px;
    }
    /* footer */
    #footer nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    /* contact_page */
    #contact_page form .item {
        flex-direction: column;
    }
    #contact_page label {
        text-align: left;
        width: 100%;
    }
    #contact_page input, textarea {
        width: 100%;
    }
}/* 960px */


/* 560px */
@media screen and (max-width:560px) {
    .br_sp {
        display: block;
    }
    h2 {
        white-space: nowrap;
    }
    h2 .ja {
        font-size: 20px;
    }

    /* mainvisual */
    .mainvisual {
        background-position: 20% 100%;
    }
    .mv_txt .copy {
        width: 70%;
    }
    .mv_txt .mv_starry {
        right: 8px;
        width: 300px;
    }
    /* news */
    .news ul li {
        text-align: left;
    }
    .news ul li a {
        flex-direction: column;
    }
    /* charm */
    h3 {
        width: 100%;
        white-space: nowrap;
        font-size: 24px;
    }
    /* info */
    .info_container {
        margin: 0 16px;
    }
    /* footer */
    #footer nav {
        flex-direction: column;
        margin: 0 auto 16px;
    }
    #footer nav ul {
        margin: 0;
        padding-left: 16px;
    }
    #footer nav ul li li a{
        white-space: nowrap;
    }
    #footer .footer_inner {
        flex-direction: column;
    }
    #footer .footer_address_area {
        margin: 0 auto 32px;
        padding-right: 0;
    }
    #footer .footer_btn_area {
        margin: 0 auto;
        padding-left: 0;
    }
}/* 560px */