@charset "UTF-8";

/* ヘッダー
***************************************************************/

header {
    width: 100%;
    padding: 30px 0 0;
    background-color: #fff;
}

.header_inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 0 40px;
}

.header_wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.header-sns {
    width: 35%;
}

.header-sns--text {
    color: #d4b572;
}

.header-sns__list {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.header-sns__item {}

.header-sns__item a {
    width: 30px;
    text-wrap: nowrap;
}

.header-sns__item:nth-of-type(5) a img {
    scale: 0.9;
}

.header-sns__item:nth-of-type(6) a img {
    scale: 1.3;
}

.header-sns__item:nth-of-type(7) a img {
    scale: 1.8;
}

.header__logo {
    width: 100%;
    text-align: center;
}

.header__logo a.logo {
    width: 70%;
    margin-top: 3%;
}

.header__logo a.logo img {}

.logo--name {
    font-size: 16px;
    color: #B5B5B5;
}

.header__right {
    width: 29%;
}

.searchform {
    width: 100%;
    max-width: 250px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #505050;
    margin-left: auto;
}

.searchform [type="text"] {
    width: 100%;
}

.searchform__btn {
    text-align: center;
}

.searchform__btn img {
    width: 22px;
}

.searchform [type="submit"] {
    width: 30px;
    padding: 0 5px 5px 0;
}

.pc_nav__list {
    display: flex;
    gap: 80px;
    justify-content: center;
    align-items: center;
    padding: 50px 0 15px;
    box-shadow: 0 -30px 40px -40px #e6e6e6 inset;
}

.pc_nav__item {
    text-align: center;
}

.pc_nav__item a {
    font-size: 22px;
    line-height: 1;
}

.pc_nav__item a span {
    font-size: 10px;
}

/* ハンバーガーメニュー非表示 */
.toggle-menu,
.header_nav-sp {
    display: none;
}

.current {
    color: #d4b572;
}

@media screen and (max-width: 1080px) {

    header {
        /* position: fixed;
        top: 0;
        left: 0; */
        width: 100%;
        padding: 30px 0 0;
    }

    .header-sns__list,
    .header__right {
        display: none;
    }

    .header_wrap {
        display: block;
    }

    .header-sns {
        width: 100%;
        text-align: center;
    }

    .header-sns--text {
        color: #d4b572;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .pc_nav__list {
        overflow-x: auto;
    }

    .pc_nav__item a {
        text-wrap: nowrap;
    }

    .header_inner {
        display: block;
        margin: 0 10px;
    }

    .header__logo {
        width: 100%;
        text-align: center;
    }

    .header__logo a.logo {
        width: 500px;
        margin-top: 0;
    }

    .header__logo a.logo img {}


    /* ハンバーガーメニュー */
    .toggle-menu {
        display: inline-block;
        width: 40px;
        height: 30px;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 100;
        margin: 5px;
    }

    .toggle-menu .toggle-line {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        margin: auto;
        text-indent: -9999px;
        width: 27px;
        height: 1px;
        background-color: #000;
    }

    .toggle-menu .toggle-line::before,
    .toggle-menu .toggle-line::after {
        content: "";
        position: absolute;
        left: 0;
        width: 27px;
        height: 1px;
        background-color: #000;
        transition: .3s;
    }

    .toggle-menu .toggle-line::before {
        top: -7px;
        -webkit-animation: menu-barTop 0.6s forwards;
        animation: menu-barTop 0.6s forwards;
    }

    .toggle-menu .toggle-line::after {
        top: 7px;
        -webkit-animation: menu-barBottom 0.6s forwards;
        animation: menu-barBottom 0.6s forwards;
    }

    .header_nav-sp {
        display: block;
    }

    .header_nav-sp {
        position: fixed;
        top: 0;
        left: 0;
        padding: 0 15px 0;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100vw;
        height: 100vh;
        background-color: rgb(255, 255, 255);
        z-index: 90;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: 0.3s ease-out;
        transition: 0.3s ease-out;
    }

    .global_nav-sp {
        margin-top: 50px;
        padding: 0 30px;
    }

    .open .toggle-menu {
        -webkit-transition: all 0.5s linear 1s;
        transition: all 0.5s linear 1s;
    }

    .open .toggle-menu .toggle-line {
        height: 0;
        background-color: #000;
    }

    .open .toggle-menu .toggle-line::before {
        -webkit-animation: active-menu-barTop 0.6s forwards;
        animation: active-menu-barTop 0.6s forwards;
        transform: rotate(-45deg);
        top: 0;
        background-color: #000;
    }

    .open .toggle-menu .toggle-line::after {
        -webkit-animation: active-menu-barBottom 0.6s forwards;
        animation: active-menu-barBottom 0.6s forwards;
        transform: rotate(45deg);
        top: 0;
        background-color: #000;
    }

    .open .header_nav-sp {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        overflow: auto;
    }

    .global_nav-sp {}

    .header_nav-sp {
        padding: 30px 0 50px;
        color: #d4b572;
    }

    .header_nav-sp__logo {
        text-align: center;
    }

    .header_nav-sp--text {
        font-size: 22px;
        margin-bottom: 10px;
        color: #d4b572;
    }

    .logo_nav-sp {
        width: 250px;
    }


    .sp-sns__list {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 20px;
        justify-content: center;
        align-items: center;
    }

    .sp-sns__item {
        text-align: center;
    }

    .sp-sns__item a {
        width: 30px;
    }

    .sp-sns__item:nth-of-type(5) a img {
        scale: 0.9;
    }

    .sp-sns__item:nth-of-type(6) a img {
        scale: 1.3;
    }

    .sp-sns__item:nth-of-type(7) a img {
        scale: 1.8;
    }

    .sp_nav__list {
        margin-top: 50px;
        text-align: center;
    }

    .sp_nav__item {
        margin-top: 20px;
    }

    .sp_nav__item a {
        font-size: 18px;
        line-height: 0.9;
    }

    .sp_nav__item a span {
        font-size: 10px;
    }

    .searchform {
        width: 80%;
        margin: 30px auto 0;
        border-bottom: 1px solid #d4b572;
    }

    .searchform__btn {
        text-align: center;
    }

    .searchform__btn img {
        width: 22px;
    }

    .searchform [type="submit"] {
        width: 20%;
        padding: 0 5px 5px 0;
    }

}

@media screen and (max-width: 880px) {
    .pc_nav__list {
        overflow-x: auto;
        display: flex;
        gap: 80px;
        justify-content: unset;
        align-items: center;
        padding: 30px 40px 15px;
        box-shadow: 0 -30px 40px -40px #e6e6e6 inset;
    }

    .header-sns--text,
    .header_nav-sp--text {
        font-size: clamp(0.875rem, 0.597rem + 1.19vw, 1.25rem);
    }

}

@media screen and (max-width: 680px) {
    .header__logo a.logo {
        width: clamp(18.75rem, 14.908rem + 16.39vw, 21.875rem);
    }

    .logo--name {
        font-size: 13px;
    }

    .pc_nav__list {
        gap: 60px;
        padding: 30px 20px 15px;
    }

    .pc_nav__item a {
        font-size: 18px;
    }

    .pc_nav__item a span {
        font-size: 8px;
    }

    .header_nav-sp--text {
        text-align: center;
        margin-bottom: 15px;
    }

    .logo_nav-sp--name {
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .pc_nav__list {
        gap: 40px;
    }
}