/*section*/
section.step .step1 .inner,
section.step .step3 .inner {
    display: flex;
}

/*content*/
section.step .step1 p,
section.step .step2 p,
section.step .step3 p {
    color: #0f375e;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

p span.round-text,
p strong,
p span.primary_color strong,
p span.subtitle {
    font-size: 32px;
}

span.round-text {
    background-color: #0f375e;
    border-radius: 50%;
    color: #fff;
    font-weight: 500;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*step1*/
/* .step1 .img_box,
.step3 .img_box {
    width: auto;
} */

/* .step1 .text-content,
.step3 .text-content {
    padding-right: 3rem;
} */

/* section.step .step1 .img_box img {
    width: 250px;
} */

/*step2*/
section.step .step2 .inner .img_box {
    margin-left: 0;
}

section.step .step2 .inner .img_box img {
    margin: 0 24px;
}

/*step3*/
section.step .step3 .inner .img_box img {
    margin: 0 1rem;
}

/*table*/
section.step table {
    width: calc(100% - 40px);
    border-top: 2px #8a8a8a solid;
    border-bottom: 1px #8a8a8a solid;
}

section.step table th:last-child,
section.step table td:last-child {
    border-right: none;
}

section.step table th,
section.step table td {
    padding: 10px;
    text-align: center;
    border-bottom: 1px #8a8a8a solid;
    border-right: 1px #8a8a8a solid;
    font-size: 16px
}

section.step table td {
    color: gray;
}

/*bonus*/
section.bonus_section .bonus .price {
    color: #0f375e;
    font-weight: 500;
}

/*202206Spring*/
.img_box {
    justify-content: flex-start;
    display: flex;
    margin: 3rem 0;
    flex-wrap: wrap;
    width: auto;
}

.img_box img{
    margin: 0 24px;
    width: auto;
    height: 180px;
}

/*responsive*/
@media (min-width:1440px) {
    section.step .step3 .inner .img_box img {
        max-height: 240px;
        width: auto;
    }

    section.step .step2 .inner .img_box img {
        max-height: 280px;
        width: auto;

    }

}

@media (max-width:1440px) {

    section.step .step3 .inner {
        display: block;
    }

    .step3 .img_box {
        justify-content: space-evenly;
    }

    section.step .step2 .inner .img_box img {
        max-height: 260px;
        width: auto;
    }

}

@media (max-width: 1280px) {
    section.step .step1 .inner {
        display: block;
    }

    .img_box {
        justify-content: space-evenly;
        margin-bottom: 0;
    }

}

@media (max-width:1024px) {

    section.step .inner h1 {
        font-size: 37px;
    }

    section.step .step2 .inner .img_box {
        justify-content: space-evenly;
    }

    section.step .step2 .inner .img_box img {
        margin: 35px;
        max-height: none;
    }
}

@media (max-width:768px) {
    section.step .inner h1 {
        font-size: 34px;
    }

    section.step .step1 p,
    section.step .step2 p,
    section.step .step3 p {
        font-size: 18px;
    }

    section.step .step3 .inner .img_box img {
        margin: 35px;
    }

    p span.subtitle{
        font-size: 27px;
    }
}

@media (max-width: 640px) {

    .step1 .text-content,
    .step3 .text-content {
        padding-right: 0;
    }

    section.step .inner h1 {
        font-size: 26px;
    }

    section.step .step1 p,
    section.step .step2 p,
    section.step .step3 p {
        font-size: 14px;
    }

    span.round-text {
        width: 32px;
        height: 32px;
    }

    p span.round-text,
    p strong,
    p span.primary_color strong,
    p span.subtitle {
        font-size: 16px;
    }

    section.step .step2 .inner .img_box,
    .step3 .img_box {
        justify-content: center;
    }

    section.step .step2 .inner .img_box img,
    section.step .step3 .inner .img_box img {
        width: 250px;
        margin: 0 0 50px;
    }

    .img_box{
        justify-content: center;
        margin-bottom: 0;
    }

    .img_box img:last-child{
        margin-bottom: 0;
    }

    section.step .table {
        overflow-x: scroll;
        width: 100%;
    }

    section.step table {
        width: 100%;
        min-width: 700px;
        box-sizing: border-box;
    }
}

@media (max-width:420px) {
    section.step .inner h1{
        font-size: 23px;
    }

    section.step .step1 p.text-position{
        position: relative;
        margin-bottom: 16px;
    }

    p span.subtitle.sub-mobile{
        position: absolute;
        top: 0;
        left: 9vw;
    }
}