@charset 'utf-8';

.l-header {
    width: 100%;
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: #fff;
    padding: 0 0 0 48px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.08);
}
.l-header.is-fixed {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1000 !important;
    animation: headerSlideIn 0.4s ease-out both;
}
@keyframes headerSlideIn {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.l-header__logo {
    width: 200px;
}
.l-header__logo img {
    object-fit: contain;
}
.l-header__left {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}
.l-header__nav {
    margin-right: 39px;
}
.l-header__nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 33px;
}
.l-header__nav li a {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    color: #231815;
}
.l-header__btns {
    display: flex;
    height: 100%;
}
.l-header__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 159px;
    height: 100%;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}
.l-header__btn.normal {
    background: linear-gradient(
        to bottom,
        #72ff81 0%,
        #4ada68 38%,
        #3dcd60 50%,
        #0fa344 100%
    );
}
.l-header__btn.corp {
    background: linear-gradient(to bottom, #53caff 0%, #1057bf 100%);
    padding: 0;
}
.l-header_hamburger {
    display: none;
}
.l-header__spNav {
    display: none;
}



@media screen and (max-width: 1200px) {
    .l-header {
        padding: 0 0 0 12px;
    }
    .l-header__logo {
    width: 118px;
}
    .l-header__nav {
        display: none;
    }
    .l-header__btn {
        width: 80px;
        font-size: 13px;
    }
    .l-header_hamburger {
        display: block;
        width: 66px;
        height: 100%;
        background-color: #000;
        position: relative;
        cursor: pointer;
    }
    .l-header_hamburger span {
        display: block;
        width: 18px;
        height: 2px;
        background-color: #fff;
        border-radius: 2px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        transition: .3s;
    }
    .l-header_hamburger span:nth-of-type(1) {
        top: 22px;
    }
    .l-header_hamburger span:nth-of-type(2) {
        top: 32px;
    }
    .l-header_hamburger span:nth-of-type(3) {
        top: 42px;
    }
    .l-header_hamburger.is-active span:nth-of-type(1) {
        top: 32px;
        transform: translateX(-50%) rotate(45deg);
    }
    .l-header_hamburger.is-active span:nth-of-type(2) {
        top: 32px;
        transform: translateX(-50%) rotate(45deg);
    }
    .l-header_hamburger.is-active span:nth-of-type(3) {
        top: 32px;
        transform: translateX(-50%) rotate(-45deg);
    }
    .l-header__spNav {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: fixed;
        top: 64px;
        right: 0;
        transform: translateX(100%);
        transition: transform .3s;
        background-color: #fff;
        padding: 0 27px;
        box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    }
    .l-header__spNav.is-open {
        transform: translateX(0);
    }
    .l-header__spNav li {
        width: 100%;
    }
    .l-header__spNav li a {
        height: 70px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
        font-weight: 700;
        letter-spacing: 0;
        color: #231815;
        border-bottom: 1px solid #d8d8d8;
    }
    .l-header__spNav li:last-of-type a {
        border-bottom: none;
    }
}
