@charset "UTF-8";

/************************************
** 職種紹介ページCSS
************************************/
.corporate-info {
    margin: 0 auto;
}
.info-section {
    padding: 30px 0;
}
hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 30px 0;
}
.section-title {
    font-size: 36px;
    font-weight: bold;
    padding-left: 80px;
    background: linear-gradient(to right, #06407B 2%, #0E78E3 55%, #55C7F5 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}
.section-title:before{
    content: '';
    position: absolute;
    width: 65px;
    height:1px;
    left:0;
    top:50%;
    background: linear-gradient(to right, #06407B 2%, #0E78E3 41%, #55C7F5 80%);
}
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 450px;
    grid-column-gap: 43px;
    text-align: justify;
}
.text-content{
    order:1;
}
.img-content{
    order:2;
}
.text-content p{
    margin-bottom:1.5em;
}
.info-section.reverse .content-wrapper {
    grid-template-columns: 450px 1fr;
}
.info-section.reverse .content-wrapper .text-content{
    order:2;
}
.info-section.reverse .content-wrapper .img-content{
    order:1;
}
.section-btns{
    margin-top:24px;
}
.interview-btn-area{
    text-align: center;
    margin-bottom:100px;
}
.gallery{
    margin-bottom:50px;
}

/*スマホ版表示切り替えは1050px以下*/
@media screen and (max-width: 1050px) {
    .page-header p{
        line-height: 1.0em;
    }
    .page-header h2{
        margin-top: 10px;
    }
    .section-title{
        font-size: 18px;
        padding-left: 50px;
    }
    .section-title:before{
        width: 40px;
    }
    .content-wrapper,
    .info-section.reverse .content-wrapper {
        grid-template-columns: 1fr;
    }
    .img-content,
    .info-section.reverse .content-wrapper .img-content{
        order:1;
        margin-bottom:15px;
    }
    .text-content,
    .info-section.reverse .content-wrapper .text-content{
        order:2;
    }
    hr{
        margin:10px 0;
    }
    .image-content img {
        max-width: 100%;
        height: auto;
    }
    .section-btns a{
        width: 100%!important;
    }
    .interview-btn-area{
        width: auto;
        margin:0 15px 50px;
    }
    .interview-btn-area a{
        width: 100%!important;
    }
}