@charset "UTF-8";

/**募集要項**/
.recruitment {
    width: 90%;
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 50px;
    border-bottom: 1px solid #b5b5b5;
}

.recruitment__heading {
    padding: .3em;
    background: #4e4e4e;
    color: #fff;
    font-weight: 400;
    font-size: 1.8rem;
    text-align: center;
}

.recruitment__description {
    margin-top: 20px;
    font-weight: 500;
    font-size: 1.4rem;
}

.recruitment__table {
    margin-top: 30px;
}

.recruitment__title {
    padding: 10px;
    border: 1px solid #000;
    background: #f7f7f7;
    font-size: 1.4rem;
}

.recruitment__detail {
    padding: 10px;
    border: 1px solid #000;
    font-size: 1.4rem;
}

.recruitment__entry {
    margin-top: 50px;
}

.form-link {
    display: block;
    max-width: 370px;
    margin-right: auto;
    margin-left: auto;
    padding: .7em;
    background: #d25454;
    color: #fff;
    font-weight: 500;
    text-align: center;
}


/* 600px以上：タブレット
------------------------------ */
@media screen and (min-width: 600px) {
    .recruitment__heading {
        font-size: 2rem;
    }

    .recruitment__description {
        margin-top: 50px;
        font-size: 1.6rem;
        text-align: center;
    }

    .recruitment__table {
        width: 100%;
        margin-top: 50px;
    }

    .recruitment__title {
        padding: 10px;
        font-size: 1.5rem;
        white-space: nowrap;
    }

    .recruitment__detail {
        padding: 10px;
        font-size: 1.5rem;
    }

    .recruitment__entry {
        margin-top: 50px;
    }

    .form-link {
        font-size: 2rem;
    }
}

/* 960px以上：小型PC
------------------------------ */
@media screen and (min-width: 960px) {
    .recruitment {
        padding-bottom: 80px;
    }

    .recruitment__description {
        margin-top: 60px;
        font-size: 2rem;
    }

    .recruitment__table {
        margin-top: 60px;
    }

    .recruitment__title {
        padding: 15px 20px;
        font-size: 2rem;
    }

    .recruitment__detail {
        padding: 15px 20px;
        font-size: 1.8rem;
    }

    .recruitment__entry {
        margin-top: 60px;
    }
}


/**先輩スタッフの声**/
.voices__inner {
    width: 90%;
    max-width: 1000px;
    padding: 42px 0 56px;
    border-bottom: 1px solid #b5b5b5;

    margin-inline: auto;
}

.voices__head {
    margin-bottom: 28px;
    text-align: center;
}

.voices__title {
    margin: 0 0 10px;
    font-weight: 700;
    font-size: clamp(2rem, 2.4vw, 2.8rem);
    letter-spacing: .2em;
}

.voices__lead {
    margin: 0;
    font-size: clamp(1.4rem, 2.2vw, 2.3rem);
}

/* 各ボイス */
.voice {
    display: grid;
    align-items: start;
    position: relative;
    padding: 20px 0 50px;

    grid-template-columns: 1fr;
    gap: 18px 24px;
}

.voice+.voice {
    margin-top: 8px;
}

.voice::after {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 440px;
    height: 1px;
    margin: 20px auto;
    background-color: #000;
    content: "";
}

/* .voice__media picture {
    display: block;
    overflow: hidden;
    background: #e9eaec;

    aspect-ratio: 1 / 1;
}

.voice__media picture img {
    width: 100%;
} */

.voice__caption {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.voice__name {
    margin: 0;
    padding: .5em 0;
    font-weight: 700;
    font-size: 1.6rem;
    text-align: center;
}

.voice__badge {
    margin-left: 0;
    padding: .2em .9em;
    border-radius: 0;
    background: #6c6c6c;
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
}

.voice__body {
    margin-top: 20px;
}

.voice__heading {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: clamp(1.8rem, 2.6vw, 2rem);
    line-height: 1.6;

}

.voice__text {
    margin: 0 0 10px;
    font-size: 1.4rem;
}

.voices__recruitment {
    margin-top: 30px;
}

.voices__recruitment-txt {
    font-size: clamp(1.6rem, 2.6vw, 2.3rem);
}

.voices__entry {
    margin-top: 30px;
}

/* タブレット以上 */
@media (min-width:600px) {
    .voice {
        max-width: 800px;
        margin-right: auto;
        margin-left: auto;
    }

    .voices__inner {
        padding: 30px 0 80px;
    }



    .voice__body {
        margin-top: 0;
    }



    .voice__heading {
        margin-top: 0;
        margin-bottom: 20px;
    }

    .voice+.voice {
        margin-top: 24px;
    }

    .voice__text {
        font-size: 1.6rem;
    }

    .voices__recruitment {
        margin-top: 50px;
    }

    .voices__recruitment-txt {
        text-align: center;
    }

    .voices__entry {
        margin-top: 50px;
    }
}

/* PC（960px〜） */
@media (min-width:960px) {
    .voices__head {
        margin-bottom: 36px;
    }


    .voices__inner {
        padding: 80px 0 100px;
    }



    .voice__name {
        font-size: 1.8rem;
    }

    .voice__badge {
        font-size: 1.5rem;
    }

    .voice__text {
        font-size: 1.7rem;
    }
}