@charset "UTF-8";
/*
 * 2026年1月リニューアル用
 *ヘッダーの追加・上書きスタイル
 * Date: 2026.1.6~
 */


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #fff; 
    padding-top: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#globalNavi.new-nav {
    position: static;
    width: 100%;
    padding-bottom: 10px;
}

#globalNavi.new-nav ul li {
    min-width: 0;
    font-weight: 500;
}
#globalNavi.new-nav ul li a {
    min-height: 50px;
}
body {
    padding-top: 150px;
}
.hamburger { display: none; }

@media (max-width: 950px) {
    #globalNavi.new-nav ul li {
        font-size: 1.6rem;
    }
}

@media (max-width: 640px) {
    body {
        padding-top: 100px;
    }
    header {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        height: 70px;
    }
    header .header{
        width: auto;
        padding: 5px 10px 0 0 !important;
    }
    header .leftArea img {
        max-width: 190px !important;
    }
    header .rightArea{
        vertical-align: middle !important;
    }
    header .rightArea img {
        padding: 3px 5px 0 0 !important;
        max-width: 90px !important;
    }
    #globalNavi.new-nav {
        background-color: #fff;
        width: auto;
        height: 35px; 
        display: flex;
        align-items: center;
        padding-bottom: 15px;
        overflow: visible !important;
    }

    #globalNavi.new-nav ul {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100vw !important;
        background: #ffffffe1;
        text-align: center;
        margin-right: 0;
        padding-bottom: 20px;
        box-shadow: 0 10px 15px -5px rgba(0,0,0,0.1);
    }

    #globalNavi.active ul {
        display: block;
    }

    #globalNavi.new-nav ul li {
        display: block;
        width: 85%;
        margin: 20px auto;
        font-size: 2rem;
    }
    #globalNavi.new-nav ul li a {
        border-bottom: solid 1px #ccc; 
    }
    #hamb-menu {
        display: block;
        position: relative;
        right: 0;
        width: 26px;
        cursor: pointer;
        z-index: 10001;
    }

    #hamb-menu span {
        display: block;
        position: absolute;
        width: 26px;
        height: 2px;
        background-color: #333; 
        left: 0;
        transition: all 0.3s; 
    }

    #hamb-menu span:nth-child(1) { top: 0; }
    #hamb-menu span:nth-child(2) { top: 8px; }
    #hamb-menu span:nth-child(3) { top: 16px; }

    #globalNavi.active #hamb-menu span:nth-child(1) {transform: translateY(8px) rotate(45deg);}
    #globalNavi.active #hamb-menu span:nth-child(2) {opacity: 0;}
    #globalNavi.active #hamb-menu span:nth-child(3) {transform: translateY(-8px) rotate(-45deg);}
}
