@charset "utf-8";
/* 고객센터 */
.sorting-qna-area {
    overflow-y: hidden;
    overflow-x: scroll;
}
.sorting-qna {
    display: flex;
    justify-content: left;
    align-items: center;
    flex-wrap: nowrap;
    margin-top: 2rem;
    height: 2.6rem;
}
.sorting-qna li {
    flex-shrink: 0;
    margin-right: 0.5rem;
}
.sorting-qna li:last-of-type {
    margin-right: 0;
}
.sorting-qna-area::-webkit-scrollbar,
.sorting-qna-area::-webkit-scrollbar-thumb,
.sorting-qna-area::-webkit-scrollbar-track {
    background: transparent;
}
.sorting-qna-area::-webkit-scrollbar {
    height: 0;
}
@media only screen and (min-width: 1024px) {
    .sorting-qna {
        height: 2.5rem;
    }
    .sorting-qna-area::-webkit-scrollbar {
        height: 0.6rem;
    }
    .sorting-qna-area::-webkit-scrollbar-thumb {
        background-color: #aaa;
        border-radius: 10px;
    }
    .sorting-qna-area::-webkit-scrollbar-track {
        background-color: #fff;
    }
}
.list-notice-cs {
    margin-top: 2rem;
    border-top: 1px solid var(--color-black);
    border-bottom: 1px solid var(--color-black);
}
.list-notice-cs li {
    overflow: hidden;
    width: 100%;
    padding: 2rem 0;
    border-top: 1px dotted var(--color-gray300);
    text-overflow: ellipsis;
    white-space: nowrap;
}
.list-notice-cs li:first-child {
    border-top: 0;
}

/* 공지사항 목록 */
.list-notice {
    margin-top: 2rem;
}
.list-notice li {
    border-top: 1px solid var(--color-gray200);
}
.list-notice li:first-child {
    border-top: 0;
}
.list-notice li > a {
    display: block;
    padding: 2rem 0;
}
.list-notice li .label-group {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 0.5rem;
}
.list-notice li .notice-tit {
    display: -webkit-box;
    overflow: hidden;
    margin: 1rem 0;
    width: 95%;
    font-size: 1.5rem;
    font-weight: lighter;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.list-notice li .notice-infor {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 0.5rem;
}
.list-notice li .notice-infor dt,
.list-notice li .notice-infor dd {
    color: var(--color-gray500);
    font-size: 1.3rem;
    font-weight: lighter;
}
.list-notice li .notice-infor dd:nth-of-type(1):after {
    display: inline-block;
    margin: 0.1rem  0 0 0.5rem;
    color: var(--color-gray500);
    font-size: 1rem;
    vertical-align: top;
    content: "|";
}

/* 이벤트 목록 */
.list-evt {
    margin-top: 1.5rem;
}
.list-evt li {
    padding: 3rem 0 2rem;
    border-top: 1px dotted var(--color-gray200);
}
.list-evt li:first-child {
    padding-top: 0;
    border-top: 0;
}
.list-evt li > a {
    display: block;
}
.list-evt li > a .evt-thumbnail > img {
    display: block;
    width: 100%;
    height: 18rem;
    border: 1px solid rgba(0,0,0,0.1);
    object-fit: cover;
    border-radius: 15px;
    overflow: hidden;
}
.list-evt li > a .evt-tit {
    display: block;
    overflow: hidden;
    margin: 2rem 0 1rem;
    width: 100%;
    font-size: 1.5rem;
    font-weight: bold;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.list-evt li > a .evt-date {
    color: var(--color-gray500);
    font-size: 1.5rem;
    font-weight: lighter;
}

/* 클래스찾기 - 클래스검색 */
.tab-class-wrap .tab-class-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    height: 9rem;
}
.tab-class-wrap .tab-class-menu li {
    flex: 1 1 20%;
}
.tab-class-wrap .tab-class-menu li [class^="btn-tab"] {
    position: relative;
    padding-top: 5.3rem;
    width: 100%;
    height: 9rem;
    background-position: 50% 1rem;
    background-repeat: no-repeat;
    background-size: 5rem;
    color: var(--color-gray500);
    font-size: 1.5rem;
    font-weight: lighter;
    text-align: center;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.tab-class-wrap .tab-class-menu li [class^="btn-tab"][class*="-all"] {
    background-image: url("../images/contents/ico_class_all.svg");
}
.tab-class-wrap .tab-class-menu li [class^="btn-tab"][class*="-adult"] {
    background-image: url("../images/contents/ico_class_adult.svg");
}
.tab-class-wrap .tab-class-menu li [class^="btn-tab"][class*="-child"] {
    background-image: url("../images/contents/ico_class_child.svg");
}
.tab-class-wrap .tab-class-menu li [class^="btn-tab"][class*="-baby"] {
    background-image: url("../images/contents/ico_class_baby.svg");
}
.tab-class-wrap .tab-class-menu li [class^="btn-tab"][class*="-animal"] {
    background-image: url("../images/contents/ico_class_animal.svg");
}
.tab-class-wrap .tab-class-menu li.active [class^="btn-tab"] {
    color: var(--color-black);
    font-weight: bold;
}
.tab-class-wrap .tab-class-menu li.active [class^="btn-tab"][class*="-all"] {
    background-image: url("../images/contents/ico_class_all_active.svg");
}
.tab-class-wrap .tab-class-menu li.active [class^="btn-tab"][class*="-adult"] {
    background-image: url("../images/contents/ico_class_adult_active.svg");
}
.tab-class-wrap .tab-class-menu li.active [class^="btn-tab"][class*="-child"] {
    background-image: url("../images/contents/ico_class_child_active.svg");
}
.tab-class-wrap .tab-class-menu li.active [class^="btn-tab"][class*="-baby"] {
    background-image: url("../images/contents/ico_class_baby_active.svg");
}
.tab-class-wrap .tab-class-menu li.active [class^="btn-tab"][class*="-animal"] {
    background-image: url("../images/contents/ico_class_animal_active.svg");
}
.tab-class-wrap .tab-class-menu li [class^="btn-tab"]:after {
    -webkit-transition: all 1.0s;
    transition: all 1.0s;
}
.tab-class-wrap .tab-class-menu li.active [class^="btn-tab"]:after {
    display: block;
    position: absolute;
    bottom: -0.6rem;
    width: 100%;
    color: var(--color-gray100);
    font-size: 1.8rem;
    line-height: 1rem;
    text-align: center;
    content: "◆";
}
.tab-class-wrap .tab-class-menu.single li.active [class^="btn-tab"]:after {
    content: none;
}
.tab-class-wrap .tab-category-menu {
    display: none;
    background-color: var(--color-gray100);
    -webkit-transition: all 1.0s;
    transition: all 1.0s;
}
.tab-class-wrap .tab-category-menu.active {
    display: block;
}
.tab-class-wrap .tab-category-menu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: center;
    padding: 0.5rem 0.5rem 1rem;
}
.tab-class-wrap .tab-category-menu ul li {
    flex: 0 1 20%;
    height: 4.2rem;
    text-align: center;
}
.tab-class-wrap .tab-category-menu li .btn-category {
    padding: 1.2rem 0.25rem 0.2rem;
    font-size: 1.5rem;
    font-weight: lighter;
}
.tab-class-wrap .tab-category-menu li .btn-category.fs-m {
    padding-top: 1.3rem;
}
.tab-class-wrap .tab-category-menu li.active .btn-category {
    border-bottom: 3px solid var(--color-black);
    font-weight: bold;
}
.btn-search-class-detail {
    display: block;
    width: 1.6rem;
    height: 1.6rem;
    background: url("../images/btn/btn_search_class_detail.svg") 50% 50% no-repeat;
    background-size: 100%;
}
.btn-array {
    display: block;
    width: 1.6rem;
    height: 1.6rem;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 100%;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.btn-array.thumbnail {
    background-image: url("../images/btn/btn_array_thumbnail.svg");
}
.btn-array.list {
    background-image: url("../images/btn/btn_array_list.svg");
}
.view-thumbnail,
.view-list {
    -webkit-transition: all .3s;
    transition: all .3s;
}
.view-thumbnail > ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem 0.5rem;
}
.view-thumbnail > ul > li {
    flex: calc(50% - 0.25rem) 0 0;
    width: calc(50% - 0.25rem);
}
.view-thumbnail .thumbnail-area {
    position: relative;
    margin-bottom: 1rem;
    padding-top: 100%;
    width: 100%;
    height: 0;
}
.view-thumbnail .thumbnail-area [class^="badge"] {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    z-index: 10;
}
.view-thumbnail .thumbnail-area .bottom-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    padding: 0 0.5rem 0 1rem;
    width: 100%;
    height: 3.5rem;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.04), #000);
}
.view-thumbnail .thumbnail-area .bottom-area > span {
    color: var(--color-white);
    font-size: 1.3rem;
    font-weight: lighter;
}
.view-thumbnail .thumbnail-area > a > img {
    position: absolute;
    top: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
}
.view-thumbnail .text-area {
    display: block;
    padding: 0 0.5rem;
}
.view-thumbnail .text-area .ellipsis2 {
    height: 4.4rem;
    font-size: 1.5rem;
    font-weight: bold;
}
.view-thumbnail .text-area .info-class {
    display: block;
    margin: 0.5rem 0 0.2rem;
    font-size: 1.3rem;
}
.view-thumbnail .text-area .info-class span:before {
    display: inline-block;
    margin: 0 0.5rem;
    width: 0.1rem;
    height: 1rem;
    background-color: var(--color-black);
    content: "";
}
.view-thumbnail .text-area .info-class span:first-child:before {
    content: none;
}
.view-thumbnail .text-area .date {
    color: var(--color-gray500);
    font-size: 1.3rem;
}
.view-thumbnail .text-area .price-area {
    margin: 1rem 0;
    height: 4.5rem;
}
.view-thumbnail .text-area .price-area .price-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 0.2rem;
    height: 1.8rem;
}
.view-thumbnail .text-area .price-area .price-top del {
    color: var(--color-gray500);
    font-size: 1.3rem;
    line-height: 1;
}
.view-thumbnail .text-area .price-area .price-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 2.7rem;
}
.view-thumbnail .text-area .price-area .price-bottom .discount-rate {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: bold;
}
.view-thumbnail .text-area .price-area .price-bottom .discount-rate > small {
    font-size: 1.3rem;
    font-weight: bold;
}
.view-thumbnail .text-area .price-area .price-bottom .real-price {
    font-size: 2rem;
    font-weight: bold;
}
.view-thumbnail .text-area .price-area .price-bottom .real-price > small {
    font-size: 1.8rem;
    font-weight: normal;
}
.view-list {
    margin: 0 -2rem;
    padding: 0;
}
.view-list > ul {
    padding: 0 2rem;
}
.view-list > ul > li {
    padding: 2rem 0;
    border-top: 1px dotted var(--color-gray300);
}
.view-list .top-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}
.view-list .top-area .name {
    font-size: 1.3rem;
}
.view-list .ellipsis {
    font-size: 1.5rem;
    font-weight: bold;
}
.view-list .class-time {
    margin: 0.5rem 0;
    font-size: 1.3rem;
    font-weight: lighter;
}
.view-list .class-time span:before {
    display: inline-block;
    margin: 0 0.5rem;
    width: 0.1rem;
    height: 1rem;
    background-color: var(--color-black);
    content: "";
}
.view-list .class-time span:first-child:before {
    content: none;
}
.view-list .information-area {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.view-list .information-area .date {
    color: var(--color-gray500);
    font-size: 1.3rem;
}
.view-list .information-area del {
    color: var(--color-gray500);
    font-size: 1.3rem;
}
.view-list .price-area {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 1rem;
    margin-bottom: 1rem;
}
.view-list .price-area em {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: bold;
}
.view-list .price-area em > small {
    font-size: 1.3rem;
    font-weight: bold;
}
.view-list .price-area strong {
    font-size: 2rem;
    font-weight: bold;
}
.view-list .price-area strong > small {
    font-size: 1.8rem;
    font-weight: normal;
}
.view-list .bottom-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.view-list .bottom-area .f-sorting {
    width: 16.5rem;
}

/* 클래스찾기 - 수강 금액 내역 */
table.price-table tbody th {
    padding: 0.5rem 0;
    font-size: 1.5rem;
    font-weight: lighter;
    text-align: left;
}
table.price-table tbody td {
    padding: 0.5rem 0;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: right;
}
table.price-table tbody:first-child tr th,
table.price-table tbody:first-child tr td {
    padding-top: 0;
}
table.price-table tbody tr:last-of-type th,
table.price-table tbody tr:last-of-type td {
    padding-bottom: 1.5rem;
}
table.price-table tfoot tr:first-child th,
table.price-table tfoot tr:first-child td {
    border-top: 1px solid var(--color-black);
}
table.price-table tfoot th {
    padding-top: 2rem;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: left;
    vertical-align: middle;
}
table.price-table tfoot td {
    padding-top: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    text-align: right;
    vertical-align: middle;
}
table.price-table .v-top {
    vertical-align: top;
}
table.price-table.line tbody tr:first-child th,
table.price-table.line tbody tr:first-child td {
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-black);
}
table.price-table.line tbody tr:last-of-type th
table.price-table.line tbody tr:last-of-type td {
    border-bottom: 1px solid var(--color-black);
}

/* 클래스찾기 - 수강후기 상세 */
.review-detail-wrap .review-title {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--color-gray200);
}
.review-detail-wrap .review-title > a {
    font-size: 1.9rem;
    font-weight: bold;
    text-decoration: underline;
}
.review-detail-wrap .review-title > p {
    font-size: 1.9rem;
    font-weight: bold;
}
.review-detail-wrap .review-contents {
    margin-bottom: 3rem;
}

/* swiper - 가로,세로100% + 인디케이터 타입 */
.swiper.gallery {
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.12);
}
.swiper.gallery .swiper-slide .img-wrap {
    padding-top: 100%;
    width: 100%;
    height: 0;
}
.swiper.gallery .swiper-slide .img-wrap img {
    position: absolute;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper.gallery .swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    bottom: 2rem;
    height: 0.7rem;
}
.swiper.gallery .swiper-pagination .swiper-pagination-bullet {
    display: block;
    margin: 0 0.35rem;
    width: 0.7rem;
    height: 0.7rem;
    background-color: var(--color-white);
    opacity: 1;
}
.swiper.gallery .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--color-black);
}

/* swiper - 가로100%, 세로224 + 인디케이터 타입 */
.swiper.gallery.multiroom {
    height: 22.4rem;
    border: 0;
}
.swiper.gallery.multiroom .swiper-slide .img-wrap {
    padding-top: 0;
    width: 100%;
    height: 22.4rem;
}
.swiper.gallery.multiroom .swiper-slide .img-wrap img {
    position: relative;
    top: auto;
    height: 22.4rem;
}

/* swiper - 클래스상세 */
.swiper.class {
    margin-top: 1rem;
    height: 20rem;
}
.swiper.class .swiper-slide .img-wrap {
    width: 100%;
    height: 20rem;
}
.swiper.class .swiper-slide .img-wrap img {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 20rem;
    border-radius: 15px;
    object-fit: cover;
}
.swiper.class .swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    bottom: 2rem;
    height: 0.7rem;
}
.swiper.class .swiper-pagination .swiper-pagination-bullet {
    display: block;
    margin: 0 0.35rem;
    width: 0.7rem;
    height: 0.7rem;
    background-color: var(--color-white);
    opacity: 1;
}
.swiper.class .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--color-black);
}

/* 클래스찾기 - 클래스상세 - 달력, 시간 선택 */
.calendar-wrap {
    margin-top: 3rem;
}
.calendar-wrap .calendar-head {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 1.5rem;
    height: 5rem;
    border-top: 3px solid var(--color-black);
}
.calendar-wrap .calendar-head > strong {
    width: 50%;
    font-size: 2rem;
    font-weight: bold;
    line-height: 4.5rem;
    text-align: center;
}
.calendar-wrap .calendar-head .btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4.7rem;
}
.calendar-wrap .calendar-head .btn > button {
    width: 1.2rem;
    height: 1.2rem;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 1.2rem;
}
.calendar-wrap .calendar-head .btn .btn-prev-month {
    background-image: url("../images/ico/ico_arrow_left.svg");
}
.calendar-wrap .calendar-head .btn .btn-next-month {
    background-image: url("../images/ico/ico_arrow_right3.svg");
}
.calendar-wrap .calendar-head .btn > button:disabled {
    pointer-events: none;
    opacity: 0.2;
}
.calendar-wrap .calendar-body {
    border-top: 1px solid var(--color-black);
}
.calendar-wrap .calendar-body table thead th {
    padding: 2rem 0 0.6rem;
    width: calc(100% / 7);
    font-size: 1.5rem;
    font-weight: normal;
    text-align: center;
}
.calendar-wrap .calendar-body table tbody td {
    padding: 0.5rem 0;
    width: calc(100% / 7);
    height: 3rem;
    font-size: 1.5rem;
    font-weight: lighter;
    text-align: center;
}
.calendar-wrap .calendar-body table tbody td button {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    color: var(--color-black);
    font-size: 1.5rem;
    font-weight: lighter;
    text-align: center;
}
.calendar-wrap .calendar-body table tbody td button.impossibility {
    color: var(--color-gray200);
}
.calendar-wrap .calendar-body table tbody td button.select,
.calendar-wrap .calendar-body table tbody td button.btn-cal-chc.select {
    background-color: var(--color-primary);
    color: var(--color-white);
}
.calendar-wrap.schedule {
    margin-top: 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-black);
}
.calendar-wrap.schedule .calendar-head {
    border-top: 0;
}
.calendar-wrap.schedule .calendar-body table tbody td {
    padding: 1.7rem 0;
    height: 6.8rem;
    font-size: 1.5rem;
}
.calendar-wrap.schedule .calendar-body table tbody td button {
    width: 3.4rem;
    height: 3.4rem;
    color: var(--color-gray500);
    font-size: 1.5rem;
    font-weight: lighter;
    line-height: 3.4rem;
}
.calendar-wrap.schedule .calendar-body table tbody td .day {
    display: block;
    position: relative;
    margin: 0 auto;
    width: 3.4rem;
    height: 3.4rem;
    color: var(--color-black);
    font-size: 1.5rem;
    font-weight: lighter;
    line-height: 3.4rem;
    text-align: center;
}
.calendar-wrap.schedule .calendar-body table tbody td .status-attend .day {
    font-weight: bold;
}
.calendar-wrap.schedule .calendar-body table tbody td .status-attend .day:before {
    position: absolute;
    top: 0.7rem;
    right: 0.3rem;
    z-index: 4;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 2.5px;
    background-color: var(--color-black);
    content: "";
}
.calendar-wrap.schedule .calendar-body table tbody td .status-miss .day {
    color: var(--color-gray500);
    font-weight: bold;
}
.calendar-wrap.schedule .calendar-body table tbody td .status-miss .day:before {
    position: absolute;
    top: 0.7rem;
    right: 0.3rem;
    z-index: 4;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 2.5px;
    background-color: var(--color-gray500);
    content: "";
}
.calendar-wrap.schedule .calendar-body table tbody td .status-class .day {
    color: var(--color-primary);
    font-weight: bold;
}
.calendar-wrap.schedule .calendar-body table tbody td .status-class .day:before {
    position: absolute;
    top: 0.7rem;
    right: 0.3rem;
    z-index: 4;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 2.5px;
    background-color: var(--color-primary);
    content: "";
}
.calendar-wrap.schedule .calendar-body table tbody td.active .day:before {
    content: none;
}
.calendar-wrap.schedule .calendar-body table tbody td.active .status-attend .day {
    border-radius: 50%;
    background-color: var(--color-black);
    color: var(--color-white);
}
.calendar-wrap.schedule .calendar-body table tbody td.active .status-miss .day {
    border-radius: 50%;
    background-color: var(--color-gray500);
    color: var(--color-white);
}
.calendar-wrap.schedule .calendar-body table tbody td.active .status-class .day {
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-white);
}
.calendar-wrap .select-time-area {
    overflow-y: hidden;
    overflow-x: scroll;
}
.calendar-wrap .select-time {
    display: flex;
    justify-content: left;
    align-items: center;
    flex-wrap: nowrap;
    margin-top: 2.5rem;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 9.3rem;
}
.calendar-wrap .select-time li {
    flex-shrink: 0;
    margin-right: 0.5rem;
}
.calendar-wrap .select-time li:last-of-type {
    margin-right: 0;
}
.calendar-wrap .select-time-area::-webkit-scrollbar,
.calendar-wrap .select-time-area::-webkit-scrollbar-thumb,
.calendar-wrap .select-time-area::-webkit-scrollbar-track {
    background: transparent;
}
.calendar-wrap .select-time-area::-webkit-scrollbar {
    height: 0;
}
@media only screen and (min-width: 1024px) {
    .calendar-wrap .select-time {
        height: 9.4rem;
    }
    .calendar-wrap .select-time-area::-webkit-scrollbar {
        height: 0.6rem;
    }
    .calendar-wrap .select-time-area::-webkit-scrollbar-thumb {
        background-color: #aaa;
        border-radius: 10px;
    }
    .calendar-wrap .select-time-area::-webkit-scrollbar-track {
        background-color: #fff;
    }
}
.calendar-wrap .select-time li .btn-select-time {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 11rem;
    height: 9.3rem;
    border-radius: 10px;
    border: 1px solid var(--color-gray300);
}
.calendar-wrap .select-time li .btn-select-time .status {
    color: var(--color-gray500);
    font-size: 1.5rem;
    font-weight: lighter;
}
.calendar-wrap .select-time li .btn-select-time .time {
    margin: 0.1rem 0 0.4rem;
    color: var(--color-gray500);
    font-size: 1.5rem;
    font-weight: bold;
}
.calendar-wrap .select-time li .btn-select-time .limit {
    color: var(--color-gray500);
    font-size: 1.3rem;
    font-weight: lighter;
}
.calendar-wrap .select-time li.active .btn-select-time {
    border: 2px solid var(--color-primary);
}
.calendar-wrap .select-time li.active .btn-select-time .status {
    color: var(--color-primary);
    font-weight: bold;
}
.calendar-wrap .select-time li.active .btn-select-time .time {
    color: var(--color-primary);
}
.calendar-wrap .select-time li.active .btn-select-time .limit {
    color: var(--color-primary);
}
.review-list li {
    padding: 2rem 0;
    border-top: 1px solid var(--color-gray200);
}
.review-list li:nth-of-type(1) {
    border-top: 0;
}

/* swiper - 포토리스트 공통 */
.swiper.review-photo-list {
    margin-top: 2rem;
    height: 9rem;
}
.swiper.review-photo-list .swiper-wrapper {
    height: 9rem;
}
.swiper.review-photo-list .swiper-slide {
    margin-right: 1rem;
    padding: 0;
    border: 0;
    width: auto;
    height: 9rem;
}
.swiper.review-photo-list .swiper-slide:last-of-type {
    margin-right: 0;
}
.swiper.review-photo-list .swiper-slide img {
    display: block;
    width: 9rem;
    height: 9rem;
    border-radius: 8px;
    object-fit: cover;
}

/* swiper - 추천클래스 */
.swiper.recommend-list {
    margin-top: 2rem;
    height: 24.4rem;
}
.swiper.recommend-list .swiper-wrapper {
    height: 24.4rem;
}
.swiper.recommend-list .swiper-slide {
    margin-right: 1rem;
    padding: 2rem 2rem 0;
    width: 22rem;
    height: 24.4rem;
    border: 1px solid var(--color-gray200);
}
.swiper.recommend-list .swiper-slide:last-of-type {
    margin-right: 0;
}
.recommend-list li .label-area {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 0.5rem;
}
.recommend-list li .ellipsis2 {
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    height: 4.5rem;
}
.recommend-list li .date {
    font-size: 1.3rem;
    font-weight: lighter;
}
.recommend-list li .info-class {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: lighter;
}
.recommend-list li .price-area {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 1rem;
    height: 5.7rem;
}
.recommend-list li .price-area {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 5.2rem;
}
.recommend-list li .price-area > em {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: bold;
}
.recommend-list li .price-area > em > small {
    font-size: 1.3rem;
}
.recommend-list li .price-area .real-price {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    height: 5.2rem;
}
.recommend-list li .price-area .real-price > del {
    color: var(--color-gray500);
    font-size: 1.3rem;
    font-weight: lighter;
    line-height: 1.2;
}
.recommend-list li .price-area .real-price > strong {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.2;
}
.recommend-list li .price-area .real-price > strong > small {
    font-size: 1.8rem;
    font-weight: normal;
}
.recommend-list li .bottom-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 1rem 0 2rem;
    width: 100%;
    height: 5rem;
    border-top: 1px dotted var(--color-gray300);
}
.recommend-list li .bottom-area > span {
    font-size: 1.3rem;
}
.turn-information {
    display: flex;
    justify-content: left;
    align-items: stretch;
    flex-wrap: wrap;
    padding-left: 0.3rem;
}
.turn-information dt {
    flex: 4.6rem 0 0;
    position: relative;
    padding-left: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
}
.turn-information dt:before {
    display: block;
    position: absolute;
    top: 0.7rem;
    left: -0.1rem;
    height: 100%;
    border-left: 1px dotted var(--color-black);
    content: "";
}
.turn-information dt:last-of-type:before {
    content: none;
}
.turn-information dt:after {
    display: block;
    position: absolute;
    top: 0.7rem;
    left: -0.3rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--color-black);
    content: "";
}
.turn-information dd {
    position: relative;
    flex: calc(100% - 5rem) 0 1;
    padding: 0 0 2.5rem 1rem;
    font-size: 1.5rem;
}
/* [D]23.04.25 주석처리 */
/* .turn-information dd:last-of-type {
    padding-bottom: 0;
} */
.turn-information dd:before {
    display: block;
    position: absolute;
    top: 0.1rem;
    left: 0;
    color: var(--color-black);
    font-size: 1.3rem;
    content: "⫶";
}
/* [D]23.04.25 추가 start */
.turn-information dd.class-end::after {
    content: '수업이 종료되었습니다.';
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% + 14%);
    height: calc(100% - 2.5rem);
    position: absolute;
    top: 0;
    left: -14%;
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
}
/* [D]23.04.25 추가 end */

/* 클래스찾기 - 클래스상세 검색 */
.search-word-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: -2rem -2rem 2rem;
    height: 5.3rem;
    border-bottom: 1px solid var(--color-gray200);
}
.search-word-wrap .search-word-list {
    display: flex;
    justify-content: left;
    align-items: center;
    flex-wrap: nowrap;
    gap: 2rem;
    overflow-y: hidden;
    overflow-x: scroll;
    padding-left: 2rem;
    width: calc(100% - 4rem);
    min-width: calc(100% - 4rem);
    max-width: 100%;
}
.search-word-wrap .search-word-list button.btn-word {
    flex-shrink: 0;
    padding-right: 1.5rem;
    background: url("../images/btn/btn_close_popup.svg") 100% 50% no-repeat;
    background-size: 1rem;
    font-size: 1.5rem;
}
.search-word-wrap .search-word-list::-webkit-scrollbar,
.search-word-wrap .search-word-list::-webkit-scrollbar-thumb,
.search-word-wrap .search-word-list::-webkit-scrollbar-track {
    background: transparent;
}
.search-word-wrap .search-word-list::-webkit-scrollbar {
    height: 0;
}
@media only screen and (min-width: 1024px) {
    .search-word-wrap .search-word-list {
        height: 5.2rem;
    }
    .search-word-wrap .search-word-list::-webkit-scrollbar {
        height: 0.6rem;
    }
    .search-word-wrap .search-word-list::-webkit-scrollbar-thumb {
        background-color: #aaa;
        border-radius: 10px;
    }
    .search-word-wrap .search-word-list::-webkit-scrollbar-track {
        background-color: #fff;
    }
}
.search-word-wrap .btn-reset {
    margin-right: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background: url("../images/btn/btn_reset.svg") 50% 50% no-repeat;
    background-size: 100%;
}
.select-word {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}
.select-word li {
    flex: calc(50% - 0.5rem) 0 0;
}
.select-word.three {
    justify-content: flex-start;
}
.select-word.three li {
    flex: calc((100% - 2rem) / 3) 0 0;
}
/* 22.10.17 한유진 추가 start */
.select-word.free li {
    flex: auto;
}
/* 22.10.17 한유진 추가 end */
.select-word li.w-full {
    flex: 100% 0 0;
}
.select-word.weekly {
    gap: 0rem;
}
.select-word.weekly li {
    flex: 4.7rem 0 0;
    text-align: center;
}
.select-word.weekly li .f-check-btn > label,
.select-word.weekly li .f-check-btn input[type="checkbox"] + label {
    margin: 0 auto;
    width: 4.7rem;
    height: 4.5rem;
    border-radius: 50%;
    line-height: 4.5rem;
}
.select-word li .w65{
    flex: 65% 0 0;
}
.select-word li .w35{
    flex: 35% 0 0;
}

/* 이용약관, 개인정보 */
.footer-page {
    margin-top: 2rem;
    color: var(--color-gray500) !important;
    font-size: 1.3rem !important;
    font-weight: lighter !important;
    line-height: 2.2rem !important;
}
.footer-page strong {
    color: var(--color-black) !important;
    font-size: 1.5rem !important;
}
.footer-page .contents-common {
    color: var(--color-black) !important;
    line-height: 2.2rem !important;
}
.footer-page .policy-list {
    margin-top: 3rem
}
.footer-page .policy-list li {
    margin-top: 2rem;
}
.footer-page .policy-list li:nth-of-type(1) {
    margin-top: 0;
}
.footer-page .policy-list li > a {
    display: block;
    font-size: 1.3rem !important;
    font-weight: lighter !important;
    line-height: 2.2rem !important;
}
.footer-page .policy-contents {
    margin-top: 3rem;
    border-top: 1px solid var(--color-gray200);
}
.footer-page .policy-contents li {
    padding: 3rem 0;
    border-bottom: 1px solid var(--color-gray200);
    line-height: 2.2rem !important;
}

/* 점검 일정 */
.notice-schedule {
    margin-top: 7rem;
    width: 100%;
    border-top: 2px solid var(--color-black);
    border-bottom: 2px solid var(--color-black);
}
.notice-schedule dt {
    padding: 2rem 0 1rem;
    font-size: 1.3rem;
    font-weight: lighter;
}
.notice-schedule dd {
    padding-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: bold;
}
.notice-schedule dd:nth-of-type(1) {
    border-bottom: 1px dotted var(--color-gray300);
}

/* 주문결제 */
.payment-subject-list {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
}
.payment-subject-list li {
    flex: calc(50% - 0.25rem) 0 0;
}
.select-group {
    margin: 2rem 0 1.5rem;
}
.select-group li:first-child {
    margin-top: 0;
}
.select-group li {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding: 1.5rem 0 1.5rem 2rem;
    height: 5.2rem;
    border-radius: 12px;
    border: 1px solid var(--color-gray200);
    color: var(--color-gray500);
    font-size: 1.5rem;
    font-weight: lighter;
}
.select-group li span {
    font-size: 1.5rem;
    line-height: 2rem;
}
.select-group li .f-check label {
    font-weight: bold;
}
.select-group li .f-check input:checked + label {
    color: var(--color-primary);
}
.select-group li.active {
    border: 2px solid var(--color-secondary);
}
.select-group li.between {
    justify-content: space-between;
    padding-right: 2rem;
}
.select-group li.between .f-select {
    width: 7rem;
}

/* 메인 - 스와이퍼 공통 */
.swiper-wrapper .swiper-slide .img-wrap.round {
    overflow: hidden;
    position: relative;
    border-radius: 15px;
}

/* 메인 - 스와이퍼 영역 */
.main-swiper {
    overflow: hidden;
    position: relative;
    margin-bottom: 2rem;
    width: 100%;
    height: 100%;
}
.main-swiper .txt-wrap {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 0 3rem 2.5rem;
    width: 100%;
    color: var(--color-white);
    background: linear-gradient(transparent, rgba(0,0,0,0.4));
}
.main-swiper .txt-wrap > h3 {
    position: relative;
    z-index: 0;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: bold;
}
.main-swiper .txt-wrap > h3 > i {
    display: inline-block;
    padding: 0 0.5rem 0.3rem;
    line-height: 3.7rem;
    background-color: var(--color-black);
}
.main-swiper .txt-wrap > h3 > i + span {
    display: block;
    margin-top: 0.1rem;
    padding: 0 0.5rem;
    line-height: 3.9rem;
}
.main-swiper .txt-wrap > .btn-link-new.text {
    display: inline-block;
    position: relative;
    padding-left: 0.5rem;
}
.main-swiper .txt-wrap > .btn-link-new.text > span {
    background: url("../images/main/ico_arrow_right_white.svg") 100% 50% no-repeat !important;
}
.main-swiper-control {
    right: 3rem;
    bottom: 2.5rem;
    z-index: 1;
}
.main-swiper-pagination {
    width: auto;
    color: var(--color-white);
}
.main-swiper-pagination span {
    font-size: 1.3rem;
    font-weight: lighter;
    color: var(--color-white);
}
.main-swiper .swiper-button-play {
    width: 1.6rem;
    height: 1.6rem;
    background: url("../images/main/btn_play.svg") 100% 50% no-repeat;
    opacity: 0.6;
}
.main-swiper .swiper-button-play.active {
    opacity: 1;
}
.main-swiper .swiper-button-pause {
    width: 1.6rem;
    height: 1.6rem;
    background: url("../images/main/btn_stop.svg") 100% 50% no-repeat;
    opacity: 0.6;
}
.main-swiper .swiper-button-pause.active {
    opacity: 1;
}
.main-swiper .img-wrap {
    position: relative;
    padding-top: 100%;
    width: 100%;
    height: 0;
}
.main-swiper .img-wrap img {
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 메인 - 강의 타이틀 영역 - 공통 */
.main_sub_banner_wrap {
    width: 100%;
    height: 48vw;
    border-radius: .8rem;
    overflow: hidden;
    margin: 2.5rem 0 1.5rem;
}
/* [D]23.05.12 추가 start */
@media only screen and (min-width: 1024px) {
    .main_sub_banner_wrap {
        height: 18rem;
    }
}
/* [D]23.05.12 추가 end */
.main_sub_banner_wrap a {
    display: block;
    width: 100%;
    height: 100%;
}
.main_sub_banner_wrap a img {
    width: 100%;
    height: 100%;
}
.main_sub_banner_wrap img {
    width: 100%;
    height: 100%;
}
/* [D]23.05.11 수정 end */

/* [D]23.05.11 수정 start */
/* 메인 - typ1 클래스 영역 */
.typ1-class .swiper-typ1-class {
    margin-right: -2rem;
    padding-right: 2rem;
}
.typ1-class .swiper-slide {
    width: 26rem;
    height: auto;
}
.typ1-class .swiper-slide ~ .swiper-slide {
    margin-left: 1rem;
}
.typ1-class .swiper-slide .img-wrap {
    display: block;
    padding-top: 100%;
    width: 100%;
    height: 0;
}
.typ1-class .swiper-slide .img-wrap img {
    position: absolute;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.typ1-class .btn-add-wish {
    right: 1rem;
    bottom: 1rem;
    z-index: 10; /* [D]24.08.19 수정 */
}
.typ1-class .txt-wrap .d-flex p:nth-of-type(1) {
    color: var(--color-gray500);
}
.typ1-class .txt-wrap .class-title {
    min-height: 4.5rem;
}
.typ1-class .txt-wrap .price-wrap {
    justify-content: flex-end !important;
    align-items: baseline !important;
}
.typ1-class .txt-wrap .price-wrap b {
    color: var(--color-primary);
}
.typ1-class .txt-wrap .price-wrap del {
    color: var(--color-gray500);
    margin-left: auto;
    margin-right: 0.5rem;
}
/* [D]23.05.11 수정 end */

/* 메인 - 프라이빗 클래스 영역 */
.m-wrap > main > section.request-banner {
    padding: 3rem 0 1rem;
}
.request-banner .request-banner-wrap {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    padding: 3.5rem 2rem 3.8rem;
    background: url("../images/temp/banner_main.jpg") 50% 50% no-repeat;
    background-size: cover;
    z-index: 1;
}
.request-banner .request-banner-wrap::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(0,0,0,0.5), transparent);
    z-index: -1;
}
.request-banner .request-banner-wrap p {
    color: var(--color-white);
    font-size: 1.6rem;
}
.request-banner .request-banner-wrap .btn-link-new.text {
    width: 8rem;
    height: 3rem;
    background-color: var(--color-black);
    color: var(--color-white);
}
.request-banner .request-banner-wrap .btn-link-new.text > span {
    display: inline-block;
    height: 3rem;
    background: url("../images/main/ico_arrow_right_white.svg") 100% 50% no-repeat !important;
    line-height: 3rem;
}

/* [D]23.05.11 수정 start */
/* 메인 - typ2 클래스 영역 */
.typ2-class .swiper-typ2-class {
    margin-right: -2rem;
    padding-right: 2rem;
    height: 26rem;
}
.typ2-class .swiper-slide {
    width: 14rem;
    height: auto;
}
.typ2-class .swiper-slide ~ .swiper-slide {
    margin-left: 1rem;
}
.typ2-class .txt-wrap .class-title {
    min-height: 4.5rem;
}
.typ2-class .swiper-slide .img-wrap {
    display: block;
    padding-top: 100%;
    width: 100%;
    height: 0;
}
.typ2-class .swiper-slide .img-wrap img {
    position: absolute;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.typ2-class .btn-add-wish {
    right: 0.7rem;
    bottom: 0.7rem;
    z-index: 10; /* [D]24.08.19 수정 */
}
.typ2-class .txt-wrap .d-flex p:nth-of-type(1) {
    color: var(--color-primary);
    margin-left: 0;
}

/* 메인 - typ3 클래스 영역 */
.typ3-class .swiper-typ3-class {
    margin-right: -2rem;
    padding-right: 2rem;
}
.typ3-class .swiper-slide {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    column-gap: 1rem;
    row-gap: 2rem;
    width: 14rem;
    height: auto;
}
.typ3-class .swiper-slide > div {
    position: relative;
    width: calc((100% - 2rem) / 3);
}
.typ3-class .txt-wrap .class-title {
    min-height: 3.5rem;
    font-size: 1.2rem;
}
.typ3-class .swiper-slide .img-wrap {
    display: block;
    padding-top: 100%;
    width: 100%;
    height: 0;
}
.typ3-class .swiper-slide .img-wrap img {
    position: absolute;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.typ3-class .btn-add-wish {
    right: 0.7rem;
    bottom: 0.7rem;
    z-index: 10; /* [D]24.08.19 수정 */
}
.typ3-class .txt-wrap .d-flex p:nth-of-type(1) {
    color: var(--color-primary);
    margin-left: 0;
}
/* [D]23.05.11 추가 start */
.typ3-class .typ3-class-pagination {
    margin-top: 2.5rem;
    text-align: center;
}
.typ3-class .typ3-class-pagination span {
    width: .7rem;
    height: .7rem;
    border-radius: 3.5rem;
}
.typ3-class .typ3-class-pagination span.swiper-pagination-bullet-active {
    background: #000;
}

/* 메인 - typ5 클래스 영역 */
.typ5-class .swiper-typ5-class {
    margin-right: -2rem;
    padding-right: 2rem;
}
.typ5-class .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 2.5rem;
    width: calc(100% - 5.5rem);
    height: auto;
}
.typ5-class .swiper-slide ~ .swiper-slide {
    margin-left: 1rem;
}
.typ5-class .swiper-slide > div {
    position: relative;
    display: flex;
    gap: 1.5rem;
    width: 100%;
}
.typ5-class .txt-wrap .class-title {
    width: 100%;
    min-height: 4rem;
    font-size: 1.3rem;
}
.typ5-class .swiper-slide .img-wrap {
    display: block;
    width: 10rem;
    height: 10rem;
}
.typ5-class .swiper-slide .img-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.typ5-class .btn-add-wish {
    right: 0.7rem;
    bottom: 0.7rem;
    z-index: 10; /* [D]24.08.19 수정 */
}
.typ5-class .swiper-slide .txt-wrap {
    width: calc(100% - 11.5rem);
}
.typ5-class .txt-wrap .d-flex p:nth-of-type(1) {
    color: var(--color-primary);
    margin-left: 0;
}

/* 메인 - typ6 클래스 영역 */
.typ6-class .typ6-class-list {
    width: calc(100% - 1rem);
    margin: 1.5rem auto .5rem;
    border-radius: 1.5rem;
    overflow: hidden;
    padding: 1.5rem;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.typ6-class .typ6-class-list li {
    display: flex;
    align-items: flex-start;
    width: 100%;
    height: auto;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.typ6-class .txt-wrap .class-title {
    min-height: 3.8rem;
    font-size: 1.3rem;
}
.typ6-class .typ6-class-list li .img-wrap {
    position: relative;
    display: block;
    width: 9rem;
    height: 9rem;
}
.typ6-class .typ6-class-list li .img-wrap.round {
    border-radius: .8rem;
    overflow: hidden;
}
.typ6-class .typ6-class-list li .img-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.typ6-class .btn-add-wish {
    right: 0.7rem;
    bottom: 0.7rem;
    z-index: 10; /* [D]24.08.19 수정 */
}
.typ6-class .typ6-class-list li .txt-wrap {
    width: calc(100% - 10.5rem);
}
.typ6-class .typ6-class-list li .txt-wrap .d-flex p:nth-of-type(1) {
    color: var(--color-primary);
    margin-left: 0;
    font-size: 1.2rem;
}
.typ6-class .txt-wrap .price-wrap {
    justify-content: flex-end !important;
    align-items: baseline !important;
}
.typ6-class .txt-wrap .price-wrap b {
    color: var(--color-primary);
}
.typ6-class .txt-wrap .price-wrap b i {
    font-size: 1.3rem;
}
.typ6-class .txt-wrap .price-wrap del {
    color: var(--color-gray500);
    margin-left: auto;
    margin-right: 0.5rem;
    font-size: 1.1rem;
}
.typ6-class .txt-wrap .price-wrap strong {
    font-size: 1.3rem;
}

/* 메인 - typ7 클래스 영역 */
.typ7-class .swiper-typ7-class {
    margin-right: -2rem;
    padding-right: 2rem;
}
.typ7-class .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 2.5rem;
    width: calc(100% - 3rem);
    height: auto;
    border: .1rem solid #eee;
    border-radius: 0.8rem;
    padding: 1.5rem;
}
.typ7-class .swiper-slide ~ .swiper-slide {
    margin-left: 1rem;
}
.typ7-class .swiper-slide > div {
    position: relative;
    display: flex;
    width: 100%;
    gap: 1rem;
}
.typ7-class .txt-wrap .class-title {
    min-height: 3.8rem;
    font-size: 1.3rem;
}
.typ7-class .swiper-slide .img-wrap {
    display: block;
    width: 8rem;
    height: 8rem;
}
.typ7-class .swiper-slide .img-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.typ7-class .btn-add-wish {
    right: 0.7rem;
    bottom: 0.7rem;
    z-index: 10; /* [D]24.08.19 수정 */
}
.typ7-class .txt-wrap {
    width: calc(100% - 9.5rem);
}
.typ7-class .txt-wrap .d-flex p:nth-of-type(1) {
    color: var(--color-primary);
    margin-left: 0;
    font-size: 1.2rem;
}
.typ7-class .txt-wrap .price-wrap {
    justify-content: flex-end !important;
    align-items: baseline !important;
}
.typ7-class .txt-wrap .price-wrap b {
    color: var(--color-primary);
}
.typ7-class .txt-wrap .price-wrap b i {
    font-size: 1.3rem;
}
.typ7-class .txt-wrap .price-wrap del {
    color: var(--color-gray500);
    margin-left: auto;
    margin-right: 0.5rem;
    font-size: 1.1rem;
}
.typ7-class .txt-wrap .price-wrap strong {
    font-size: 1.3rem;
}
/* [D]23.05.11 추가 end */
/* [D]23.05.11 수정 end */

/* 관심키워드 설정 팝업 */
.keyword-pop {
    padding-bottom: 3rem;
}
.keyword-pop fieldset + p {
    margin-top: 3rem;
}
.keyword-pop .d-flex {
    flex-flow: row wrap;
}
.keyword-pop .d-flex + .d-flex {
    margin-top: 0.5rem;
}
.keyword-pop :not(.keyword-wrap) .f-check-icon {
    margin-right: 1.8rem;
}
.keyword-pop :not(.keyword-wrap) .f-check-icon:nth-last-of-type(1) {
    margin-right: 0;
}
.keyword-pop .keyword-wrap .f-check-icon {
    margin-top: 0.5rem;
}
.keyword-pop .f-check-icon input {
    width: 1px;
    height: 1px;
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: -1;
}
.keyword-pop .f-check-icon input + label {
    position: relative;
    color: var(--color-gray200);
    z-index: 1;
}
.keyword-pop .f-check-icon input + label i {
    vertical-align: top;
    margin-left: 0.2rem;
}
.keyword-pop .f-check-icon input:checked + label {
    color: var(--color-black);
}
.keyword-pop .f-check-icon input:checked + label.icon-type01::after {
    content: '';
    display: block;
    width: 2.2rem;
    height: 2.2rem;
    position: absolute;
    bottom: 1.4rem;
    right: -0.8rem;
    z-index: -1;
}
.keyword-pop .f-check-icon input:checked + label.icon-type02::after {
    content:'';
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    position: absolute;
    bottom: 1.3rem;
    right: -1rem;
    z-index: -1;
}
.keyword-pop .f-check-icon input:checked + label.icon-type01.icon01::after {
    background: url("../images/main/ico_popup_input_01.svg") 100% 50% no-repeat;
}
.keyword-pop .f-check-icon input:checked + label.icon-type01.icon02::after {
    background: url("../images/main/ico_popup_input_02.svg") 100% 50% no-repeat;
}
.keyword-pop .f-check-icon input:checked + label.icon-type01.icon03::after {
    background: url("../images/main/ico_popup_input_03.svg") 100% 50% no-repeat;
}
.keyword-pop .f-check-icon input:checked + label.icon-type01.icon04::after {
    background: url("../images/main/ico_popup_input_04.svg") 100% 50% no-repeat;
}
.keyword-pop .f-check-icon input:checked + label.icon-type01.icon05::after {
    background: url("../images/main/ico_popup_input_05.svg") 100% 50% no-repeat;
}
.keyword-pop .f-check-icon input:checked + label.icon-type01.icon06::after {
    background: url("../images/main/ico_popup_input_06.svg") 100% 50% no-repeat;
}
.keyword-pop .f-check-icon input:checked + label.icon-type02.icon01::after {
    background: url("../images/main/ico_popup_input_07.svg") 100% 50% no-repeat;
}
.keyword-pop .f-check-icon input:checked + label.icon-type02.icon02::after {
    background: url("../images/main/ico_popup_input_08.svg") 100% 50% no-repeat;
}
.keyword-pop .f-check-icon input:checked + label.icon-type02.icon03::after {
    background: url("../images/main/ico_popup_input_09.svg") 100% 50% no-repeat;
}
.keyword-pop .f-check-icon input:checked + label.icon-type02.icon04::after {
    background: url("../images/main/ico_popup_input_10.svg") 100% 50% no-repeat;
}
.keyword-pop .f-check-icon input:checked + label.icon-type02.icon05::after {
    background: url("../images/main/ico_popup_input_11.svg") 100% 50% no-repeat;
}
.keyword-pop .f-check-icon input:checked + label.icon-type02.icon06::after {
    background: url("../images/main/ico_popup_input_12.svg") 100% 50% no-repeat;
}
.keyword-pop .f-check-icon input:checked + label.icon-type02.icon07::after {
    background: url("../images/main/ico_popup_input_13.svg") 100% 50% no-repeat;
}
.keyword-pop .f-check-icon input:checked + label.icon-type02.icon08::after {
    background: url("../images/main/ico_popup_input_14.svg") 100% 50% no-repeat;
}
.keyword-pop .f-check-icon input:checked + label.icon-type02.icon09::after {
    background: url("../images/main/ico_popup_input_15.svg") 100% 50% no-repeat;
}
.keyword-pop .f-check-icon input:checked + label.icon-type02.icon10::after {
    background: url("../images/main/ico_popup_input_16.svg") 100% 50% no-repeat;
}

/* 메인 - 스와이퍼 팝업 */
.main-popup-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: transparent;
}
@media only screen and (min-width: 1024px) {
    .main-popup-wrap {
        width: 375px;
        min-width: 375px;
        max-width: 375px;
    }
}
.main-popup-wrap .inner-wrap {
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: center;
    position: relative;
    z-index: 1050;
    margin-top: -9rem;
    padding: 0 2rem;
    width: 60%;
    min-width: 360px;
    background-color: transparent;
}
@media only screen and (min-width: 1024px) {
    .main-popup-wrap .inner-wrap {
        width: 100%;
    }
}
.main-popup-wrap .btn-set {
    margin-bottom: 1.5rem;
}
.main-popup-wrap .btn-set .btn-close-popup {
    display: block;
    width: 1.6rem;
    height: 1.6rem;
    background: url("../images/btn/btn_close_popup_white.svg") 50% 50% no-repeat;
    background-size: 1.6rem;
}
.main-popup-wrap .btn-set .btn-close-today {
    padding: 0;
    width: auto;
    height: auto;
    /*background: url("../images/btn/btn_check2.svg") 0 50% no-repeat;*/
    background-size: 2rem;
    color: var(--color-white);
    font-size: 1.3rem;
    font-weight: lighter;
    line-height: 1.6rem;
}

/* swiper */
.swiper.main-popup {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}
.swiper.main-popup .swiper-slide .img-wrap {
    display: block;
    padding-top: 100%;
    width: 100%;
    height: 0;
}
.swiper.main-popup .swiper-slide .img-wrap img {
    position: absolute;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
}
.swiper.main-popup .swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    top: 93%;
    height: 0.7rem;
}
.swiper.main-popup .swiper-pagination .swiper-pagination-bullet {
    display: block;
    margin: 0 0.35rem;
    width: 0.7rem;
    height: 0.7rem;
    background-color: var(--color-white);
    opacity: 1;
}
.swiper.main-popup .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--color-black);
}
.swiper.main-popup .btn-area {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 10;
}
.swiper.main-popup .btn-stop {
    display: block;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.4) url("../images/btn/btn_swiper_stop.svg") 50% 50% no-repeat;
    background-size: 1.6rem;
}
.swiper.main-popup .btn-stop.active {
    background-image: url("../images/btn/btn_swiper_play.svg");
}

/* 메인 & 클래스검색(푸터 연결 팝업) 강좌 종류 메뉴 */
.class-subject {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.class-subject [class^="ico-"] {
    margin-bottom: 0.2rem
}
/* 마이페이지 - 서브메인 */
.my-link {
    display: block;
    margin-top: 0.5rem;
    font-size: 2.9rem;
    font-weight: bolder;
    line-height: 3.5rem;
}
.btn-view-receipt {
    display: inline-block;
    width: 3.5rem;
    height: 3.5rem;
    background: url("../images/contents/ico_mobile_receipt.svg") 50% 50% no-repeat;
    background-size: 100%;
}
.btn-my-cs,
.btn-my-notice {
    display: block;
    width: 100%;
    height: 5.2rem;
    text-align: center;
}
.btn-my-cs > span {
    display: inline-block;
    padding-left: 2.1rem;
    background: url("../images/contents/ico_headset.svg") 0 50% no-repeat;
    background-size: 1.6;
    font-size: 1.5rem;
    line-height: 5.2rem;
}
.btn-my-notice > span {
    display: inline-block;
    padding-left: 2.1rem;
    background: url("../images/contents/ico_speaker.svg") 0 50% no-repeat;
    background-size: 1.6;
    font-size: 1.5rem;
    line-height: 5.2rem;
}
.my-class-detail {
    margin-top: -9rem;
}
.my-class-detail li {
    padding: 2rem 0;
    border-top: 1px dotted var(--color-gray300);
}
.my-class-detail li:first-child {
    border-top: 0;
}
.swiper.class-schedule-summary {
    position: relative;
    margin: 2rem 0 10rem;
    height: 8.9rem;
    border-bottom: 1px dotted var(--color-gray300);
}
.swiper.class-schedule-summary .swiper-wrapper {
    margin-bottom: 1rem;
    height: 5.2rem;
}
.swiper.class-schedule-summary .swiper-slide {
    height: 5.2rem;
}
.swiper.class-schedule-summary .swiper-button-prev {
    top: 2.5rem;
    left: 0;
    width: 1.6rem;
    height: 1.6rem;
    background: url("../images/ico/ico_arrow_left2.svg") 50% 50% no-repeat;
    background-size: 1.6rem;
}
.swiper.class-schedule-summary .swiper-button-next {
    top: 2.5rem;
    right: 0;
    width: 1.6rem;
    height: 1.6rem;
    background: url("../images/ico/ico_arrow_right4.svg") 50% 50% no-repeat;
    background-size: 1.6rem;
}
.swiper.class-schedule-summary .swiper-slide > table {
    margin: 0 auto;
    width: calc(100% - 3.6rem);
}
.swiper.class-schedule-summary .swiper-slide > table thead th {
    padding-bottom: 0.2rem;
    color: var(--color-gray500);
    font-size: 1.1rem;
    font-weight: lighter;
    line-height: 1;
    text-align: center;
}
.swiper.class-schedule-summary .swiper-slide > table tbody td {
    overflow: hidden;
    padding-top: 0.3rem;
    height: 5.6rem;
    text-align: center;
    vertical-align: top;
}
.swiper.class-schedule-summary .swiper-slide > table tbody td > button {
    display: block;
    width: 100%;
    text-align: center;
}
.swiper.class-schedule-summary .swiper-slide > table tbody td .day {
    display: block;
    position: relative;
    margin: 0 auto;
    width: 3.4rem;
    height: 3.4rem;
    color: var(--color-black);
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 3.4rem;
    text-align: center;
}
.swiper.class-schedule-summary .swiper-slide > table tbody td .status-attend .day:before {
    position: absolute;
    top: 0.7rem;
    right: 0.3rem;
    z-index: 4;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 2.5px;
    background-color: var(--color-black);
    content: "";
}
.swiper.class-schedule-summary .swiper-slide > table tbody td .status-miss .day {
    color: var(--color-gray500);
}
.swiper.class-schedule-summary .swiper-slide > table tbody td .status-miss .day:before {
    position: absolute;
    top: 0.7rem;
    right: 0.3rem;
    z-index: 4;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 2.5px;
    background-color: var(--color-gray500);
    content: "";
}
.swiper.class-schedule-summary .swiper-slide > table tbody td .status-class .day {
    color: var(--color-primary);
}
.swiper.class-schedule-summary .swiper-slide > table tbody td .status-class .day:before {
    position: absolute;
    top: 0.7rem;
    right: 0.3rem;
    z-index: 4;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 2.5px;
    background-color: var(--color-primary);
    content: "";
}
.swiper.class-schedule-summary .swiper-slide > table tbody td.active .day:before {
    content: none;
}
.swiper.class-schedule-summary .swiper-slide > table tbody td.active .status-attend .day {
    border-radius: 50%;
    background-color: var(--color-black);
    color: var(--color-white);
}
.swiper.class-schedule-summary .swiper-slide > table tbody td.active .status-miss .day {
    border-radius: 50%;
    background-color: var(--color-gray500);
    color: var(--color-white);
}
.swiper.class-schedule-summary .swiper-slide > table tbody td.active .status-class .day {
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-white);
}
.legend-color {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
}
.legend-color .color-class,
.legend-color .color-attend,
.legend-color .color-miss {
    font-size: 1.2rem;
}
.legend-color .color-class:before,
.legend-color .color-attend:before,
.legend-color .color-miss:before {
    display: inline-block;
    margin-right: 0.3rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 2.5px;
    vertical-align: middle;
    content: "";
}
.legend-color .color-class:before {
    background-color: var(--color-primary);
}
.legend-color .color-attend:before {
    background-color: var(--color-black);
}
.legend-color .color-miss:before {
    background-color: var(--color-gray500);
}

/* swiper - 마이페이지 - 모바일 수강증 */
.swiper.mobile-receipt {
    margin-bottom: 1.5rem;
    height: 50rem;
}
.swiper.mobile-receipt .swiper-wrapper {
    height: 50rem;
}
.swiper.mobile-receipt .swiper-slide {
    width: 100%;
    height: 50rem;
}

/* 마이페이지 - 모바일 수강증 */
.mobile-receipt li .attend-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-top: 2px solid var(--color-black);
    border-bottom: 2px solid var(--color-black);
}
.mobile-receipt li .attend-wrap .comment {
    width: calc(50% - 0.5rem);
    font-size: 1.3rem;
    text-align: center;
}
.mobile-receipt li .attend-wrap .timer {
    width: calc(50% - 0.5rem);
    font-size: 1.1rem;
    text-align: center;
}
.mobile-receipt li .attend-wrap .timer strong {
    display: block;
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}
.mobile-receipt li .attend-wrap .btn-attend-condition,
.mobile-receipt li .attend-wrap .btn-attend-check {
    display: block;
    width: calc(50% - 0.5rem);
    height: 5.2rem;
    font-size: 1.5rem;
    line-height: 5.2rem;
    text-align: center;
}
.mobile-receipt li .attend-wrap .btn-attend-condition span,
.mobile-receipt li .attend-wrap .btn-attend-check span {
    display: inline-block;
    padding-left: 2.1rem;
    height: 5.2rem;
    background-position: 0 50%;
    background-repeat: no-repeat;
    background-size: 1.6rem;
    font-size: 1.5rem;
    line-height: 5.2rem;
}
.mobile-receipt li .attend-wrap .btn-attend-condition span {
    background-image: url("../images/ico/ico_calendar_check.svg");
}
.mobile-receipt li .attend-wrap .btn-attend-check span {
    background-image: url("../images/ico/ico_calendar2.svg");
}
.mobile-receipt li .receipt-wrap {
    position: relative;
    margin-bottom: 1.5rem;
    padding: 1.5rem 0 1.5rem 2rem;
    width: 100%;
    height: 42.9rem;
    border-radius: 4px;
    background-color: var(--color-gray100);
}
.mobile-receipt li .receipt-wrap .btn-del-receipt {
    font-size: 1.3rem;
    font-weight: bold;
}
.mobile-receipt li .receipt-wrap .table-wrap {
    overflow-y: auto;
    overflow-x: hidden;
    height: 38rem;
    padding-right: 2rem;
}
.mobile-receipt li .receipt-wrap .table-wrap tr:first-child th,
.mobile-receipt li .receipt-wrap .table-wrap tr:first-child td {
    padding-top: 0;
}
.mobile-receipt li .receipt-wrap .table-wrap tr th,
.mobile-receipt li .receipt-wrap .table-wrap tr td {
    padding: 0.5rem 0;
    font-size: 1.5rem;
    font-weight: normal;
    text-align: left;
    vertical-align: top;
}

/* 마이페이지 - 팝업 내의 레이어 팝업 */
.my-popup-wrap.active {
    visibility: visible;
    top: 0;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
}
.my-popup-wrap {
    visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 45%;
    left: 0;
    z-index: 1050;
    width: 100%;
    height: 0;
    background-color: rgba(0,0,0,0.0);
    -webkit-transition: all .2s;
    transition: all .2s;
}
.my-popup-wrap .inner-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 1100;
    padding: 0 2rem;
    width: 100%;
    background-color: transparent;
}
.my-popup-wrap .btn-set {
    justify-content: flex-end;
    margin-bottom: 1rem;
    height: 1.6rem;
}
.my-popup-wrap .btn-set .btn-close-layer {
    display: block;
    width: 1.6rem;
    height: 1.6rem;
    background: url("../images/btn/btn_close_popup_white.svg") 50% 50% no-repeat;
    background-size: 1.6rem;
}
.my-popup-wrap .contents-wrap {
    padding: 2rem;
    width: 100%;
    border-radius: 15px;
    background-color: var(--color-white);
}
.attend-grid tbody th {
    padding: 2rem 0 1rem !important;
    font-size: 1.3rem !important;
    font-weight: bold !important;
    text-align: center !important;
    vertical-align: middle !important;
}
.attend-grid tbody tr:first-child th {
    padding-top: 0 !important;
}
.attend-grid tbody td {
    padding: 0 0.4rem 0 0.5rem !important;
    font-size: 1.3rem !important;
    font-weight: lighter !important;
    line-height: 3.4rem !important;
    text-align: center !important;
    vertical-align: middle !important;
}
.attend-grid tbody td [class^="badge"] {
    padding: 0 !important;
    width: 100% !important;
    height: 3rem !important;
    border-radius: 15px;
    line-height: 3rem !important;
    font-size: 1.3rem !important;
}

/* 마이페이지 - 나의 수강후기 */
.standby-review-list li {
    padding: 2.5rem 0;
    border-top: 1px dashed var(--color-gray300);
}
.standby-review-list li:first-child {
    padding-top: 0;
    border-top: 0;
}
.standby-review-list .thumbnail {
    flex-shrink: 0;
    width: 9rem;
    height: 9rem;
}
.standby-review-list .thumbnail > img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
}
.standby-review-list .ellipsis2 {
    margin: 0.5rem 0 0 0;
    height: 3.8rem;
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1.9rem;
}
.title-class-review {
    display: block;
    margin: 1rem 0 0.5rem;
    height: 4.4rem;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: underline;
}
.grading-star {
    margin-top: 3rem;
}
.grading-star li {
    padding-bottom: 3rem;
    font-size: 1.3rem;
}

/* 마이페이지 - 나의문의내역 */
.ask-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--color-gray200);
}
.ask-list li:first-child {
    padding-top: 0;
}
.ask-list li .label-group {
    width: 3.3rem;
    flex-shrink: 0;
}
.ask-list li .label-group [class^="badge"] {
    vertical-align: top;
}
.ask-list li a {
    width: calc(100% - 4.3rem);
    background: url("../images/ico/ico_arrow_right4.svg") 100% 0.3rem no-repeat;
}
.ask-list li a .ellipsis {
    margin-bottom: 0.5rem;
    padding-right: 2rem;
    font-size: 1.5rem;
    font-weight: lighter;
}

/* 마이페이지 - 나의수강내역 */
.register-class-list {
    margin-top: 2rem;
}
.register-class-list li {
    margin-top: 3rem;
    border-bottom: 1px dotted var(--color-gray300);
}
.register-class-list li:first-child {
    margin-top: 0;
}
.register-class-list li.cancel-class *,
.register-class-list li.finish-class * {
    color: rgba(0, 0, 0, 0.4);
}
.register-class-list li.cancel-class .title-d4,
.register-class-list li.finish-class .title-d4 {
    color: var(--color-gray500);
    border-color: var(--color-gray500);
}
.register-class-list li.cancel-class [class^="badge"],
.register-class-list li.finish-class [class^="badge"] {
    color: var(--color-gray500);
    border-color: var(--color-gray500);
}
.register-class-list li.request-class .title-d4 {
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.register-class-list .room-name {
    display: block;
    margin: 1rem 0 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
}
.register-class-list table tbody th,
.register-class-list table tbody td {
    padding: 0.5rem 0;
    font-size: 1.3rem;
    font-weight: lighter;
    vertical-align: top;
}
/* 마이페이지 - 리뷰 */
.bg-circle {
    display: block;
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    background-color: var(--color-white);
    text-align: center;
}
.bg-circle .ico-30 {
    margin-top: 0.9rem;
}

/* 파트너 라운지 */
.partner-visual {
    position: relative;
    padding-top: 100%;
    width: 100%;
    height: 0;
    border: 1px solid rgba(0,0,0,0.1);
}
.partner-visual > img {
    display: block;
    position: absolute;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.partner-visual > figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 1rem;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}
.partner-visual > figcaption > strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-white);
    font-size: 2rem;
    font-weight: bold;
}
.partner-visual > figcaption > p {
    color: var(--color-white);
    font-size: 1.5rem;
    line-height: 1.5;
}
.partner-desc {
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: lighter;
}
.partner-slide {
    overflow-y: hidden;
    overflow-x: scroll;
}
.partner-slide::-webkit-scrollbar,
.partner-slide::-webkit-scrollbar-thumb,
.partner-slide::-webkit-scrollbar-track {
    background: transparent;
}
.partner-slide::-webkit-scrollbar {
    height: 0;
}
.partner-slide > ul {
    display: flex;
    justify-content: left;
    align-items: stretch;
    flex-wrap: nowrap;
}
.partner-slide li {
    flex-shrink: 0;
    margin-right: 1rem;
    /* padding: 1rem; */
    border: 1px solid var(--color-gray200);
    width: 24rem;
    border-radius: 15px;
    overflow: hidden;
}
.partner-slide li:last-of-type {
    margin-right: 0;
}
.partner-slide li .img-wrap {
    width: 24rem;
    height: 24rem;
}
.partner-slide li .img-wrap img {
    display: block;
    width: 24rem;
    height: 24rem;
    object-fit: cover;
}
.partner-slide li .txt-wrap {
    padding: 0.5rem 1.5rem 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.partner-slide li .title-d3 {
    margin: 1rem 0 1rem !important;
}
.partner-slide li .partner-desc {
    margin: 0 !important;
    font-size: 1.3rem !important;
    font-weight: lighter;
}
@media only screen and (min-width: 1024px) {
    .partner-slide::-webkit-scrollbar {
        height: 0.6rem;
    }
    .partner-slide::-webkit-scrollbar-thumb {
        background-color: #aaa;
        border-radius: 10px;
    }
    .partner-slide::-webkit-scrollbar-track {
        background-color: #fff;
    }
}

/* 파트너 라운지 - 이용안내 */
.swiper.lounge {
    overflow: hidden;
    height: calc(100vh - 17.1rem);
}
.swiper.lounge .swiper-slide {
    height: calc(100vh - 17.1rem);
    z-index: 5;
}
.swiper.lounge .swiper-slide .desc-wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    top: 3rem;
    z-index: 10;
    width: 100%;
}
.swiper.lounge .swiper-slide .desc-wrap > img {
    width: 16rem;
    height: 6.4rem;
}
.swiper.lounge .swiper-slide .desc-wrap .text {
    width: 100%;
    margin: 2.5rem 0 1rem;
    color: #1c8055;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
}
.swiper.lounge .swiper-slide .desc-wrap > small {
    display: block;
    width: 100%;
    font-size: 1.5rem;
    text-align: center;
}
.swiper.lounge .swiper-slide .desc-wrap > .btn-set {
    margin-top: 2rem;
}
.swiper.lounge .swiper-slide .desc-wrap > .btn-set > a {
    margin: 0 auto;
    width: 14rem;
}
.swiper.lounge .swiper-slide .img-wrap {
    position: absolute;
    top: 0;
    z-index: 6;
    width: 100%;
    height: calc(100vh - 17.1rem);
}
.swiper.lounge .swiper-slide .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper.lounge .swiper-slide .btn-down {
    position: absolute;
    bottom: 3rem;
    z-index: 11;
    width: 100%;
    text-align: center;
}
/* fade */
.swiper.lounge .swiper-slide.on .img-wrap img {
    animation: fadein 1.5s;
    -webkit-animation: fadein 1.5s; /* Safari and Chrome */
}
.swiper.lounge .swiper-slide.off .img-wrap img {
    animation: fadeout 0.5s;
    -webkit-animation: fadeout 0.5s; /* Safari and Chrome */
}
.swiper.lounge .swiper-slide.on .desc-wrap .text,
.swiper.lounge .swiper-slide.on .desc-wrap > small {
    animation: fadein 5s;
    -webkit-animation: fadein 5s; /* Safari and Chrome */
}
.swiper.lounge .swiper-slide.off .desc-wrap .text,
.swiper.lounge .swiper-slide.off .desc-wrap > small {
    animation: fadeout 3s;
    -webkit-animation: fadeout 3s; /* Safari and Chrome */
}
@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeout {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@-webkit-keyframes fadeout { /* Safari and Chrome */
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* 멀티룸 예약 */
.multiroom-infor {
    display: flex;
    justify-content: left;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    padding: 1.5rem;
    border-radius: 8px;
    background-color: var(--color-gray100);
}
.multiroom-infor dt {
    flex-shrink: 0;
    flex-basis: 8rem;
    margin-bottom: 1.5rem;
    padding-left: 2.1rem;
    width: 8rem;
    background-position: 0 50%;
    background-repeat: no-repeat;
    background-size: 1.6rem;
    font-size: 1.3rem;
    font-weight: bold;
}
.multiroom-infor dt:nth-of-type(1) {
    background-image: url("../images/contents/ico_human.svg");
}
.multiroom-infor dt:nth-of-type(2) {
    background-image: url("../images/contents/ico_watch.svg");
}
.multiroom-infor dt:nth-of-type(3) {
    flex-basis: 100%;
    width: 100%;
    background-image: url("../images/contents/ico_wifi.svg");
}
.multiroom-infor dd {
    flex-basis: calc(50% - 8rem);
    margin-bottom: 1.5rem;
    width: calc(50% - 8rem);
    font-size: 1.3rem;
    font-weight: lighter;
}
.multiroom-infor dd:nth-of-type(3) {
    flex-basis: 100%;
    margin: -1rem 0 0 0;
    padding: 0 2.1rem;
    width: 100%;
}
.multiroom-list {
    margin-top: -1.5rem;
}
.multiroom-list li {
    padding: 2.5rem 0;
    border-top: 1px dashed var(--color-gray300);
}
.multiroom-list li:first-of-type {
    border: 0;
}
.multiroom-list li .img-wrap {
    width: 100%;
    height: 20rem;
}
.multiroom-list li .img-wrap img {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 20rem;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    object-fit: cover;
}
.multiroom-list li .multiroom-tit {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    background-color: var(--color-gray100);
}
.multiroom-list li .multiroom-infor {
    margin-top: -1.5rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.multiroom-list li .multiroom-infor dt:nth-of-type(3) {
    flex-basis: 8rem;
    margin: 0;
    width: 8rem;
    background-image: url("../images/contents/ico_wifi.svg");
}
.multiroom-list li .multiroom-infor dd:nth-of-type(3) {
    flex-basis: calc(100% - 8rem);
    margin: 0;
    padding: 0 2.1rem 0 0;
    width: calc(100% - 8rem);
}

/* 22.10.24 한유진 - 마이라운지 대기신청내역 추가개발 건
   22.11.03 추가 수정 */
.waiting-class-list {
    margin-top: 3rem;
}

.waiting-class {
    position: relative;
    padding: 2.5rem 0 3rem;
}

.waiting-class {
    border-top: 1px dotted var(--color-gray300);
}

.waiting-class:last-of-type {
    border-bottom: 1px dotted var(--color-gray300);
}
.waiting-class .price-wrap {
    min-height: 5rem;
}

.waiting-class .waiting-time::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 1rem;
    background: var(--color-black);
    margin: 0 0.5rem;
}

.waiting-class .btn-set [class^="btn"][class*="-medium"] {
    border-radius: 0;
    height: 4.2rem;
    line-height: 4.2rem;
    font-size: 1.3rem;
    border-color: var(--color-gray200);
}

.waiting-class .btn-set [class^="btn"][class*="-disabled"] {
    background-color: var(--color-gray500);
}

.waiting-class .btn-set [class^="btn"][class*="-medium"]:first-child {
    border-radius: 0.4rem 0 0 0.4rem;
    font-weight: bold;
}

.waiting-class .btn-set [class^="btn"][class*="-medium"]:last-child {
    border-radius: 0 0.4rem 0.4rem 0;
    font-weight: 500;
}

.waiting-class .btn-set .question-ico {
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    line-height: 1.3;
    background: url("../images/ico/icon_16_Question.svg") 50% 50% no-repeat;
    margin-left: 0.5rem;
    text-indent: -99999px;
}

.waiting-class [class^="btn-delete"] {
    display: block;
    position: absolute;
    z-index: 5;
    top: 2.5rem;
    right: 0;
    width: 1.6rem;
    height: 1.6rem;
    background: url("../images/btn/btn_close_popup.svg") 50% 50% no-repeat;
    background-size: 100%;
}

/* 22.10.24 한유진 - 신청결제 페이지 헤더 하단 붉은 선 오류 수정  */
.m-wrap #frmOderPay::before {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-white);
    position: fixed;
    top: 4.8rem;
    left: 0;
    z-index: 110;
}

/* 22.11.09 한유진 마이클래스 상세 추가 */
.go-classDtl {
    position: relative;
    width: auto;
    height: 2rem;
}
.go-classDtl a {
    display: inline-block;
    padding-right: 1.6rem;
    width: auto;
    height: 2rem;
    font-size: 1.3rem;
    line-height: 2rem;
    background: url("../images/ico/ico_arrow_right5.svg") 100% 50% no-repeat;
    background-size: 1.6rem;
    position: absolute;
    top: 0;
    right: 0;
}

/* 22.11.16 한유진 메인페이지 할인가 변경 */
/* [D]23.05.11 수정 start */
.typ2-class .txt-wrap,
.typ3-class .txt-wrap,
.typ5-class .txt-wrap {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: space-between;
    width: 100%;
    height: calc(100% - 15.5rem);
}

.typ2-class .txt-wrap .price-wrap,
.typ3-class .txt-wrap .price-wrap,
.typ5-class .txt-wrap .price-wrap {
    position: relative;
    justify-content: flex-end !important;
    align-items: flex-end !important;
    flex-flow: row wrap;
    width: 100%;
    min-height: 3.9rem;
}
.typ3-class .txt-wrap .price-wrap {
    min-height: 3.9rem;
}
.typ2-class .txt-wrap .price-wrap b,
.typ3-class .txt-wrap .price-wrap b,
.typ5-class .txt-wrap .price-wrap b {
    position: absolute;
    left: 0;
    bottom: 0;
    color: var(--color-primary);
}
.typ2-class .txt-wrap .price-wrap del,
.typ3-class .txt-wrap .price-wrap del,
.typ5-class .txt-wrap .price-wrap del {
    display: inline-block;
    width: 100%;
    text-align: right;
    font-size: 1.1rem;
    color: var(--color-gray500);
}
/* [D]23.05.11 수정 end */


/* 23.02.12 한유진 - 클래스 개설요청 페이지, 팝업 신규 추가 */
.processInfo {
    width: 100%;
    padding-top: 2rem;
}
.processInfo li {
    position: relative;
    width: 100%;
    background: var(--color-gray700);
    padding: 1.5rem;
    border-radius: 0.8rem;
    padding-left: 7.8rem;
}
.processInfo li ~ li {
    margin-top: 3.2rem;
}
.processInfo li::before {
    content: '';
    display: block;
    width: 4.8rem;
    height: 4.8rem;
    position: absolute;
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
}
.processInfo li:nth-of-type(1)::before {
    background: url('../images/ico/icon_process_step1.svg') no-repeat center / 100% 100%;
}
.processInfo li:nth-of-type(2)::before {
    background: url('../images/ico/icon_process_step2.svg') no-repeat center / 100% 100%;
}
.processInfo li:nth-of-type(3)::before {
    background: url('../images/ico/icon_process_step3.svg') no-repeat center / 100% 100%;
}
.processInfo li::after {
    content: '';
    display: block;
    width: 1.2rem;
    height: 1.2rem;
    background: url('../images/ico/icon_shape_down.svg') no-repeat center / 100% 100%;
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
}
.processInfo li:last-of-type:after {
    display: none;
}
.processInfo li h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-black);
}
.processInfo li p {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-black);
    margin-top: 1rem;
}
.processInfo li span {
    position: relative;
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--color-gray500);
    margin-top: 0.5rem;
    padding-left: 0.8rem;
}
.processInfo li span::before {
    content: '·';
    position: absolute;
    top: 0;
    left: 0;
}
.processInfo + p {
    position: relative;
    font-size: 1.3rem;
    color: var(--color-gray500);
    margin-top: 1.5rem;
    padding-left: 1.6rem;
}
.processInfo + p::before {
    content: '※';
    position: absolute;
    top: 0;
    left: 0;
}
.processPop {
    display: inline-block;
    width: calc(100% - 8rem);
    font-size: 1.1rem;
    text-align: right;
    vertical-align: middle;
    margin: 1.5rem 0 0.5rem;
}
.popBtn {
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    background: url('../images/ico/icon_16_Question.svg') no-repeat center / 100% 100%;
    margin-left: 0.5rem;
}

.ctg-example-wrap .list-wrap {
    flex-wrap: wrap;
    width: 100%;
    border-top: 0.1rem solid var(--color-gray800);
    border-bottom: 0.1rem solid var(--color-gray800);
}
.ctg-example-wrap .list-wrap li {
    width: calc(100% / 2);
    background: var(--color-gray700);
    text-align:center;
    padding: 1.5rem 0;
}
.ctg-example-wrap .list-wrap li.bg-white {
    background: var(--color-white);
}
.ctg-example-wrap .list-wrap li span {
    font-size: 1.3rem;
}
.ctg-example-wrap .list-wrap li p {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 0.2rem;
}

/* 23.02.09 한유진 - 일정보기 버튼, 페이지 신규 추가 */
/* 23.02.10 한유진 - 추가 수정 */
.btn-link-new.text.btn-schedule span {
    padding-right: 2rem;
    white-space: nowrap;
    background: url('../images/ico/icon_caledar.svg') 100% 50% / 1.6rem no-repeat;
}

.class-room-top {
    padding: 2rem 0 1.5rem;
}

.btn-today {
    display: inline-block;
    margin-left: auto;
    font-size: 1.1rem;
    color: var(--color-primary);
    border-bottom: 0.1rem solid var(--color-primary);
}

/* [D]23.02.23 한유진 주석처리 - 별도 css 파일로 분리 */
/* .btn-calendar {
    display: none;
}
.btn-calendar + button.ui-datepicker-trigger {
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    background: url('../images/ico/icon_caledar2.svg') no-repeat center / 1.6rem;
    text-indent: -999999rem;
    font-size: 0;
}
.ui-datepicker {
    width: 32rem;
    height: auto;
    z-index: 11 !important;
}
.ui-datepicker-header {
    height: 6rem;
    line-height: 6rem;
}
.ui-datepicker-header .ui-datepicker-title {
    height: 6rem;
    line-height: 6rem;
    font-size: 1.6rem;
}
.ui-widget-header .ui-datepicker-prev,
.ui-widget-header .ui-datepicker-next {
    top: calc(50% + 0.5rem);
    transform: translateY(-50%);
}
.ui-widget-header .ui-datepicker-prev .ui-icon {
    background: url('../images/ico/ico_arrow_left.svg') no-repeat center / 1.4rem;
}
.ui-widget-header .ui-datepicker-next .ui-icon {
    background: url('../images/ico/ico_arrow_right3.svg') no-repeat center / 1.4rem;
}
.ui-datepicker-week-end:first-of-type a {
    color: var(--color-tertiary);
}
.ui-datepicker-week-end:last-of-type a {
    color: var(--color-secondary);
}
.ui-datepicker th {
    height: 4.4rem;
    font-size: 1.4rem;
}
.ui-datepicker td {
    height: 4.4rem;
    font-size: 1.4rem;
}
.ui-datepicker td a {
    border: none !important;
    width: 4.4rem;
    height: 4.4rem;
    line-height: 4.3rem !important;
    margin: 0;
} */
/* [D]23.02.23 한유진 주석처리 - 별도 css 파일로 분리 end */

.swiperWrap {
    position: relative;
    width: 100%;
}

.swiperWrap .swiperDay {
    display: flex;
    width: calc(100% - 6.6rem);
    height: 2rem;
    margin: 2rem auto 0;
}
.swiperWrap .swiperDay p {
    width: calc(100% / 7);
    font-size: 1.1rem;
    color: var(--color-gray500);
    text-align: center;
}
.class-room-swiper {
    width: calc(100% - 6.6rem);
}
.class-room-swiper ul {
    width: 100%;
}
.class-room-swiper li {
    width: calc(100% / 7);
    height: 3.4rem;
    text-align: center;
}
.class-room-swiper li button {
    display: inline-block;
    font-size: 1.5rem;
    height: 3.4rem;
    line-height: 3.4rem;
    color: var(--color-gray500);
}
.class-room-swiper li.todayMonth button {
    color: var(--color-black);
    font-weight: bold;
}
.class-room-swiper li.todayMonth.today button {
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 50%;
    background: var(--color-pink);
    color: var(--color-white);
    margin: 0 auto;
}
.class-room-swiper li.active button {
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    margin: 0 auto;
}
.class-room-swiper li.todayMonth.today.active button {
    background: var(--color-primary);
}
.swiperWrap .swiper-button-prev,
.swiperWrap .swiper-button-next {
    width: 1.6rem;
    height: 1.6rem;
    bottom: 0.9rem;
    top: initial;
}
.swiperWrap .swiper-button-prev::after,
.swiperWrap .swiper-button-next::after {
    width: 100%;
    height: 100%;
}
.swiperWrap .swiper-button-prev {
    background: url('../images/ico/ico_arrow_left.svg') no-repeat center / 1.6rem;
    left: 1.4rem;
    z-index: 1000;
}
.swiperWrap .swiper-button-next {
    background: url('../images/ico/ico_arrow_right3.svg') no-repeat center / 1.6rem;
    right: 1.4rem;
}

.sorting-qna-area .sorting-qna {
    height: auto;
    scroll-behavior: smooth;
}
.sorting-qna-area::-webkit-scrollbar {
    -webkit-appearance: none;
    display: none;
}
.class-time-sorting .sorting-qna li {
    margin-right: 1rem;
}
.class-time-sorting .sorting-qna li:last-of-type {
    margin-right: 0;
}
.class-time-sorting .sorting-qna li span {
    width: 9rem;
    font-size: 1.2rem;
    height: 3.4rem;
    line-height: 3.2rem !important;
    border-radius: 1.7rem;
}

.class-room-wrap {
    width: 100%;
    padding: 0 2rem;
    margin: 5rem 0;
}
.class-room-wrap:nth-of-type(2) {
    margin: 3.5rem 0 5rem;
}
.class-room-wrap:last-of-type {
    margin-bottom: 0;
    padding-bottom: 5rem;
}
.class-room-wrap h4 {
    position: relative;
}
.class-room-wrap h4::before {
    content: '';
    display: block;
    width: 1.3rem;
    height: 0.1rem;
    background: var(--color-black);
    position: absolute;
    top: 0.9rem;
    left: -2rem;
}
.class-room-wrap .class-room {
    display: block;
    width: 100%;
    padding: 1.5rem 2rem;
    margin-top: 1.5rem;
    background-color: var(--color-gray100);
}
.class-room-wrap .class-room p:first-of-type {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    padding-left: 1rem;
}
.class-room-wrap .class-room p:first-of-type span[class^="badge"] {
    font-size: 1rem;
    height: 1.6rem;
    line-height: 1.6rem;
    margin-left: 0.5rem;
}
.class-room-wrap .class-room p:first-of-type::before {
    content: '';
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    background: var(--color-black);
    border-radius: 50%;
    position: relative;
    top: 50%;
    left: -0.5rem;
    transform: translateY(-50%);
}
.class-room-wrap .class-room p:last-of-type {
    font-size: 1.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 0.5rem;
}

/* [D]23.03.16 한유진 신청/결제 신용카드 - 법인카드 영역 추가 */
.corporation-card-form {
    margin-top: 2rem;
}
.corporation-card-form > div:not(:last-of-type) {
    display: flex;
    align-items: center;
    width: 100%;
    height: 4.6rem;
    background: var(--color-gray900); /*[D]23.03.22 수정*/
    border-radius: 0.8rem;
    overflow: hidden;
    padding: 1.3rem 1.5rem 1.1rem;
}
.corporation-card-form > div ~ div {
    margin-top: 1.5rem;
}
.corporation-card-form > div > p {
    font-size: 1.3rem;
    white-space: nowrap;
}
.corporation-card-form > div:last-of-type > p {
    margin-bottom: 0.5rem;
}
.corporation-card-form > div > label {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 73%;
    margin-left: auto;
    font-size: 1.4rem;
}
.corporation-card-form > div > label input {
    width: 3.5rem;
    border: none;
    background: rgba(255,255,255,0);
    text-align: right;
}
.corporation-card-form > div:nth-last-of-type(2) > label input {
    width: 100%;
}
.corporation-card-form > div > label span {
    margin: 0 1rem;
}


/* [D]23.03.28 한유진 추가  */
.main-popup-wrap .img_wrap {
    border-radius: 1.5rem;
    overflow: hidden;
}
/* [D]23.03.31 수정 start */
.together_comment  {
    position: relative;
    text-align: right;
}
.together_comment span {
    position: relative;
    display: inline-block;
    width: auto;
    font-size: 1rem;
    background: var(--color-secondary);
    padding: .1rem .5rem .2rem;
    border-radius: .2rem;
    color: var(--color-white);
    margin-right: 2rem;
    z-index: 1;
}
.together_comment span::before {
    content: '';
    display: block;
    width: 1rem;
    height: 1rem;
    background: var(--color-secondary);
    transform: rotate(45deg);
    position: absolute;
    top: -.3rem;
    right: 1rem;
    z-index: -1;
}
/* [D]23.03.31 수정 end */
.toghter_banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: var(--color-pink200);
    padding: 1.5rem 2rem;
    margin-top: 3rem;
    border-radius: .8rem;
    overflow: hidden;
}
.toghter_banner span {
    display: block;
    color: var(--color-black);
    font-weight: normal;
    margin-top: .5rem;
}
.together_info {
    padding: 2.2rem 0;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: right;
}
.together_pay_info {
    position: absolute;
    top: calc(-100% + -1.4rem);
    right: 2rem;
    padding: 1.4rem 5rem 1.4rem 3rem;
    background: var(--color-blue);
    border-radius: 2.5rem;
    z-index: 1;
}
.together_pay_info::after {
    content: '';
    display: block;
    width: 2rem;
    height: 2rem;
    background: var(--color-blue);
    transform: rotate(45deg) skew(12deg, 12deg);
    position: absolute;
    right: 4.5rem;
    bottom: -.3rem;
    z-index: -1;
}
.together_pay_info p {
    font-size: 1.3rem;
    color: var(--color-white);
    font-weight: bold;
}
.info_close_btn {
    width: 1rem;
    height: 1rem;
    background: url('../images/ico/icon_close_btn.svg') no-repeat center / 100% 100%;
    position: absolute;
    top: 50%;
    right: 3rem;
    transform: translateY(-50%);
}

/* [D]23.05.12 한유진 추가 */
.badge_sold_out_day {
    width: 100%;
    height: auto;
    line-height: 1.2;
    background: #143028;
    position: relative;
    border-radius: 0;
    z-index: 1;
    padding: 0.9rem 0;
    text-align: center;
    color: var(--color-white);
    font-weight: normal;
}
.badge_sold_out_day::before {
    content: '';
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    background: url('../images/ico/ico_badge_img1.svg') no-repeat center / 100%;
    vertical-align: middle;
    margin-right: 0.5rem;
}
.badge_sold_out_day i {
    color: #fafa45;
}
.badge_sold_out_time {
    width: 100%;
    height: auto;
    line-height: 1.2;
    background: #143028;
    position: relative;
    border-radius: 0;
    z-index: 1;
    padding: 0.9rem 0;
    text-align: center;
    color: var(--color-white);
    font-weight: normal;
}
.badge_sold_out_time::before {
    content: '';
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    background: url('../images/ico/ico_badge_img2.svg') no-repeat center / 100%;
    vertical-align: middle;
    margin-right: 0.5rem;
}
.badge_sold_out_time i {
    color: #fafa45;
    font-size: 1.5rem;
}
.detail_price {
    margin: 1rem 0;
}
/* [D]23.06.14 메인 추가 */
.title-before > span {
    display: block;
}
.title-before,
.title-after {
    z-index: 1;
}
.title-before::before {
    content: '';
    display: block;
    width: 1.2rem;
    height: 0.1rem;
    background: var(--color-black);
    position: absolute;
    top: 1.2rem;
    left: -2rem;
}
.title-after {
    display: flex;
    flex-flow: row wrap;
    justify-content: left;
}
main > section:nth-of-type(odd) .title-after span:nth-of-type(1) {
    width: 100%;
}
main > section:nth-of-type(odd) .title-after span:nth-of-type(2) {
    margin-right: -2.4rem;
    order: 2;
}
main > section:nth-of-type(odd) .title-after i {
    order: 3;
}
main > section:nth-of-type(odd) .title-after span:only-of-type {
    width: auto;
    margin-right: -2.4rem;
}
main > section:nth-of-type(even) .title-after span:nth-of-type(1) {
    margin-right: -2.4rem;
}
main > section:nth-of-type(even) .title-after span:nth-of-type(2) {
    width: 100%;
    order: 3;
}
main > section:nth-of-type(even) .title-after i {
    order: 2;
}
main > section:nth-of-type(even) .title-after span:only-of-type {
    width: auto;
    margin-right: -2.4rem;
}
.title-after i {
    content: '';
    display: block;
    width: 5rem;
    height: 5rem;
    margin-top: -1.5rem;
    position: relative;
    z-index: -1;
}
.title-after.after1 i {
    top: -1.5rem;
    right: -2.4rem;
}
.title-after.after2 i {
    bottom: 0;
    right: -2.4rem;
}
/* [D]23.06.27 배너 단독형 레이아웃 신규 추가 - 한유진 */
.only_banner_wrap {
    padding: 3rem 0 3rem !important;
}
.only_banner_wrap .img_wrap ~ .img_wrap {
    margin-top: 2rem;
}
.only_banner_wrap .img_wrap a {
    display: block;
    font-size: 0;
    width: 100%;
    height: 100%;
}
.only_banner_wrap .img_wrap a img {
    width: 100%;
    height: 100%;
}

/* [D]24.01.21 쿠폰할인가 css 추가 */
.cpn-badge-big {
    letter-spacing: -0.039rem;
    font-weight: bold;
}
.cpn-badge {
    letter-spacing: -0.033rem;
    font-weight: bold;
}

/* [D]24.05.08 클래스보기 gif badge */
.badge-gif {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    z-index: 10;
    background: url('../images/ico/clkok_only_bg.svg') no-repeat center / 100%;
    text-indent: -999999rem;
}
.badge-gif::after {
    content: '';
    display: block;
    background: url('../images/ico/clkok_only_icon.svg') no-repeat center / 100%;
    margin-top: -0.2rem;
    animation: gifBadge 0.9s infinite;
    position:  absolute;
}
.typ1-class .badge-gif {
    width: 6.5rem;
    height: 6.5rem;
}
.typ1-class .badge-gif::after {
    width: 3.9rem;
    height: 3.9rem;
}
.typ2-class .badge-gif {
    width: 3.5rem;
    height: 3.5rem;
}
.typ2-class .badge-gif::after {
    width: 2.15rem;
    height: 2.15rem;
}
.typ3-class .badge-gif {
    width: 30%;
    height: 30%;
}
.typ3-class .badge-gif::after {
    width: 5.5vw;
    height: 5.5vw;
}
.typ5-class .badge-gif,
.typ6-class .badge-gif,
.typ7-class .badge-gif {
    width: 3rem;
    height: 3rem;
}
.typ5-class .badge-gif::after,
.typ6-class .badge-gif::after,
.typ7-class .badge-gif::after {
    width: 2rem;
    height: 2rem;
}
@keyframes gifBadge {
    0% { transform: scale(0.95); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@media only screen and (min-width:1024px) {
    .typ3-class .badge-gif::after {
        width: 2rem;
        height: 2rem;
    }
}

/* [D]24.08.19 썸네일 프레임 css추가 */
.thumbnail-frame {
    width: 50%; /* [D]24.09.01 수정 */
    height: 50%; /* [D]24.09.01 수정 */
    position: absolute;
    top: 0;
    right: 0; /* [D]24.09.01 수정 */
    z-index: 2;
    overflow: hidden;
}
.thumbnail-frame img {
    position: absolute;
    top: 0;
    right: 0;
    width: auto !important;
    height: auto !important;
    max-width: 200%;
    object-fit: contain;
}



/* [D]25.05.27 2단계 인증 팝업 */
.certi-count {
    display: flex;
    align-items: center;
}
.certi-count button {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    font-weight: bold;
}
.certi-count button::before {
    content: '';
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    background: url('../images/ico/ico_reset.svg') no-repeat center / 100%;
    margin-right: 0.3rem;
}

.popup-wrap.full > main.second-certi-wrap .btn-set [class^="btn"] {
    border-radius: 8px;
}
.popup-wrap.full > main.second-certi-wrap .btn-fieldset .f-input + .btn-set.typ2 {
    width: 12.6rem;
}
.popup-wrap.full > main.second-certi-wrap .btn-fieldset .f-input + .btn-set.typ2 button {
    width: 100%;
}

/* [D]25.06.02 크리덴셜 스터핑 추가 */
.overseas_login_set a {
    font-size: 1.3rem;
    text-decoration: underline;
    margin-top: 0.5rem;
}
.overseas_login_set a::before {
    content: '';
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    background: url(../images/ico/ico_lock.svg) no-repeat center / 100%;
    margin-right: 0.2rem;
    vertical-align: middle;
}

.overseas_login_info {
    padding: 1.5rem 2rem;
    background: var(--color-gray100);
    border-radius: 15px;
}
.overseas_login_info li {
    display: flex;
}
.overseas_login_info li ~ li {
    margin-top: 1rem;
}
.overseas_login_info li b {
    display: inline-block;
    width: 10rem;
}
.overseas_login_info li span {
    flex: 1;
    font-weight: normal;
}

.btn-set.typ2 {
    width: 12.6rem  !important;
}
.btn-set.typ2 button {
    width: 100% !important;
    border-radius: 8px !important;
}