@charset "utf-8";

.recruit small {
    font-size: clamp(13px, 3.5vw, 15px);
}

.mvv-list {
    display: flex;
}
.mvv-list .mvv-title {
    color: #9adbd8;
    font-weight: bold;
    font-size: clamp(18px, 3.5vw, 30px);
}

.mvv-list .mvv-list-each {
    max-width: 320px;
    background-color: #fff;
    padding: 30px;
    margin: 10px;
    border-radius: 20px;
}
.mvv-list .mvv-list-each h2 {
    font-size: clamp(16px, 3.5vw, 18px);
    font-weight: bold;
    margin-bottom: 0px;
    text-align: left;
    padding-bottom: 0px;
    line-height: 1.8;
    
}
.mvv-list .mvv-list-each p {
    line-height: 1.8;
}
.mvv-list .mvv-list-each p,
.mvv-list .mvv-list-each ul {
    padding-bottom: 10px;
}

.mvv-list .mvv-list-each ul .mvv-points {
    position: relative;
    padding: 0 0 0 13px;
    display: inline-block;
}
.mvv-list .mvv-list-each ul .mvv-points:before {
    content: "";
    position: absolute;
    top: 18px;
    left: 0px;
    transform: translateY(-60%) translateX(0%);
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: #91d2f1;
}

@media only screen and (max-width: 890px) {
    .mvv-list {
        justify-content: center;
        display: grid;
    }
}

/* 募集要項 */
.jobs {
    margin: 0 auto;
}
.jobs h3 {
    font-size: clamp(18px, 3.5vw, 20px);
    font-weight: 400;
}
.jobs ul {
    display: flex;
    justify-content: start;
}
.jobs ul li {
    background-color: #cceae954;;
    padding: 30px;
    border-radius: 20px;
    max-width: 310px;
    width: 100%;
    margin-right: 25px;
}

.jobs ul li .employment {
    font-weight: bold;
    font-size: clamp(14px, 3.5vw, 18px);
    margin-bottom: 10px;
    border-bottom: solid #333 1px;
}

.jobs ul li table {
    width: 100%;
    display: grid;
    font-size: clamp(12px, 3.5vw, 16px);
}
.jobs ul li table tr {
    border-bottom: solid #333 1px;
    max-width: 355px;
    display: grid;
}
.jobs ul li table tr th {
    font-weight: bold;
    font-size: clamp(14px, 3.5vw, 16px);
}
.jobs ul li table tr td {
    line-height: 1.4;
    padding-bottom: 15px;
    font-size: clamp(14px, 3.5vw, 16px);
}
.jobs ul li small {
    line-height: 1.4;
    display: flex;
    padding-top: 10px;
}
.jobs .button {
    padding: 10px
}

@media only screen and (max-width: 890px) {
    .jobs ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .jobs ul li {
        width: calc(50% - 6px);
        padding: 20px 10px;
        margin-right: 0;
        flex-wrap: wrap;
        margin-top: 10px;
    }
    .jobs .button {
        max-width: 100%;
        font-size: clamp(12px, 3.5vw, 14px);
    }

}

/*応募の流れ*/
ul.recruit_box {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    align-content: flex-start;
    justify-content: flex-start;
    width: 100%;
    max-width: 960px;
    row-gap: 40px;
    column-gap: 25px;
    margin: 0 auto;
}
ul.recruit_box li {
    width: calc(33.3% - 17px);
    min-height: 440px;
    background-color: #fff;
    padding: 30px;
    border-radius: 30px;
}
ul.recruit_box li h3 {
    font-size: clamp(15px,2.5vw,16px);
    text-align: center;
}
ul.recruit_box li h3 strong {
    font-size: 30px;
    font-weight: normal;
    color: #83b0b2;
    display: block;
    margin-bottom: 10px;
}
ul.recruit_box li img {
    margin: 15px auto;
}
ul.recruit_box li p {
    font-size: clamp(14px,2.5vw,15px);
    line-height: 1.8em;
    margin-bottom: 5px;
}
@media only screen and (max-width: 890px) {
    ul.recruit_box {
        width: calc(100% - 30px);
        row-gap: 30px;
        column-gap: 20px;
    }
    ul.recruit_box li {
        width: calc(50% - 10px);
        min-height: fit-content;
        align-items: flex-start;
        text-align: center;
        padding: 30px 20px;
    }
    ul.recruit_box li img {
        max-height: 140px;
        width: auto;
    }
    ul.recruit_box li p {
        width: fit-content;
        margin: 0 auto;
    }
}
@media only screen and (max-width: 640px) {
    ul.recruit_box li {
        width: 100%;
    }
}
