@charset "UTF-8";

/************************************
** フッター共通CSS
************************************/

.footer{
    margin:0;
    padding:0;
}

.recruit-cta{
    background-image: url(../img/common/cta-img.png);
    background-size: cover;
    background-position: center;
}
.recruit-cta-bg{
    background-image: url(../img/common/cta-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    position: relative;
    height: calc(600 / 1280 * 100vw);
    display: grid;
    align-items: center;
}
.recruit-cta-inner{
    max-width: 400px;
    margin-left: calc(250 / 1280 * 100vw);
    color:#ffffff;
}
.recruit-cta-catch{
    font-weight: bold;
    font-size:36px;
    line-height: 1.5;
    margin-bottom: 25px;
}
.recruit-cta-message{
    font-size:16px;
    margin-bottom: 25px;
}

.footer-bottom{
    background: linear-gradient(to right, #06407B 2%, #0E78E3 61%, #55C7F5 100%);
    padding: 32px 0 15px 0;
    margin:0;
}
.footer-bottom-inner{
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
.footer-logo a img{
    height:38px;
    margin-right:10px;
}
.footer-menu ul{
    list-style: none;
    padding: 0;
    text-align: right;
}
.footer-menu ul li{
    display: inline;
    position: relative;
}
.footer-menu ul li:after{
    width: 1px;
    height: 15px;
    content: "";
    background-color: #ffffff;
    transform: rotate(10deg);
    position: absolute;
    top: 3px;
    right: 3px;
}
.footer-menu ul li a{
    color:#ffffff;
    transition: 0.3s;
    text-decoration: none;
    padding-right: 10px;
}
.footer-menu ul li:last-child::after{
    display: none;
}
.footer-menu ul li:last-child a{
    padding:0;
}
.footer-menu ul li a:hover{
    color:#ffffff;
    text-decoration: underline;
}
.footer-bottom-line{
    border-bottom:1px solid #ffffff;
        margin: 15px 0;
}
.footer-bottom-copyright{
    max-width: 1000px;
    margin:auto;
    color:#ffffff;
    text-align: right;
}

/*スマホ版表示切り替えは660px以下*/
@media screen and (max-width: 660px) {
    .recruit-cta{
        background-image: url(../img/common/cta-img-sp.png);
    }
    .recruit-cta-bg{
        background-image: url(../img/common/cta-bg-sp.png);
        height: calc(600 / 375 * 100vw);
        background-position: top;
    }
    .recruit-cta-inner{
        margin: auto;
        padding: 0 15px;
    }
    .recruit-cta-catch{
        font-size: 24px;
        margin-bottom: 16px;
    }
    .recruit-cta-message{
        font-size:14px;
    }
    .recruit-cta-inner .btn-square.white{
        display: block;
        margin: auto;
    }
    .footer-bottom{
        padding: 16px 0 8px 0;
    }
    .footer-bottom-inner{
        grid-template-columns:1fr;
        text-align: center;
        grid-row-gap: 12px;
    }
    .footer-logo a img{
        height:28px;
    }
    .footer-menu ul{
        text-align: center;
        font-size: 11px;
    }
    .footer-bottom-line{
        margin:8px 0;
    }
    .footer-bottom-copyright{
        text-align: center;
        font-size:10px;
    }
}