.linkList .linkList_item .imgArea{
    flex: 0 0 400px;
}
.linkList.column1 .linkList_item .imgArea img{display: block;
  width: 100%;      /* .imgArea の横幅いっぱいに広げる */
  height: 100%;     /* .imgArea の高さ（＝親の高さ）いっぱいに広げる */
  object-fit: cover;
}

.linkList .linkList_item .txtArea{
    padding: 32px 40px 64px 40px;
    flex: 1;
}
.linkList .linkList_item .txtArea .badge{
    display: inline-block;
    color: #fff;
    width: fit-content;
    font-size: 14px;
    padding: 2px 10px;
    margin-bottom: 10px;
    font-weight: bold;
    transition: 0.3s;
}
.linkList .linkList_item .txtArea .badge.scholarship{
    background-color: #00a689;
}
.linkList .linkList_item:hover .txtArea .badge.scholarship{
    background-color: #fff;
    color: #00a689;
}
.linkList .linkList_item .txtArea .badge.graduate{
    background-color: #0087B6;
}
.linkList .linkList_item:hover .txtArea .badge.graduate{
    background-color: #fff;
    color: #0087B6;
}
.linkList .linkList_item .txtArea:before{
    content: 'インタビューを読む';
    position: absolute;
    right: 70px;
    bottom: 24px;
    transform: none;
    width: fit-content;
    border: none !important;
    height: auto;
}
.linkList .linkList_item:hover .txtArea:before{
    color: #fff;
}
.linkList .linkList_item .txtArea:after{
    content: "\f105";
    font-family: 'FontAwesome';
    font-size: 12px;
    font-weight: 400;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 8px;
    color: #fff;
    background-color: #009985;
    border-radius: 50%;
    position: absolute;
    right: 40px;
    bottom: 24px;
    vertical-align: middle;
    text-align: center;
    margin-top: -2px;
    line-height: 1.7;
}
.linkList .linkList_item:hover .txtArea:after{
    color: #009985;
}
@media (max-width: 1024px) {
    .linkList .linkList_item .imgArea{
    flex: 0 0 300px;
    }
    .linkList .linkList_item .txtArea {
        padding: 16px 24px 64px 24px;
    }
}
@media (max-width: 768px) {
    .linkList .linkList_item .ttl {
        font-size: 16px;
    }
    .linkList .linkList_item p{
        font-size: 14px;
    }
        .linkList .linkList_item .imgArea {
        flex: 0 0 40%;
    }
    .linkList .linkList_item .txtArea .badge{
        font-size: 13px;
    }
    .linkList .linkList_item .txtArea:before {
    right: 40px;
    bottom: 16px;
    font-size: 14px;
}
    .linkList .linkList_item .txtArea:after {
    font-size: 10px;
    width: 16px;
    height: 16px;
    right: 19px;
    bottom: 18px;
}
}
@media (max-width: 480px) {
    .linkList.column1 .linkList_item{
        display: block;
    }
}