@charset "UTF-8";
/* ==========================================================================
   ハンバーガーメニュー 完全リニューアル版
   ==========================================================================
*/

/* ハンバーガーボタン */
.humburger {
    cursor: pointer;
    cursor: hand;
    width: 67px;
    height: 38px;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 9999;
}

.humburger span img {
    width: 100%;
    height: auto;
}

/* メニュークローズボタン */
.menu-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    z-index: 10001;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 14px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.menu-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* グローバルメニューSP */
.globalMenuSp {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    transform: translateX(100%);
    width: 90%;
    max-width: 350px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9998;
    padding: 70px 0 20px;
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* アクティブ状態 */
.globalMenuSp.active {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

/* メニュー全体のリスト */
.globalMenuSp > ul {
    list-style: none;
    margin: 0;
    padding: 10px 0;
    width: 100%;
}

/* 各セクション共通スタイル */
.nav-section {
    margin: 0 0 18px 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 12px 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    list-style: none;
    margin-left: 15px;
    margin-right: 15px;
}

.nav-section:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

/* セクションタイトル共通 */
.section-title {
    color: #999;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 20px 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: bold;
    position: relative;
}

/* セクションリスト共通 */
.section-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.section-list li {
    border-bottom: none;
    padding: 0;
    list-style: none;
}

.section-list li a {
    display: block;
    color: #ccc;
    padding: 8px 30px;
    text-decoration: none;
    font-size: 15px;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin: 1px 15px;
}

/* 統一されたダッシュアイコン */
.section-list li a:before {
    content: "-";
    position: absolute;
    left: 15px;
    font-size: 14px;
    opacity: 0.6;
    color: #ccc;
}

/* ホバー効果 */
.section-list li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding-left: 35px;
    transform: translateX(5px);
}

.section-list li a:hover:before {
    color: #fff;
    opacity: 1;
}

/* メニュー全体のボトムマージン調整 */
.nav-section:last-child {
    margin-bottom: 5px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .globalMenuSp {
        width: 100%;
        max-width: none;
        padding: 90px 5% 40px;
    }
    
    .nav-section {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 15px;
        padding: 10px 0;
    }
    
    .section-list li a {
        font-size: 16px;
        padding: 10px 25px;
    }
    
    .section-title {
        margin: 0 15px 6px;
        padding-bottom: 5px;
    }
}

/* ハンバーガーメニューが開いている時にmenuボタンを非表示 */
.globalMenuSp.active ~ .humburger {
    display: none;
}

@media screen and (max-width: 480px) {
    .section-title {
        font-size: 10px;
        margin: 0 15px 5px;
        padding-bottom: 4px;
    }
    
    .section-list li a {
        font-size: 15px;
        padding: 7px 20px;
        margin: 1px 10px;
    }
    
    .nav-section {
        padding: 8px 0;
        margin-bottom