@charset "utf-8";

/* --------------------------------------------
header common
-------------------------------------------- */
.header {
    position: relative;
    max-width: 1920px;
    width: 100%;
    z-index: 999;
}

/* --------------------------------------------
header SP
-------------------------------------------- */
.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: #C41A23;
    border-top: 1px solid #fff
}

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

.spNavConte-l {
    width: 50%;
    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>* {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

.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: #C41A23;
    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 .5s;
}

.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 .5s;
}

.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(247, 244, 230, .9);
    z-index: 9999999;
    transition: ease .5s;
}

.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;
}

.spNavBox {
    max-width: fit-content;
    margin: 0 auto;
}

.spMenuLink {
    transition: all .5s;
}

.spMenuLink:hover {
    opacity: .5;
    transition: all .5s;
}

.spMenuLink.noHover:hover {
    opacity: 1;
}

.spMenuLinkCh {
    position: relative;
    margin: 0 0 20px 2em !important;
}

.spMenuLinkCh::before {
    content: "";
    display: block;
    position: absolute;
    left: -1.5em;
    top: 50%;
    width: 100%;
    max-width: .7em;
    height: 1px;
    background-color: #3D1618;
}

/* --------------------------------------------
header PC
-------------------------------------------- */

.hNavLink::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    display: inline-block;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right;
    transform-origin: right;
    background: #3D1618;
    width: 100%;
    height: 1px;
    -webkit-transition: -webkit-transform .25s ease-out;
    transition: -webkit-transform .25s ease-out;
    transition: transform .25s ease-out;
    transition: transform .25s ease-out, -webkit-transform .25s ease-out;
}

.hNavLink:hover::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left;
    transform-origin: left
}

.hNavLinkCh {
    transition: all .5s;
}

.hNavLinkCh:hover {
    opacity: .5;
    transition: all .5s;
}

/* -- dropdownMenu -- */
.dropdownBox {
    position: relative;
}

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

.hNavIcon {
    transition: all .5s;
}

.dropdownBox:hover .hNavIcon {
    transform: rotateX(180deg);
    transition: all .5s;
}

.dropdownList {
    position: absolute;
    top: 30px;
    left: -25%;
    width: 143.77%;
    height: auto;
    padding: 20px 23px;
    background-color: #C41A23;
    transform: scaleY(0);
    transform-origin: center top;
    transition: all .5s;
    z-index: 2;
}

/* --------------------------------------------
header Clone
-------------------------------------------- */

.header.clone {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: all .8s;
}

/* --------------------------------------------
footer
-------------------------------------------- */
.fNavLink::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background-image: linear-gradient(to right, #8D594B, #8D594B 2px, transparent 2px, transparent 4px);
    background-size: 4px 1px;
    background-position: right top;
    background-repeat: repeat-x;
}

.fNavLink:last-child,
.fNavLinkCh:last-child {
    margin-bottom: 0 !important;
}

.fNavLinkChBox::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 25px;
    width: 100%;
    height: 1px;
    background-color: #8D594B;
}

.fNavLink>p,
.fNavLinkCh>p {
    transition: all .5s;
}

.fNavLink:hover>p,
.fNavLinkCh:hover>p {
    color: #fff;
    transition: all .5s;
}

.fNavLink.noHover:hover>p {
    color: #3D1618;
}

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

    .spNav {
        display: none;
    }

    .spNavBtn {
        display: none;
    }

    /* --------------------------------------------
    header Clone
    -------------------------------------------- */
    .header.is-animation {
        visibility: visible;
        opacity: 1;
        transition: all .8s;
    }

    .header.clone .hLogo01 {
        display: flex !important;
        margin: 0 3% 0 0 !important;
    }

    .header.clone .hLogo02 {
        display: none !important;
    }

    .header.clone .hItem01 {
        margin: 20px 3.187% 0 0 !important;
    }

    /* --------------------------------------------
    in header
    -------------------------------------------- */
    .inHeader .hLogo01 {
        display: flex !important;
        margin: 0 3% 0 0 !important;
    }

    .inHeader .hLogo02 {
        display: none !important;
    }

    .inHeader .hItem01 {
        margin: 20px 3.187% 0 0 !important;
    }

}

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

    /* --------------------------------------------
    header Clone
    -------------------------------------------- */
    .header.clone .hItem01 {
        margin: 28px 3.187% 0 0 !important;
    }

    .header.clone .hNavTxt {
        font-size: 18px !important;
    }

    /* --------------------------------------------
    in header
    -------------------------------------------- */
    .inHeader .hItem01 {
        margin: 28px 3.187% 0 0 !important;
    }

    .inHeader .hNavTxt {
        font-size: 18px !important;
    }

}

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

    /* --------------------------------------------
    header Clone
    -------------------------------------------- */
    .header.clone .hInBox {
        align-items: center !important;
        justify-content: flex-end !important;
    }

    .header.clone .hItem01 {
        width: 40% !important;
        margin: 0 3.187% 0 0 !important;
    }
    
    .header.clone .hItem02 {
        flex-direction: row !important;
        width: 60% !important;
        margin: 0 !important;
    }

    .header.clone .hTelBox {
        margin: 0 0 0 5% !important;
    }

    .header.clone .hTelIcon {
        max-width: 14px !important;
        margin: 0 3px 0 0 !important;
    }

    .header.clone .hTelTxt {
        font-size: 20px !important;
    }

    /* --------------------------------------------
    in header
    -------------------------------------------- */
    .inHeader .hInBox {
        align-items: center !important;
        /* justify-content: flex-end !important; */
    }

    .inHeader .hItem01 {
        width: 40% !important;
        margin: 0 3.187% 0 0 !important;
    }
    
    .inHeader .hItem02 {
        flex-direction: row !important;
        width: 60% !important;
        margin: 0 !important;
    }

    .inHeader .hTelBox {
        margin: 0 0 0 5% !important;
    }

    .inHeader .hTelIcon {
        max-width: 14px !important;
        margin: 0 3px 0 0 !important;
    }

    .inHeader .hTelTxt {
        font-size: 20px !important;
    }

}

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

    .hItem {
        margin: 40px 0 0 0 !important;
    }

    .hLogo02 {
        width: 15% !important;
        max-width: 176px !important;
        margin: 0 50px 0 !important;
        padding: 0 0 0 4px !important;
    }

    /* --------------------------------------------
    header Clone
    -------------------------------------------- */
    .header.clone .hLogo01 {
        max-width: 137px !important;
    }

    .header.clone .hItem01 {
        max-width: 503px !important;
    }

    .header.clone .hItem02 {
        max-width: 719px !important;
    }

    .header.clone .hNavTxt {
        font-size: 20px !important;
    }

    .header.clone .hTelBox {
        margin: 0 0 0 52px !important;
    }

    .header.clone .hTelIcon {
        max-width: 23px !important;
        margin: 0 10px 0 0 !important;
    }

    .header.clone .hTelTxt {
        font-size: 30px !important;
    }

    /* --------------------------------------------
    in header
    -------------------------------------------- */
    .inHeader .hLogo01 {
        max-width: 137px !important;
    }

    .inHeader .hItem01 {
        max-width: 503px !important;
    }

    .inHeader .hItem02 {
        max-width: 719px !important;
    }

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

    .inHeader .hTelBox {
        margin: 0 0 0 52px !important;
    }

    .inHeader .hTelIcon {
        max-width: 23px !important;
        margin: 0 10px 0 0 !important;
    }

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

}

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

    .hInBox {
        align-items: center !important;
        /* justify-content: flex-end !important; */
    }

    .hItem {
        margin: 0 !important;
    }

    .hItem01 {
        max-width: 503px !important;
    }

    .hItem02 {
        flex-direction: row !important;
        max-width: 719px !important;
    }
   
    .hTelBox {
        margin: 0 0 0 52px !important;
    }

}