@import url(style.less);

.btn_view {
    letter-spacing: 0;
    span {
        font-size: 1.6rem;
        font-weight: 600;
    }
}

/* 유의 문의 */
.notice_wrap {
    display: flex;
    gap: 1rem;
    @media @tab {
        flex-direction: column;
    }
    .notice {
        background-color: #fff;
        width: 100%;
        padding: 3rem;
        border: 1px solid @color_gray;
        .tit {
            color: @color_main;
            flex: 0 0 auto;
            margin-right: 8rem;
            i {
                margin-right: 5px;
            }
        }
    }
    .note {
        .tit_wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            @media @mobile_l {
                flex-direction: column;
                align-items: flex-start;
                .tit {
                    margin-bottom: 2rem;
                }
                .btn_view {
                    width: 100% !important;
                }
            }
        }
        .btn_view {
            height: 4.4rem;
        }
        .fee_inner {
            border-top: 1px dotted @color_gray;
            padding-top: 2rem;
        }
    }
}

.step_wrap {
    width: 100%;
    padding-top: 8rem;
    .inner {
        display: grid;
        gap: 2rem;
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 1fr;
        .step {
            background-color: #f7f7f7;
            border: 1px solid @color_gray;
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding-bottom: 8rem;
            position: relative;
            .layout {
                display: flex;
                .txt_wrap {
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    .sub_txt {
                        width: fit-content;
                    }
                    .btn_view {
                        height: 4.4rem;
                    }
                }
            }
        }
        @media @tab {
            grid-template-columns: repeat(2, 1fr);
            .step {
                padding-bottom: 10rem;
            }
        }
        @media @mobile_l {
            grid-template-columns: repeat(1, 1fr);
            .step {
                padding-bottom: 8.6rem;
            }
        }
    }
    img {
        position: absolute;
        width: 6.8rem;
        bottom: 2rem;
        right: 3rem;
        @media @mobile_l {
            width: 6rem;
        }
    }
}
