/* 원데이클래스 구경하기 */
.class_banner {
    background-color: #F7F3FB;
    height: 250px;
    text-align: center;
}
.class_banner > div {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.class_banner > div > img {
    width: 150px;
}
.class_banner > div > p {
    display: inline-block;
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
}
.class_banner > div > p > strong {
    font-weight: 600;
}
.class_category {
    margin-top: 60px;
}
.class_category > ul {
    display: grid;
    grid-template-columns: repeat(5, minmax(max-content, 1fr));
    gap: 28px 8px;
}
.class_category > ul > li {
    height: 50px;
    line-height: 50px;
    border: 1px solid #ddd;
    box-sizing: border-box;
    border-radius: 12px;
    color: #999;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
}
.class_category > ul > li.active {
    border: none;
    background-color: #8C35FA;
    color: #fff;
}

.onedayclass {
    margin-top: 100px;
}
.onedayclass > div {
    text-align: center;
}
.onedayclass > div > h3 {
    font-size: 21px;
    font-weight: 700;
}
.onedayclass > div > p {
    margin-top: 18px;
    font-size: 16px;
    color: #555;
}
.onedayclass_c > img {
    display: block;
    margin: 100px auto 0 auto;
    max-width: 830px;
    max-height: 1540px;
    border-radius: 20px;
}
.move_button {
    margin-top: 109px;
    margin-bottom: 250px;
    color: #fff;
    font-size: 20px;
    line-height: 70px;
    background-color: #8C35FA;
    border-radius: 12px;
    position: relative;
}
.move_button::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-left: 6px;
    background-image: url(../img/chevron-right.png);
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
/* 원데이클래스 신청 */
.apply_header {
    margin-top: 60px;
}
.apply_header > h2 {
    font-size: 30px;
    font-weight: 700;
}
.apply_header > p {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #999;
}
.apply_detail {
    margin-top: 60px;
}
.depth {
    display: flex;
    border-bottom: 2px solid #ddd;
}
.depth > li {
    font-size: 18px;
    font-weight: 600;
    color: #999;
    padding: 15px 30px 15px 34px;
    margin-bottom: -2px;

    position: relative;
}
.depth > li:not(:first-child) {
    padding-left: 54px;
}
.depth > li.active {
    color: #5B1EA8;
    border-bottom: 2px solid #5B1EA8;
}
.num_icon {
    display: block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 8px;
    background-color: #ddd;

    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);

    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
}
.depth > li:not(:first-child) > span.num_icon {
    left: 20px;
}
.depth > li.active > span.num_icon {
    background-color: #5B1EA8;
}
.depth > li:not(:last-child)::after {
    content: "";
    width: 11px;
    height: 19px;

    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);

    background-image: url(../img/chevron-right_grey.png);
    background-repeat: no-repeat;
}
.depth > li.active::after {
    background-image: url(../img/chevron-right_purple.png);
}

.content_header {
    margin-top: 40px;
}
.content_header > h3 {
    font-size: 21px;
    font-weight: 700;
}
.content_header > h3 > strong {
    color: #ff0000;
}
.content_header > p {
    margin-top: 14px;
    font-size: 14px;
    font-weight: 600;
    color: #999;
}
.content_category {
    margin-top: 46px;
    width: 50%;
    display: grid;
    grid-template-columns: repeat(5, minmax(max-content, 1fr));
    gap: 10px 8px;
}
.radio_button input[type="radio"] {
    display: none;
}
.radio_label {
    display: block;
    border: 1px solid #ddd;
    border-radius: 10px;
    line-height: 48px;
    padding: 0 30px;
    text-align: center;
    color: #555;
    font-weight: 700;

    cursor: pointer;
}
.radio_button input[type="radio"]:checked + .radio_label {
    background-color: #8C35FA;
    color: #fff;
}
.content_detail > div.content_header {
    margin-top: 66px;
}

/* step 2 */
.content2 {
    margin-top: 43px;
}
.content3 {
    margin-top: 72px;
}
.content_input {
    margin-top: 41px;
    width: 544px;
}

.content_input > h4 {
    font-weight: 700;
}
.content_input > p {
    margin-top: 10px;
    font-weight: 600;
    color: #999;

}
.number {
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 15px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 10px;
    color: #999;

    font-family: "Pretendard", sans-serif;
    font-size: 16px;
    font-weight: 400;
}
.number_placeholder {
    position: relative;
    margin-top: 10px;
}
.number_placeholder > span {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    color: #555;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    appearance: none;
    margin: 0;
}
.select_box {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}
.select_box > select {
    width: 267px;
    height: 50px;
    line-height: 50px;
    border: 1px solid #ddd;
    border-radius: 10px;

    color: #474747;
    font-family: "Pretendard", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}
select {
    appearance: none;
    background-color: transparent;
    cursor: pointer;
}
.content3 > div > h3 > span {
    font-size: 20px;
    font-weight: 700;
}

.time {
    margin-top: 10px;
    width: 100%;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 10px;

    text-align: center;
    font-family: "Pretendard", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #474747;
}
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    display: none;
}

/* step 3 */
.class_progress {
    width: 100%;
}
.step_info {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 57px;
    background-image: url(../img/dotted_line_long.png);
    background-repeat: no-repeat;
    background-position: center center;
}
.step_info > li {
    width: 211px;
    height: 240px;
    padding-top: 21px;
    box-sizing: border-box;
    border-radius: 30px;
    background-color: #fff;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.03);
    text-align: center;
}
.step_info > li > span {
    font-weight: 700;
}
.step_info > li > span:first-child {
    font-size: 12px;
    color: #5b1ea8;
}
.step_info > li > span:last-child {
    font-size: 16px;
}
.step_info > li > span:last-child::before {
    content: "";
    display: block;
    width: 99px;
    height: 99px;
    margin: 21px auto 27px auto;
    border-radius: 40px;
    background-color: #b275ff;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50px 50px;
}
.step_info > li:nth-child(1) > span:last-child::before {
    background-image: url(../img/icon_class.png);
}
.step_info > li:nth-child(2) > span:last-child::before {
    background-image: url(../img/icon_vote.png);
}
.step_info > li:nth-child(3) > span:last-child::before {
    background-image: url(../img/icon_invoice.png);
}
.step_info > li:nth-child(4) > span:last-child::before {
    background-image: url(../img/icon_together.png);
}
.apply_info {
    margin-top: 56px;
}
.apply_info > ul {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 14px;

    color: #999;
    font-weight: 600;
}

/* 버튼 */
.prev_button {
    float: left;
    margin: 20px 0;
    width: 255px;
    line-height: 50px;
    box-sizing: border-box;
    background-color: #777;
    border-radius: 15px;
    font-size: 14px;
    color: #fff;
}

.next_button {
    float: right;
    margin: 20px 0;
    width: 255px;
    line-height: 50px;
    box-sizing: border-box;
    background-color: #8C35FA;
    border-radius: 15px;
    font-size: 14px;
    color: #fff;
}
.button_wrap::after {
    content: "";
    display: block;
    clear: both;
}

/* step 4 */
.notice {
    padding: 136px 200px 0 200px;
}
.notice > div > h3 {
    font-size: 32px;
    font-weight: 700;
}
.notice > div > p {
    margin-top: 28px;
    font-size: 18px;
    font-weight: 700;
    color: #777;
}
.notice > a {
    margin: 75px auto 150px auto;
    display: block;
    width: 385px;
    height: 50px;
    line-height: 50px;
    background-color: #8C35FA;
    border-radius: 15px;

    color: #fff;
    text-decoration: none;
    text-align: center;
}
