/*
Theme Name:MONAD child
Theme URI:https://tcd-theme.com/tcd110
Description:WordPressテーマ「MONAD」の子テーマ
Template:monad_tcd110
Author:TCD
Author URI:https://tcd-theme.com/
Version:1.0
*/

/*
  ここから下にCSSを追記してください。
*/
/* =============================
   Recruit (ACF) layout — MONAD
   ============================= */
.post_content .job-card{
    background: #fff;
    border: 1px solid rgba(0,0,0,.10);
    border-radius: 12px;
    padding: 34px 28px 28px;
}

.post_content .job-card__title{
    margin: 0 0 26px;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: .02em;
}

.post_content .job-dl{
    margin: 0;
}

.post_content .job-dl__row{
    display: grid;
    grid-template-columns: 180px 1fr;
    column-gap: 26px;
    padding: 18px 0;
    border-top: 1px solid rgba(0,0,0,.08);
}

.post_content .job-dl dt{
    margin: 0;
    font-weight: 700;
    color: rgba(0,0,0,.80);
    line-height: 1.9;
}

.post_content .job-dl dd{
    margin: 0;
    line-height: 1.95;
    color: rgba(0,0,0,.92);
}

.post_content .job-dl__row + .job-dl__row{
    border-top: 1px solid rgba(0,0,0,.08);
}

.post_content .job-dl__dd--list{
    line-height: 2.05;
}

/* CTA */
.post_content .job-cta{
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.post_content .job-cta__btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 260px;
    padding: 14px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: transform .08s ease, opacity .12s ease;
}

.post_content .job-cta__btn:hover{
    opacity: .92;
    transform: translateY(-1px);
}

.post_content .job-cta__btn--apply{
    background: rgba(120, 200, 175, .25);
}

.post_content .job-cta__btn--tel{
    background: rgba(165, 150, 220, .25);
}

.post_content .job-cta__icon{
    display: inline-flex;
    width: 1.2em;
    justify-content: center;
}

@media (max-width: 750px){
    .post_content .job-card{
        padding: 26px 16px 20px;
    }
    .post_content .job-dl__row{
        grid-template-columns: 1fr;
        row-gap: 6px;
    }
    .post_content .job-cta__btn{
        min-width: 0;
        width: 100%;
    }
}