/****************** recruit ******************/
body{
    background-color: var(--background-color);
    margin-top: 120px;
}

#recruits-container {
    margin: 0 auto;
    position: relative;
    width: 100%;
    background: var(--background-color);
}

.recruit-content {
    display: flex;
    flex-direction: column; /* スマホでは縦並び */
    align-items: center; /* 縦方向中央揃え */
    justify-content: space-between; /* 水平方向中央揃え */
    margin-bottom: 10vh; /* マージンを調整 */
    text-align: center; /* テキストを中央揃え */
}

.recruit-image {
    width: 100%;
    margin-bottom: 20px;
}

.recruit-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.recruit-text {
    width: 80%; /* スマホでは文章の幅を広げる */
    background-color: #fff;
    border-radius: 20px;
    padding: 30px; /* 内側の余白を追加 */
    text-align: left;
}

.recruit-category {
    font-weight: 600; /* semibold */
    color: var(--text-color);
    margin-bottom: 10px;
}

.recruit-list {
    color: var(--text-color);
    list-style: disc; /* 箇条書きの記号をディスクに変更 */
    padding-left: 40px; /* 左側の余白を追加 */
}

@media screen and (min-width: 768px) {
    .recruit-content {
        flex-direction: row; /* PCでは横並び */
        align-items: flex-start; /* PCでは上揃え */
        justify-content: space-between; /* PCでは均等配置 */
        text-align: left; /* PCではテキストを左揃え */
        /*margin-top: 20vh; /* マージンを調整 */
        margin-bottom: 20vh; /* マージンを調整 */
    }
    .recruit-image {
        width: 35%; 
        margin-bottom: 0; 
    }
    .recruit-text {
        width: 50%; 
    }
    /* .recruit-category,
    .recruit-list {
        font-size: 24px;
    } */
    
}

#apply{
    width: 80%;
    margin: 0 auto;
}