@charset "utf-8";
/* 검색창 */
.sch-inp-wrap { margin-bottom: 50px; }
.sch-inp-wrap .inp-wrap { display: flex; flex-wrap: nowrap; align-items: center; max-width: 1000px; height: 60px; line-height: 60px; margin: 0 auto; border: 2px solid #000; }
.sch-inp-wrap .inp-wrap input { width: 100%; height: 60px; line-height: 60px; margin: 0; padding: 0 20px; font-weight: 500; font-size: 20px; background: transparent; }
.sch-inp-wrap .inp-wrap input::placeholder { font-weight: 500; font-size: 20px; color: #aaa; }
.sch-inp-wrap .inp-wrap button { flex-shrink: 0; width: 60px; height: 60px; }

.sch-section { margin-bottom: 12rem; }
.sch-section .sch-tit { display: flex; align-items: center; justify-content: space-between; padding-bottom: 2rem; border-bottom: 1px solid #000; }
.sch-section .sch-result .item { border-bottom: 1px solid var(--gray-e5); }
.sch-section .sch-result .item a { display: block; padding: 5rem 3rem 5rem 1rem; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-chevron-right' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E") no-repeat right 10px center / auto 18px; }
.sch-section .sch-result .item a .date { display: block; margin: 15px 0 20px; }
.sch-section .sch-result .item a .location { display: block; }
@media only screen and (max-width: 1023px) {
    .sch-section .sch-result .item a { padding: 3rem 3rem 3rem 1rem; }

}


/* 게시판 상단 */
.bbs-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 15px; }
.bbs-head .lf-flex { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.bbs-head .count { flex-shrink: 0; display: flex; align-items: center; gap: 10px; font-size: 1.8rem; }
.bbs-head .count strong { font-weight: 600; }
.bbs-head .rg { margin-left: auto; }
.bbs-head .inp-flex { display: flex; align-items: center; }
.bbs-head .inp-flex select.inp-st3 { border-right: 0; }
@media only screen and (max-width: 767px) {
    .bbs-head .inp-flex { width: 100%; }
    .bbs-head .inp-flex .sch-inp-st1 { width: 100%; }
}


/* 일반 게시판 */
.bbs-st1 { border-top: 2px solid #000; }
.bbs-st1 > li { border-bottom: 1px solid var(--gray-e5); }
/* .bbs-st1 > li.top-fix { background: var(--gray-fc); } */
.bbs-st1 > li > .inner { display: flex; align-items: center; gap: 30px; min-height: 106px; padding: 15px 30px 15px 0; }
.bbs-st1 > li > .inner > div:not(.tit-wrap) { flex-shrink: 0; }
.bbs-st1 > li > .inner > div:first-child { width: 60px; text-align: center; }
.bbs-st1 > li > .inner > div.view-wrap { width: 50px; text-align: center; }
.bbs-st1-1 > li > a > div:first-child { width: 80px; }
.bbs-st1 > li > .inner .tit-wrap { flex-grow: 1; }
.bbs-st1 > li > .inner .tit { display: flex; align-items: center; gap: 7px; }
.bbs-st1 > li > .inner .tit strong { line-height: 1.2; font-weight: 500; font-size: 2rem; }
.bbs-st1 > li > .inner .tit .new { flex-shrink: 0; display: inline-block; width: 20px; height: 20px; line-height: 20px; font-weight: 700; font-size: 11px; color: #fff; background: #000; text-align: center; }
@media only screen and (max-width: 1023px) {
    .bbs-st1 > li > .inner { flex-wrap: wrap; gap: 10px 20px; padding: 15px; }
    .bbs-st1 > li > .inner > div:first-child { width: unset; }
    .bbs-st1 > li > .inner > div.view-wrap { position: relative; padding-left: 20px; }
    .bbs-st1 > li > .inner > div.view-wrap::before { content:""; position: absolute; top: 50%; left: 0; transform: translateY(-50%); width: 1px; height: 10px; background: var(--gray-e5); }
    .bbs-st1 > li > .inner .tit-wrap { width: 100%; }
    .bbs-st1 > li > .inner .tit strong { font-size: 17px; }
}




/* 갤러리 게시판 */
.bbs-gallery { display: flex; flex-wrap: wrap; margin: 0 -10px; }
.bbs-gallery .gallery-item { width: 33.3%; margin-bottom: 30px; padding: 0 10px; }
.bbs-gallery .gallery-item .inner { display: block; }
.bbs-gallery .gallery-item .inner .img-wrap { background: #000; }
.bbs-gallery .gallery-item .inner .img-wrap img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: all 0.3s; }
.bbs-gallery .gallery-item .inner .img-wrap .cate-wrap { position: absolute; top: 10px; left: 10px; z-index: 1; }
.bbs-gallery .gallery-item .inner .txt-wrap { display: block; padding-top: 20px; }
.bbs-gallery .gallery-item .inner .txt-wrap .tit { height: 57px; margin-bottom: 10px; }
.bbs-gallery .gallery-item .inner:hover .txt-wrap .tit { text-decoration: underline; }
.bbs-gallery .gallery-item .inner:hover .img-wrap img { transform: scale(1.1); opacity: .7; }
@media only screen and (max-width: 1400px) {
    .bbs-gallery { margin: 0 -5px; }
    .bbs-gallery .gallery-item { width: 50%; margin-bottom: 20px; padding: 0 5px; }
}
@media only screen and (max-width: 560px) {
    .bbs-gallery { margin: 0; }
    .bbs-gallery .gallery-item { width: 100%; padding: 0; }
}

.no-list { width: 100%; padding: 100px 0; border-top: 1px solid var(--gray-e5); border-bottom: 1px solid var(--gray-e5); text-align: center; }

.bbs-sch-filter { display: flex; align-items: center; }

.filter-wrap { display: flex; align-items: center; gap: 5px; }
.filter-wrap .item { position: relative; }
.filter-wrap .item .btn { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 50px; line-height: 50px; padding: 0 20px; font-size: 16px; border: 1px solid var(--gray-e5); }
.filter-wrap .item.on .btn { border: 1px solid var(--gray-55); }
.filter-wrap .item .btn i { font-size: 12px; transition: all .3s; }
.filter-wrap .item.open .btn i { transform: rotate(180deg); }
.filter-wrap .item .con { display: none; position: absolute; top: 45px; left: 0; z-index: 1; width: 200px; padding: 20px; background: #fff; border: 1px solid var(--gray-55); }
.filter-wrap .item.open .con { display: block; }

.filter-selected { display: flex; align-items: flex-start; gap: 30px; padding: 12px; background: var(--gray-f5); }

.selected-item-list { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 10px; }
.selected-item-list .item { display: flex; align-items: center; gap: 5px; }
.selected-item-list .item span { font-size: 15px; color: #555; }
.selected-item-list .item i { font-size: 13px; color: #555; }
@media only screen and (max-width: 767px) {
    .filter-wrap { flex-wrap: wrap; }
    .filter-wrap .item { position: relative; width: calc(50% - 2.5px); }
    .filter-wrap .item .con { left: 0; width: calc(100vw - 20px); }
    .filter-wrap .item:nth-child(2n) .con { left: unset; right: 0; width: calc(100vw - 20px); }
}


/* 일반게시판 상세 */
.bbs-view-st1 {  }
.bbs-view-st1 .bbs-header { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; padding: 30px 40px; border-bottom: 1px solid var(--gray-e5); }
.bbs-view-st1 .bbs-header .tit { display: block; width: 100%; line-height: 1.4; font-weight: 700; font-size: 4.6rem; color: #222; word-break: keep-all; word-wrap: break-word; text-align: center; }
.bbs-view-st1 .bbs-header .info { flex-shrink: 0; display: flex; align-items: center; gap: 15px; }
.bbs-view-st1 .bbs-header .info span { font-weight: 600; color: var(--gray-75); }
.bbs-view-st1 .bbs-header .info .share-btn { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; color: #000; }
.bbs-view-st1 .info-wrap { padding: 25px 40px; border-bottom: 1px solid var(--gray-e5); }
.bbs-view-st1 .bbs-body { padding: 40px; border-bottom: 1px solid var(--gray-e5); }
.bbs-foot .btn-wrap { display: flex; align-items: center; margin-top: 40px; border-top: 1px solid var(--gray-e5); border-bottom: 1px solid var(--gray-e5); }
.bbs-foot .btn-wrap li { position: relative; width: 50%; display: flex; align-items: center; opacity: 0.5; }
.bbs-foot .btn-wrap li:hover { opacity: 1; }
.bbs-foot .btn-wrap li + li { justify-content: flex-end; }
.bbs-foot .btn-wrap li + li::before { content:""; position: absolute; top: 50%; left: 0; transform: translateY(-50%); width: 1px; height: 20px; background: var(--gray-cc); }
.bbs-foot .btn-wrap li strong { flex-shrink: 0; position: relative; display: flex; align-items: center; gap: 8px; line-height: 1.5; padding: 20px 30px; font-weight: 600; color: #000; }
.bbs-foot .btn-wrap li strong i::before { font-weight: 700 !important; }
.bbs-foot .btn-wrap li a { display: block; }
.bbs-foot .btn-wrap li a:hover span { text-decoration: underline; }
.bbs-foot .btn-wrap li a span { position: relative; line-height: 1.5; color: #000; }
.bbs-foot .adm-reply { display: flex; margin-top: 40px; border-top: 1px solid var(--gray-e5); border-bottom: 1px solid var(--gray-e5); }
.bbs-foot .adm-reply .tit { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 140px; background: var(--gray-f467); }
.bbs-foot .adm-reply .cont { flex-grow: 1; padding: 20px;  }
@media only screen and (max-width: 1023px) {
    .bbs-view-st1 .bbs-header .tit { font-size: 3rem; }
}
@media only screen and (max-width: 767px) {
    .bbs-view-st1 .bbs-header { flex-direction: column; gap: 20px; padding: 25px; }  
    .bbs-view-st1 .bbs-header .tit { font-size: 2.4rem; }
    .bbs-view-st1 .bbs-body { padding: 25px; }
    .bbs-foot .btn-wrap { flex-direction: column; }
    .bbs-foot .btn-wrap li { width: 100%; }
    .bbs-foot .btn-wrap li + li { border-top: 1px solid var(--gray-e5); }
    .bbs-foot .btn-wrap li + li::before { display: none; }
    .bbs-foot .btn-wrap li strong { padding: 14px; }

    .bbs-foot .adm-reply { flex-direction: column; }
    .bbs-foot .adm-reply .tit { justify-content: left; width: 100%; padding: 15px 20px; }
}


/* 첨부파일 리스트 */
.attr-st1 {  }
.attr-st1 li + li { margin-top: 6px; }
.attr-st1 li a { display: flex; gap: 6px; padding: 16px; background: var(--gray-f6);}
.attr-st1 li a span { line-height: 1.4; }
.attr-st1 li a em { line-height: 1.4; }
@media only screen and (max-width: 767px) {
    .attr-st1 li { flex-wrap: wrap; }
    .attr-st1 li a { width: 1005; }
    .attr-st1 li a i { margin-top: 3px; }
}








/* 페이징 */
.pagination { display: flex; justify-content: center; flex-wrap: wrap; margin-top: 50px; }
.pagination a { flex-shrink: 0; display: block; margin: 0 12px; padding: 5px; font-size: 18px; opacity: .5; }
.pagination a.arr { font-size: 0; background-position: center; background-repeat: no-repeat; background-size: auto 10px; border: none; }
.pagination a.arr:hover { opacity: 1; }
.pagination a.first-page { background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 35.72 36.34'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23222; stroke-linecap: round; stroke-linejoin: round; stroke-width: 6px; %7D %3C/style%3E%3C/defs%3E%3Cpolyline class='cls-1' points='33.72 34.34 17.55 18.17 33.72 2'/%3E%3Cpolyline class='cls-1' points='18.17 34.34 2 18.17 18.17 2'/%3E%3C/svg%3E"); }
.pagination a.last-page { background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 35.72 36.34'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23222; stroke-linecap: round; stroke-linejoin: round; stroke-width: 6px; %7D %3C/style%3E%3C/defs%3E%3Cpolyline class='cls-1' points='2 2 18.17 18.17 2 34.34'/%3E%3Cpolyline class='cls-1' points='17.55 2 33.72 18.17 17.55 34.34'/%3E%3C/svg%3E"); }
.pagination a.prev-page { margin-right: 5px; background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20.17 36.34'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23222; stroke-linecap: round; stroke-linejoin: round; stroke-width: 6px; %7D %3C/style%3E%3C/defs%3E%3Cpolyline class='cls-1' points='18.17 34.34 2 18.17 18.17 2'/%3E%3C/svg%3E"); }
.pagination a.next-page { margin-left: 5px; background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20.17 36.34'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23222; stroke-linecap: round; stroke-linejoin: round; stroke-width: 6px; %7D %3C/style%3E%3C/defs%3E%3Cpolyline class='cls-1' points='2 2 18.17 18.17 2 34.34'/%3E%3C/svg%3E"); }
.pagination a.active { font-weight: 600; border-bottom: 2px solid #000; opacity: 1; }




/* .grid-layout { display: flex; align-items: flex-start; }
.grid-layout .layout-aside { flex-shrink: 0; width: 400px; padding-top: 3rem; }
.grid-layout .layout-main { flex-grow: 1; width: calc(100% - 400px); padding-left: 6rem; padding-top: 3rem; }
.grid-layout.grid-layout-2 .layout-main { padding-left: 0; } */

.grid-layout { display: flex; align-items: flex-start; }
.grid-layout .layout-aside { flex-shrink: 0; width: 260px; padding-top: 30px; padding-left: 50px; }
.grid-layout .layout-main { flex-grow: 1; width: 100%; padding-left: 0; padding-top: 30px; }
.grid-layout .layout-main-1 { padding-left: 60px; padding-right: 50px; }


.grid-main { display: flex; align-items: flex-start; }
.grid-main .main-aside { flex-shrink: 0;  width: 400px; padding-top: 30px; }
.grid-main .con-body { flex-grow: 1; width: calc(100% - 400px); padding-left: 60px; padding-top: 30px; }

.mypg-main .user-info { padding: 15px; border: 1px solid #000; }
.mypg-main .user-info .prof { display: flex; align-items: center; gap: 30px; }
.mypg-main .user-info .prof .img-wrap { position: relative; flex-shrink: 0; width: 94px; height: 94px; background: #fff url(../img/common/prof-bg.svg); border-radius: 100%; overflow: hidden; }
.mypg-main .user-info .prof .img-wrap img { position: absolute; left: 50%; transform: translateX(-50%); bottom: -20px; }
.mypg-main .user-info .info-wrap { padding: 20px; background: var(--gray-f6); }
.mypg-main .user-info .editor-text { word-break: keep-all; word-wrap: break-word; }
.mypg-main .speed-date { display: block; padding: 20px; border: 1px solid #000; border-radius: 2px; }
.mypg-main .speed-date ul { display: flex; gap: 10px; }
.mypg-main .speed-date ul li { position: relative; flex: 1; display: flex; flex-direction: column; gap: 35px; padding: 20px; border: 1px solid var(--gray-e5); overflow: hidden; }
.mypg-main .speed-date ul li + li::before {  }
.mypg-main .speed-date ul li span { display: block; text-align: right; }
.mypg-main .speed-date ul li span strong { font-size: 40px; }
@media only screen and (max-width: 1500px) {
	.grid-layout .layout-aside { padding-left: 20px; }
    .grid-layout .layout-main-1 { padding-right: 20px; }
	
}
@media only screen and (max-width: 1200px) {
    .grid-layout .layout-aside { width: 200px; }
    .grid-layout .layout-main-1 { width: calc(100% - 200px); padding-left: 40px; }

    .grid-main .main-aside { width: 200px; }
    .grid-main .con-body { width: calc(100% - 200px); padding-left: 40px; }
}
@media only screen and (max-width: 1023px) {
    .grid-layout { flex-direction: column; }
    .grid-layout .layout-aside { width: 100%; padding-top: 0; padding-left: 15px; padding-right: 15px; }
    .grid-layout .layout-main { width: 100%; padding-top: 0; }
    .grid-layout .layout-main-1 { padding-left: 15px; padding-right: 15px; }
    
    .grid-main { flex-direction: column; }
    .grid-main .main-aside { width: 100%; }
    .grid-main .con-body { width: 100%; padding-left: 0; }
}
@media only screen and (max-width: 767px) {
    .grid-layout .layout-aside { padding-left: 10px; padding-right: 10px;   }
    .grid-layout .layout-main-1 { padding-left: 10px; padding-right: 10px; }
}


.perf-info-st1 { display: flex; }
.perf-info-st1 .lf { flex-shrink: 0; width: calc(45% - 30px); }
.perf-info-st1 .rg { width: 55%; margin-left: 30px; padding-left: 30px; border-left: 1px solid var(--gray-e5); }
.perf-info-st1 .rg .info-st1 li { display: flex; }
.perf-info-st1 .rg .info-st1 li strong { flex-shrink: 0; }
@media only screen and (max-width: 767px) {
    .perf-info-st1 { flex-direction: column; }
    .perf-info-st1 .lf { width: 100%; }
    .perf-info-st1 .rg { width: 100%; margin-left: 0; margin-top: 20px; padding-left: 0; padding-top: 20px; border-left: none; border-top: 1px solid var(--gray-e5); }
    
}

.item-list-st1 { border-top: 1px solid #000; }
.item-list-st1 .item { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--gray-e5); }
.item-list-st1 .item.no-list { padding: 100px 0; justify-content: center; align-items: center; }
.item-list-st1 .item .lf { flex-grow: 1; display: flex; align-items: center; gap: 10px; }
.item-list-st1 .item .rg { flex-shrink: 0; }
.item-list-st1-1 .item { align-items: baseline; }
.item-list-st1-1 .item .lf { flex-direction: column; align-items: baseline; }
.item-list-st1-1 .item .rg { width: 20%; }
@media only screen and (max-width: 767px) {
    .item-list-st1 .item { gap: 10px; }
    .item-list-st1 .item { flex-direction: column; align-items: flex-start; }
    .item-list-st1 .item .lf { width: 100%; }
    .item-list-st1 .item .rg { width: 100%; }
}


.item-list-st2 { display: flex; }
.item-list-st2 .item { flex: 1; display: flex; flex-direction: column; margin-right: -1px; }
.item-list-st2 .item .bd-box-st1 { flex: 1; display: flex; flex-direction: column; justify-content: space-between; gap: 30px; }
.item-list-st2 .item .bd-box-st1 .top {  }
.item-list-st2 .item .bd-box-st1 .top i { font-size: 20px; }
.item-list-st2 .item .bd-box-st1 span {  }
@media only screen and (max-width: 1023px) {
    .item-list-st2 { flex-wrap: wrap; }
    .item-list-st2 .item { flex: 1 1 33.3%; margin-bottom: -1px; }
}
@media only screen and (max-width: 767px) {
    .item-list-st2 .item { flex: 1 1 50%; }
}




.item-list-st3 {  }
.item-list-st3 .item { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 15px; border: 1px solid var(--gray-e5); border-radius: 3px; }
.item-list-st3 .item.on { border-color: #000; }
.item-list-st3 .item + .item { margin-top: 10px; }
.item-list-st3 .item .lf { display: flex; align-items: center; width: 100%; }
.item-list-st3 .item .rg { flex-shrink: 0; display: flex; align-items: center; }
@media only screen and (max-width: 1200px) {
    .item-list-st3 .item { padding: 10px; }
}
@media only screen and (max-width: 767px) {
    .item-list-st3 { display: flex; flex-wrap: wrap; gap: 5px; }
    .item-list-st3 .item { width: calc(50% - 5px); }
    .item-list-st3 .item + .item { margin-top: 0; }
    .item-list-st3 .item .rg { display: none; }
    
}
@media only screen and (max-width: 470px) {
    .item-list-st3 .item { width: 100%; }
}


.item-list-st4 {  }
.item-list-st4 .item .item-btn { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; color: #aaa; border-bottom: 1px solid var(--gray-e5); }
.item-list-st4 .item .item-btn .icn { display: flex; align-items: center; justify-content: center; width: 25px; height: 25px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23aaa' class='bi bi-plus-lg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2'/%3E%3C/svg%3E") no-repeat center center / auto 25px; }
.item-list-st4 .item.open .item-btn { color: #000; }
.item-list-st4 .item.open .item-btn .icn { background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8H13' stroke='black' stroke-linecap='round'/%3E%3C/svg%3E"); }
.item-list-st4 .item .item-cont { padding: 20px 0; border-bottom: 1px solid #000; }
.item-list-st4 .item .item-cont .rg { margin-top: 20px; }


.item-list-st5 .item { display: flex; margin-bottom: 30px; padding-bottom: 30px; border-bottom: 1px solid var(--gray-cc); }
.item-list-st5 .item .lf { flex-shrink: 0; width: 30%; }
.item-list-st5 .item .lf-30 { width: 30%; }
.item-list-st5 .item .rg { flex-grow: 1; width: 70%; padding-left: 3rem; }
@media only screen and (max-width: 767px) {    
    .item-list-st5 .item { flex-direction: column; gap: 10px; }
    .item-list-st5 .item .lf { width: 100%; }
    .item-list-st5 .item .rg { width: 100%; padding-left: 0; }
}


.item-list-st6 { display: flex; flex-wrap: wrap; margin: 0 -1rem; }
.item-list-st6 .item { width: 20%; margin-bottom: 2rem; padding: 0 1rem; }
.item-list-st6 .item .lf {  }
.item-list-st6 .item .txt-wrap { padding-top: 1rem; text-align: center; word-break: break-all; }
@media only screen and (max-width: 1023px) {    
    .item-list-st6 .item { width: 25%; }
}
@media only screen and (max-width: 767px) {    
    .item-list-st6 { margin: 0 -0.5rem; }
    .item-list-st6 .item { width: 33.3%; padding: 0 0.5rem; }
}
@media only screen and (max-width: 470px) {    
    .item-list-st6 .item { width: 50%; }
}


.item-list-st7 { display: flex; flex-wrap: wrap; margin: 0 -1.5rem; }
.item-list-st7 .item { width: 33.3%; margin-bottom: 2rem; padding: 0 1.5rem; }
.item-list-st7 .item .bg-box-st1 { display: flex; align-items: center; justify-content: center; height: 200px; }
.item-list-st7 .item .bg-box-st1  img { width: auto; max-width: clamp(100px, 200px, 200px); height: auto; max-height: clamp(40px, 80px, 100px); }
.item-list-st7 .item .txt-wrap { margin-top: 2rem; }
.item-list-st7 .item .txt-wrap .tit { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
@media only screen and (max-width: 1023px) {
    .item-list-st7 { margin: 0 -1rem; }
    .item-list-st7 .item { width: 50%; padding: 0 1rem; }
}
@media only screen and (max-width: 490px) {
    .item-list-st7 { margin: 0; }
    .item-list-st7 .item { width: 100%; padding: 0; }
}




.tag-list-st1 { display: flex; flex-wrap: wrap; gap: 5px; }
.tag-list-st1 li { font-size: 15px; color: var(--gray-75); }


.img-swiper-st1 {  }
.img-swiper-st1 .swiper { height: 500px; }
.img-swiper-st1 .swiper .swiper-slide { width: fit-content; }
.img-swiper-st1 .swiper .swiper-slide .img-wrap { height: 100%; }
.img-swiper-st1 .swiper .swiper-slide .img-wrap img { height: 100%; object-fit: cover; }


.conf-group + .conf-group { margin-top: 3rem; padding-top: 3rem; border-top: 1px solid var(--gray-e5); }
@media only screen and (max-width: 1300px) {
    .conf-group { flex-direction: column; row-gap: 30px; margin: 0; }
    .conf-group .col-6 { width: 100%; padding: 0; }

}
@media only screen and (max-width: 1023px) {
    .sch-group { flex-direction: column; row-gap: 30px; margin: 0; }
    .sch-group .col-5 { width: 100%; padding: 0; }
    .sch-group .col-7 { width: 100%; padding: 0; }
    
    .pams2025-group { flex-direction: column; row-gap: 30px; margin: 0; }
    .pams2025-group .col-6 { width: 100%; padding: 0; }

    .acc-group { flex-direction: column; row-gap: 30px; }
    .acc-group .col-5 { width: 100%; padding: 0; }
    .acc-group .col-7 { width: 100%; padding: 0; }
}
@media only screen and (max-width: 767px) {
    .sd-group { flex-direction: column; row-gap: 30px; margin: 0; }
    .sd-group .col-6 { width: 100%; padding: 0; }
    
}
@media only screen and (max-width: 470px) {

}




.img-box { position: relative; display: flex; align-items: center; justify-content: center; min-height: 60rem; padding: 10rem 0; }
.img-box .txt-wrap { position: relative; z-index: 10; padding: 0 5rem; color: #fff; text-align: center; opacity: 0; }
.img-box .txt-wrap strong { font-family: var(--head-font), var(--body-font); }
.img-box .txt-wrap p { line-height: 1.6; font-family: var(--head-font), var(--body-font); }
.img-box .bg-swiper { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 50%; height: 100%; }
.img-box .bg-swiper::before { content:""; position: absolute; top: 0; left: 0; z-index: 10; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); }
.img-box .bg-swiper .img-wrap { width: 100%; height: 100%; }
.img-box .bg-swiper .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
@media only screen and (max-width: 1023px) {
    .img-box { padding: 15rem 0; }
    
}

.list-wrap-st1 { display: flex; flex-wrap: wrap; }



.coupon-wrap { display: flex; justify-content: center; gap: 20px; }
.coupon-wrap .coupon { display: flex; }
.coupon-wrap .coupon .txt-wrap { display: flex; flex-direction: column; gap: 20px; padding: 30px 80px 30px 30px; color: #fff; background: #000; border-radius: 3px 10px 10px 3px; }
.coupon-wrap .coupon .btn-wrap { position: relative; display: flex; align-items: center; justify-content: center; background: #000; border-radius: 10px 3px 3px 10px; }
.coupon-wrap .coupon .btn-wrap::before { content:""; position: absolute; top: 50%; left: 0; transform: translateY(-50%); width: 1px; height: 80%; border: 1px dashed rgba(255, 255, 255, 0.2); }
.coupon-wrap .coupon .btn-wrap button { width: 100%; height: 100%; padding: 30px; font-size: 25px; color: #fff; }
.coupon-wrap .coupon .btn-wrap button span { display: none; }
.coupon-wrap .coupon:last-child .txt-wrap { color: #000; background: var(--theme2); }
.coupon-wrap .coupon:last-child .btn-wrap { background: var(--theme2); }
.coupon-wrap .coupon:last-child .btn-wrap::before { border: 1px dashed rgba(0, 0, 0, 0.2); }
.coupon-wrap .coupon:last-child .btn-wrap button { color: #000; }
@media only screen and (max-width: 1300px) {
    .coupon-wrap .coupon { flex-direction: column; }
    .coupon-wrap .coupon .txt-wrap { gap: 60px; padding: 30px;border-radius: 3px 3px 10px 10px; }
    .coupon-wrap .coupon .btn-wrap { border-radius: 10px 10px 3px 3px; }
    .coupon-wrap .coupon .btn-wrap::before { top: 0; left: 50%; transform: translateX(-50%); width: 80%; height: 1px; }
    .coupon-wrap .coupon .btn-wrap button { display: flex; align-items: center; justify-content: center; gap: 5px; padding: 15px; font-size: 14px; }
    .coupon-wrap .coupon .btn-wrap button span { display: block; }
    
}
@media only screen and (max-width: 470px) {
    .coupon-wrap { flex-direction: column; }
    .coupon-wrap .coupon { flex-direction: row; }
    .coupon-wrap .coupon .txt-wrap { flex-grow: 1; gap: 30px; padding: 30px 60px 30px 30px; border-radius: 3px 10px 10px 3px; }
    .coupon-wrap .coupon .btn-wrap { border-radius: 10px 3px 3px 10px; }
    .coupon-wrap .coupon .btn-wrap::before { top: 50%; left: 0; transform: translateY(-50%); width: 1px; height: 80%; }
    .coupon-wrap .coupon .btn-wrap button { padding: 25px; font-size: 20px; }
    .coupon-wrap .coupon .btn-wrap button span { display: none; }
}



.detail-main .p-tit { display: flex; align-items: baseline; gap: 15px; }
.detail-main .p-eng-tit { display: flex; align-items: baseline; gap: 15px; }