.ib {
    display: inline-block;
}
/* 電話でお問合せ */
.inquiry_type_tel {
    position: relative;
    display: block;
    width: fit-content;
    margin: 0.5em auto;
    padding-left: 1.5em;
    color: #ff9d26;
    font-weight: bold;
    font-size: 1.6rem;
}
.inquiry_type_tel::before {
    position: absolute;
    content:'';
    width: 20px;
    height: 20px;
    top: 2px;
    left: 0;
    background-image: url(../../recruit/images/icon_tel.png);
    background-size: contain;
}

.grid_111 {
    display: grid;
    grid-gap: 10px;
    margin: 0.5em auto;
    text-align: center;
}
.grid_111 img {
    width: 100%;
}


/* ----- 料金表（簡素ver.） ----- */
.charge_graph {
    width: fit-content;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0.5em 0;
}
.charge_cell {
    margin: -1px 0 0 -1px;
    padding: 0.2em 1em;
    border: 1px solid #444;
    text-align: center;
    font-weight: 500;
}
.charge_cell:nth-child(2n+1){
    background-color: #f8fdff;
}

/* ----- PDFボタン調整 ----- */
.pdf_grid a {
    padding: 10px 12px;
}

@media screen and (max-width: 599px) {
    .grid_life {
        grid-template-columns: 1fr 1fr;
        grid-gap: 5px;
    }
    .charge_graph {
        margin: 0.5em auto;
    }
}


@media screen and (min-width: 600px) {
    /* 電話でお問合せ */
    .inquiry_type_tel {
        font-size: 2rem;
    }
    .inquiry_type_tel::before {
        width: 22px;
        height: 22px;
        top: 4px;
        left: 2px;
    }

    .grid_111 {
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 8px;
    }

    /* ----- PDFボタン調整 ----- */
    .pdf_grid a {
        padding: 12px 20px;
    }
}
    