/* 個別投稿ページ */
.visual-wrapper img {
    aspect-ratio: 16 / 9;
    object-fit: cover; 
    width: 100%;

}

.recruit-title{
    font-size: 30px;
    font-weight: bold;
    margin: 15% auto 10% auto;
    text-align: center;
}
.recruit-details{
    text-align: center;
}
.recruit-flex{
    display: flex;
    margin-bottom: 10%;
}
.recruit-item{
    width: 40%;
    margin: 0 auto;
}
.item-title {
    border-bottom: 1px solid #000; /* 線の太さ・種類・色を指定 */
    padding-bottom: 5px;           /* 線と文字の間隔 */
    font-size: large;
    font-weight: 600;
}
.item-body {
    opacity: 0.5; /* 10%の不透明度 */
}

@media screen and (max-width: 768px) {
   
    .recruit-title{
        font-size: 20px;
    }
    .recruit-flex{
        display: block;
    }
    .recruit-item{
        width: 80%;
        margin-bottom: 10%;
    }
    .item-title{
        font-size: 15px;
    }
    .item-body{
        font-size: 12px;
    }

}