.section {margin: 60px auto 120px;}
/* ---------------------------partners__intro---------------------------- */
/* -----------------------------who-need-it------------------------------ */

.who-need-it {
    margin:0 auto;
    max-width: 1240px;
    padding: 0 20px;
}
.who-need-it__icon-boxs {
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    border: none;
    padding: 0;
}
.who-need-it__icon-box {
    text-align: center;
    word-break: keep-all;
    flex-basis: 23%;
    margin: 10px;
    font-size: 1.6rem;
    border-radius: 10px;
    border: 1px solid #dededf;
    font-size: var(--font-small);
    border-radius: var(--border-radius-medium);
    border: 1px solid var(--color-light-grey);
    padding: 90px 20px 20px;
    background-image: url(../images/icons/check-icon__blue.svg);
    background-repeat: no-repeat;
    background-position: center 40px;
}
.who-need-it__description {
    font-size: 2rem;
    font-size: var(--font-size-20);
    line-height: 32px;
    color: #767676;
    color: var(--color-grey);
    text-align: center;
    margin: 80px 0;
}

/* ---------------------------partners__intro---------------------------- */
/* -----------------------공통/요양원/구간보호---------------------------- */
.example__container {
    background-color: #EEF6FB;
    background-color: var(--color-light-blue);
}
.example {
    margin:0 auto;
    max-width: 1240px;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    height: 485px;  
}
.example__content-box {
    flex-basis: 50%;
    padding: 40px 0 100px;
}
.example__img-box {
    flex-basis: 50%;
    margin: 0 20px;
    width:100%;
    height:100%;
}
.example__img-box  {
    align-items: stretch;
    background-size: cover;
    background-position: center;
}
.nursing-home__img-box {
    background-image: url(../images/consulting/example__img__nursing-home.jpg);
}
.daycare-center__img-box {
    background-image: url(../images/consulting/example__img__daycare-center.png);
}
.other__img-box-01 {
    background-image: url(../images/consulting/example__img__other-01.png);
}
.other__img-box-02 {
    background-image: url(../images/consulting/example__img__other-02.png);
}
.other__img-box-03 {
    background-image: url(../images/consulting/example__img__other-03.png);
}
.other__img-box-04 {
    background-image: url(../images/consulting/example__img__other-04.png);
}
.other__img-box-05 {
    background-image: url(../images/consulting/example__img__other-05.png);
}
.other__img-box-06 {
    background-image: url(../images/consulting/example__img__other-06.png);
}
.other__img-box-07 {
    background-image: url(../images/consulting/example__img__other-07.png);
}
.example__btn-box {
    margin-bottom: 30px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}
.example__btn {
    text-align: left;
    display: inline-block;
    color: #767676;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-grey);
    font-size: var(--font-regular);
    font-weight: var(--weight-bold);
    flex-basis: 20%;
    padding-bottom: 8px;
    position: relative;
    transition: all 0.3s ease-in;
    transition: all var(--annimation-duration) ease-in;
}
.example__btn-100people {
    flex-basis: 30%;
}
.example__btn--active {
    color: #202020;
    color: var(--color-black);
}
.example__btn::after {
    display: block;
    height: 4px;
    content:"";
    border-radius: 4px;
    border-radius: var(--border-radius-small);
    position: absolute;
    bottom:0;
    left:0;
    width:80%;
    background-color: #424242;
    background-color: var(--color-dark-grey);
    opacity: 0;
    transition: all 0.3s ease-in;
    transition: all var(--annimation-duration) ease-in;
}
.example__btn--active::after {
    opacity: 1;
} 
.example__table-box {
}
.example__table {
    width:100%;
    border-collapse: collapse;
    border-top: 1px solid #767676;
    border-top: 1px solid var(--color-grey);
    font-size: 1.6rem;
    font-size: var(--font-small);
}
.example__table-row {
    width:100%;
    height: 50px;

}
.example__table-title {
    width: 150px;
    padding-left: 8px;
    background-color: #dededf;
    background-color: var(--color-light-grey);
    border-bottom: 1px solid #767676;
    border-bottom: 1px solid var(--color-grey);
}
.example__table-value {
    background-color: #ffffff;
    background-color: var(--color-white);
    border-bottom: 1px solid #767676;
    border-bottom: 1px solid var(--color-grey);
    text-align: right;
    padding-right: 8%;
}
.other__container {
    margin:0 auto;
    width:100%;
    max-width: 1040px;
    padding: 0 20px;
}
.other {
    padding-bottom: 40px;
    border-bottom: 1px solid #eeeeee;
    border-bottom: 1px solid var(--color-dark-white);
    margin-bottom: 40px;
    width:100%;
    display: flex;
    flex-direction: column;
}
.other__category {
    flex: 1 0 auto;
    font-size: 1.8rem;
    font-weight: var(--weight-bold);
    font-weight: 700;
    font-size: var(--font-regular);
    margin-bottom: 20px;
}
.other__box {
    flex: 1 0 auto;
    width:100%;
    max-width:1000px;
    height: 150px;
    display: flex;
    flex-direction: row;
}
.other__box .example__img-box {
    margin: 0 20px 0 0;
    flex-basis: 30%;
    margin-bottom: 0;
}
.other__box .example__table {
    flex: 1 0 auto;
    width: 70%;
}
@media screen and (max-width: 768px) { 
    .section {margin: 30px auto 60px;}
    .who-need-it__icon-boxs {
        flex-direction: column;
        justify-content: space-between;
        border-radius: 10px;
        border: 2px solid #dededf;
        border-radius: var(--border-radius-medium);
        border: 2px solid var(--color-light-grey);
        padding: 10px 0;
    }
    .who-need-it__icon-box {
        flex: 1 0 auto;
        border-radius: 10px;
        border-radius: var(--border-radius-medium);
        border: none;
        text-align: left;
        padding: 10px 20px 10px 60px;
        background-position: 20px center;
        margin: 0;
    }
    .example {
        flex-direction: column;
        height: 700px;  
        padding: 20px;
    }
    .example__content-box {
        padding: 40px 0 ;
    }
    .example__img-box {
        margin: 0 auto;
    }
    .example__btn-100people {
        flex-basis: 40%;
}
}

@media screen and (min-width:1280px) {  

}

@media screen and (max-width:425px) {
    .who-need-it__icon-boxs {
        flex-direction: column;
    }
    .other {
        padding-bottom: 20px;
    }
    .other__box {
        flex-direction: column;
        height: 280px;
    }
    .other__box .example__img-box {
        height: 120px;
        margin-bottom: 20px;
    }
    .other__box .example__table {
        width:100%;
    }
}