@charset "utf-8";
/*====================================================
top page main splash
====================================================*/
.hero #splash {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 550;
    transition: opacity 1000ms ease;
}
.hero #splash.out {
    display: none;
}
.hero #splash .bgImage {
    position: absolute;
    height: 100%;
    width: auto;
    top: 0;
    left: 50%;
    transform: translate(-50%,0);
    z-index: 556;
    opacity: 0;
    /*display: none;*/
    transition: opacity 1000ms ease;
}
.hero #splash .mainCopy {
    position: absolute;
    height: 100%;
    width: auto;
    top: 0;
    left: 50%;
    transform: translate(-50%,0);
    z-index: 557;
    opacity: 0;
    /*display: none;*/
    transition: opacity 1000ms ease;
}
.hero #splash .splash-logo {
    position: absolute;
    height: 100%;
    width: auto;
    margin: 0;
    padding: 0;
    top: 0;
    left: 50%;
    transform: translate(-50%,0);
    z-index: 552;
    opacity: 0;
    /*display: none;*/
    transition: opacity 1000ms ease;
}

@media screen and (max-width: 1439px) {
    .hero #splash .bgImage,
    .hero #splash .mainCopy,
    .hero #splash .splash-logo {
        /*height: auto;*/
        width: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
}