@charset "utf-8";

/*　index.html
--------------------*/



.top01{
    width: 100%;
    max-width: 2200px;
    margin: auto;
    overflow: hidden;
    position: relative;
}

.top-image li{
    width: 100%;
    aspect-ratio: 2 / 1;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.top-image li.bg1{
    background-image: url(../img/top/top_img01.jpg);
}
.top-image li.bg2{
    background-image: url(../img/top/top_img02.jpg);
}
.top-image li.bg3{
    background-image: url(../img/top/top_img03.jpg);
}


.top-news{
    position: absolute;
    right: 2.6vw;
    bottom: 4vw;
    width: 700px;
    display: flex;
    justify-content: space-between;
}
.top-news .ttl_ao{
    width: 150px;
    height: 100px;
    border-radius: 10px 0 0 10px;
    background: -moz-linear-gradient(left, #0088f1, #00c0fa);
    background: -webkit-linear-gradient(left, #0088f1, #00c0fa);
    background: linear-gradient(to right, #0088f1, #00c0fa);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;

}
.top-news .ttl_ao .ja{
    font-size: 14px;
    line-height: 1.5em;
}
.top-news .ttl_ao .en{
    font-size: 22px;
    line-height: 1.2em;
}
.top-news .txt{
    width: calc(100% - 150px);
    background-color: #fff;
    border-radius: 0 10px 10px 0;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.top-news .txt dl{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.4em;
}
.top-news .txt dt{
    width: 7em;
    color: #0096fa;
}
.top-news .txt dd{
    width: calc(100% - 7em);
    font-family: "Noto Serif JP", serif;
    font-weight:500;
}
.top-news .txt dd a{
    display: block;
    color: #000;
}
.top-news .txt dd a:hover{
    color: #0096fa;
}



.top01-copy{
    position: absolute;
    bottom: 15vw;
    left: 8.3vw;
}
.text-split {
    display: flex;
    overflow: hidden;
    color: #fff;
}

.text-split.line1,
.text-split.line2{
    font-size: 74px;
    line-height: 1.2em;
    font-weight: 700;
    margin-bottom: 15px;
}
.text-split.line3{
    font-size: 20px;
    line-height: 1.2em;
    font-weight: 700;
}
@media (min-width:911px) and (max-width:1550px){
    .top-news{
        width: 45vw;
    }
    .top-news .ttl_ao{
        width: 9.6vw;
        height: 6.5vw;
    }
    .top-news .ttl_ao .ja{
        font-size: 0.9vw;
        line-height: 1.5em;
    }
    .top-news .ttl_ao .en{
        font-size: 1.4vw;
        line-height: 1.2em;
    }
    .top-news .txt{
        width: calc(100% - 9.6vw);
        padding-left: 1.3vw;
        padding-right: 1.3vw;
        font-size: 1vw;
        line-height: 1.4em;
    }
}

@media screen and (max-width:1550px){

    .text-split.line1,
    .text-split.line2{
        font-size: 4.7vw;
        line-height: 1.2em;
    }
    .text-split.line3{
        font-size: 1.3vw;
        line-height: 1.2em;
    }
    .text-split.line3{
        font-size: 14px;
        line-height: 1.2em;
    }
}

@media screen and (max-width:910px){


    .top-news{
        position: static;
        margin-top: 50px;
        margin-left: auto;
        margin-right: auto;
        width: 90%;
        max-width: 700px;
    }

    .top01-copy{
        position: absolute;
        bottom: auto;
        top: 16vw;
        left: 3%;
    }
    
}
@media screen and (max-width:640px){
    .top-image li{
        width: 100%;
        aspect-ratio: 2 / 1.5;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
    
    .top-news{
        margin-top: 30px;
        width: 95%;
    }
    .top-news .ttl_ao{
        width: 80px;
        height: auto;
        min-width: 80px;
    }
    .top-news .ttl_ao .ja{
        font-size: 12px;
        line-height: 1.5em;
    }
    .top-news .ttl_ao .en{
        font-size: 18px;
        line-height: 1.2em;
    }
    .top-news .txt{
        width: calc(100% - 80px);
        padding: 20px;
    }
    .top-news .txt dl{
        display: block;
    }
    .top-news .txt dt{
        width: 100%;
        margin-bottom: 5px;
    }
    .top-news .txt dd{
        width: 100%;
    }

    .top01-copy{
        top: 30vw;
    }
    .text-split.line1,
    .text-split.line2{
        font-size: 8vw;
        line-height: 1.2em;
    }


}







@keyframes passing-txt {
    0% {
        width:0%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        width:100%;
        opacity: 1;
    }
}
@-webkit-keyframes passing-bar{
    0% {
        left: 0;
        right: auto;
        width: 0;
    }
    50% {
        left: 0;
        right: auto;
        width: 0;
    }
    100% {
        left: auto;
        right: 0;
        width: 100%;
    }
}
@keyframes passing-bar{
    0% {
        left: 0;
        width: 0;
    }
    50% {
        left: 0;
        width: 0;
    }
    100% {
        left: 0;
        width: 100%;
    }
}

.passing-bar {
    position: relative;
    display: inline-block;
    /*　後ほど解説　*/
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    margin-bottom: 20px;

}
.passing-bar:before {
    content: '';
    display: inline-block;
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: -moz-linear-gradient(left, #0088f1, #00c0fa);
    background: -webkit-linear-gradient(left, #0088f1, #00c0fa);
    background: linear-gradient(to right, #0088f1, #00c0fa);
}
.passing-txt {
    color: #fff;
    font-size: 70px;
    line-height: 1.2em;
    font-weight: 700;
    padding: 3px 15px 10px;
    opacity: 0;
    white-space:nowrap;
    overflow:hidden;
    animation:passing-txt 0.3s linear forwards;
    animation-delay: 1s;
}
.passing-txt.line1,
.passing-txt.line2{
    font-family: "Noto Serif JP", serif;
}
.passing-txt.line3{
    padding: 0;
    font-size: 20px;
    line-height: 1.2em;
    font-weight: 700;
    animation:passing-txt 0.5s linear forwards;
    animation-delay: 1s;
    padding-bottom: 2px;
}
.passing-bar:before {
    -webkit-animation: passing-bar 0s ease 0s 1 normal forwards;
    animation: passing-bar 1s ease 0s 1 normal forwards;
}



@media screen and (max-width:1550px){

    .passing-txt{
        font-size: 4.7vw;
        line-height: 1.2em;
    }
    .passing-txt.line3{
        font-size: 14px;
        line-height: 1.2em;
    }
}

@media screen and (max-width:640px){
    .passing-txt{
        font-size: 8vw;
        line-height: 1.2em;
    }
}












































.top02{
    padding-top: 200px;
    padding-bottom:80px;
    overflow: hidden;

    background-image: url(../img/top/bg_txt_toda.png);
    background-position: center center;
    background-repeat: repeat-x;
    -webkit-animation: kurukuru1 60s linear infinite;
    -moz-animation: kurukuru1 60s linear infinite;
    animation: kurukuru 60s1 linear infinite;
}
/* 背景　横スクロール　*/
@keyframes kurukuru1 {
    0% {background-position: 3300px 80%;}
    100% {background-position:  -3300px 80%;}
}




.top02 ._in{
    position: relative;
}

.top02 .txt1{
    font-size: 33px;
    line-height: 1.5em;
    font-weight: 500;
    margin-bottom: 1.5em;
}
.top02 .txt2{
    width: 600px;
    font-family: "Noto Serif JP", serif;
    font-weight:500;
}
.top02 .img{
    position: absolute;
    top: -50px;
    right: -160px;
    width: 700px;
}
.top02 .btn{
    margin-top: 50px;
}

@media screen and (min-width:1300px){
    .top02 .ttl01{
        margin-left: -25px;
    }
}

@media screen and (max-width:1550px){
    .top02{
        padding-top: 12.9vw;
        padding-bottom: 10px;
    }

    .top02 .img{
        position: absolute;
        top: -3.2vw;
        right: -10vw;
        width: 45vw;
    }
}
@media screen and (max-width:1100px){
    .top02 .txt1{
        font-size: 3vw;
        line-height: 1.5em;
    }
    .top02 .txt2{
        width: 54vw;
    }
    .top02 .img{
        top: 0;
    }
}

@media screen and (max-width:910px){

    .top02 .txt1{
        font-size: 28px;
        line-height: 1.5em;
    }
    .top02 .txt2{
        width: 100%;
    }
    .top02 .img{
        position: static;
        width: 80%;
        max-width: 500px;
        margin: 30px auto 0;
    }
    .top02 .btn a{
        margin: auto;
    }
    
}
@media screen and (max-width:460px){

    .top02 .txt1{
        font-size: 6vw;
        line-height: 1.5em;
    }

}









.top03{
    padding-top: 110px;
    padding-bottom: 150px;
}

.top-biz03_box .item{
    width: 48%;
    background-color: #fff;
    border-radius: 20px;
    padding: 30px 3% 50px;
    text-align: center;
}
.top-biz03_box .item img{
    border-radius: 10px;
}
.top-biz03_box .item dl{
    text-align: center;
    margin-top: 30px;
}
.top-biz03_box .item dl dt{
    font-size: 33px;
    line-height: 1.3em;
    color: #0096fa;
    font-weight: 500;
    margin-bottom: 20px;
}
.top-biz03_box .item dl dd{
    font-family: "Noto Serif JP", serif;
    font-weight:500;
}

@media screen and (max-width:910px){
    .top03{
        padding-top: 50px;
        padding-bottom: 80px;
    }
    .top-biz03_box .item dl dt{
        font-size: 26px;
        line-height: 1.3em;
    }
}
@media screen and (max-width:640px){
    .top03{
        padding-bottom: 50px;
    }

    .top-biz03_box .item{
        width: 100%;
        max-width: 570px;
        margin-left: auto;
        margin-right: auto ;
        padding-bottom: 30px;
    }
    .top-biz03_box .item:not(:last-child){
        margin-bottom: 20px;
    }

    .top-biz03_box .item dl dt{
        font-size: 20px;
        line-height: 1.3em;
        margin-bottom: 10px;
    }



}














.top04{
    width: 100%;
    padding-top: 190px;
    padding-bottom: 110px;
    background: url(../img/top/top04_bg.jpg) center center/cover no-repeat;
}
.top04 .ttl01{
    color: #fff;
}
.top04 .ttl01 .en{
    color: #fff;
    background: -moz-transparent;
    background: -webkit-transparent;
    background: transparent;
    -webkit-background-clip: none;
    -webkit-text-fill-color: #fff;;
}
.top04 .btn a{
    border: none;
    background: -moz-#fff;
    background: -webkit-#fff;
    background: #fff;
    color: #0096fa;
}
.top04 .btn a:hover{
    color: #fff;
}
.top04 .btn a .bg1{
    background: -moz-linear-gradient(left, #0088f1, #00c0fa);
    background: -webkit-linear-gradient(left, #0088f1, #00c0fa);
    background: linear-gradient(to right, #0088f1, #00c0fa);
}
@media screen and (max-width:1200px){
    .top04{
        padding-top: 15vw;
        padding-bottom: 9vw;
    }
}
@media screen and (max-width:640px){
    .top04{
        padding-top: 80px;
        padding-bottom: 60px;
    }
    .top04 .btn a{
        margin: auto;
    }
}









.bg_siro{
    background-color: #fff;
}
.top05{
    width: 100%;
    padding-top: 130px;
    padding-bottom: 60px;
    overflow: hidden;
    background:url(../img/top/top05bg.png) center bottom no-repeat; 
}
.top05 ._in{
    align-items: center;
}
.top-works{
    width: 95%;
    max-width: 1800px;
    margin: auto;
}
.top-works li{
    margin-left: 20px;
}
.top-works li img{
    border-radius: 10px;
}
.top-works li p{
    margin-top: 15px;
    line-height: 1.3em;
    text-indent: -1em;
    margin-left: 1em;
}

@media screen and (max-width:1600px){
    .top05{
        padding-top: 8vw;
        background-image:none;
        background-color: #f6f8fa;
    }
}
@media screen and (max-width:910px){

    .top-works li{
        margin-left: 10px;
        margin-right: 10px;
    }
    
    
}
@media screen and (max-width:640px){
    .top05{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .top05 ._in{
        display: block;
        margin-bottom: 30px;
    }

    .top05 .btn a{
        margin: auto;
    }
    .top-works li p{
        margin-top: 8px;
        font-size: 14px;
        line-height: 1.3em;
    }
}







/* 会社案内 **/
.top06{
    width: 100%;
    background-image: url(../img/top/top06_bg.png);
    background-position: center top;
    background-repeat: no-repeat;
    padding-top: 200px;
    padding-bottom: 120px;
    overflow: hidden;
}
.top06 ._in{
    padding-bottom: 30px;
    border-bottom: solid 1px #000;
    position: relative;
}
.top06 .cap{
    width: 360px;
    margin-bottom: 70px;
    font-family: "Noto Serif JP", serif;
    font-weight:500;
}
.com-bnr{
    width: 784px;
    margin-top: -105px;
    margin-left: auto;
}
.com-bnr ul{
    width: 100%;
}
.com-bnr li{
    width: 31.5%;
}
.com-bnr li a{
    display: block;
    width: 100%;
    height: 150px;
    border-radius: 10px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #fff;
    font-size: 22px;
    line-height: 1.2em;
    font-weight: 500;
}
.com-bnr li.c1 a{
    background-image: url(../img/top/bnr01.png);
}
.com-bnr li.c2 a{
    background-image: url(../img/top/bnr02.png);
}
.com-bnr li.c3 a{
    background-image: url(../img/top/bnr03.png);
}
.com-bnr li a .txt{
    position: absolute;
    left: 20px;
    top: calc(50% - 0.5em);
}
.com-bnr li a .bg{
    position: absolute;
    right: 20px;
    top: calc(50% - 15px);
    width: 30px;
    height: 30px;
    border-radius: 20px;
    border:solid 1px #fff;
    background-image:url(../img/common/arrow_maru_w.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 5px 5px;
    transition: 0.3s;
}
.com-bnr li a:hover .bg{
    background-size: 130% 130%;
}

@media screen and (min-width:1500px){
    .top06 ._in{
        padding-left: 120px;
        padding-right: 120px;
    }
    .top06 .ttl01{
        margin-left: -25px;
    }
}
@media screen and (max-width:1200px){
    .top06{
        padding-top: 10vw;
        padding-bottom: 10vw;
        background-position: calc(100% + 23vw) top;
        background-size:  auto 60vw;
    }
    .com-bnr{
        width: 100%;
        max-width: 784px;
        margin-top: 50px;
        margin-right: auto;
    }
}

@media screen and (max-width:910px){
    .top06 .cap{
        width: 100%;
        margin-bottom: 40px;
    }
    .com-bnr li a{
        height: 130px;
        font-size: 18px;
        line-height: 1.2em;
    }
    .com-bnr li a .bg{
        background-size: 130% 130%;
    }
    
}
@media screen and (max-width:640px){
    .top06{
        background-size:  auto 80vw;
    }
    .top06 ._in{
        padding-bottom: 0;
        border-bottom: none;
    }
    .top06 .btn a{
        margin: auto;
    }
    .com-bnr {
        width: 90%;
        width: 248px;
        margin-top: 20px;
    }
    .com-bnr li{
        width: 100%;
        margin-bottom: 15px;
    }
    .com-bnr li a{
        height: 100px;
    }

    
    
}










/* リクルート **/
.top07{
    width: 100%;
    max-width: 2100px;
    margin: auto;
    border-radius: 50px 50px 0 0;
    overflow: hidden;
    padding-top: 170px;
    background: -moz-linear-gradient(left, #0088f1, #00c0fa);
    background: -webkit-linear-gradient(left, #0088f1, #00c0fa);
    background: linear-gradient(to right, #0088f1, #00c0fa);
}
.top07 ._in{
    margin-bottom: 100px;
}
.top07 .txt1{
    width: 330px;
    color: #fff;
}
.top07 .ttl01 .en{
    color: #fff;
    background: -moz-transparent;
    background: -webkit-transparent;
    background: transparent;
    -webkit-background-clip: none;
    -webkit-text-fill-color: #fff;;
}

.top07 .txt2{
    width: calc(100% - 330px);
    max-width: 700px;
    color: #fff;
}
.top07 .txt2 dt{
    font-size: 32px;
    line-height: 1.6em;
    font-weight: 500;
    margin-bottom: 1.5em;
}
.top07 .txt2 dd{
    font-family: "Noto Serif JP", serif;
    font-weight:500;
}

.top07 .btn a{
    border: none;
    background: -moz-#fff;
    background: -webkit-#fff;
    background: #fff;
    color: #0096fa;
}
.top07 .btn a:hover{
    color: #fff;
}
.top07 .btn a .bg1{
    background: -moz-linear-gradient(left, #0088f1, #00c0fa);
    background: -webkit-linear-gradient(left, #0088f1, #00c0fa);
    background: linear-gradient(to right, #0088f1, #00c0fa);
}

.top-rec-slide li{
    margin-right: 5px;
}

@media screen and (max-width:910px){

    .top07{
        border-radius:0;
        padding-top: 80px;
    }
    .top07 ._in{
        margin-bottom: 70px;
    }
    .top07 .txt1{
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .top07 .txt2{
        width: 100%;
        max-width: initial;
        max-width: auto;
    }
    .top07 .txt2 dt{
        font-size: 26px;
        line-height: 1.6em;
    }

}
@media screen and (max-width:640px){
    .top07{
        padding-top: 50px;
    }
    .top07 ._in{
        margin-bottom: 40px;
    }
    .top07 .txt1{
        margin-bottom: 40px;
        display: block;
    }
    .top07 .txt2 dt{
        font-size: 20px;
        line-height: 1.6em;
    }


}




/* 先輩メッセージ */
.top-senpai{
    padding-top: 150px;
    padding-bottom: 10px;

    background-image: url(../img/top/bg_txt_interview.png);
    background-position: center center;
    background-repeat: repeat-x;
    -webkit-animation: kurukuru 30s linear infinite;
    -moz-animation: kurukuru 30s linear infinite;
    animation: kurukuru 30s linear infinite;
}
/* 背景　横スクロール　*/
@keyframes kurukuru {
    0% {background-position: 1500px 50%;}
    100% {background-position:  -1500px 50%;}
}


.senpai_nav{
    margin: auto;
    margin-bottom: 50px;
}
.senpai_nav li{
    width: 31%;
    border-radius: 8px;
    overflow: hidden;
}
.senpai_nav li a{
    display: block;
    width: 100%;
    position: relative;
}
.senpai_nav li .img img{
    border-radius: 8px;
}

.senpai_nav li .txt{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 280px;
    height: 100px;
    padding-top: 20px;
    padding-left: 20px;
    background-color: #f6f8fa;
    border-radius: 0 8px 0 0;
}
.senpai_nav li .txt .num{
    color: #0096fa;
    font-size: 90%;
}
.senpai_nav li .txt .name span{
    font-size: 30px;
    line-height: 1.2em;
    margin-left: 10px;
}
.top-senpai .btn a{
    margin: auto;
}

@media (min-width:911px) and (max-width:1280px){
    .senpai_nav li .txt{
        width: 21vw;
        height: 80px;
        font-size: 80%;
    }
    .senpai_nav li .txt .name span{
        font-size: 25px;
        line-height: 1.2em;
        margin-left: 10px;
    }
}
@media (min-width:641px) and (max-width:910px){
    .top-senpai {
        padding-top: 60px;
    }
    .senpai_nav li .txt{
        position: static;
        width: 100%;
        height: auto;
        padding: 10px 0 0 0;
        border-radius: 0;
    }
    .senpai_nav li .txt .name span{
        font-size: 22px;
        line-height: 1.2em;
        margin-left: 10px;
    }
}
@media screen and (max-width:640px){
    .top-senpai {
        padding-top: 40px;
    }
    .senpai_nav{
        width: 90%;
        max-width: 350px;
        margin: auto;
        margin-bottom: 30px;
    }
    .senpai_nav li{
        width: 100%;
        margin-bottom: 20px;
    }
    .senpai_nav li .txt{
        width: 200px;
        height: auto;
        padding-top: 10px;
        padding-left: 10px;
        padding-bottom: 5px;
    }
}



