html {
    font-family: "Noto Serif JP", serif;
    background-color: #F2F1EE;
    background-image: url(../img/bg_effect.png);
    background-size: contain;
    background-repeat: repeat;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    transition: all .5s ease;
}

a:hover {
    opacity: .4;
    transition: all .3s ease;
}

.inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hina {
    font-family: "Hina Mincho", serif;
}

.pc_only {
    display: block;
}

.sp_only {
    display: none;
}

.more-btn a {
    width: 10rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #928572;
    color: #928572;
}

header {
    width: 100vw;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 1.3rem 3rem;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0) 100%, rgba(0, 0, 0, 0.38) 25%, rgba(0, 0, 0, 0.25) 50%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}

header h1 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

header .header-logo {
    width: 10vw;
}

header .header-list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 3rem;
    color: #fff;
}

header .header-list .contact {
    padding: .4rem 1.1rem;
    background-color: #F2F1EE20;
    border-radius: 15px;
}

.hamburger {
    display: none;
}

/***** フッター *****/
footer {
    padding: 100px 0;
    background: #928572;
    color: #fff;
}

footer .footer-inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
}

footer .footer-inner .footer-logo {
    width: 8%;
}

footer .footer-inner .footer-right {
    width: 45%;
}

footer .footer-inner .footer-right .footer-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 20px;
    margin-bottom: 30px;
}

footer .footer-inner .footer-right .resv {
    width: fit-content;
    padding: 10px 40px;
    margin-left: auto;
    color: #928572;
    background: #fff;
    margin-bottom: 30px;
}

footer .footer-inner .footer-right .copylight {
    width: fit-content;
    margin-left: auto;
}

.breadcrumbs {
    padding: 4px 0;
    background-color: #fff;
}

.breadcrumbs .breadcrumbs-inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
    font-size: .8rem;
}

.breadcrumbs li {
    width: fit-content;
}

@media screen and (max-width:767px) {
    .inner {
        max-width: 350px;
    }

    .pc_only {
        display: none;
    }

    .sp_only {
        display: block;
    }

    .more-btn a {
        width: 10rem;
        margin: 0 auto;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 10px;
        border-bottom: 1px solid #928572;
        color: #928572;
    }

    header {
        padding: .8rem 1rem;
    }

    header .header-logo {
        width: 30vw;
        z-index: 99;
    }

    header .header-list {
        height: 100vh;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        position: absolute;
        top: 0;
        right: 0;
        transform: translateX(100%);
        background: #bcae99;
        padding: 100px 0;
        transition: all .3s ease;
    }

    header .header-list.active {
        transform: translateX(0);
        transition: all .6s ease;
    }

    header .header-list li {
        width: 90%;
        text-align: center;
    }

    header .header-list .contact {
        padding: .8rem 1.1rem;
        background-color: #F2F1EE20;
        border-radius: 0;
    }

    header .header-list li.donouzei a {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 0.7rem;
        background: #1D7711;
        padding: .7rem 1rem;
    }

    header .header-list li.gomypage a {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 0.7rem;
        background: #7A6F38;
        padding: .7rem 1rem;
    }

    .hamburger {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        position: relative;
    }

    .hamburger::before,
    .hamburger::after {
        content: '';
        width: 20px;
        height: 1px;
        background: #fff;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .hamburger::after {
        top: 25%;
        transition: all .3s ease;
    }

    .hamburger::before {
        bottom: 25%;
        transition: all .3s ease;
    }

    .hamburger span {
        width: 20px;
        height: 1px;
        background: #fff;
        transition: all .3s ease;
    }

    .hamburger.active::before {
        display: none;
        transition: all .3s ease;
    }

    .hamburger.active::after {
        transform: rotate(45deg) translateY(-50%);
        top: 50%;
        left: 15%;
        transition: all .3s ease;
    }

    .hamburger.active span {
        transform: rotate(-45deg);
        transition: all .3s ease;
    }

    /***** フッター *****/
    footer {
        padding: 50px 0;
    }

    footer .footer-inner {
        flex-wrap: wrap;
        flex-direction: column;
        gap: 2rem;
    }

    footer .footer-inner .footer-logo {
        width: 25%;
        margin: 0 auto;
    }

    footer .footer-inner .footer-right {
        width: 100%;
    }

    footer .footer-inner .footer-right .footer-list {
        justify-content: center;
        margin-bottom: 2rem;
    }

    footer .footer-inner .footer-right .resv {
        width: 100%;
        text-align: center;
        margin-bottom: 2rem;
    }

    footer .footer-inner .footer-right .copylight {
        width: fit-content;
        margin: 0 auto;
        font-size: .9rem;
    }

    .breadcrumbs .breadcrumbs-inner {
        max-width: 370px;
        flex-wrap: wrap;
        gap: 5px 10px;
    }

}