@charset "UTF-8";

/* --- 共通・リセット --- */
.global-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    background: #fff;
    border-bottom: 2px solid var(--color-navy);
    z-index: 1000;
    /* safariでの描画をハードウェアアクセラレーションにする */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
}

.global-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 0 0 0 20px;
}

/* button {
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
    font: inherit;
    width: 100%;
    text-align: left;
} */


.nav-link {
    display: flex;
    vertical-align: middle;
    border-bottom: 1px solid #eee;
    padding: 15px;
    font-weight: bold;
}

.contact-btn .nav-link {
    border-radius: 100px;
    padding: 2px 24px;
}

@media (min-width: 1279px) {
    .nav-link {
        display: inline-block;
    }
}


/* --- PC版 --- */

.global-nav-pc {
    display: none;
}

@media (min-width: 1279px) {
    .global-nav-pc {
        display: block;
        position: static;
        width: auto;
        height: auto;
        background: none;
        padding: 0 0 0 80px;
        overflow: visible;
    }

    .global-nav-pc-list {
        display: flex;
        gap: 20px;
        position: relative;
    }

    .nav-item {
        /* position: relative; */
        padding: 20px 0;
    }

    .nav-item a {
        font-weight: bold;
    }

    .nav-link {
        border: none;
        padding: 0;
    }
}