@charset "UTF-8";

/* ハンバーガーボタン */

.hamburger {
    position: fixed;
    top: 12px;
    right: 5px;
    z-index: 10000;
    line-height: 30px;
    width: 50px;
}

.hamburger p.ttl {
    font-size: 12px;
    font-weight: bold;
    text-align: center;
}

.globalMenuSp_main_menu_box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #eee;
    z-index: 500;
    display: none;
}

.globalMenuSp_main_menu_box .inner {
    align-items: center;
    justify-content: center;
    padding: 150px 20px 0;
    height: 100%;
}

.globalMenuSp_main_menu_box ul {
    width: 100%;
}

.globalMenuSp_main_menu_box ul li a {
    display: block;
    color: #000;
    font-weight: bold;
    text-align: center;
}

.globalMenuSp_main_menu_box ul li+li {
    margin-top: 30px;
}


/* サブメニュー */

.sp_sub_menu .inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.js-sp_sub_menu {
    position: fixed;
    z-index: 600;
    height: 100%;
    width: 100%;
    background-color: #ddd;
    display: none;
}

.sp_sub_menu .inner p.ttl {
    font-weight: bold;
    font-size: 20px;
}

.sp_sub_menu .inner ul {
    margin-top: 50px;
}

.sp_sub_menu .inner ul li a {
    color: #000;
    font-weight: bold;
}

.sp_sub_menu .inner ul li+li {
    margin-top: 30px;
}


/* 戻るボタン */

.sp_sub_menu .inner p.back_btn {
    width: 150px;
    text-align: center;
    font-weight: bold;
    margin: 50px auto 0;
    border: 2px solid #000;
    border-radius: 100px;
    padding: 3px 0;
}