@charset "utf-8";
.sec-header {
    letter-spacing: .05em;
}

.top-sec-ttl {
    font-family: "MVBoli";
    font-size: 3.125rem;
    line-height: 1.3;
    letter-spacing: 0;
}

.mv {
    height: calc(100vh - 100px);
}

.mv::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
}

.mv-logo {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    font-size: 5rem;
    font-family: 'Noto Serif JP', sans-serif;
    font-weight: 500;
    color: #E4E4E4;
}

.mv-logo figure img {
    width: 40%;
    max-width: 415px;
}

.about-point {
    background: url(../img/top/top-about.jpg) no-repeat top center / cover;
}

.top-about {
    max-width: 700px;
    padding: 45px;
    background: #fff;
}

.point-list li {
    width: 32%;
    margin-bottom: 20px;
    border: 2px solid #001274;
}

.point-list li h3 {
    line-height: 40px;
    background: #001274;
}

.point-list li p {
    padding: 45px 20px;
}

.business-info::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 50%;
    height: 50%;
    width: 1400px;
    transform: translateX(-50%);
    background: #F7F7F7;
    z-index: -1;
}

.top-business {
    width: calc(50% + 100px);
    padding-left: calc(50% - 700px);
    background: url(../img/top/top-business.jpg) no-repeat center / cover;
}

.top-business-cont {
    width: 100%;
    max-width: 400px;
}

.top-business .sec-header {
    margin-bottom: 60px;
    padding: 60px 15px;
    border: 1px solid #fff;
}

.top-job .sec-header::after,
.top-business .sec-header::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -40px;
    height: 80px;
    width: 1px;
    background: #fff;
}

.top-news .cmn-btn a,
.top-business .cmn-btn a {
    border: 1px solid #fff;
}

.top-job {
    width: calc(50% + 100px);
    margin-left: auto;
    padding-right: calc(50% - 700px);
    background: url(../img/top/top-recruit.jpg) no-repeat center / cover;
}

.top-job-cont {
    width: 100%;
    max-width: 540px;
}

.top-job .sec-header {
    margin-bottom: 60px;
    padding: 40px 15px 50px;
    background: rgba(0, 0, 0, .7);
}

.top-job .cmn-btn a {
    background: #000;
    border: 1px solid #fff;
}

.top-news {
    background: #000;
}

.top-news .sec-header {
    width: 42%;
    padding: 25px 15px;
    border-right: 1px solid #fff;
}

.top-news-list {
    width: 50%;
    line-height: 1.6;
}

.top-news-list li:last-child {
    margin-bottom: 0 !important;
}

@media screen and (max-width: 1430px) {
    .business-info::before {
        width: calc(100% - 30px);
    }
    .top-business,
    .top-job {
        width: 100%;
        max-width: 800px;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media screen and (max-width: 768px) {
    .mv-logo {
        font-size: 8vw;
    }
    .about-point {
        background: none;
    }
    .about-point section.pa_to70 {
        background: url(../img/top/top-about.jpg) no-repeat center / cover;
    }
    .point-list li p {
        padding: 30px 15px;
    }
    .top-news .sec-header {
        width: 100%;
        padding: 0 15px 25px;
        border-right: none;
        border-bottom: 1px solid #fff;
    }
    .top-news-list {
        width: 100%;
        margin-top: 30px;
    }
}

@media screen and (max-width: 600px) {
    .top-sec-ttl {
        font-size: 2rem;
    }
    .point-list li {
        width: 100%;
    }
    .top-about {
        padding: 40px 15px;
    }
}


/*アニメーション制御-----------------------*/

.anime_outer {
    transition: 0.5s;
    opacity: 0;
    overflow: hidden;
    position: relative;
}

.anime_outer:before {
    content: '';
    position: absolute;
    display: block;
    height: 100%;
    width: calc(100% + 1px);
    top: 0;
    transform: translateX(-100%);
    transition: all 1.2s 0s ease;
    background: #d4d9e4;
    z-index: 1;
}

.anime_outer.active {
    opacity: 1;
}

.anime_outer.active:before {
    transform: translateX(100%);
}

.anime_slideIn {
    position: relative;
    left: -50px;
    transition: all 0.5s 0s ease;
}

.anime_slideIn.active {
    left: 0;
}