@charset "utf-8";

.specialArea *{
    box-sizing: border-box;
}

.specialArea img{
    max-width:100%;
}

a:hover{
    opacity:0.6;
    transition:0.3s;
}

.specialArea{
    background:#E4EEEC;
    padding:2rem 0;
}

.specialArea h3{
    font-size:18px;
    text-align: center;
    margin: 0;
    padding:2rem 0;
    color:#025457;
    font-weight:bold;
}

.specialList{
    max-width:1080px;
    list-style:none;
    margin: 0 auto 0 auto;
    gap:20px;
    padding: 2rem;
    display:flex;
    justify-content: space-between;
}

.special{
    padding:1rem 1rem 2rem 1rem;
    background:#ffffff;
    box-shadow: 3px 3px 7px rgba(0,137,142,0.35);
    width: 100%;
    max-width: 320px;
}

.special a{
    text-decoration:none;
    display:flex;
    justify-content: center;
    flex-direction:column;
}

.specialBox{
    position:relative;        
}

.specialJobName{
    background:rgba(22, 177, 166, 0.88);
    color:#ffffff;
    font-size:12px;
    width: 215px;
    padding:0.5rem;
    position:absolute;
    bottom:0;
    right:0;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.specialCatchcopy{
    padding:1rem 0;
    min-height:100px;
    font-size:1.3rem;
    line-height:1.6;
    color:#00898E;
    font-weight:bold;
    word-break: auto-phrase;
    flex-grow: 1;
}

.specialArea{
    margin-top:4rem;
}

.specialArea button{
    background: #00898E;
    border:none;
    padding:1rem 2rem;
    font-weight:bold;
    color:#ffffff;
    border-radius:50px;
    margin: 0 auto;
    position:relative;
}

.specialArea button:after{
    content:"";
    display: block;
    background: url("../../../_webroot/img/page/job/up_arrow.png") no-repeat;
    width: 15px;
    height: 25px;
    background-size:contain;
    position:absolute;
    top: 65%;
    right: 10%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.specialArea button:hover,.special:hover{
    cursor: pointer;
}

.redBtn{
    margin:2rem 0;
}

.redBtn a{
    background:#E92D2D;
    box-shadow:0 4px 0 #810F0F;
    border-radius:50px;
    color:#ffffff;
    display: block;
    font-size:1.2rem;
    font-weight:bold;
    margin:4px auto;
    padding:1rem 1.5rem;
    text-align: center;
    text-decoration:none;
    width: 100%;
    max-width:280px;
    box-sizing: border-box;
}

.redBtn a:hover{
    box-shadow:0 0 0 #810F0F;
    top: 15px;
}

@media screen and (max-width:1100px) {
    .specialList{
        display:flex;
        justify-content:center;
        flex-wrap:wrap;
        gap:30px;
    }
}

@media screen and (max-width:768px) {
    .specialCatchcopy{
        padding:1rem 0;
        min-height:60px;
    }
    
}