.article {
    max-width: 900px;
    margin-bottom: 80px;
}

h2 {
    font-size: 24px;
}

h2::before {
    max-width: 900px;
}

@media(min-width:920px){
    main {
        padding: 0;
    }
}

/*********
fv
**********/
.fv {
    display: grid;
    grid-template-areas: 
    "b b"
    "a c";
    width: calc(100% + 40px);
    margin-left: -20px;
}

.fv .tools {
    grid-area: a;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.fv hgroup {
    grid-area: b;
    margin: 0 0 10px 20px;
}

.fv .recruit-fv {
    grid-area: c;
}

@media(min-width:640px){
    .fv {
        display: grid;
        grid-template-areas: 
        "a b c";
        grid-template-columns:  repeat(3, 1fr);
        width: 100%;
        margin: 0 auto;
        padding-top: 28px;
        gap: 8px;
        align-items: center;
    }

    .fv hgroup {
        margin: 0 auto;
        width: fit-content;
    }
}

/*******
recruitment
********/
.recruitment .detail_list .item {
    margin-bottom: 12px;
}

.recruitment .detail_list div dt {
    font-weight: bold;
    background-color: #1993C9;
    color: #fff;
    text-align: center;
    height: 100%;
    padding: 8px;
}

.recruitment .detail_list div dd {
    background-color: #e9f8ff;
    margin: 0;
    height: 100%;
    padding: 8px 8px 8px 20px;
}

.recruitment .btn-1 {
    margin: 1em auto;
    width: 100px;
    display: block;
    font-size: 16px;
    box-sizing: border-box;
}

@media(min-width:640px){
    .recruitment .detail_list .item {
        display: flex;
        margin-bottom: 4px;
    }

    .recruitment .detail_list div dt {
        width: 25%;
    }

    .recruitment .detail_list div dd {
        width: 75%;
    }
}

/*******
welfare
********/
.support_list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 3%;
}

.support_list .item {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 2%;
    max-width: 280px;
    flex: 210px 1 0;
}

.support_list img {
    height: 50px;
    width: auto;
    aspect-ratio: 1;
}

.support_list .content h3 {
    color: #1993C9;
    margin: 6px auto;
    width: fit-content;
}

.support_list .content p {
    margin: 6px 0;
}

/********
interview
*********/
.interview .interview_article {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5em;
}

.interview .interview_article li {
    max-width: 270px;
}

.interview .interview_article li h3 {
    color: #1993C9;
    text-align: center;
    margin-bottom: 0;
}

.interview .interview_article li .member {
    color: #1993C9;
    margin: 0;
    text-align: center;
}

.interview .btn-1 {
    margin: 6px auto;
    width: 128px;
    display: block;
    font-size: 16px;
    box-sizing: border-box;
}

/** footer-img **/
.next-page {
    background: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,0.5)),url(../tools.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}