@charset "utf-8";

/* -- link hover */

.hNavLink ,
.dropdownListLink {
    position: relative;
}

.hNavLink::after ,
.dropdownListLink::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background: #C4A25C;
    transform: scale(0, 1);
    transform-origin: center left;
    transition: transform .3s;
}
        
.hNavLink:hover::after ,
.dropdownListLink:hover::after {
    transform: scale(1, 1);
}

.hNavLink .hNavTxt {
    transition: all .3s;
}

.hNavLink:hover .hNavTxt ,
.dropdownListLink:hover .hNavTxt {
    opacity: .7;
    transition: all .3s;
}

/* -- header item -- */

.hContBtn {
    transition: all .3s;
}

.hContBtn:hover {
    background-color: #fff;
    transition: all .3s;
}

.hContBtn .hContIcon {
    -webkit-filter: brightness(200%) saturate(0%);
    filter: brightness(200%) saturate(0%);
    transition: all .3s;
}

.hContBtn:hover .hContIcon {
    -webkit-filter: none;
    filter: none;
    transition: all .3s;
}

.hContBtn .hContTxt {
    transition: all .3s;
}

.hContTxt {
    font-size: 12px !important;
}

.hContBtn:hover .hContTxt {
    color: #C4A25C;
    transition: all .3s;
}

/* -- dropdownMenu -- */

.dropdownBox {
    position: relative;
}

.dropdownBox:hover .dropdownList {
    transform: scaleY(1);
    transition: all .5s;
}

.dropdownList {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 100%;
    left: -45%;
    width: 200%;
    max-width: 150px;
    padding: 18px;
    background-color: #EEE2CA;
    transform: scaleY(0);
    transform-origin: center top;
    transition: all .5s;
    z-index: 2;
}

.dropdownListLink {
    display: block;
    width: fit-content;
    height: auto;
    margin: 0 auto;
}

/*スマホ時のナビ*/

.spNav {
    max-width: calc(100% - 70px);
    width: 100%;
    height: 70px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999999;
}

.spNavArea {
    width: 100%;
    height: 100%;
    display: flex;
    background: #C4A25C;
    border-top: 1px solid #fff
}

.spNavBlock {
    flex: 1;
    display: flex;
}

.spNavConte-l {
    width: 33.33%;
    border-right: 1px solid #FFF;
}

.spNavLink {
    padding: 5px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.spNavLinkIconBx {
    width: 100%;
    height: 30px;
    position: relative;
}

.spNavLinkIconBx>* {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    max-width: 30px;
    margin: auto;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.spFa {
    font-size: 23px;
    color: #fff;
}

.spFa.spFa-pageTop {
    font-size: 40px;
}

.spNavConte-l:nth-child(2) .spNavLinkIconBx>* {
    height: 30px;
}

.spNavBtnBar {
    max-width: 36px;
    height: 26px;
    width: 100%;
    position: relative;
}

.spNavBtnTxt {
    margin: 5px auto 0;
    font-size: 12px;
    color: #fff;
}

.spNavLinkTxt {
    margin: 5px auto 0;
    font-size: 12px;
    color: #fff;
}

.spNavBtn {
    padding: 10px 5px 5px;
    width: 70px;
    height: 70px;
    position: fixed;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: #C4A25C;
    border-top: 1px solid #fff;
    z-index: 99999999;
    transition: all 1s;
}

.spNavBtn.open {
    border-top-color: transparent;
    transition: all .3s;
}

.spNavBtnBarItem {
    width: 100%;
    height: 3px;
    background: #FFF;
    border-radius: 3px;
    position: absolute;
    left: 0;
    transition: ease .3s;
}

.spNavBtnBarItem:nth-of-type(1) {
    top: 0;
}

.spNavBtnBarItem:nth-of-type(2) {
    top: 12px;
}

.spNavBtnBarItem:nth-of-type(3) {
    bottom: 0;
}

.open .spNavBtnBarItem {
    transition: ease .3s;
}

.open .spNavBtnBarItem:nth-of-type(1) {
    transform: translateY(13px) rotate(-45deg);
}

.open .spNavBtnBarItem:nth-of-type(2) {
    opacity: 0;
}

.open .spNavBtnBarItem:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
}

.spMenu {
    margin: auto;
    padding: 0 15px;
    max-width: 1920px;
    width: 100%;
    position: fixed;
    bottom: 0;
    right: -100%;
    background: rgba(236, 224, 203, .9);
    z-index: 9999999;
    transition: ease .3s;
}

.spMenu.open {
    right: 0;
}

.spMenuArea {
    width: 100%;
    height: 100%;
}

.spMenuConte {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 0 50px;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    -ms-overflow-style: none;
}

.spMenuConte::-webkit-scrollbar {
    display: none;
}

.spMenuLink {
    padding: 8px;
    text-align: center;
    display: block;
    color: #644016;
}

.spMenuLink:hover {
    color: #644016;
    background: rgba(236, 224, 203, .9);
}

.spMenuTxt {
    font-size: 14px;
    color: #644016;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.75em;
    text-align: center;
}

@media screen and (min-width:768px) {

    .spNav {
        display: none;
    }

    .spNavBtn {
        display: none;
    }


}

@media screen and (min-width:1400px) {

    .hLogoTxt {
        font-size: 30px !important;
    }

    .hNavEnTxt {
        font-size: 13px !important;
    }

    .hNavTxt {
        font-size: 20px !important;
    }
    
    .hContTxt {
        font-size: 16px !important;
    }

    .hNav {
        width: 75% !important;
    }

    .dropdownList {
        left: -33%;
        max-width: 160px;
    }

}

@media screen and (min-width:1600px) {


    .hLogo {
        margin: 0 0 0 11px !important;
    }

    .hIn {
        padding: 34px 40px !important;
        border-radius: 0 0 66px 66px !important;
    }

    .hNavLink {
        padding: 0 !important;
    }

    .dropdownList {
        top: 130%;
        left: -45%;
    }

}

@media screen and (min-width:1800px) {

    .hIn {
        padding: 34px 103px !important;
    }
    
    .hContTxt {
        font-size: 18px !important;
    }

}