@charset "utf-8";

/* -- header -- */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    max-width: 1920px;
    width: 100%;
    z-index: 999;
}

.header.is-animation {
    background-color: rgba(0, 0, 0, .5);
}

.hNavLink {
    transition: all .3s;
}

.hNavLink:hover {
    opacity: .5;
    transition: all .3s;
}

.hNavTxt {
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.267em;
    font-size: 15px;
}

.hContLink {
    background-color: #2656B1;
    transition: all .3s;
}

.hContLink:hover {
    background-color: #07122C;
    transition: all .3s;
}

/* -- dropdownMenu -- */

.dropdownBox {
    position: relative;
    padding: 15px 0;
}

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

.hNavIcon {
    transition: all .8s;
}

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

.dropdownList {
    position: absolute;
    top: 48px;
    left: -40%;
    width: 200%;
    height: auto;
    padding: 5px 9px 16px 11px;
    background-color: #fff;
    border-radius: 8px;
    transform: scaleY(0);
    transform-origin: center top;
    transition: all .5s;
    z-index: 2;
}

.dropdownListLink {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5px 15px 15px;
    border-bottom: 1px solid #ccc;
    color: #333;
    text-align: center;
    font-size: 13px;
    transition: all .3s;
}

.dropdownListLink:hover {
    padding: 15px 0 15px 15px;
    transition: all .3s;
}

.dropdownListLink:last-child {
    padding: 15px 5px 0 15px;
    border-bottom: none;
}

.dropdownListLink:last-child:hover {
    padding: 15px 0 0 15px;
}

.dropdownTxt {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1em;
    transition: all .3s;
}

.dropdownListLink:hover p {
    opacity: .5;
    transition: all .3s;
}

/*スマホ時のナビ*/

.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: #07122C;
    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>* {
    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;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.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: #07122C;
    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(7, 18, 44, .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;
}

.spMenuBx {
    max-width: 120px;
    margin: 0 auto 0 50px;
}

.spMenuLink {
    max-width: fit-content;
    padding: 15px 5px;
    text-align: start;
    display: block;
    color: #FFF;
    transition: all .3s;
}

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

.spMenuServiceBx .spMenuLink.noHover {
    padding: 15px 5px 10px 5px;
}

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

.spMenuServiceBx .spMenuLink:not(:first-child) {
    position: relative;
    padding: 10px 5px 10px 20px;
}

.spMenuServiceBx .spMenuLink:not(:first-child)::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 8px;
    height: 1px;
    background-color: #fff;
}

.spMenuServiceBx .spMenuLink:last-child {
    padding: 10px 5px 15px 20px;
}

.spMenuTxt {
    font-size: 15px;
    color: #FFF;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.267em;
}

/* -- footer -- */

.fContFormBtn {
    transition: all .3s;
}

.fContFormBtn:hover {
    background-color: #2A4480;
    transition: all .3s;
}

.footerMap {
    display: block;
    width: 100%;
    height: 360px;
    margin: 0 auto;
}

.footerMap>iframe {
    width: 100%;
    height: 100%;
}

.fNavLink {
    color: #333;
    transition: all .3s;
}

.fNavLink:hover {
    opacity: .5;
    transition: all .3s;
}

.fServiceLink::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    background-color: rgba(0, 0, 0, .4);
    transition: all .3s;
}

.fServiceLink:hover::before {
    background-color: rgba(0, 0, 0, .1);
    transition: all .3s;
}

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

    .spNav {
        display: none;
    }

    .spNavBtn {
        display: none;
    }

    /* -- footer -- */
    .footerMap {
        height: 480px;
    }

}

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

    .footerMap {
        height: 636px;
    }

}

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

    .fContTelBtnIcon {
        margin: 0 25px 0 0 !important;
    }

    .fContFormBtnIcon {
        margin: 0 17px 0 0 !important;
    }

    .fContBtn {
        padding: 29px 55px 27px 38px !important;
    }

}

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

    .hIn {
        padding: 0 0 0 77px !important;
    }

    .hLogo {
        max-width: 230px !important;
    }

    .fContBox01In {
        padding: 15px 0 0 41px !important;
    }

    .fContBtnLeft {
        justify-content: flex-start !important;
        width: 43% !important;
    }

    .fContBtnRight {
        width: 44% !important;
    }

}