@charset "utf-8";

/* 라디오버튼 스타일 */
.radio_style {
    display: -webkit-box;
    display: inline-flex;
    cursor: pointer;
    position: relative;
    margin: 0 20px 0 0;
}
.radio_style:last-of-type {
    margin: 0;
}
.radio_style input {
    position: absolute;
    left: -9999px;
}
.radio_style input:focus + span:before{
    border: 1px solid #222;
}
.radio_style input:checked+span {
    font-weight: 600;
}
.radio_style input:checked+span:before {
    border: 1px solid #222;
    background: #222;
}
.radio_style span {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center; align-items: center;
    border-radius: 99em;
    -webkit-transition: 0.25s ease; transition: 0.25s ease;
}
.radio_style span:before {
    display: -webkit-box;
    display: flex;
    flex-shrink: 0;
    content: "";
    background-color: #fff;
    width: 24px; height: 24px;
    border-radius: 50%;
    margin-right: 0.375em;
    -webkit-transition: 0.25s ease;
    transition: 0.25s ease;
    border: 1px solid #dbdbdb; box-sizing: border-box;
}
.radio_style span:after {
    content: '';
    display: block; position: absolute;
    width: 10px; height: 10px; background: #fff;;
    top: 50%; left: 7px; border-radius: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transition: 0.25s ease;
    transition: 0.25s ease;
}


/* 체크박스 스타일  */
.checkbox_style {
    display: -webkit-box;
    display: inline-flex;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin: 0 20px 0 0;
}
.checkbox_style:last-of-type {
    margin: 0;
}
.checkbox_style input{
    position: absolute;
    opacity: 0;
    width: 0 !important; height: 0 !important;
}
.checkbox_style label{
    position: relative;
    display: inline-block; vertical-align: middle;
    cursor: pointer;
}
.checkbox_style input:focus + label:before{
    border: 1px solid #222;
}
.checkbox_style label span{
    display: inline-block; vertical-align: middle;
    font-size: 1rem;
}
.checkbox_style label::before {
    content: '';
    margin-right: 0.5rem;
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    background: #fff;
    border: 1px solid #dbdbdb;
    box-sizing: border-box;
    -webkit-transition: 0.25s ease;
    transition: 0.25s ease;
}
.checkbox_style input:checked + label {
    font-weight: 600;
}
.checkbox_style input:checked + label::before{
    background: #222;
    border: 1px solid #222;
}
.checkbox_style input:disabled + label{
    color: #b8b8b8; cursor: auto;
}
.checkbox_style input:disabled + label::before{
    box-shadow: none;
    background: #ddd;
}
.checkbox_style input:checked + label::after{
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    background: white;
    width: 3px;
    height: 3px;
    box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
    transform: rotate(45deg);
}


/* 버튼 영역 */
.btn_wrap{text-align: center; margin: 50px 0 0; font-size: 0;}
.btn_wrap .btn_right{text-align: right;}
.btn_wrap .btn_left{text-align: right;}
.btn_wrap .btn{ font-size:1rem; display: inline-block; box-sizing: border-box; margin-right:10px; padding: 0 1rem; width: 120px; line-height: 44px; font-weight: 400; color: #fff; background-color: #222; transition: 0.2s; cursor: pointer; text-align: center;}
.btn_wrap .btn:last-child{margin-right: 0;}
.btn_wrap .btn.wa{width: auto; padding: 0 2rem;} /* 우측 정렬된 버튼 (ex. 글쓰기 - 크기 미지정 wa = width: auto;) */
.btn_wrap .btn.wide{width: 120px;}
.btn_wrap .btn_gray{background-color: #999;}

@media screen and (max-width:768px){
    .btn_wrap{margin: 30px 0 0;}
    .btn_wrap .btn{margin: 0 3px; width: 90px;}
}


/* 서브페이지 타이틀 */
.sub_contents h4{position: relative; clear: both; width: 100%; box-sizing: border-box; padding: 0 0 1.5rem 27px; line-height: 120%; font-size: 1.7rem; font-weight: 700;}
.sub_contents h4:before,
.sub_contents h4:after{content: ""; display: block; position: absolute; top: 6px; left: 0; box-sizing: border-box; height: 18px; width: 18px; border: 4px solid #222; border-top-color: #888; border-right-color: #888;}
.sub_contents h4:after{left: 10px; top: 17px; width: 10px; height: 10px; border: none; background: #ccc;}
.sub_contents .tit_wrap{display: flex; justify-content: flex-start;}
.sub_contents .tit_wrap h4{/*display: inline-block;*/ width: auto;}
.sub_contents .tit_wrap .link{font-size: 0; width: 1.5rem; height: 1.5rem; border-radius: 2px; margin: 0.25rem 0 0 0.7rem; background-color: #ddd;}

@media screen and (max-width: 860px){
    .sub_contents h4{font-size: 1.4rem;}
    .sub_contents h4:before{top: 3px;}
    .sub_contents h4:after{top: 14px;}
    .sub_contents .tit_wrap .link{margin: 0.1rem 0 0 0.7rem;}
}

@media screen and (max-width: 640px){
    .sub_contents h4{padding: 0 0 1rem 20px;}
    .sub_contents h4:before{top: 4px; width: 12px; height: 12px; border-width: 3px;}
    .sub_contents h4:after{top: 11px; width: 8px; height: 8px; left: 7px;}
}


/* 리스트 타입1 (□) */
.list_dot{}
.list_dot > li{position: relative; box-sizing: border-box; padding: 0 0 0 14px;}
.list_dot > li:before{content: ""; position: absolute; top: 9px; left: 0; display: block; width: 5px; height: 5px; background-color: green;}


/* 리스트 타입2 (o) */
.list_circle{}
.list_circle > li{position: relative; box-sizing: border-box; padding: 0 0 0 14px; margin: 0 0 1rem;}
.list_circle > li:before{content: ""; position: absolute; top: 8px; left: 0; display: block; width: 7px; height: 7px; border-radius: 50%; background-color: red;}


/* 리스트 타입3 (-) */
.list_dash{}
.list_dash > li{position: relative; box-sizing: border-box; padding: 0 0 0 10px;}
.list_dash > li:before{content: ""; position: absolute; top: 13px; left: 0; display: block; width: 5px; height: 1px; border-radius: 50%; background-color: #222;}


/* 리스트 타입4 (1. 2. ...) */
.list_num{counter-reset: num_list;}
.list_num > li{position: relative; box-sizing: border-box; padding: 0 0 0 18px;}
.list_num > li:before{position: absolute; top: 0; left: 0; content: counter(num_list) "."; counter-increment: num_list 1;}


/* 리스트 타입5 (① ② ...) */
.list_num2{}
.list_num2 > li{position: relative; box-sizing: border-box; padding: 0 0 0 18px;}
.list_num2 > li:before{content: ""; position: absolute; top: 0; left: 0; display: block; width: 15px; height: 25px;}
.list_num2 > li:nth-child(1):before{content: "①";}
.list_num2 > li:nth-child(2):before{content: "②";}
.list_num2 > li:nth-child(3):before{content: "③";}
.list_num2 > li:nth-child(4):before{content: "④";}
.list_num2 > li:nth-child(5):before{content: "⑤";}
.list_num2 > li:nth-child(6):before{content: "⑥";}
.list_num2 > li:nth-child(7):before{content: "⑦";}
.list_num2 > li:nth-child(8):before{content: "⑧";}
.list_num2 > li:nth-child(9):before{content: "⑨";}
.list_num2 > li:nth-child(10):before{content: "⑩";}


/* 리스트 타입6 (▣) */
.list_square{}
.list_square > li{position: relative; box-sizing: border-box; padding: 0 0 0 18px;}
.list_square > li:before{content: ""; position: absolute; top: 7px; left: 0; display: block; box-sizing: border-box; width: 10px; height: 10px; border: 3px solid blue;}


/* 리스트 타입 안에 리스트 타입 */
.list_dot ul,
.list_circle ul,
.list_dash ul,
.list_num ul,
.list_num2 ul,
.list_square ul{margin: 1rem 0 0;}


/* 한줄 말줄임 */
.ell1{text-overflow: ellipsis; overflow: hidden; white-space: nowrap;}


/* 두줄 말줄임 */
.ell2{text-overflow: ellipsis; overflow: hidden; display: -webkit-box !important; -webkit-line-clamp: 2; -webkit-box-orient: vertical; line-height: 22px; height: 44px;}


/* 베이직 테이블 */
.table_wrap{width: 100%; margin: 0 0 25px 0; box-sizing: border-box;}
.table_info{display: none; padding: 0 0 5px; line-height: 130%; font-size: 13px; color: red;}
.basic_table{clear: both; width: 100%; border-collapse: collapse; table-layout: fixed; text-align: center; border-top: 2px solid #222; box-sizing: border-box;}
.basic_table tr{transition: background 0.3s ease;}

.basic_table th{vertical-align: middle; padding: 9px 5px; border: 1px solid #dbdbdb; border-left: none; background: #f5f5f5;}
.basic_table thead th{border-top: none; background: #f5f5f5;}
.basic_table thead tr:last-child th{border-bottom: none;}

.basic_table td{vertical-align: middle; padding: 0.5rem; border: 1px solid #dbdbdb; word-break: break-all;}
.basic_table th:last-child,
.basic_table td:last-child{border-right: none;}
.basic_table .con{padding-left: 1rem; text-align: left;}
.basic_table .none{padding: 20px 0;}

@media screen and (max-width: 460px){
    .table_wrap{overflow-x: auto; overflow-y: hidden;}
    .table_info{display: block;}
	.table_wrap .basic_table{width: 459px;}
}


/* 아코디언 테이블 */
.basic_table.acc_table{}
.basic_table.acc_table th,
.basic_table.acc_table td{}
.basic_table.acc_table .sum th,
.basic_table.acc_table .sum td{background-color: #eaeff9 !important;}
.basic_table.acc_table .total td{color: var(--primary_color); font-weight: 500;}
.basic_table.acc_table .accOpener{display: inline-flex; justify-content: center; align-items: center; gap: 5px;}
.basic_table.acc_table .accOpener:after{content: ""; display: inline-block; vertical-align: middle; margin: 0 0 -3px; width: 6px; height: 6px; border-top: 2px solid #000; border-left: 2px solid #000; transform: rotate(225deg); transition: 0.2s;}
.basic_table.acc_table .accOpener.on:after{transform: rotate(45deg);}
.acc{}
.acc > li{}
.acc > li:last-child .acc{}
.acc > li .acc_sub{display: flex; justify-content: space-between;}
.acc > li .acc_sub:after{content: ""; display: block; clear: both;}
.acc > li .acc_sub > li{position: relative; /*float: left;*/ /*flex: 1;*/ padding-top: 15.5px; padding-bottom: 15.5px; padding-right: 0.5rem; padding-left: 0.5rem; border-bottom: 1px solid #dbdbdb; border-right: 1px solid #dbdbdb;}
.acc > li .acc_sub > li:last-child{border-right: none;}
.acc > li .acc_sub > li:nth-child(1){width: 25%; background-color: #f5f5f5; font-weight: 700;}
.acc > li .acc_sub > li:nth-child(2){width: 25%;}
.acc > li .acc_sub > li:nth-child(3){width: 25%;}
.acc > li .acc_sub > li:nth-child(4){width: 25%;}
.acc > li:last-child .acc_sub > li{border-bottom: none;}
.hasAcc{padding: 0 !important; border-left: none !important;}
.trHide{display: none; /*display: block; visibility: hidden; opacity: 0; height: 0; overflow: hidden;*/}
.trShow{display: table-row; visibility: visible; opacity: 1; height: auto; overflow: visible;}
.trItem td{/*cursor: pointer;*/ /*background-color: var(--catskill_white) !important;*/}
.trItem.on td,
.trShow td{background-color: #fff !important;}


/* 박스 */
.box{box-sizing: border-box; padding: 2rem; background-color: #f5f5f5;}
.box .tit{box-sizing: border-box; padding: 0 0 1rem; font-size: 1.4rem; font-weight: 600;}


/* 박스 보더형 */
.box_bd{box-sizing: border-box; padding: 2rem; border: 1px solid #dbdbdb; background-color: #fff;}
.box_bd .tit{box-sizing: border-box; padding: 0 0 1rem; font-size: 1.4rem; font-weight: 600;}


/* 아코디언 메뉴 */
.accordion{box-sizing: border-box; border-top: 2px solid #222;}
.accordion dl{border-bottom: 1px solid #dbdbdb;}
.accordion dl dt{position: relative;}
.accordion dl dt.over{background-color: rgba(0,0,0,0.075);}
.accordion dl dt button{display: block; width: 100%; line-height: inherit; padding: 1rem 3rem 1rem 1rem; font-size: inherit; text-align: left;}
.accordion dl dt button:before{content: ""; position: absolute; top: 24px; right: 1.2rem; width: 10px; height: 10px; box-sizing: border-box; border-top: 2px solid #000; border-left: 2px solid #000; transform: rotate(45deg); transition: transform 0.1s;}
.accordion dl.on dt button:before{transform: rotate(225deg);}
.accordion dl dt button:focus{outline: none;}
.accordion dl dd{box-sizing: border-box; padding: 1rem; border-top: 1px dashed #bbb; background-color: #f5f5f5;}
.accordion dl dd p{}


/* 탭메뉴 (기본형) */
.tab{display: flex; justify-content: space-between;}
.tab li{flex: 1;}
.tab li a{position: relative; display: block; box-sizing: border-box; padding: 1rem; font-size: 1.2rem; font-weight: 500; text-align: center; background: #ddd;}
.tab li a:hover,
.tab li a:focus{background-color: #eee;}
.tab li a.on{color: #fff; background-color: #222;}
.tab li a.on:before{content: ""; position: absolute; top: 100%; left: 50%; margin: -1px 0 0; transform: translateX(-50%); display: block; width: 0; height: 0; border-style: solid; border-width: 7px 7px 0px 7px; border-color: #222 transparent transparent transparent;}
.tab_cont{box-sizing: border-box; padding: 1rem 0;}
.tab_cont > div{display: none;}
.tab_cont > div.on{display: block;}


/*  탭메뉴 (스크롤) */
.tab_scr{display: flex; justify-content: space-between;}
.tab_scr li{flex: 1;}
.tab_scr li a{position: relative; display: block; box-sizing: border-box; padding: 1rem; font-size: 1.2rem; font-weight: 500; text-align: center; background: #ddd;}
.tab_scr li a:hover,
.tab_scr li a:focus{background-color: #eee;}
.tab_scr li a.on{color: #fff; background-color: #222;}
.tab_scr li a.on:before{content: ""; position: absolute; top: 100%; left: 50%; margin: -1px 0 0; transform: translateX(-50%); display: block; width: 0; height: 0; border-style: solid; border-width: 7px 7px 0px 7px; border-color: #222 transparent transparent transparent;}
.tab_cont_scr{box-sizing: border-box; padding: 1rem 0;}
.tab_cont_scr > div{}
.tab_cont_scr > div{}


/*  탭메뉴 (고정 + 스크롤) */
.tab_fixed{position: relative; z-index: 1; display: flex; justify-content: space-between;}
.tab_fixed.on{position: fixed; top: 75px; /* top = 고정헤더일 경우 헤더만큼 */ left: 50%; transform: translateX(-50%); width: 100%; max-width: 1600px;}
.tab_fixed li{flex: 1;}
.tab_fixed li a{position: relative; display: block; box-sizing: border-box; padding: 1rem; font-size: 1.2rem; font-weight: 500; text-align: center; background: #ddd;}
.tab_fixed li a:hover,
.tab_fixed li a:focus{background-color: #eee;}
.tab_fixed li a.on{color: #fff; background-color: #222;}
.tab_fixed li a.on:before{content: ""; position: absolute; top: 100%; left: 50%; margin: -1px 0 0; transform: translateX(-50%); display: block; width: 0; height: 0; border-style: solid; border-width: 7px 7px 0px 7px; border-color: #222 transparent transparent transparent;}
.tab_cont_fixed{box-sizing: border-box; padding: 1rem 0;}
.tab_cont_fixed > div{padding-top: 200px; /*margin-bottom: 400px;*/}
.tab_cont_fixed > div:first-child{padding-top: 100px; /*margin-bottom: 400px;*/}

.sub_contents > .wrap.fixed{padding-top: 78px;}
.sub_contents > .wrap.fixed .tab_fixed{position: fixed; top: 75px; left: 50%; transform: translateX(-50%); width: 100%; max-width: 1600px;}

@media screen and (max-width: 1640px){
    .tab_fixed.on{max-width: calc(100% - 30px);}
}

@media screen and (max-width: 1000px){
    .tab_cont_fixed > div{margin-bottom: 400px;}
}


/* 탭메뉴 (웹접근성 준수 : 마크업, CSS, JS) */
.tab_wa{position: relative; overflow: hidden; width: 100%; box-sizing: border-box;}
.tab_wa > li{float: left; width: 100%;}
.tab_wa > li > a{position: absolute; top: 0; left: 0; display: block; box-sizing: border-box; width: 50%; /*height: 63px; line-height: 62px;*/ padding: 1rem; font-size: 1.2rem; font-weight: 500; text-align: center; background-color: #ddd;}
.tab_wa > li:nth-child(2) > a{left: 50%;}
.tab_wa > li > a:hover,
.tab_wa > li > a:focus{background-color: #eee;}
.tab_wa > li.on > a{color: #fff; background-color: #222;}
.tab_wa > li.on > a:before{content: ""; position: absolute; top: 100%; left: 50%; margin: -1px 0 0; transform: translateX(-50%); display: block; width: 0; height: 0; border-style: solid; border-width: 7px 7px 0px 7px; border-color: #222 transparent transparent transparent;}
.tab_wa > li > .con{display: none; padding: 6rem 0 0 0;}
.tab_wa > li.on > .con{display:block;}
.tab_wa > li > a strong{font-weight: inherit;}

.tab_wa.tab_count2{} /* 탭 메뉴 총갯수에 따라 .tab_count? 클래스 추가 */
.tab_wa.tab_count2:before{}
.tab_wa.tab_count2 > li {float: left; width: 100%;}
.tab_wa.tab_count2 > li > a{position: absolute; left: 0; top: 0; width: 50%;}

.tab_wa.tab_count3{}
.tab_wa.tab_count3 > li > a{width: 33.333%;}
.tab_wa.tab_count3 > li:nth-child(2) > a{left: 33.333%;}
.tab_wa.tab_count3 > li:nth-child(3) > a{left: 66.666%;}

.tab_wa.tab_count4{}
.tab_wa.tab_count4 > li > a{width: 25%;}
.tab_wa.tab_count4 > li:nth-child(2) > a{left: 25%;}
.tab_wa.tab_count4 > li:nth-child(3) > a{left: 50%;}
.tab_wa.tab_count4 > li:nth-child(4) > a{left: 75%;}

.tab_wa.tab_count5{}
.tab_wa.tab_count5 > li > a{width: 20%;}
.tab_wa.tab_count5 > li:nth-child(2) > a{left: 20%;}
.tab_wa.tab_count5 > li:nth-child(3) > a{left: 40%;}
.tab_wa.tab_count5 > li:nth-child(4) > a{left: 60%;}
.tab_wa.tab_count5 > li:nth-child(5) > a{left: 80%;}

.tab_wa.tab_count6{}
.tab_wa.tab_count6 > li > a{width: 16.666%;}
.tab_wa.tab_count6 > li:nth-child(2) > a{left: 16.666%;}
.tab_wa.tab_count6 > li:nth-child(3) > a{left: 33.332%;}
.tab_wa.tab_count6 > li:nth-child(4) > a{left: 49.998%;}
.tab_wa.tab_count6 > li:nth-child(5) > a{left: 66.664%;}
.tab_wa.tab_count6 > li:nth-child(6) > a{left: 83.33%;}


/* 탭메뉴 (웹접근성 준수 : WAI-ARIA) */
.tab_aria{display: flex; justify-content: space-between;}
.tab_aria .tab{cursor: pointer; flex: 1;}
.tab_aria .tab span{position: relative; display: block; width: 100%; box-sizing: border-box; padding: 1rem; font-size: 1.2rem; font-weight: 500; text-align: center; background: #ddd;}
.tab_aria .tab:hover span,
.tab_aria .tab:focus span{background-color: #eee;}
.tab_aria .tab.active span{color: #fff; background-color: #222;}
.tab_aria .tab.active span:before{content: ""; position: absolute; top: 100%; left: 50%; margin: -1px 0 0; transform: translateX(-50%); display: block; width: 0; height: 0; border-style: solid; border-width: 7px 7px 0px 7px; border-color: #222 transparent transparent transparent;}

.tab_cont_aria{box-sizing: border-box; padding: 1rem 0 0;}
.tab_cont_aria .tabpanel{display: none;}
.tab_cont_aria .tabpanel.active{display: block;}


/* 탭메뉴 (가로 스크롤 + PC 드래그) */
.tab_rowscr{position: relative; /*display: flex; width: auto; flex-wrap: nowrap; overflow-x: auto; gap: 10px;*/ margin-top: -0.75rem; margin-bottom: 3rem; font-size: 0; text-align: left;}
.tab_rowscr::-webkit-scrollbar{height: 8px; /*display: none;*/}
.tab_rowscr::-webkit-scrollbar-thumb{border-radius: 10px; background-color: #dcdcdc;}
.tab_rowscr::-webkit-scrollbar-track{border-radius: 10px; background-color: rgba(193,193,193,0.2);}
.tab_rowscr li{display: inline-block; width: auto; /*flex: 0 0 auto;  margin-bottom: 0.75rem;*/ margin-top: 0.75rem; margin-right: 1rem; font-size: 1rem;}
.tab_rowscr li a{display: block; line-height: 45px; padding: 0 1.5rem; border-radius: 45px; text-align: center; user-select: none; color: #999; background-color: #f2f2f2;}
.tab_rowscr li a.on{font-weight: 600; background-color: #222; color: #fff;}
.rowscr_con_wrap{/*padding: 4rem 0 0;*/ box-sizing: border-box;}
.rowscr_con_wrap .rowscr_con{/*display: none;*/ opacity: 0; visibility: hidden; height: 0; transform: translateY(20px); overflow: hidden;}
.rowscr_con_wrap .rowscr_con.on{/*display: block;*/ opacity: 1; visibility: visible; height: auto; transform: translateY(0); transition: all 0.5s;}
@media (max-width: 1280px){
    .tab_rowscr{display: flex; width: auto; flex-wrap: nowrap; overflow-x: auto; gap: 10px; text-align: center; margin-top: 0;}
    .tab_rowscr li{flex: 0 0 auto; margin-right: 0; margin-bottom: 0.75rem; margin-top: 0;}
}
@media (max-width: 1024px){
    .tab_rowscr li a{line-height: 40px;}
}
@media (max-width: 640px){
    .tab_rowscr{margin-bottom: 2rem;}
    .tab_rowscr li{margin-bottom: 7px;}
    .tab_rowscr li a{font-size: 14px; line-height: 36px; padding: 0 1rem;}
}
@media (max-width: 460px){
    .tab_rowscr{gap: 7px;}
    .tab_rowscr li a{line-height: 34px;}
}
@media (hover: none) {
    /* 터치 디스플레이 (패드, 모바일) 에서 가로메뉴 스크롤바 감추기1 */
    /*.tab_rowscr::-webkit-scrollbar{display: none;}*/
}
@media screen and (any-pointer: coarse){
    /* 터치 디스플레이 (패드, 모바일) 에서 가로메뉴 스크롤바 감추기2 */
    /*.tab_rowscr::-webkit-scrollbar{display: none;}*/
}




/* 마퀴 */
.marquee_wrap{position: relative; display: flex; align-items: center; width: 100%; min-height: 365px; overflow-x: hidden;}
.marquee_wrap .list{position: absolute; display: flex;}
.marquee_wrap .list:first-of-type{animation: marquee1 40s linear infinite;}
.marquee_wrap .list:last-of-type{animation: marquee2 40s linear infinite; transform: translate(100%);}
.marquee_wrap .list li{width: 365px; margin: 0 20px 0 0; pointer-events: none;}
.marquee_wrap .list li img{display: block; width: 100%; pointer-events: none;}

@media screen and (max-width: 1640px){
    .marquee_wrap{min-height: 320px;}
    .marquee_wrap .list li{width: 320px;}
}

@media screen and (max-width: 1200px){
    .marquee_wrap{min-height: 280px;}
    .marquee_wrap .list li{width: 280px;}
}

@media screen and (max-width: 768px){
    .marquee_wrap{min-height: 200px;}
    .marquee_wrap .list li{width: 200px; margin: 0 10px 0 0;}
}




/* 슬라이드 카드 */
.slide_card_wrap{width: 240px; height: 320px;}
.slide_card_wrap .swiper-slide{display: flex; align-items: center; justify-content: center; border-radius: 18px; font-size: 22px; font-weight: 700; color: #fff;}
.slide_card_wrap .swiper-slide:nth-child(odd){background-color: #ccc;}
.slide_card_wrap .swiper-slide:nth-child(even){background-color: #999;}
.slide_card_wrap .control{position: relative; display: flex; justify-content: center; gap: 50px; margin: 1rem auto 0;}
.slide_card_wrap .control .swiper-button-prev,
.slide_card_wrap .control .swiper-button-next{position: static; display: block; margin: 0;}
.slide_card_wrap .control .swiper-button-prev:after,
.slide_card_wrap .control .swiper-button-next:after{}



/* 슬라이드 오버랩 */
.slide_overlap_wrap{margin: 100px auto; width: 320px; height: 240px;}
.slide_overlap_wrap .swiper-slide{display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 600; color: #fff;}
.slide_overlap_wrap .swiper-slide:nth-child(odd){background-color: #ccc;}
.slide_overlap_wrap .swiper-slide:nth-child(even){background-color: #999;}



/* 슬라이드 플립 */
.slide_flip_wrap{margin: 100px auto; width: 320px; height: 240px;}
.slide_flip_wrap .swiper-slide{display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 600; color: #fff;}
.slide_flip_wrap .swiper-slide:nth-child(odd){background-color: #ccc;}
.slide_flip_wrap .swiper-slide:nth-child(even){background-color: #999;}







/* css animation */
@keyframes marquee1{
    0%{transform: translate(0);}
    to{transform: translate(-100%);}
}
@keyframes marquee2{
    0%{transform: translate(100%);}
    to{transform: translate(0);}
}
@keyframes width{
    0%  {width: 0;}
    100%{width: 100%;}
}



