@charset "UTF-8";
/*header*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.7);
}

.is_open:not(.sp) .header {
    padding-right: 17px;
}

.header .header_layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 auto;
    width: 1024px;
    height: 60px;
}

.header_layout_right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header_layout_right > * {
    height: 40px;
}

.header .header_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 3px 0 0 10px;
}
.header .header_info .header_info_item {
    margin-left: 20px;
    width: 4.8rem;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
}
.header .header_info .header_info_item i {
    display: inline-block;
    margin: 3px auto 5px;
    color: #004387;
    font-size: 2.7rem;
    text-align: center;
    vertical-align: bottom;
}
.header .header_info .header_info_item span {
    display: block;
    text-align: center;
    white-space: nowrap;
}
.header .header_info .ic_header_login {
    display: block;
    margin: 0 auto 5px;
    width: 2.4rem;
}
.header .header_info .ic_header_login path {
    fill: #004387;
}

.header_sns {
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.header_sns li {
    width: 40px;
    margin-left: 10px;
}
.header_sns li a {
    width: 40px;
    height: 40px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}
.header_sns li a.header_sns_fb {
    background-image: url(../../img/ic_facebook.svg);
}
.header_sns li a.header_sns_tw {
    background-image: url(../../img/ic_twitter.svg);
}
.header_sns li a.header_sns_line {
    background-image: url(../../img/ic_line.svg);
}

.header_buttons_item {
    margin-left: 25px;
}

.header_menu_sp {
    min-width: 3rem;
    padding-left: 5px;
    border-left: 1px solid #004387;
}
.header_menu_sp span {
    display: block;
    padding-top: 3rem;
    background: url(../../img/ic_menu.svg) center top no-repeat;
    background-size: 3rem auto;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
}

.header_login {
    height: 4rem;
    padding-top: 3.5rem;
    background: url(../../img/ic_login.svg) center 4px no-repeat;
    background-size: 2.3rem auto;
}

.header .header_logo .header_logo_img {
    width: 205px;
    height: 60px;
}
.header .header_logo .header_logo_img path {
    fill: #000;
}

@media screen and (min-width: 768px) {
    .header_menu_sp {
        display: none;
    }
    .pc_none{
        display: none;
    }
}
@media screen and (min-width: 1025px) {
    .header .header_buttons .header_buttons_item.header_buttons_item-sp {
        display: none;
    }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .header .header_buttons .header_buttons_item.header_buttons_item-sp {
        display: none;
    }
}
@media screen and (max-width: 767px) {
    .header .header_layout {
        width: 100%;
        padding: 0 1rem;
        /*height: 50px;*/
    }
    .header .header_sns {
        display: none;
    }

    .header .header_info {
        margin-right: 0;
    }

    .header .header_info .header_buttons_item-pc,
    .header .header_sns {
        display: none !important;
    }

    .header .header_logo .header_logo_img {
        width: 140px;
        height: 60px;
    }

    .header .header_info .header_info_item {
        display: inline-block;
        margin: 0;
        font-size: 1rem;
        font-weight: bold;
        color: #333;
    }

    .header .header_buttons_item {
        display: inline-block;
        margin: 0 0 0 5px;
        font-size: 1rem;
        font-weight: bold;
        text-align: center;
        color: #333;
    }

    .button_header_search {
        display: block;
        width: 40px;
    }
    .button_header_search i {
        margin: -1px auto 3px !important;
        font-size: 2.3rem !important;
    }

    .header .button_ticket {
        display: block;
        padding: 3rem 0 0;
        width: auto;
        background: url(../../img/list/ic_ticket_b.svg) center 0.5rem no-repeat;
        background-size: 3.3rem auto;
        color: #333;
    }
    .header .button_ticket::before {
        display: none;
    }
    .pc_only{
        display: none;
    }

}
@media screen and (max-width: 360px) {
    .header .header_logo .header_logo_img {
        width: 120px;
    }
}

