@charset "utf-8";
#header .headerBtn .loginLink:hover{
    z-index: 2;
}
body{
    background:#f7fffa;
}
/*-----------------------------------------------
    secBgVideo
-----------------------------------------------*/
.secBgVideo{
    max-width: calc((100% - var(--widthMenuBase) ) + 1rem);
    width: calc(100% + 1rem);
    height: 100%;
    position: fixed;
    top: 0;
    right: -0.5rem;
    transition: .5s ease-out;
    z-index: -1;
}
.secBgVideo.active{
    filter: blur(10px);
    opacity: 0.6;
}
.secBgVideo video{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    font-family: 'object-fit: cover;';
}
@media only screen and (max-width:1215px){
    .secBgVideo{
        max-width: calc(100% + 3px);
        width: calc(100% + 2rem);
    }
}
@media only screen and (max-width:767px){
    .secBgVideo{
        max-width: none;
        right: -2rem;
        top: 12%;
    }
    .secBgVideo.active{
        filter: blur(3px);
    }
    .secBgVideo .inVideo {
        position: relative;
        width: 100%;
        height: 105vw;
        max-height: 42rem;
    }
    .secBgVideo .inVideo:after{
        position: absolute;
        bottom: -109px;
        left: 0;
        width: 100%;
        height: 150px;
        background: linear-gradient(to bottom, #f7fffa, transparent);
        content: "";
    }
    .secBgVideo video{
        top: -3.8rem;
    }
}
/* secContact */
.secContact .secCmnForm {
    margin-top: 0;
    padding-top: 4rem;
}
@media only screen and (max-width:1215px){
    .secContact .secCmnForm {
        padding-top: 1rem;
        border-bottom: 1px solid;
        border-color: var(--contact_border_color);
    }
}