@charset "utf-8";

/*=============================================================
 recruit Layout
=============================================================*/
/* #topicPathArea
--------------------------------------------------------------*/
#topicPathArea,
#topicPathArea a {
    color: #fff;
}


/* pageTtlMain
--------------------------------------------------------------*/
#pageTtlMain {
    color: #fff;
    background: url("../img/pageTtl.jpg") no-repeat left center;
    background-size: cover;
}

/* bannerArea
--------------------------------------------------------------*/
#bannerArea dl {
    text-align: center;
}

#bannerArea dl dt {
    margin-bottom: 40px;
}

#bannerArea dl dd ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

#bannerArea dl dd ul li a {
    transition: all .2s ease-out;
}

#bannerArea dl dd ul li a:hover {
    opacity: 0.8;
}

/* bannerL
--------------------------------------------------------------*/
/* bannerL
--------------------------------------------------------------*/
.bannerL {
    border-radius: 20px;
    overflow: hidden;
    column-gap: 0;
    color: #fff;
    text-decoration: none !important;
    min-height: 272px;
}

.bannerL+.bannerL {
    margin-top: 64px;
}

.bannerL:hover {
    text-decoration: none !important;
}

.bannerL>div {
    width: 50% !important;
}

.bannerL>div:first-child {
    color: #fff;
    background: url("../img/index-p00-bg.svg") center center no-repeat;
    background-size: cover;
    padding: 32px;
    box-sizing: border-box;
    position: relative;
}

.bannerL>div:first-child::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    transition: all .2s ease-out;
    background: linear-gradient(90deg, #001a70 0%, #003794 50%, #0054b5 100%);
    opacity: 0;
    z-index: 0;
}

.bannerL:hover>div:first-child::after {
    opacity: 1;
}

.bannerL>div .bannerL-ttl {
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    margin-bottom: 8px;
}

.bannerL>div .arw {
    color: #fff;
    margin-top: 24px;
}

.bannerL>div .bannerL-ttl,
.bannerL>div p {
    position: relative;
    z-index: 1;
}

.bannerL>div:last-child {
    flex: 1;
    position: relative;
}

.bannerL>div:last-child img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.box-link li a[target="_blank"] .text span::before {
    width: 16px;
    height: 16px;
    background: url(/shared/img/icon-blank_white.svg) no-repeat;
    background-size: cover;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 Smartphones
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
@media only screen and (max-width:979px) {
    /*=============================================================recruit Layout=============================================================*/

    /* pageTtlMain
    --------------------------------------------------------------*/
    #pageTtlMain {
        background: url("../img/pageTtl-sp.jpg") no-repeat left center;
        background-size: cover;
    }

    /* bannerArea
--------------------------------------------------------------*/
    #bannerArea dl dt {
        margin-bottom: 20px;
    }

    #bannerArea dl dd ul {
        display: block;
    }

    #bannerArea dl dd ul li+li {
        margin-top: 20px;
    }

    /* bannerL --------------------------------------------------------------*/
    .bannerL {
        display: block;
        background-color: #00A0DF;
    }

    .bannerL+.bannerL {
        margin-top: 32px;
    }

    .bannerL>div {
        width: 100% !important;
    }

    .bannerL>div {
        margin-top: 0 !important;
    }

    .bannerL>div:first-child {
        background: url("../img/index-p00-bg-sp.svg") center center no-repeat;
        background-size: cover;
        padding: 24px;
    }

    .bannerL>div:last-child img {
        position: static;
        max-width: 100%;
        width: 100%;
        height: auto;
    }
}