.section {
    background: #FAFDFE;
    padding: 100px 0 200px;
}

.section .wrap .sec_top {
    text-align: center;
    margin-bottom: 60px;
}

.section .wrap .sec_top .en {
    color: #1685B8;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.section .wrap .sec_top .title {
    color: #000;
    font-size: 36px;
    font-weight: 600;
    margin: 12px 0;
}

.section .wrap .sec_top .des {
    color: #62748E;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.section .wrap .box {
    display: flex;
    justify-content: space-between;
}

.section .wrap .box .l_box {
    width: 620px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section .wrap .box .l_box .item {
    width: 100%;
    padding: 30px 50px;
    display: flex;
    align-items: center;
    gap: 30px;
    border-radius: 15px;
    background: #FFF;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.05);
}

.section .wrap .box .l_box .item .icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: #1CB5E0;
}

.section .wrap .box .l_box .item .icon img {
    display: block;
    width: 20px;
}

.section .wrap .box .l_box .item .item_r .h5 {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section .wrap .box .l_box .item .item_r .p {
    color: #62748E;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.875;
}

.section .wrap .box .l_box .item:nth-child(2) .icon img {
    width: 17px;
}

.section .wrap .box .l_box .item:nth-child(3) .icon img {
    width: 20px;
}

.section .wrap .box .r_box {
    width: 700px;
    border-radius: 15px;
    background: #FFF;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.05);
}

.section .wrap .box .r_box .r_box_top {
    display: flex;
}

.section .wrap .box .r_box .r_box_top .item {
    width: 50%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
}

.section .wrap .box .r_box .r_box_top .item:after {
    content: "";
    width: 100%;
    height: 3px;
    background: #1CB5E0;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: scaleX(0);
    transition: 1s;
}

.section .wrap .box .r_box .r_box_top .item .icon svg {
    width: 14px;
    height: auto;
    display: block;
}

.section .wrap .box .r_box .r_box_top .item .icon svg path {
    transition: 0.6s;
}

.section .wrap .box .r_box .r_box_top .item p {
    color: rgba(10, 10, 10, 0.5);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.15px;
    transition: 0.6s;
}

.section .wrap .box .r_box .r_box_top .item:nth-last-child(1) .icon svg {
    width: 17px;
}

.section .wrap .box .r_box .r_box_top .item:hover .icon svg path, .section .wrap .box .r_box .r_box_top .item.on .icon svg path {
    fill: #1685B8;
}

.section .wrap .box .r_box .r_box_top .item:hover p, .section .wrap .box .r_box .r_box_top .item.on p {
    color: #1685B8;
}

.section .wrap .box .r_box .r_box_top .item:hover:after, .section .wrap .box .r_box .r_box_top .item.on:after {
    transform: scaleX(1);
}

.section .wrap .box .r_box .r_box_parts {
    padding: 50px 30px;
}

.section .wrap .box .r_box .r_box_parts .part {
    display: none;
}

.section .wrap .box .r_box .r_box_parts .part form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    gap: 10px 0;
}

.section .wrap .box .r_box .r_box_parts .part form .item {
    width: 300px;
}

.section .wrap .box .r_box .r_box_parts .part form .item.item_sp {
    width: 100%;
}

.section .wrap .box .r_box .r_box_parts .part form .item .h5 {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.15px;
    margin-bottom: 10px;
}

.section .wrap .box .r_box .r_box_parts .part form .item input {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #1CB5E0;
    background: #FFF;
    padding: 0 10px;
    font-size: 14px;
    font-weight: 400;
    color: #111;
}

.section .wrap .box .r_box .r_box_parts .part form .item input::placeholder {
    color: #A1ACBB;
}

.section .wrap .box .r_box .r_box_parts .part form .item input.input_sp {
    font-size: 16px;
}

.section .wrap .box .r_box .r_box_parts .part form .item input.input_sp::placeholder {
    color: rgba(10, 10, 10, 0.5);
}

.section .wrap .box .r_box .r_box_parts .part form button {
    margin: 40px 0 0;
    width: 100%;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 99px;
    border: 2px solid #1685B8;
    background: #FFF;
    position: relative;
    z-index: 3;
    transition: 0.6s;
}

.section .wrap .box .r_box .r_box_parts .part form button:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(180deg, #1685B8 0%, #1CB5E0 100%);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.6s;
}

.section .wrap .box .r_box .r_box_parts .part form button p {
    color: #1685B8;
    font-size: 18px;
    font-weight: 500;
    transition: 0.6s;
}

.section .wrap .box .r_box .r_box_parts .part form button svg {
    display: block;
    width: 24px;
    height: auto;
}

.section .wrap .box .r_box .r_box_parts .part form button svg path {
    transition: 0.6s;
}

.section .wrap .box .r_box .r_box_parts .part form button:hover {
    border: 2px solid transparent;
}

.section .wrap .box .r_box .r_box_parts .part form button:hover:after {
    opacity: 1;
}

.section .wrap .box .r_box .r_box_parts .part form button:hover p {
    color: #FFFFFF;
}

.section .wrap .box .r_box .r_box_parts .part form button:hover svg path {
    fill: #FFFFFF;
}

.section .wrap .box .r_box .r_box_parts .part.on {
    display: block;
}
@media screen and (max-width: 1600px) {
    .section .wrap .box .l_box {
        width: 42%;
    }
    .section .wrap .box .r_box .r_box_parts .part form .item {
        width: 48%;
    }
    .section .wrap .box .r_box .r_box_parts .part form button p {
        font-size: 16px;
    }
    .section .wrap .box .r_box .r_box_parts .part form button svg {
        width: 20px;
    }
    .section .wrap .box .r_box .r_box_parts .part form button {
        padding: 10px 30px;
    }
    .section .wrap .box .r_box {
        width: 55%;
    }
}
@media screen and (max-width: 1366px) {
    .section {
        padding: 80px 0 100px;
    }
    .section .wrap .sec_top .en {
        font-size: 15px;
    }
    .section .wrap .sec_top .title {
        font-size: 28px;
        margin: 10px 0 20px;
    }
    .section .wrap .sec_top {
        margin-bottom: 35px;
    }
    .section .wrap .box .l_box {
        width: 48%;
    }
    .section .wrap .box .r_box {
        width: 48%;
        border-radius: 10px;
    }
    .section .wrap .box .l_box .item {
        padding: 30px 20px;
        border-radius: 10px;
    }
    .section .wrap .box .l_box .item .icon img {
        width: 14px;
    }
    .section .wrap .box .l_box .item:nth-child(2) .icon img {
        width: 14px;
    }
    .section .wrap .box .l_box .item:nth-child(3) .icon img {
        width: 15px;
    }
    .section .wrap .box .l_box .item .item_r .h5 {
        font-size: 16px;
    }
    .section .wrap .box .l_box .item .item_r .p {
        font-size: 14px;
    }
    .section .wrap .box .r_box .r_box_top .item {
        height: 40px;
        gap: 8px;
    }
    .section .wrap .box .r_box .r_box_top .item p {
        font-size: 14px;
    }
    .section .wrap .box .r_box .r_box_top .item .icon svg {
        width: 13px;
    }
    .section .wrap .box .r_box .r_box_top .item:nth-last-child(1) .icon svg {
        width: 14px;
    }
    .section .wrap .box .r_box .r_box_parts {
        padding: 15px;
    }
    .section .wrap .box .r_box .r_box_parts .part form .item input.input_sp {
        font-size: 14px;
    }
    .section .wrap .box .r_box .r_box_parts .part form button {
        padding: 10px;
        border-radius: 40px;
        gap: 8px;
    }
    .section .wrap .box .r_box .r_box_parts .part form button p {
        font-size: 14px;
    }
    .section .wrap .box .r_box .r_box_parts .part form button svg {
        width: 14px;
    }
    .section .wrap .box .r_box .r_box_parts .part form .item .h5 {
        font-size: 14px;
        line-height: 1.2;
        margin-bottom: 8px;
    }
    .section .wrap .box .r_box .r_box_parts .part form {
        gap: 15px 0;
    }
    .section .wrap .box .r_box .r_box_parts .part form .item {
        width: 18vw;
    }
    .section .wrap .box .r_box .r_box_parts .part form .item input {
        height: 40px;
        font-size: 14px;
        padding: 0 10px;
    }
    .section .wrap .box .l_box .item .icon {
        width: 30px;
        height: 30px;
        border-radius: 4px;
    }
    .section .wrap .sec_top .des {
        font-size: 15px;
    }
}
@media screen and (max-width: 768px) {
    .section {
        padding: 50px 0;
    }
    .section .wrap .sec_top .en {
        font-size: 15px;
    }
    .section .wrap .sec_top .title {
        font-size: 22px;
        margin: 2px 0 8px;
    }
    .section .wrap .sec_top .des {
        font-size: 15px;
        line-height: 1.6;
    }
    .section .wrap .sec_top {
        margin-bottom: 30px;
    }
    .section .wrap .box {
        flex-wrap: wrap;
    }
    .section .wrap .box .l_box {
        width: 100%;
        gap: 20px;
    }
    .section .wrap .box .l_box .item {
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.05);
        gap: 10px;
        display: block;
        text-align: center;
    }
    .section .wrap .box .l_box .item .icon {
        width: 40px;
        height: 40px;
        border-radius: 6px;
        margin: 0 auto;
    }
    .section .wrap .box .l_box .item .icon img {
        width: 20px;
    }
    .section .wrap .box .l_box .item:nth-child(2) .icon img {
        width: 17px;
    }
    .section .wrap .box .l_box .item:nth-child(3) .icon img {
        width: 20px;
    }
    .section .wrap .box .l_box .item .item_r .h5 {
        font-size: 17px;
        margin: 15px 0 8px;
    }
    .section .wrap .box .l_box .item .item_r .p {
        font-size: 15px;
    }
    .section .wrap .box .r_box {
        width: 100%;
        margin: 40px 0 0;
        border-radius: 10px;
        box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.05);
    }
    .section .wrap .box .r_box .r_box_top .item {
        height: 50px;
        gap: 6px;
    }
    .section .wrap .box .r_box .r_box_top .item p {
        font-size: 14px;
    }
    .section .wrap .box .r_box .r_box_top .item .icon svg {
        width: 14px;
    }
    .section .wrap .box .r_box .r_box_top .item:nth-last-child(1) .icon svg {
        width: 17px;
    }
    .section .wrap .box .r_box .r_box_parts {
        padding: 20px 20px 30px;
    }
    .section .wrap .box .r_box .r_box_parts .part form .item {
        width: 100%;
    }
    .section .wrap .box .r_box .r_box_parts .part form .item .h5 {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 6px;
    }
    .section .wrap .box .r_box .r_box_parts .part form {
        gap: 20px 0;
    }
    .section .wrap .box .r_box .r_box_parts .part form .item input.input_sp {
        font-size: 14px;
        border-radius: 4px;
    }
    .section .wrap .box .r_box .r_box_parts .part form .item input {
        height: 40px;
        border-radius: 4px;
        padding: 0 15px;
        font-size: 14px;
    }
    .section .wrap .box .r_box .r_box_parts .part form button p {
        font-size: 15px;
        border-radius: 25px;
    }
    .section .wrap .box .r_box .r_box_parts .part form button {
        padding: 8px 0;
        gap: 8px;

    }
    .section .wrap .box .r_box .r_box_parts .part form button svg {
        width: 16px;
    }
}
