@charset "UTF-8";
/*******************************

TopCss

*******************************/

/*-----------------------------
mainimg
-----------------------------*/
.mainimg {
    width: 100%;
    position: relative;
    padding: 0;
    overflow: hidden!important;
}

.mainimg .slide {
    width: 100%;
}

.mainimg img {
    width: 100%;
}

.mainimg .item img{
    object-fit: cover;
    max-height: 700px;
}

.mainimg .mainback {
    position: absolute;
    width: 100%;
    top: 0;
}

.mainimg .maintxt {
    position: absolute;
    text-align: left;
    width: 80%;
    top: 50%;
    left: 0;
    transform: translate(20%, -50%);
    -webkit-transform: translate(20%, -50%);
    -ms-transform: translate(20%, -50%);
}

.mainimg .maintxt img {
    width: auto;
}

/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px) {
    .mainimg .maintxt {
        width: 95%;
        left: 0;
        transform: translate(5%, -50%);
        -webkit-transform: translate(5%, -50%);
        -ms-transform: translate(5%, -50%);
    }
}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 768px) {
    .mainimg .maintxt {
        width: 70%;
    }
}

/*==// ここからdots //==*/
.slide-dots {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -1px;
    background: #fff;
    text-align: center;
    width: 250px;
    height: 30px;
    -webkit-clip-path: polygon(10% 0, 90% 0, 100% 100%, 0% 100%);
    clip-path: polygon(10% 0, 90% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

.slide-dots li {
    display: inline-block;
    margin: 0 10px;
}

.slide-dots li button {
    position: relative;
    text-indent: -9999px;
}

.slide-dots li button::before {
    content: '';
    cursor: pointer;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #a0a0a0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 10px;
}

.slide-dots li.slick-active button::before {
    background: #007ae4;
}

button {
    background: none;
    border: none;
    outline: none;
    padding: 0 7px;
}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px) {
    .slide-dots {
        width: 150px;
        height: 20px;
    }

    .slide-dots li button::before {
        height: 7px;
        width: 7px;
        top: 3px;
    }

    button {
        padding: 0 2px;
    }
}

/*-----------------------------
新着情報
-----------------------------*/
.top-news {
    width: 100%;
    max-width: 1366px;
    margin: 120px auto;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.newsWrap {
    max-width: 950px;
    margin: 0;

    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.newsWrap ul {
    margin-left: 130px;
}

.newsWrap li {
    border-bottom: 1px solid #d4d4d4;
}

.newsWrap li a::after {
    border-bottom: 1px solid #d4d4d4;
    border-right: 1px solid #d4d4d4;
}

/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px) {
    .top-news {
        width: 90%;
        margin: 120px auto;
    }

    .top-news .sec-ttl {
        width: 100%;
        padding-left: 50px;
        margin-bottom: 30px;
    }

    .newsWrap {
        max-width: 950px;
        margin: 0 auto;

        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
    }

    .newsWrap ul {
        width: 80%;
        max-width: 650px;
    }
}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 768px) {
    .top-news {
        margin: 70px auto;
    }

    .top-news .sec-ttl {
        padding-left: 0;
        margin-bottom: 20px;
    }

    .newsWrap ul {
        width: 100%;
        margin: 0 auto;
    }
}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px) {
    .top-news {
        margin: 40px auto;
    }
}

/*-----------------------------
top-sec
-----------------------------*/
.top-sec {
    border-top: 1px solid #007ae4;
    border-bottom: 1px solid #007ae4;
    margin-bottom: 200px;
    position: relative;
}

.top-sec.right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.top-sec .txt {
    padding: 90px 0;
    width: 40%;
    max-width: 520px;
}

.top-sec.left .txt {
    margin-left: 10%;
}

.top-sec.right .txt {
    margin-right: 10%;
}

.top-sec p {
    margin: 35px 0 40px;
    font-size: 135%;
    line-height: 2;
}

.top-sec ul {
    max-width: 400px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.top-sec li {
    width: 49%;
}

.top-sec .btn-blue {
    max-width: 170px;
}

.top-sec figure {
    position: absolute;
    width: 60%;
    bottom: -50px;
}

.top-sec.left figure {
    right: 0;
}

.top-sec.right figure {
    left: 0;
}

/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px) {
    .top-sec .txt {
        padding: 50px 0;
        width: 50%;
    }

    .top-sec.left .txt {
        margin-left: 5%;
    }

    .top-sec.right .txt {
        margin-right: 5%;
    }

    .top-sec figure {
        width: 55%;
    }
}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 768px) {
    .top-sec {
        border-bottom: none;
        margin-bottom: 100px;
    }
    .top-sec .txt {
        padding: 50px 0;
        width: 100%;
        max-width: 100%;
    }

    .top-sec.left .txt {
        margin-left: 5%;
        margin-right: 5%;
    }

    .top-sec.right .txt {
        margin-left: 5%;
        margin-right: 5%;
    }

    .top-sec figure {
        border-top: 1px solid #007ae4;
        position: relative;
        width: 100%;
        bottom: auto;
    }
    .top-sec figure img {
        margin-top: -25px;
    }
    .top-sec.left figure {
        right: auto;
    }

    .top-sec.right figure {
        left: auto;
    }
}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px) {
    .top-sec {
        margin-bottom: 50px;
    }
    .top-sec p {
        font-size: 130%;
        margin: 25px 0 30px;
    }
}

/*-----------------------------
実績紹介
-----------------------------*/
.top-works {
    background: url(../../common/img/top/back-works.png) center center no-repeat;
    background-size: cover;
    margin-bottom: 200px;
    padding: 100px 0;
}

.top-works .inner {
    width: 90%;
    max-width: 988px;
    margin: 0 auto;
}

.top-works .works-list {
    width: 100%;
    margin: 60px 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.top-works .works-list::after {
    content: "";
    display: block;
    width: 32%;
}

.top-works .works-list li {
    width: 32%;
}

.top-works .works-list li img {
    width: 100%;
}

.top-works .works-list a {
    display: block;
    background: #fff;
    padding-bottom: 30px;
}

.top-works .works-list div {
    padding: 15px 20px;
}

.top-works .works-list span {
    display: block;
    margin-left: 5px;
}

.top-works .works-list span::before {
    content: '〈';
}

.top-works .works-list span::after {
    content: '〉';
}

.top-works .works-list p {
    padding: 0 20px;
}

.top-works .btn-white {
    width: 170px;
    margin: 0 auto;
}

/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px) {
    .top-works {
        padding: 50px 0;
    }
}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 768px) {
    .top-works {
        margin-bottom: 100px;
        background-size: contain;
        background-position: center top;
        background-color: #0079e0;
    }
    .top-works .works-list {
        margin-bottom: 0;
    }

    .top-works .works-list::after {
        display: none;
    }
    .top-works .works-list li {
        width: 48%;
        margin-bottom: 50px;
    }
}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px) {
    .top-works {
        margin-bottom: 50px;
    }

    .top-works .works-list {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    .top-works .works-list li {
        width: 100%;
    }
}

/*-----------------------------
採用情報
-----------------------------*/
.top-recruit {
    background: #007ae4;
}

.top-recruit > .flex{
    align-items: center;
}

.top-recruit .sec-ttl h2{
    padding-left: 0;
}
.top-recruit .txt {
    width: 40%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 0 0 0 10%;
}

.top-recruit figure {
    width: 60%;
    text-align: right;
}

.top-recruit figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 0 50%;
    object-position: 0 50%;
}

.top-recruit p {
    color: #fff;
    font-size: 150%;
    margin: 20px 0 30px;
}

.top-recruit .btn-white {
    width: 170px;
}

/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px) {

    .top-recruit .txt {
        padding: 30px 0 30px 5%;
    }
}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 768px) {
    .top-recruit{
        background: none;
    }
    
    .top-recruit p {
        font-size: 130%;
        margin: 0 0 30px;
    }
    
    .top-recruit .txt {
        padding: 30px 5%;
        width: 100%;
        background: #007ae4;
    }
    
    .top-recruit figure {
        width: 100%;
    }
    
}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px) {
    .top-recruit .sec-ttl h2 {
        text-align: center;
    }

    .top-recruit .txt {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .top-recruit p {
        padding-top: 20px;
        text-align: center;
    }

    .top-recruit .btn-white {
        margin: 0 auto;
    }
}
