@charset "UTF-8";

.l-header {
    width: 100%;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.l-header__inner {
    width: 100%;
    height: calc(95*var(--width-ratio-1920));
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 calc(18*var(--width-ratio-1920)) 0 calc(12*var(--width-ratio-1920));
}
.l-header__left {
    display: flex;
    align-items: center;
}
.l-header__logo1 {
    display: flex;
    align-items: center;
    width: calc(81*var(--width-ratio-1920));
    height: auto;
    margin-right: calc(87*var(--width-ratio-1920));
}
.l-header__logo1 img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.l-header__logo2 {
    display: flex;
    align-items: center;
    width: calc(57*var(--width-ratio-1920));
    height: auto;
    margin-right: 14px;
}
.l-header__logo2 img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.l-header__nav-list {
    display: flex;
    align-items: center;
}
.l-header__nav-item {
    width: calc(180*var(--width-ratio-1920));
    height: calc(29*var(--width-ratio-1920));
    border-left: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.l-header__nav-item:last-child {
    width: auto;
    padding-left: calc(17*var(--width-ratio-1920));
}
.l-header__nav-item-address{
    display: block;
    font-size: calc(16*var(--width-ratio-1920));
    font-weight: 500;
    letter-spacing: 0;
    text-align: center;
}
.l-header__nav-link--email {
    display: inline;
}
.l-header__nav-link {
    font-size: calc(16*var(--width-ratio-1920));
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.43;
    text-align: center;
    color: var(--color-base);
    text-decoration: none;
}
.l-header__right {
    display: flex;
    align-items: center;
}
.l-header__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(304*var(--width-ratio-1920));
    height: calc(54*var(--width-ratio-1920));
    font-family: var(--font-noto-sans);
    font-size: calc(16*var(--width-ratio-1920));
    font-weight: 700;
    letter-spacing: 0;
    color: #fff;
    text-decoration: none;
    border-radius: calc(29*var(--width-ratio-1920));
    margin-right: calc(18*var(--width-ratio-1920));
    border: calc(5*var(--width-ratio-1920)) solid #500303;
    background: linear-gradient(to bottom, #500303, #9E0000);
    transition: all 0.3s ease;
}
.l-header__btn:first-child {
    margin-right: calc(9*var(--width-ratio-1920));
}
.l-header__btn--gold {
    color: var(--color-brown);
    border: calc(5*var(--width-ratio-1920)) solid #C19130;
    background: linear-gradient(to bottom, var(--color-gold), #F5C66B);
}
.l-header__btn:hover {
    transform: translateY(-2px);
    opacity: 1;
}
.l-header__tel {

}
.l-header__tel-text {
    font-size: calc(16*var(--width-ratio-1920));
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.5;
    color: var(--color-base);
    text-decoration: none;
}
.l-header__tel-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-family: var(--font-noto-sans);
    font-size: calc(40*var(--width-ratio-1920));
    font-weight: 900;
    line-height: 1.45;
    letter-spacing: 0;
    color: var(--color-red);
    text-decoration: none;
    margin-top: calc(-11*var(--width-ratio-1920));
}
.l-header__tel-link img {
    width: calc(36*var(--width-ratio-1920));
    height: calc(34*var(--width-ratio-1920));
    object-fit: contain;
    margin-right: calc(3*var(--width-ratio-1920));
}
.l-header__hamburger {
    display: none;
}
.l-header__sp-nav {
    display: none;
}

@media screen and (max-width: 1400px) {
    .l-header__nav {
        display: none;
    }
    .l-header__inner {
        align-items: flex-start;
        height: 89px;
        padding: 22px 20px 13px 20px;
    }
    .l-header__logo1 {
        display: block;
        width: 90px;
        height: auto;
        margin-right: 12px;
    }
    .l-header__logo2 {
        font-size: min(20px,calc(20*100vw/950));
        margin-right: 0;
    }
    .l-header__btn {
        width: min(304px,calc(304*100vw/950));
        height: min(54px,calc(54*100vw/950));
        font-size: min(16px,calc(16*100vw/950));
        border-radius: 29px;
        margin-right: min(22px,calc(22*100vw/950));
    }
    .l-header__tel {
        display: none;
    }
    .l-header__hamburger {
        display: block;
        width: 43px;
        height: 27px;
        padding-top: 10px;
        position: relative;
    }
    .l-header__hamburger span {
        width: 100%;
        height: 3px;
        background-color: #000;
        border-radius: 2px;
        position: absolute;
        left: 0;
        transition: all 0.3s ease-in-out;
        transform-origin: center;
    }
    .l-header__hamburger span:nth-child(1) {
        top: 0;
    }
    .l-header__hamburger span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }
    .l-header__hamburger span:nth-child(3) {
        bottom: 0;
    }
    .l-header.js-active .l-header__hamburger span:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }
    .l-header.js-active .l-header__hamburger span:nth-child(2) {
        opacity: 0;
    }
    .l-header.js-active .l-header__hamburger span:nth-child(3) {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }
    .l-header__sp-nav {
        display: block;
        width: 100%;
        height: calc(100vh - 88px);
        background-color: #fff;
        position: fixed;
        top: 88px;
        right: -101vw;
        z-index: 100;
        padding: 87px;
        transition: all 0.3s ease-in-out;
    }
    .l-header.js-active .l-header__sp-nav {
        right: 0;
    }
    .l-header__sp-nav-list {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        row-gap: 24px;
    }
    .l-header__sp-nav-item {
        width: 80%;
    }
    .l-header__sp-nav-link {
        display: block;
        font-size: 23px;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 1.43;
        color: #000;
        text-decoration: none;
        text-align: center;
        border-bottom: 1px solid #707070;
        padding-bottom: 6px;
    }
}

@media screen and (max-width: 768px) {
    .l-header__logo1 {
        width: 90px;
        margin-right: 0;
    }
    .l-header__logo2 {
        display: none;
    }
    .l-header__btn {
        width: 173px;
        height: 54px;
        font-size: 16px;
    }
    .l-header__btn--gold {
        display: none;
    }
}
@media screen and (max-width: 480px) {
    .l-header__sp-nav-item {
        width: 234px;
    }
    .l-header__sp-nav-link {
        font-size: 20px;
    }
    .l-header__sp-nav {
        padding-top: 50px;
    }
}
@media screen and (max-width: 390px) {
    .l-header__logo1 {
        width: calc(90*100vw/390);
        margin-right: 0;
    }
    .l-header__logo2 {
        display: none;
    }
    .l-header__btn {
        width: calc(173*100vw/390);
        height: calc(54*100vw/390);
        font-size: calc(16*100vw/390);
    }
}
