@charset "UTF-8";

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left {
    width: 65%;
    display: grid;
    gap: 30px;
}

.right {
    width: 30%;
}

.item-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #ffffff;
    height: 70px;
    border-radius: 35px 0 0 35px;
    padding-right: 15px;
}

.num-wrap {
    width: 70px;
    height: 70px;
    background: var(--i_main_color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink:0;
    line-height: 1;
}

.num-text {
    font-size: 14px;
}

.num {
    font-size: 30px;
    font-weight: bold;
}

.problem-item {
    font-size: 20px;
    font-weight: bold;
}

#topContact01 + section.contents_box01 .inner_item_txt .contents_btn01 {
 text-align: center !important;
}

@media (max-width: 1023px) {
    .left {
        width: 70%;
    }
    .right {
        width: 28%;
    }
    .problem-item {
        font-size: 18px;
    }
}

@media (max-width: 900px) { 
    .container {
        flex-direction: column;
        gap: 30px;
    }
    .left {
        width: 100%;
    }
    .right {
        width: auto;
        display: flex;
        justify-content: center;
    }
    .right img {
        width: 75%;
    }
    .problem-item {
        font-size: 18px;
    }
}

@media (max-width: 768px) { 
    .item-wrap{
        gap: 10px;
    }
    .problem-item {
        font-size: 16px;
        line-height: 1.6;
    }
}