@charset "utf-8";


/* TOPページ CSS
-------------------------------*/
body.recruit,
.recruit #wrapper{
    background: none;
}
.top_movie{
    position: fixed;
    z-index: -2;/*最背面に設定*/
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
}
.top_movie .video {
    /*天地中央配置*/
    position: absolute;
    z-index: -2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}


.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeOut 1s 2s forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

.loading__logo {
    opacity: 0;
    animation: logo_fade 2s 0.3s forwards;
    width: 34vw;
}

@keyframes logo_fade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    60% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
    }
}



@media screen and (max-width:910px){
    .loading__logo {
        width: 50%;
    }
}
@media screen and (max-width:640px){
    .loading__logo {
        width: 70%;
    }
}









/* header
-------------------------------*/
.recruit #header .logo span:first-child{
    background: url(../img/common/logo_w.svg) left top/contain no-repeat;
    transition: 0.3s;
}
.recruit #header .logo span:first-child img{
    visibility: hidden;
    transition: 0.3s;
}

.recruit #header .logo span:nth-child(2){
    background: url(../img/common/bnr_kaku_rec_ww.png) left  bottom/contain no-repeat;
    transition: 0.3s;
}
.recruit #header .logo span:nth-child(2) img{
    visibility: hidden;
    transition: 0.3s;
}
@media screen and (min-width:911px){

    .recruit #header.fixed .logo span:first-child{
        background: none;
    }
    .recruit #header.fixed .logo span:first-child img{
        visibility: visible;
    }

    .recruit #header.fixed .logo span:nth-child(2){
        background-image: url(../img/common/bnr_kaku_rec_w.png);
    }
    .recruit #header.fixed .logo span:nth-child(2)img{
        visibility: visible;
    }
}





.scroll{
    position: absolute;
    bottom: -50px;
    left: calc(50% - 28px);
    width: 56px;
    text-align: center;
}
.scroll .scroll_bar{
    width: 1px;
    height: 160px;
    margin: 25px auto 0;
    background: url(../img/top/scroll_bar.png) center center repeat-y;/* 縦の時は　repeat-y */
    -moz-animation: kurukuru 3s linear infinite;
    animation: kurukuru 3s linear infinite;
}
/* スクロールの矢印　縦にスクロール　 */
@keyframes kurukuru {
    0% {background-position: 0 0;}
    100% {background-position: 0 320px;}
}

@-moz-keyframes kurukuru {
    0% {background-position: 0 0;}
    100% {background-position: 0 320px;}
}

@media screen and (max-width:910px){
    .scroll{
        display: none;
    }
}



/* contents 
-------------------------------*/


.top_bg1{
    width: 100%;
    height: 56vw;
}
.top_bg3{
    background-image: linear-gradient(rgba(8,97,214,0.0) 0%, rgba(8,97,214,0.9)  70%, rgba(8,97,214,0.9) 100%);
}
.top01{
    padding-top: 30vw;
    padding-bottom: 120px;
}
.top01 .ttl{
    width: 48%;
}
.top01 .txt{
    width: 50%;
    color: #fff;
}

.top01 .p1{
    position: relative;
    z-index: 3;
}
.top01 .p1:after{
    position: absolute;
    left: -160px;
    top: 20px;
    z-index: 1;
    width: 660px;
    height: 423px;
    background: url(../img/top/top01_02.png) left top/contain no-repeat;
    content: "";
}
.top01 .p2{
    font-family: 'IBM Plex Sans JP', sans-serif;
    font-weight: 700;
    font-size: 34px;
    line-height: 1.2em;
    margin-bottom: 60px;
}
.top01 .txt p{
    font-weight: 700;
    font-size: 24px;
    line-height: 1.8em;
    margin-bottom: 80px;
}

.top01 .txt .p3 span{
    display: inline-block;
    width: 9em;
}
.top01 .txt .p4{
    margin-top: 120px;
}

@media (min-width:911px) and (max-width:1200px){
    .top01 .p1:after{
        left: -13.33vw;
        top: 1.6vw;
        width: 55vw;
    }
    .top01 .p2{
        font-size: 2.8vw;
        line-height: 1.2em;
        margin-bottom: 5vw;
    }
    .top01 .txt p{
        font-size: 2vw;
        line-height: 1.8em;
        margin-bottom: 6.66vw;
    }
    .top01 .txt .p4{
        margin-top: 1vw;
    }
}

@media screen and (max-width:910px){
    .top_bg1{
        height: 70vw;
    }
    .top01{
        padding-bottom: 100px;
    }
    .top01 .ttl{
        width: 100%;
        margin-bottom: 60px;
    }
    .top01 .txt{
        width: 100%;
    }
    .top01 .txt p{
        font-size: 22px;
        line-height: 1.7em;
        margin-bottom: 50px;
    }
    .top01 .txt .p4{
        margin-top: 80px;
    }

}
@media screen and (max-width:640px){
    .top_bg1{
        height: 40vh;
    }
    .top01{
        padding-top: 30vh;
    }
    .top01 .p1{
        width: 80%;
    }
    .top01 .p1:after{
        position: absolute;
        left: -5%;
        top: 20px;
        width: 100%;
    }
    .top01 .p2{
        font-size: 28px;
        line-height: 1.2em;
        margin-bottom: 40px;
    }
    .top01 .txt p{
        font-size: 17px;
        line-height: 1.8em;
        margin-bottom: 40px;
    }
    .top01 .txt .p4{
        margin-top: 60px;
    }
}




.top02{
    width: 100%;
    height: 29.166vw;
    background: url(../img/top/top02_img.jpg)  center center repeat-x;
    background-size: auto 100%;
    -moz-animation: kurukuru2 150s linear infinite;
    animation: kurukuru2 150s linear infinite;
}
/* スクロールの矢印　横にスクロール　*/
@keyframes kurukuru2 {
    0% {background-position: 3500px 0;}
    100% {background-position:  -3500px 0;}
}
@-moz-keyframes kurukuru2 {
    0% {background-position: 3500px 0;}
    100% {background-position:  -3500px 0;}
}
@media screen and (max-width:640px){

    .top02{
        height: 58.332vw;
    }
}





.top_bg_w{
    background-color: #fff;
}

.top03{
    padding-top: 150px;
    padding-bottom: 10px;
}
.top03 .img_bnr{
    width: 48%;
    text-align: center;
}
.top03 .txt_bnr{
    width: 48%;
    margin-bottom: 70px;
    margin-top: -50px;
}
.top_ttl{
    margin-bottom: 50px;
    font-family: 'IBM Plex Sans JP', sans-serif;
    font-weight: 700;
    position: relative;
}
.top_ttl:after{
    position: absolute;
    left: -200px;
    top: 40px;
    width: 646px;
    height: 400px;
    background-position: left top;
    background-repeat:no-repeat;
    background-size: contain;
    background-image: url(../img/top/top03_txt.png);
    content: "";
}
.top_ttl .en{
    font-size: 15px;
    line-height: 1em;
    color: #0861d6;
    margin-bottom: 40px;
    padding-left: 20px;
    background: url(../img/top/top_ttl_logo.png) left center no-repeat;
}
.top_ttl .ja{
    font-size: 34px;
    line-height: 1.8em;
    color: #000;
    position: relative;
    z-index: 3;
}
.top_ttl_2{
    width: 100%;
    max-width: 560px;
    padding-bottom: 20px;
    border-bottom: solid 1px #d2d2d2;
    margin-bottom: 30px;
    font-size: 22px;
    line-height: 1.2em;
    position: relative;
    z-index: 2;
}
.top_ttl_2 span{
    display: inline-block;
    width: 30px;
    text-align:center;
    font-size: 15px;
    color: #0861d6;
}

.about_bnr li{
    width: 100%;
    height: 220px;
    border-radius: 3px;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}
.about_bnr li:after{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/top/top03_bnr_bg2.png);
    background-position: center center;
    background-repeat: no-repeat;
    content: "";
    transition: 0.3s;
}
.about_bnr li:nth-child(2):after{
    background-image: url(../img/top/top03_bnr_bg.png);
}
.about_bnr li:hover:after{
    transform: scale(1.2);
}

.about_bnr li .fuki{
    position: absolute;
    left: 50px;
    top: 30px;
}
.about_bnr li ._in{
    width: 90%;
    max-width: 280px;
}
.about_bnr li .sub{
    font-family: 'IBM Plex Sans JP', sans-serif;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 30px;
}
.about_bnr li .btn-txt-in span{
    font-weight: 400;
    font-size: 12px;
}


.about_bnr a{
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about_bnr .btn{
    width: 100%;
    max-width: 360px;
    height: 56px;
    border-radius: 28px;
    background-color: #fff;
    padding: 0 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-weight: 700;
    position: relative;
    transition: 0.5s;
}
.about_bnr .btn:after{
    position: absolute;
    right: 30px;
    top: calc(50% - 15px);
    width: 30px;
    height: 30px;
    background: url(../img/common/btn_maru.png) center center/contain no-repeat;
    content: "";
    transition: 0.5s;
}
.about_bnr  a:hover .btn:after{
    transform: scale(1.2);
}
.about_bnr .btn .btn-txt {
    line-height: 1;
    overflow: hidden;
    display: block;
    padding-right: 10px;
}
.about_bnr .btn .btn-txt-in{
    display: inline-block;
    font-size: 16px;
}
.about_bnr  a:hover .btn-txt-in {
    -webkit-animation: hover_txt_link 0.5s linear forwards;
    animation: hov_txt_link 0.5s linear forwards;
}







.top_more_box{
    width: 95%;
    max-width: 1400px;
    margin: auto;
    border: solid 1px #f6f6f6;
    border-radius: 3px;
    background: -moz-linear-gradient(top, #f6f6f6, #FFF);
    background: -webkit-linear-gradient(top, #f6f6f6, #FFF);
    background: linear-gradient(to bottom, #f6f6f6, #FFF);
    padding: 70px 0;
}
.top_more_box ._in{
    width: 90%;
    max-width: 1140px;
    margin: auto;
}
.top_more_box .item{
    width: 24%;
    max-width: 220px;
}
.top_more_box .item.bnr{
    position: relative;
    z-index: 4;
}
.top_more_box .item_full{
    width: 100%;
    margin-bottom: 40px;
}

.top_more_box .item a:hover {
    opacity: 1;
}

.top_more_box .txt{
    text-align: right;
    
}
.top_more_box .txt .ttl{
    display: inline-block;
    text-align: left;

}
.top_more_box .txt .ttl .ja{
    font-size: 20px;
    line-height: 1.8em;
    font-weight: 700;
}
.top_more_box .txt .ttl .sub{
    font-size: 13px;
}

.top_more_box .bnr .img{
    overflow: hidden;
    border-radius: 3px;
}
.top_more_box .bnr .img img{
    transition: 0.3s;
}
.top_more_box .bnr a:hover .img img{
    transform: scale(1.1);
}

.bnr_btn{
    width: 100%;
    max-width: 360px;
    height: 56px;
    padding: 0 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-weight: 700;
    position: relative;
    transition: 0.5s;
}
.bnr_btn:after{
    position: absolute;
    right: 5px;
    top: calc(50% - 15px);
    width: 30px;
    height: 30px;
    background: url(../img/common/btn_maru.png) center center/contain no-repeat;
    content: "";
    transition: 0.5s;
}
a:hover .bnr_btn:after{
    transform: scale(1.2);
}
.bnr_btn .btn-txt {
    line-height: 1;
    overflow: hidden;
    display: block;
    padding-right: 10px;
}
.bnr_btn .btn-txt-in{
    display: inline-block;
    font-size: 16px;
}
a:hover .bnr_btn .btn-txt-in {
    -webkit-animation: hover_txt_link 0.5s linear forwards;
    animation: hov_txt_link 0.5s linear forwards;
}

@media screen and (max-width:1300px){
    .top_ttl:after{
        left: -100px;
    }
    .about_bnr li .fuki{
        left: 30px;
        top: 30px;
    }
}

@media screen and (max-width:910px){
    .top03 .img_bnr{
        width: 100%;
    }
    .top03 .img_bnr img{
        max-width: 70%;
        margin: auto;
    }
    .top03 .txt_bnr{
        width: 100%;
        max-width: 560px;
        margin: 50px auto;
    }
    .top_ttl:after{
        left: -40px;
    }
    .top_ttl .en{
        margin-bottom: 30px;
    }
    .top_ttl .ja{
        font-size: 30px;
        line-height: 1.8em;
    }
    .about_bnr{
        max-width: 500px;
        margin: auto;
    }
    .about_bnr li .fuki{
        width: 8.7vw;
        left: 1.8vw;
        top: 1.8vw;
    }
    .top_more_box{
        padding-top: 20px;
        padding-bottom: 40px;
    }
    .top_more_box .item.txt{
        width: 100%;
        max-width: initial;
        max-width: auto;
        text-align: left;
        margin-bottom: 20px;
    }
    .top_more_box .item.bnr{
        width: 32%;
    }
    .top_more_box .item.txt br.pc{
        display: none;
    }
    .top_more_box .item.txt span.sub{
        margin-left: 15px;
    }

}
@media screen and (max-width:640px){
    .top_ttl:after{
        left: -20px;
        top: -20px;
        width: 80vw;
    }
    .top_ttl .en{
        margin-bottom: 15px;
    }
    .top_ttl .ja{
        font-size: 22px;
        line-height: 1.6em;
    }
    .top_ttl_2{
        font-size: 19px;
        line-height: 1.2em;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }
    .top_ttl_2 span{
        font-size: 12px;
    }
    .about_bnr li .fuki{
        left: 10px;
        top: 10px;
    }
    .top_more_box{
        padding-bottom: 20px;
    }
    .top_more_box .item.bnr{
        width: 100%;
        max-width: initial;
        max-width: auto;
        margin-bottom: 10px;
    }
    .top_more_box .item.bnr a{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .bnr_btn{
        padding-left: 20px;
    }
}
@media screen and (max-width: 480px) {
    .about_bnr li .fuki{
        width: 60px;
    }
}








.top04{
    padding-top: 120px;
    padding-bottom: 10px;
}
.top04 .top_ttl:after{
    width: 633px;
    background-image: url(../img/top/top04_txt.png);
}
.top04 .top_ttl_2{
    margin-top: -30px;
    margin-left: auto;
}

@media screen and (max-width:640px){
    .top04{
        padding-top: 60px;
    }
    .top04 .top_ttl:after{
        width: 80vw;
    }
    .top04 .top_ttl .ja span{
        display: inline-block;
    }

}








.top05{
    padding-top: 120px;
    padding-bottom: 10px;
}
.top05 .inner{
    width: 100%;
    max-width: 1920px;
    margin: auto;
    flex-flow: row-reverse;
}
.top05 .img{
    width: 51%;
}
.top05 .txt{
    width: 48%;
}
.top05 .txt ._in{
    width: 95%;
    max-width: 560px;
}

.top05 .top_ttl:after{
    width: 528px;
    background-image: url(../img/top/top05_txt.png);
}
.top05 .top_ttl_2{
    margin-bottom: 0;
}
.top05 .btn_list{
    width: 100%;
    max-width: 500px;
    margin-left: auto;
}
.top05 .btn_list .btn{
    border-bottom: solid 1px #d2d2d2;
}
.top05 .btn_list .btn a{
    width: 100%;
    max-width: initial;
    max-width: auto;
    height: 100px;
    border: none;
    background-color: transparent;
}
@media screen and (min-width:1300px){
    .top05 .top_ttl{
        width: calc(100% - 70px);
        margin-left: auto;
    }
}
@media screen and (max-width:910px){
    .top05 .inner{
        display: block;
    }
    .top05 .img{
        width: 100%;
    }
    .top05 .txt{
        width: 100%;
        margin-bottom: 30px;
    }
    .top05 .txt ._in{
        width: 90%;
        margin: auto;
    }
}
@media screen and (max-width:640px){
    .top05{
        padding-top: 60px;
    }
    .top05 .top_ttl:after{
        width: 80vw;
        background-image: url(../img/top/top05_txt.png);
    }
    .top05 .btn_list .btn a{
        height: 60px;
    }
    
}











.top06{
    padding-top: 120px;
    padding-bottom: 150px;
}
.top06 .top_more_box{
    padding-top: 160px;
    position: relative;
    overflow: hidden;
}
.top06 .top_more_box .top_ttl_2{
    position: absolute;
    top: 50px;
    left:calc(50% + 40px); 
    display: inline-block;
}
.top06 .txt{
    text-align: left;
}
.top06 .top_ttl:after{
    left: 100px;
    top: -80px;
    width: 893px;
    background-image: url(../img/top/top06_txt.png);
}
.top06 .top_ttl .ja{
    margin-top: -20px;
    font-size: 22px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    padding-left: 1em;
}

@media screen and (max-width:1300px){
    .top06 .top_more_box .top_ttl_2{
        left:auto;
        right: 5%;
    }
}

@media screen and (max-width:910px){
    .top06 .top_more_box{
        padding-top: 50px;
    }
    .top06 .top_ttl{
        margin-bottom: 0;
    }
    .top06 .top_more_box .top_ttl_2{
        position: static;
    }
}
@media screen and (max-width:640px){
    .top06{
        padding-top: 60px;
        padding-bottom: 80px;
    }
    .top06 .top_ttl:after{
        left: -20px;
        top: -20px;
        width: 100vw;
    }
}





@media screen and (max-width:1300px){
}

@media screen and (max-width:910px){
}
@media screen and (max-width:640px){
}














@media screen and (max-width:1300px){
}

@media screen and (max-width:910px){
}
@media screen and (max-width:640px){
}













@media screen and (max-width:1300px){
}

@media screen and (max-width:910px){
}
@media screen and (max-width:640px){
}













.top07{
    width: 100%;
    height: 700px;
    background-color: rgba(0,0,0,0.5);
    padding-top: 260px;
    color: #fff;
    position: relative;
}
.top07 .p1{
    text-align: center;
    font-size: 34px;
    line-height: 1.2em;
    font-family: 'IBM Plex Sans JP', sans-serif;
    font-weight: 700;
    margin-bottom: 220px;
    position: relative;
}
.top07 .p1:after{
    position: absolute;
    left: 0;
    top: -230px;
    width: 100%;
    height: 430px;
    background: url(../img/top/top07_txt.png) center center/contain no-repeat;
    content: '';
}

.top07 .p2{
    width: 90%;
    max-width: 1280px;
    margin: auto;
    position: relative;
}
.top07 .p2 ul{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background-color: #000;
}
.top07 .p2 ul:after{
    position: absolute;
    left: 50%;
    top: 20px;
    width: 1px;
    height: calc(100% - 40px);
    background-color: #fff;
    content: "";
}
.top07 .p2 li{
    width: 49.8%;
}
.top07 .p2 li a{
    width: 100%;
    height: 290px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    transition: 0.3s;
}
.top07 .p2 li a:hover{
    background-color: #1a1a1a;
}

@media screen and (max-width:910px){

    .top07{
        height: auto;
        padding-bottom: 70px;
    }
    .top07 .p2 ul{
        position: static;
    }
    .top07 .p2 li a{
        height: 200px;
    }
}
@media screen and (max-width:640px){
    
    .top07{
        padding-top: 120px;
    }
    .top07 .p1{
        font-size: 25px;
        line-height: 1.8em;
        margin-bottom: 100px;
    }
    .top07 .p1 span{
        display: block;
    }
    .top07 .p1:after{
        top: -50px;
        background-position: center top;
        background-size: 200px auto;
    }


    .top07 .p2 ul{
        background-color:transparent;
    }
    .top07 .p2 ul:after{
        display: none;
    }
    .top07 .p2 li{
        width: 100%;
        margin-bottom: 10px;
    }
    .top07 .p2 li a{
        height: auto;
        padding: 0 10%;
    }

    
    
}











