:root {
    --main_color: #EE86A1;
    --second_color: #333333;
    --third_color: #FCEAEE;
    --fourth_color: #4D4D4D;
    --fifth_color: #52B5B0;
}

header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    /* position: relative; */
    /* max-width: 1280px;
    margin-left: auto;
    margin-right: auto; */
    color: var(--second_color);
    /* padding-bottom: 10px; */
    letter-spacing: 0.06rem;
    z-index: 10;
    background-color: #fff;
}

.top_bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14.5px 74px 14.5px 40px;
    font-size: 14px;
    border-bottom: 1px solid var(--main_color);
}

.location_info {
    font-size: 14px;
}

.cta_buttons {
    display: flex;
    align-items: center;
}
.male_link {
    position: relative;
    color: #fff;
    text-decoration: none;
    background-color: var(--second_color);
    padding: 10px 35px;
    margin-right: 20px;
}
.male_link::before {
    content: '';
    position: absolute;
    top: 22px;
    right: 10px;
    transform: rotate(-45deg);
    width: 7px;
    height: 1px;
    background: #fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}
.male_link::after {
    content: '';
    position: absolute;
    top: 18px;
    right: 10px;
    transform: rotate(45deg);
    width: 7px;
    height: 1px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}
.male_link:hover {
    color: #fff;
}
.reservation_link {
    position: relative;
    color: #fff;
    text-decoration: none;
    background-color: var(--main_color);
    padding: 10px 44px;
    margin-right: 22px;
}
.reservation_link::before {
    content: '';
    position: absolute;
    top: 22px;
    right: 10px;
    transform: rotate(-45deg);
    width: 7px;
    height: 1px;
    background: #fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}
.reservation_link::after {
    content: '';
    position: absolute;
    top: 18px;
    right: 10px;
    transform: rotate(45deg);
    width: 7px;
    height: 1px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}
.reservation_link:hover {
    color: #fff;
}

.map_pin_box {
    text-align: center;
    margin-right: 34px;
}
.map_pin_img {
    width: 15px;
    height: 27px;
    margin-left: auto;
    margin-right: auto;
}
.map_pin_img img {
    -o-object-fit: contain;
       object-fit: contain;
}
.map_pin_box span {
    font-size: 11px;
}

.header_sns {
    width: 31px;
    height: 31px;
    margin-left: auto;
    margin-right: auto;
}

.header_main {
    position: relative;
    display: flex;
    justify-content: space-between;
    /* padding: 23px 43px 10px 23px; */
    padding: 0px 43px 0px 23px;
}

.header_logo a {
    display: block;
    width: 230px;
    height: auto;
    padding: 23px 0px 10px;
}

/* グローバルナビ */
.header_glonav_box {
    position: relative;
}

.header_glonav_list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    width: auto;
    height: 100%;
}

.header_glonav_list_item {
    position: relative;
    /* padding: 0 33px; */
    padding: 23px 33px 10px;
    width: auto;
    height: 100%;
}
.header_glonav_list_item.active {
    background-color: var(--third_color);
}
.header_glonav_list_item:last-child {
    margin-right: 0;
}

.header_glonav_list_item span {
    display: block;
    text-align: center;
    font-size: 16px;
    color: var(--second_color);
}
.header_glonav_list_item span:last-child {
    color: var(--main_color);
    margin-top: 10px;
}

.header_glonav_list_item a:hover::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    bottom: -5px;
    left: 0;
}

.dropdown__lists {
    transform: scaleY(0);
    transform-origin: center top;
    transition: all .3s;
    width: 260px;
    position: absolute;
    /* top: 70px; */
    top: 100px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    z-index: 10;
}
.header_glonav_list_item:hover .dropdown__lists {
    transform: scaleY(1);/*Gナビメニューにホバーしたら表示*/
}
.header_glonav_list_item:nth-of-type(1) .dropdown__lists {
    left: -30px;
}
.header_glonav_list_item:nth-of-type(2) .dropdown__lists {
    left: -45px;
}
.header_glonav_list_item:nth-of-type(3) .dropdown__lists {
    left: -45px;
}
.dropdown__lists.show {
    transform: scaleY(1);/*Gナビメニューにホバーしたら表示*/
}
.dropdown__list {
    padding: 10px 0;
    background-color: var(--main_color);
    opacity: 0.5;
    transition: all .3s;
    position: relative;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}
.dropdown__list:not(:first-child)::before{
    content: "";
    width: 100%;
    height: 4px;
    background-color: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
}
.dropdown__list:hover {
    opacity: 1;
}
.dropdown__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    position: relative;
    height: 37px;
    color: #fff;
}
.dropdown__list a:hover {
    color: #fff;
    opacity: 1;
}

#hamburger {
    display: none;
}

#sp_glonav {
    display: none;
}
@media screen and (min-width:1024px) and ( max-width:1240px) {
    .header_glonav_list_item {
        padding: 23px 18px;
    }
    .header_glonav_list_item span {
        font-size: 12px;
    }
}
@media only screen and (max-width: 1024px) {
    header {
        position: fixed;
        top: 0;
        width: 100%;
        height: 60px;
        padding-bottom: 0;
    }
    .top_bar {
        display: none;
    }
    .header_glonav_box {
        display: none;
    }
    .header_main {
        padding: 0 20px;
        height: 60px;
    }
    .header_logo {
        height: 60px;
    }
    .header_logo h1 {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
    }
    
    .header_logo h1 a {
        width: 142px;
        height: 40px;
        display: block;
        padding: 0;
    }
    #sp_glonav{
        position: fixed;
        top: 0;
        left: 100%;
        background: #ffffff;
        transition: .3s;
        z-index: 5;
        display: block;
        overflow-y: scroll;
    }
    .sp_glonav_box {
        width: 100vw;
        height: calc(100vh - 80px);
        margin-top: 80px;
    }
    #sp_glonav ul{
        padding: 0 20px;
    }
    #sp_glonav ul li{
        list-style-type: none;
        line-height: 180%;
    }
    #sp_glonav a{
        display: block;
        text-decoration: none;
        color: var(--second_color);
        transition: .3s;
        font-size: 16px;
    }

    #hamburger {
        display: block;
        position: absolute;
        top: 15px;
        right: 20px;
        width: 30px;
        height: 24px;
        cursor: pointer;
        transition: 1s;  
        z-index: 1000;  
    }

    .inner_line {
        display: block;
        position: absolute;
        left: 0;
        width: 30px;
        height: 2px;
        background-color: var(--main_color);
        transition: 0.3s;
        border-radius: 4px;
    }

    .line1 {
        top: 0;
    }
    .line2 {
        top: 11px;
    }
    .line3 {
        bottom: 0px;
    }

    .in {
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
    }
    .line_open_1 {
    /*-45度回転させる*/
    transform: rotate(-225deg);
    top: 10px;
    }
    .line_open_2 {
    opacity: 0;
    }
    .line_open_3 {
    /*45度回転させる*/
    transform: rotate(225deg);
    bottom: 11px;
    }




    .gnav_item {
        display: block;
        width: 100%;
        border-top: 1px solid #d1d1d1;
        line-height: .9;
    }
    
    .gnav_item:last-child {
        border-bottom: 1px solid #d1d1d1;
    }
    
    .gnav_item>a {
        padding: 0.3em 40px 0.3em 20px;
        display: block;
        position: relative;
    }
    
    .gnav_item>a:hover {
        background-color: #e2e2e2;
    }
    
    .gnav_item_ja {
        display: block;
    }
    
    .gnav_item_en {
        color: var(--main_color);
    }
    
    .gnav_chil_item {
        font-size: .8em;
        padding: 0 20px .5em;
    }
    
    .gnav_chil_item>li>a {
        display: flex;
        margin-bottom: 10px;
        margin-top: 10px;
    }
    
    .gnav_chil_item>li>a::before {
        content: "";
        width: 1rem;
        display: inline-block;
        align-self: center;
        height: 1px;
        background-color: var(--main_color);
        margin-right: .2em;
        margin-bottom: 5px;
    }
    
    .gnav_item_navchil::after {
        content: "";
        display: inline-block;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 16px 8px 0 8px;
        border-color: var(--main_color) transparent transparent transparent;
        position: absolute;
        right: 20px;
        top: 50%;
        transition: .4s;
        transform: translate(0, -50%) rotate(90deg);
    }

    .gnav_item_navchil.collapsed::after {
        transform: translate(0, -50%) rotate(0deg);
    }

    .gnav_sns_wrap {
        display: flex;
        margin-top: 20px;
        justify-content: center;
        align-items: center;
    }
    .header_sns {
        margin-left: 0;
        margin-right: 0;
    }
}

@media screen and (max-width: 576px) {
    .gnav_item_navchil::after {
        border-width: 10px 5px 0 5px;
    }
}