/*********************************/
/*********** 게시판 공통 ***********/
/*********************************/
/* 게시판 상단 */
.sch_top {display:flex;justify-content:space-between;align-items:flex-end;position:relative;z-index:1;margin-bottom:2rem;}
    @media only screen and (max-width:1023px){
        .sch_top {margin-bottom:1.5rem;}
    }

/* 총게시물 수 */
.sch_top .total {}
.sch_top .total strong {font-size:1.7rem;font-weight:500;color:var(--black);}
.sch_top .total strong > em {color:var(--primary);}
.sch_top .total strong > span {font-size:1.6rem;color:#767676;}
.sch_top .total strong > span em {color:var(--primary);}

/* 검색 */
.sch_top .search_box .inputbox {display:flex;justify-content:center;gap:4px;}
.sch_top .search_box .inputbox select {width:20rem;border:1px solid #111;border-radius:1rem;color:var(--black);}
.sch_top .search_box .inputbox input {width:43rem;height:4.5rem;border-radius:1rem;border:1px solid #111;color:var(--black);}
.sch_top .search_box .inputbox input::-ms-input-placeholder {color:var(--black);}
.sch_top .search_box .inputbox input::-webkit-input-placeholder {color:var(--black);}
.sch_top .search_box .inputbox input::-moz-placeholder {color:var(--black);}
.sch_top .search_box .inputbox button {flex-shrink:0;width:5rem;height:5rem;background:#111;border-radius:1rem;color:#fff;font-size:2rem;}
    @media only screen and (max-width:1023px){
        .sch_top {margin-bottom:1.5rem;}
        .sch_top .search_box .inputbox select {width:15rem;}
        .sch_top .search_box .inputbox input {width:33rem;}
    }
    @media only screen and (max-width:767px){
        .sch_top {flex-direction:column-reverse;align-items:flex-start;margin-bottom:1rem;gap:1rem;}
        .sch_top .search_box {width:100%;}
        .sch_top .search_box .inputbox {flex-wrap:wrap;}
        .sch_top .search_box .inputbox select {flex-grow:1;}
        .sch_top .search_box .inputbox input {flex-grow:1;}
        .sch_top .search_box .inputbox button {flex-grow:1;}
    }

/* 게시판 영역 */
.board_box {border-top:2px solid #111;border-bottom:1px solid #ddd;}

/* 게시판 페이지넘버 */
.page_number {display:flex;justify-content:center;align-items:center;gap:.5rem;flex-wrap:wrap;margin-top:4rem;}
.page_number li a {display:grid;place-items:center;width:34px;height:34px;line-height:1.2;text-align:center;font-size:1.5rem;color:var(--black);}
.page_number li a.on,.page_number li a:is(:hover, :focus, :active) {}
.page_number .prev_first a {background:url("../../images/fs/common/first_prev.png") no-repeat center center;font-size:0;}
.page_number .prev a {background:url("/images/fs/common/prev.png") no-repeat center center;font-size:0;}
.page_number .num a.on,.page_number .num a:is(:hover, :focus, :active) {background:var(--primary);border-radius:5px;color:#fff;}
.page_number .next a {background:url("/images/fs/common/next.png") no-repeat center center;font-size:0;}
.page_number .next_last a {background:url("/images/fs/common/last_next.png") no-repeat center center;font-size:0;}
    @media only screen and (max-width:1023px){
        .page_number {margin-top:2rem;}
    }
    @media only screen and (max-width:767px){
        .page_number li {margin:0 1px;}
        .page_number li a {width:3rem;height:3rem;line-height:3rem;}
        .page_number .prev_first a {width:3rem;}
        .page_number .prev a {width:3rem;}
        .page_number .next a {width:3rem;}
        .page_number .next_last a {width:3rem;}
    }

/* 검색 카테고리 */
.sch_category {margin-bottom:4rem;}
.sch_category [class^="category_box"] {display:grid;grid-template-columns:repeat(auto-fill, minmax(calc(20% - 1.6rem), 1fr));gap:1.6rem;}
.sch_category [class^="category_box"] li a {display:flex;align-items:center;position:relative;height:55px;padding:2px 30px 0 20px;text-decoration:none;border:1px solid #ddd;border-radius:5px;transition:.1s;}
.sch_category [class^="category_box"] li a:after {content:"";position:absolute;right:1rem;top:50%;display:block;width:15px;height:5px;background:#ddd;transform:translateY(-50%);transition:.1s;}
.sch_category [class^="category_box"] li:is(.on,:hover,:focus,:active) a {font-weight:500;font-size:1.9rem;padding:4px 30px 0 20px;border:2px solid var(--primary);color:var(--primary);}
.sch_category [class^="category_box"] li:is(.on,:hover,:focus,:active) a:after {right:12px;width:1rem;height:1rem;border-radius:100%;background:var(--primary);}
.sch_category [class^="category_box"] li a span {text-overflow:ellipsis;}
.sch_category [class^="tab_content"] {display:none;}
.sch_category [class^="tab_content"].on {display:block;}
    @media only screen and (max-width:1023px){
        .sch_category {margin-bottom:3rem;}
        .sch_category [class^="category_box"] {grid-template-columns:repeat(auto-fill, minmax(calc(33.333% - 1.6rem), 1fr));}
        .sch_category [class^="category_box"] li a {padding:2px 35px 0 15px;}
        .sch_category [class^="category_box"] li:is(.on,:hover,:focus,:active) a {padding:4px 35px 0 15px;}
    }
    @media only screen and (max-width:767px){
        .sch_category [class^="category_box"] {grid-template-columns:repeat(auto-fill, minmax(calc(50% - 1.6rem), 1fr));}
        .sch_category [class^="category_box"] li a {height:50px;}
    }
    @media only screen and (max-width:599px){
        .sch_category [class^="category_box"] {grid-template-columns:repeat(auto-fill, minmax(100%, 1fr));gap:.8rem;}
    }


/*********************************/
/*********** 일반 게시판 ***********/
/*********************************/
/* 목록 */
.board_table {width:100%;line-height:1;margin-top:1px;border-collapse:collapse;color:var(--black);}
.board_table thead th {position:relative;padding:2.5rem 2rem;font-weight:700;border-bottom:1px solid #111;}
.board_table tbody tr {border-top:1px solid #ddd;}
.board_table tbody tr.noti {position:relative;background:#f3f6f9;}
.board_table tbody tr.noti:after {content:"";display:block;position:absolute;left:0;top:-1px;width:100%;height:1px;background:#fff;}
.board_table tbody td {padding:2.5rem 1.5rem;height:56px;font-weight:400;}
.board_table tbody td .ellipsis1 {max-width:90%;line-height:2;}
.board_table tbody td.num {font-size:1.6rem;color:#767676;}
.board_table tbody td.img img {width:128px;}
.board_table tbody td.tit {font-weight:600;}
.board_table tbody td.tit .flex_box {display:flex;align-items:center;gap:1rem;}
.board_table tbody td.tit .flex_box .new img {vertical-align:middle;}
.board_table tbody td.tit .flex_box .lock {color:var(--primary);}
.board_table tbody td.tit .reply {margin-left:1.4rem;font-weight:400;white-space:nowrap;}
.board_table tbody td.view .btn_bace:first-child {margin-top:0;}
.board_table tbody td.view .btn_bace {margin-top:5px;}
.board_table tbody td.file {font-size:2rem;color:#767676;}
.board_table tbody td.date {font-size:1.7rem;color:#767676;}
.board_table tbody td .btn_bace {height:35px;line-height:35px;font-size:1.4rem;}
.board_table tbody tr.noti .num span {display:grid;place-items:center;width:5rem;height:3rem;margin:0 auto;background:var(--primary);text-align:center;border-radius:5rem;font-weight:500;font-size:1.6rem;color:#fff;}
.board_table tbody tr:is(:hover,:focus,:active) {background:#f9f9f9;}
    @media only screen and (max-width:1023px){
        .board_table thead th {padding:1rem;}
        .board_table tbody td {padding:1rem;}
        .board_table tbody td .new img {width:17px;}
        .board_table tbody td .btn_bace {height:35px;line-height:35px;}
        .board_table tbody td.tit a {margin-top:0;}
    }
    @media only screen and (max-width:767px){
        .board_table {text-align:left;}
        .board_table colgroup,
        .board_table thead th {display:none;}
        .board_table tbody tr:first-child {border-top:0;}
        .board_table tbody tr.noti:after {display:none;}
        .board_table tbody tr {display:flex;flex-wrap:wrap;padding:1.5rem 0;}
        .board_table tbody td {display:block;height:auto;}
        .board_table tbody td.num {order:1;display:none;}
        .board_table tbody td.tit {order:2;width:100%;padding:0 6px 1rem 6px;font-weight:600;}
        .board_table tbody td .ellipsis1 {font-size:2.2rem;}
        .board_table tbody td .new img {width:2rem;}
        .board_table tbody td.file {order:4;display:flex;align-items:center;padding:0 6px;border-right:0;font-weight:400 !important;}
        .board_table tbody td.data {order:3;display:inline-block;padding:0 6px;margin:5px 0;border-right:1px solid #ddd;}
        .board_table tbody tr.noti td {font-weight:600;}
        .board_table tbody tr.noti td.num {display:block;}
        .board_table tbody tr.noti .num {padding:0 6px 1rem 6px;text-align:left;}
        .board_table tbody tr td.ta-c {width:100%;}
    }
    @media only screen and (max-width:529px){
        .board_table tbody td .ellipsis1 {max-width:98%;}
        .board_table tbody td.tit .reply {display:block;margin:1rem 0 0 0;}
    }

/* 상세 */
.view_box {border-bottom:1px solid #ddd;border-top:2px solid #111;}
.view_box .top {border-bottom:1px solid#ddd;text-align:center;}
.view_box .top .sttit {display:flex;flex-direction:column;font-size:3.3rem;color:var(--black);padding:4.5rem 0 4rem;}
.view_box .top .sttit .notice {display:grid;place-items:center;width:5rem;height:3rem;margin:0 auto;background:var(--primary);text-align:center;border-radius:5rem;font-weight:500;font-size:1.6rem;color:#fff;}
.view_box .top .view_info {padding:2rem 1.5rem;border-top:1px dashed #ddd;}
.view_box .top .view_info li {display:inline-block;margin-right:1.5rem;padding-right:2.5rem;border-right:1px solid #ddd;color:#767676;}
.view_box .top .view_info li:last-child {margin-right:0;padding-right:0;border-right:0;}
.view_box .top .view_info li em {display:inline-block;margin-right:1rem;color:var(--black);}
.view_box .content_box {padding:5rem 3rem;line-height:1.7;font-size:1.7rem;color:#767676;}
.view_box .file_box {display:flex;gap:55px;padding:2rem 3rem 18px 3rem;border-top:1px solid #ddd;}
.view_box .file_box strong {padding-top:2px;color:var(--black);}
.view_box .file_box .file_d {display:flex;align-items:center;gap:7rem;}
.view_box .file_box .file_d a {display:flex;gap:8px;line-height:1.2;}
.view_box .file_box .file_d a img {opacity:0.5;transform:translateY(-2px);}
.view_box .file_box .file_d a span {margin-top:2px;font-weight:500;font-size:1.6rem;color:var(--primary);}
.view_box .file_box .file_d a:is(:hover,:focus,:active) {}
.view_box .public_box {margin:0;border-radius:0;}
.view_np_box {display:flex;justify-content:center;align-items:center;}
    @media only screen and (max-width:1023px){
        .view_box .content_box {padding:3rem 2rem;}
        .view_box .file_box {gap:25px;padding:25px 2rem;}
    }
    @media only screen and (max-width:767px){
        .view_box .top .sttit {margin-bottom:28px;}
        .view_box .top .view_info {padding:1.5rem 1rem;}
        .view_box .top .view_info li {margin-right:1rem;padding-right:1.5rem;}
        .view_box .file_box {flex-direction:column;gap:1.5rem;padding:1.5rem 1.5rem;}
        .view_box .file_box .file_d {flex-direction:column;align-items:flex-start;gap:1rem;}
        .view_box .file_box .btn_down {height:3rem;line-height:3rem;}
        .view_box .file_box .btn_down img {margin-top:1px;}
    }

/* 댓글 */
.reply_box {padding:3rem;border-top:1px solid #ddd;}
.reply_box .reply_tit {color:var(--black);}
.reply_box .reply_tit .reply {display:inline-block;margin-left:1rem;font-weight:600;}
.reply_box .reply_tit .reply i {font-weight:400;font-size:2rem;}
.reply_box .bot_reply {margin-top:1rem;padding:2rem;background:#ebf7fc;border-radius:1rem;border:1px solid #ddd;}
.reply_box .bot_reply .text_reply {background:#fff;border-radius:1rem;}
.reply_box .bot_reply .text_reply .box {display:flex;padding:3rem;}
.reply_box .bot_reply .text_reply .reply_tit2 {flex-shrink:0;width:20rem;color:var(--black);}
.reply_box .bot_reply .text_reply .reply_tit2 span {display:block;font-weight:400;font-size:1.5rem;}
.reply_box .bot_reply .text_reply .reply_p {width:100%;line-height:1.4;min-height:14.5rem;margin-right:3.5rem;color:#333;}
.reply_box .bot_reply .btn {flex-shrink:0;width:10rem;display:flex;flex-direction:column;gap:.5rem;}
.reply_box .bot_reply .text_textarea {position:relative;margin-top:2rem;}
    @media only screen and (max-width:767px){
        .reply_box .bot_reply .text_reply .box {flex-direction:column;gap:1rem;padding:2rem;}
        .reply_box .bot_reply .btn {width:100%;text-align:right;}
    }

/* 게시물 비밀번호 확인 */
.boardAuth p {font-size:1.8rem;color:var(--black);line-height:1.5;margin-top:4rem;}
.boardAuth .inputpw {max-width:35rem;margin:2rem auto;}
.boardAuth .btn_area {display:flex;justify-content:center;gap:.4rem;}
    @media only screen and (max-width:767px){
        .boardAuth {padding:6rem 2rem;}
        .boardAuth .inputpw {max-width:30rem;}
    }

/* 쓰기 */
.required {background:#f4f4f4;padding:2rem 3rem;margin-bottom:4rem;border-radius:1.2rem;}
.form {width:100%;display:flex;flex-wrap:wrap;justify-content:space-between;gap:5rem 0;}
.form li {position:relative;width:100%;}
.form li .flex {justify-content:space-between;}
.form li label {display:block;}
.form li em {display:block;margin-bottom:1.6rem;color:var(--black);font-weight:600;font-size:2rem;line-height:1;}
.form li :is(input,textarea,select) {display:flex;width:100%;border-radius:1.2rem;background:#fff;border:1px solid #ddd;font-weight:400;line-height:100%;box-sizing:border-box;color:var(--black);}
.form li :is(select) {background:url(/images/fs/common/arrow_drop_down.svg) no-repeat right 10px center #fff;}
.form .check_flex {display:flex;align-items:center;gap:2.4rem;flex-wrap:wrap;width:100%;padding:2rem;border-radius:1.2rem;border:1px solid #ddd;}
.form .checks {display:flex;align-items:center;}
.file_box {display:flex;flex-wrap:wrap;position:relative;}
.file_box:not(:first-child) {margin-top:.5rem;}
.file_box .btn_upload {width:15rem;}
.file_box .btn_upload label {display:block;width:100%;padding:0 2rem;border-radius:1.2rem 0 0 1.2rem;line-height:4.5rem;height:4.5rem;font-size:.9em;transition:all .4s;-webkit-transition:all .4s;}
.file_box .btn_upload input[type="file"] {position:absolute;width:0;height:0;padding:0;overflow:hidden;border:0;cursor:pointer;transition:all .4s;-webkit-transition:all .4s;}
.file_box .upload_list {display:block;width:calc(100% - 15rem);}
.file_box .upload_list .upload_name {display:flex;align-items:center;padding:0 1.5rem;border-radius:0 1.2rem 1.2rem 0;background:#f6f6f6;border-bottom:none;line-height:4.5rem;height:4.5rem;font-size:.9em;color:#767676;}
.file_box .upload_list .upload_name .lbl_userFile {width:calc(100% - 10rem);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.file_box .btn_del {position:absolute;top:50%;right:2rem;transform:translateY(-50%);font-weight:500;font-size:inherit;color:#de3412;background:transparent;}
.file_box .upload_btn_wrap {display:flex;align-items:center;gap:.5rem;}
.file_box .upload_btn_wrap .btn_del {position:static;transform:translateY(0);display:flex;align-items:center;margin-right:1rem;}
.file_box .upload_btn_wrap .btn_toggle {border:1px solid #ddd;background:#fff;color:#767676;border-radius:.5rem;padding:.5rem 1rem;font-size:1.3rem;cursor:pointer;transition:all 0.2s ease;white-space:nowrap;}
.file_box .upload_btn_wrap .btn_toggle.active {background:var(--primary);border-color:var(--primary);color:#fff;box-shadow:0 0 0 2px rgba(0,0,0,.1);}
    @media only screen and (max-width:767px){
        .form {gap:3rem 0;}
        .form li {width:100%;}
    }


/***********************************/
/*********** 갤러리 게시판 ***********/
/***********************************/
/* 기본 갤러리 */
.gallery_box {padding:4rem 2rem;margin-top:4rem;}
.gallery_box .g_list {display:grid;grid-template-columns:repeat(4,1fr);gap:5rem 4rem;}
.gallery_box .g_list:has(.board_none) {grid-template-columns:1fr;text-align:center;color:var(--black);}
.gallery_box .g_list > li {position:relative;}
.gallery_box .g_list > li > input {position:absolute;top:0;left:0;z-index:1;}
.gallery_box .g_list > li a {display:block;}
.gallery_box .g_list > li a .imgbox {display:flex;justify-content:center;align-items:center;overflow:hidden;border:1px solid #ddd;text-align:center;aspect-ratio:1/1;}
.gallery_box .g_list > li a .imgbox:has(.no-img) {padding:5rem;}
.gallery_box .g_list > li a .imgbox img {max-width:100%;height:100%;object-fit:contain;transition:all .4s;-webkit-transition:all .4s;}
.gallery_box .g_list > li a .imgbox img.no-img {object-position:center;object-fit:contain;}
.gallery_box .g_list > li a .titbox {margin-top:1.5rem;color:var(--black);font-weight:700;text-align:center;}
.gallery_box .g_list > li a .cate {display:inline-block;padding:0.5rem 1rem;margin-bottom:.5rem;background:var(--primary);border-radius:1rem;font-weight:500;font-size:1.5rem;line-height:1;color:#fff;}
.gallery_box .g_list > li:is(:hover,:focus,:active) a .imgbox img {transform:scale(1.1);}
    @media only screen and (max-width:1023px){
        .gallery_box .g_list {grid-template-columns:repeat(3,1fr);}
    }
    @media only screen and (max-width:767px){
        .gallery_box .g_list {grid-template-columns:repeat(2,1fr);}
    }
    @media only screen and (max-width:475px){
        .gallery_box .g_list {grid-template-columns:repeat(1,1fr);}
    }

/* 인증서 갤러리 */
.certwrap .gallery_box .g_list > li a .imgbox {aspect-ratio:1/1.5;}


/*********************************/
/*********** FAQ 게시판 ***********/
/*********************************/
.faq_box .faq_cont {font-size:1.8rem;}
.faq_box .faq_cont em {display:inline-block;margin-right:4rem;padding-right:4rem;border-right:1px solid #ddd;font-weight:700;font-size:2.5rem;vertical-align:middle;text-decoration:none;}
.faq_box .faq_cont dt {position:relative;z-index:1;margin-top:1rem;background:#fff;border:1px solid #ddd;border-radius:2rem;color:var(--black);transition:.3s;}
.faq_box .faq_cont dt:first-child {margin-top:0;}
.faq_box .faq_cont dt .question {display:flex;align-items:center;padding:3rem 0 3rem 5rem;font-weight:700;text-decoration:none;transition:all .3s;}
.faq_box .faq_cont dt .question em {color:var(--primary);}
.faq_box .faq_cont dt .question p {padding-right:6rem;}
.faq_box .faq_cont dt .question .faq-toggle {position:relative;margin:1.5rem 4rem 0 auto;transition:.3s;}
.faq_box .faq_cont dt .question .faq-toggle::before {content:"";position:absolute;left:-1rem;top:-.7rem;display:block;width:2.2rem;height:2px;background:var(--black);}
.faq_box .faq_cont dt .question .faq-toggle::after {content:"";position:absolute;left:0;top:-1.7rem;display:block;width:2px;height:2.2rem;background:var(--black);}
.faq_box .faq_cont dt .btn_edit {position:absolute;top:50%;transform:translateY(-50%);right:6rem;font-size:2.2rem;}
.faq_box .faq_cont dd {position:relative;z-index:0;display:none;align-items:flex-start;margin-top:-3rem;padding:7rem 5rem 5rem;line-height:1.5;background:#fff;border:1px solid #ddd;border-radius:2rem;}
.faq_box .faq_cont dd em {float:left;color:var(--black);}
.faq_box .faq_cont dd p {overflow:hidden;}
.faq_box .faq_cont dt.on {background:var(--primary);border:1px solid var(--primary);color:#fff;}
.faq_box .faq_cont dt.on .question {font-weight:600;}
.faq_box .faq_cont dt.on em {color:#fff;}
.faq_box .faq_cont dt.on .question .faq-toggle::before {background:#fff;}
.faq_box .faq_cont dt.on .question .faq-toggle::after {display:none;}
    @media only screen and (max-width:1023px){
        .faq_box .faq_cont em {margin-right:1rem;padding-right:1rem;}
        .faq_box .faq_cont dt .question {padding:2rem 0 2rem 4rem;}
        .faq_box .faq_cont dt .question span {margin:1rem 3rem 0 auto;}
        .faq_box .faq_cont dt .question .faq-toggle:before {left:-.7rem;top:-.8rem;width:1.8rem;}
        .faq_box .faq_cont dt .question .faq-toggle:after {left:0;top:-1.6rem;height:1.8rem;}
        .faq_box .faq_cont dd {padding:5rem 4rem 3rem;}
        .faq_box .faq_cont dd em {margin-right:1rem;}
    }
    @media only screen and (max-width:767px){
        .faq_box .faq_cont em {line-height:1;}
        .faq_box .faq_cont dt .question {padding:1.5rem 0 1.5rem 2rem;}
        .faq_box .faq_cont dd {padding:5rem 2rem 3rem;}
    }


/********************************/
/*********** 설문조사 ***********/
/********************************/
.surveys {padding:5rem 1rem;}
.surveys_box {padding:5rem;background:color-mix(in srgb, var(--primary) 10%, #fff);border-radius:1rem;}
.surveys_box .top {padding:2rem 0 6rem 3rem;}
.surveys_box .top strong {font-weight:700;font-size:6.5rem;color:var(--primary);}
.surveys_box .top p {line-height:1.5;margin-top:1rem;font-size:2rem;color:#767676;}
.surveys_box .top p em {display:block;font-weight: 700;color:var(--black);}
.surveys_box .bot {position:relative;padding:6rem 4rem;background: #fff;border-radius:1rem;}
.surveys_box .bot .box_set {padding-top: 6rem;margin-top: 6rem;border-top:1px solid #ddd;}
.surveys_box .bot .box_set:first-child {padding-top: 0;margin-top: 0;border-top:0;}
.surveys_box .bot .box_set h4 {color:var(--primary);}
.surveys_box .bot .set_box {margin-bottom:10rem;}
.surveys_box .bot .set_box:last-child {margin-bottom:0;}
.surveys_box .bot .set_box .qbox {display: flex;align-items: flex-start;gap:1.8rem;font-size:2.0rem;}
.surveys_box .bot .set_box .qbox span {position:relative;flex-shrink: 0;display:grid;place-items:center;width: 8rem;height:3.5rem;border-radius:1rem;background: var(--primary);color:#fff;}
.surveys_box .bot .set_box .qbox span:after {content: "";position: absolute;top: 2.4rem;right: 2rem;border-top: 1rem solid transparent;border-left: 0 solid transparent;border-right: 1.2rem solid var(--primary);border-bottom: 1rem solid transparent;}
.surveys_box .bot .set_box .qbox p {line-height:1.5;padding:0 0.3rem;color:var(--black);box-shadow: inset 0 -13px 0 #e7f1ff;}
.surveys_box .bot .set_box .qbox p em {font-weight: 700;}
.surveys_box .bot .set_box .abox {display:flex;flex-wrap:wrap;margin-top:3.5rem;font-size:2rem;padding-left:8rem;}
.surveys_box .bot .set_box .abox label {flex-grow: 1;width: 20%;}
.surveys_box .bot .set_box .abox label input {}
.surveys_box .bot .set_box .abox label span {}
.surveys_box .bot .set_box .abox textarea {font-size:1.7rem;}
.surveys_p {line-height: 1.5;}
    @media only screen and (max-width:1023px){
        .surveys_box {padding:3rem;background-size:80% auto;}
        .surveys_box .top {padding:2rem 0 5rem 2rem;}
        .surveys_box .bot {padding:4rem 3rem;}
        .surveys_box .bot .set_box {margin-bottom:8rem;}
        .surveys_box .bot .set_box .qbox span {width: 7rem;}
        .surveys_box .bot .set_box .qbox p {box-shadow: none;}
        .surveys_box .bot .set_box .abox {gap:2rem;margin-top:2rem;}
        .surveys_box .bot .set_box .abox label {flex-grow: 0;width: 45%;}
    }
    @media only screen and (max-width:767px){
        .surveys_box {padding:3rem;background:#f3f6f9;}
    }
    @media only screen and (max-width:499px){
        .surveys_box {padding:2rem;}
        .surveys_box .top {padding:2rem 0 5rem 0;}
        .surveys_box .bot {padding:2rem}
        .surveys_box .bot .set_box {margin-bottom:5rem;}
        .surveys_box .bot .set_box .qbox {flex-direction: column;}
        .surveys_box .bot .set_box .abox {padding-left:0;}
        .surveys_box .bot .set_box .abox label {flex-grow: 0;width: 100%;}
    }


/********************************/
/*********** 온라인문의 ***********/
/********************************/
.online_inquiry .online_box {padding:6rem 5rem;background:color-mix(in srgb,var(--primary) 10%,#fff) url(../../images/fs/common/inquiry_bg.png) no-repeat right 5rem center/auto 85%;min-height:30rem;}
.online_inquiry .online_box .flex {align-items:center;gap:1rem;}
.online_inquiry .online_box .flex span {display:inline-block;background:var(--primary);color:#fff;padding:1rem 2rem;border-radius:5rem;font-size:1.6rem;line-height:1;}
.online_inquiry .online_box em {font-weight:600;font-size:3rem;color:var(--black);}
.online_inquiry .online_box p {margin-top:2rem;line-height:1.5;font-size:1.8rem;color:#616161;font-weight: 400;}
.online_inquiry .online_box p strong {display:inline-block;font-weight:600;color:var(--black);}
.online_inquiry .online_box p:last-child {font-weight:500;color:var(--black);}
.online_inquiry .online_box p:last-child span {display:inline-block;margin-right:2rem;}
.online_inquiry .online_box p:last-child i {background:var(--primary);border-radius:50%;color:#fff;padding:.5rem;margin-right:.5rem;aspect-ratio:1/1;}
.online_inquiry .inquiry_table_wrap {margin-top:4rem;}
.online_inquiry .inquiry_table {padding:30px 0;border-top:2px solid var(--black);}
.online_inquiry .inquiry_table > li:first-child {padding-top:0;}
.online_inquiry .inquiry_table > li {padding:1.5rem 0;}
.online_inquiry .inquiry_table > li .flex_box {display:flex;justify-content:space-between;align-items:center;gap:1rem;}
.online_inquiry .inquiry_table > li .flex_box > div {width:calc(50% - .5rem);}
.online_inquiry .inquiry_table label {display:block;font-weight:600;font-size:1.8rem;color:var(--black);margin-bottom:1rem;cursor:pointer;}
.online_inquiry .inquiry_table label span {margin-right:.5rem;}
.online_inquiry .inquiry_table .input_style {border-radius:1rem;}
.online_inquiry .inquiry_table .select_style {border-radius:1rem;height:auto;}
.online_inquiry .inquiry_table > li.useremail .flex_box .mail_input {display:flex;align-items:center;justify-content:space-between;width:calc(100% - 21rem);}
.online_inquiry .inquiry_table > li.useremail .flex_box .mail_input span {display:inline-block;width:3rem;text-align:center;}
.online_inquiry .inquiry_table > li.useremail .flex_box .mail_input input {width:calc(50% - 1.5rem);}
.online_inquiry .inquiry_table > li .file_box label {color:#fff;margin:0;}
.online_inquiry .announce_privacy_policy {border:1px solid #ddd;padding:2rem;max-height:20rem;overflow-y:scroll;}
.online_inquiry .announce_privacy_policy * {all:unset;display:block;}
.online_inquiry .announce_privacy_policy .index_wrap {display:none;}
.online_inquiry .announce_privacy_policy .privacy_box .list1 > li::after {display:none;}
.online_inquiry .announce_privacy_policy .privacy_box h4 {margin-top:1rem;font-weight:700;color:var(--black);}
.online_inquiry .announce_privacy_policy .effective {margin-top:2rem;}
    @media only screen and (max-width:1023px){
        .online_inquiry .online_box {padding:5rem 4rem;}
    }
    @media only screen and (max-width:767px){
        .online_inquiry .online_box {padding:4rem;background:color-mix(in srgb,var(--primary) 10%,#fff);}
        .online_inquiry .online_box p:last-child span {display:block;margin:1rem 0 0;}
        .online_inquiry .inquiry_table > li {padding:10px 0;}
        .online_inquiry .inquiry_table > li .flex_box {display:block;}
        .online_inquiry .inquiry_table > li .flex_box > div {width:100%;}
        .online_inquiry .inquiry_table > li .flex_box > div + div {padding-top:20px;}
        .online_inquiry .inquiry_table > li .flex_box .checks {width:auto;display:inline-block;margin-right:10px;}
        .online_inquiry .inquiry_table > li .flex_box .checks:last-child {margin-right:0;}
        .online_inquiry .inquiry_table > li.useremail .flex_box .mail_input {width:100%;}
    }
    @media only screen and (max-width:475px){
        .online_inquiry .online_box .flex {flex-direction:column;align-items:flex-start;gap:.5rem;}
    }


/*************************************/
/*********** 개인정보취급방침 ***********/
/*************************************/
.policy_box {padding:4rem 5rem;background:color-mix(in srgb, var(--primary) 15%, #fff);border-top:1px solid var(--primary);font-weight:500;line-height:1.6;color:var(--black);}
.privacy_wrap .index_box {display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;padding:4rem 0;}
.privacy_wrap .index_box a {display:block;background:var(--primary);color:#fff;padding:1rem 2.5rem;border-radius:.5rem;}
.privacy_wrap .index_box a:is(:hover,:focus:active) {background:color-mix(in srgb, var(--primary) 70%, var(--black));}
.privacy_wrap .effective {display:block;background:color-mix(in srgb, var(--primary) 15%, #fff);padding:1.5rem 2.5rem;border-radius:.5rem;}
    @media only screen and (max-width:1023px){
        .policy_box {padding:4rem;}
        .privacy_wrap .index_box {grid-template-columns:repeat(2,1fr);}
    }
    @media only screen and (max-width:767px){
        .policy_box br {display:none;}
        .privacy_wrap .index_box {grid-template-columns:repeat(1,1fr);gap:.5rem;}
    }


/***************************************/
/*********** 이메일무단수집거부 ***********/
/***************************************/
.antispam .top .icon_box {display:flex;justify-content:center;align-items:center;width:15rem;height:15rem;border-radius:50%;background:#f6f6f6;position:relative;margin:0 auto;}
.antispam .top .icon_box .mail {font-size:6rem;color:var(--primary);}
.antispam .top .icon_box .warning {font-size:4.8rem;color:#de3412;position:absolute;top:-1.1rem;right:0;}
.antispam .top .txt_box {line-height:1.5;text-align:center;}
.antispam .top .txt_box .title {display:block;font-weight:700;font-size:2.8rem;color:var(--black);margin:2.5rem 0 1rem;}
.antispam .top .txt_box .desc .p_color {color:var(--primary);}
.antispam .bottom {padding-top:3rem;border-top:1px dashed #ddd;margin-top:3rem;}
.antispam .bottom .law {background:#f6f6f6;border-radius:1rem;padding:2.5rem;}
.antispam .bottom .law .title {display:flex;align-items:center;gap:.5rem;font-weight:600;font-size:1.7rem;color:var(--black);margin-bottom:1rem;}
.antispam .bottom .law .title i {display:flex;justify-content:center;align-items:center;width:3rem;height:3rem;background:#fff;border-radius:50%;color:var(--primary);font-weight:400;font-size:2rem;}
.antispam .bottom .law .list1 {border-top:1px dashed #ddd;padding:2rem 0 0 3.5rem;margin-top:2rem;}
    @media only screen and (max-width:1023px){
        .antispam .top .txt_box .desc {text-wrap:balance;}
        .antispam .top .txt_box .desc br {display:none;}
        .antispam .bottom .law .list1 {padding:2rem 1rem;}
    }
    @media only screen and (max-width:767px){
        .antispam .bottom .law .title em {max-width:calc(100% - 3.5rem);}
    }


/********************************/
/*********** 회원서비스 ***********/
/********************************/
/* 자동입력방지 */
.captcha_cell {display:flex;flex-wrap:wrap;align-items:center;gap:.5rem;}
.captcha_cell img {width:auto;height:5rem;}

/* 로그인 */
.login_box_wrap {padding:5rem 0;background:#f6f6f6;border-radius:2.5rem;}
.login_box_wrap .login_box {width:clamp(0px,90%,600px);margin:0 auto;}
.login_box_wrap .login_box .input_box {margin-bottom:2rem;}
.login_box_wrap .login_box .input_box label {display:block;font-weight:700;font-size:2rem;margin-bottom:0.5rem;}
.login_box_wrap .login_box .input_box input {width:100%;}
.login_box_wrap .login_box .pwbtn {display:block;margin-bottom:3rem;font-size:1.7rem;}
.login_box_wrap .login_box .pwbtn img {vertical-align:middle;margin-top:-2px;filter:brightness(0) saturate(100%) invert(43%) sepia(41%) saturate(1167%) hue-rotate(303deg) brightness(92%) contrast(91%);}
.login_box_wrap .login_box .btn_box button {display:block;width:100%;margin:3rem 0 2rem;}
.login_box_wrap .login_box .sub_btn_box {display:flex;justify-content:center;gap:2rem;color:#767676;}
.login_box_wrap .sns_box em {display:flex;align-items:center;gap:1.5rem;margin:4rem 0 2rem 0;text-align:center;}
.login_box_wrap .sns_box em:before {content:"";display:inline-block;flex-grow:1;height:1px;background:#767676;}
.login_box_wrap .sns_box em:after {content:"";display:inline-block;flex-grow:1;height:1px;background:#767676;}
.login_box_wrap .sns_box .btn_box {display:flex;align-items:center;}
.login_box_wrap .sns_box .btn_box a {flex-grow:1;text-align:center;}
.login_box_wrap .sns_box .btn_box a img {display:block;margin:0 auto 1rem auto;}

/* 회원탈퇴 */
.withdraw_noti {text-align:center;background:color-mix(in srgb, var(--primary) 10%, #fff);padding:5rem;}
.withdraw_noti strong {display:block;font-size:3rem;font-weight:700;color:var(--primary);margin-bottom:2rem;}
.withdraw_noti strong i {display:block;width: 1.8rem;margin: 0 auto 1rem auto;}
.user_info li:not(:first-child) {margin-top:2rem;}
.user_info li .flex {gap:1rem;}
.user_info li .flex .btn_bace {height:5rem;line-height:5rem;}
.user_info li label {display:block;font-size:1.8rem;font-weight:500;color:var(--black);margin-bottom:1rem;}
.user_info li input {width:100%;}
.user_info li .captcha_cell input {flex:1;}
.user_info li .captcha_cell .example {width:100%;}

/* 회원가입 - 개인정보 동의 */
.user_agree .agree_box .agree_content {border:1px solid #ddd;padding:2rem;max-height:20rem;overflow-y:scroll;}
.user_agree .agree_box .agree_content * {all:unset;display:block;}
.user_agree .agree_box .agree_content h4 {margin-top:1rem;font-weight:700;color:var(--black);}
.user_agree .agree_box1 .agree_content .privacy_item:first-child h4:first-child {margin-top:0;}
.user_agree .agree_box .agree_content .index_wrap {display:none;}
.user_agree .agree_box .agree_content .list1 > li::after {display:none;}
.user_agree .agree_box .agree_content .effective {margin-top:2rem;}
.user_agree .checks.all_checks {display:flex;justify-content:center;font-weight:500;color:var(--black);padding:1.5rem 1rem;border-radius:1rem;background:color-mix(in srgb, var(--primary) 10%, #fff);}


/********************************/
/*********** 제품소개 ***********/
/********************************/
.product_view .product_tit {border-bottom:1px solid #ddd;border-top:2px solid #000;}
.product_view .product_tit em {border-bottom:1px solid #ddd;text-align:center;display:flex;flex-direction:column;padding:4.5rem 3rem;line-height:normal;font-weight:700;font-size:3.3rem;color:#000;}
.product_view .product_tit em span {display:block;margin-bottom:1rem;font-size:1.8rem;text-align:center;color:var(--primary);}
.product_view .flexbox {display:flex;margin-top:6.0rem;gap:5rem;}
.product_view .flexbox .img_box {flex-shrink:0;width:40%;display: flex;align-items: flex-start;justify-content:center;aspect-ratio:1/1;padding:.5rem;border:1px solid #ddd;}
.product_view .flexbox .img_box img {width:100%;height:100%;object-fit:contain;object-position:center;}
.product_view .flexbox .txtbox {flex-grow:1;line-height:1.5;}
.product_view .flexbox .txtbox .product_ul {width:100%;}
.product_view .flexbox .txtbox .product_ul > li {display:flex;width:100%;padding:1.5rem 0;border-bottom:1px dotted #ddd;}
.product_view .flexbox .txtbox .product_ul > li:last-child {border-bottom:0;}
.product_view .flexbox .txtbox .product_ul > li .stit {position:relative;width:18rem;flex-shrink:0;color:var(--black);font-size:18px;font-weight:800;}
.product_view .flexbox .txtbox .product_ul > li .stit:before {content:"";position:absolute;right:0;top:6px;width:1px;height:14px;background:#999;}
.product_view .flexbox .txtbox .product_ul > li .stit:after {content:"";clear:both;display:block;}
.product_view .flexbox .txtbox .product_ul > li > span {overflow:hidden;padding-left:3.5rem;font-weight: 400;}
.product_view .flexbox .txtbox .product_ul > li .pro_list span {display: block;padding-left:11px;text-indent: -11px;font-weight: 400;}
.product_view .flexbox .txtbox .product_ul > li .pro_list span:before {content:"";display: inline-block;margin-right:5px;width: 6px;height: 1px;background: #767676;vertical-align: middle;}
.product_view .detail_box {border-bottom:1px solid #ddd;}
.product_view .detail_box .stit {position:relative;color:var(--black);font-size:2.0rem;font-weight:600;background:var(--wm10);line-height:45px;text-align:center;border-radius:1.5rem;}
.product_view .detail_box .detail_cont {padding:4.0rem 2.0rem;/*text-align:center;*/}
.product_view .detail_box .detail_cont img {max-width:100%;margin: 0 auto;display: block;}
    @media only screen and (max-width:1199px){
        .product_view .product_tit em {padding:4rem 3rem;}
        .product_view .flexbox {margin-top:4.0rem;}
    }
    @media only screen and (max-width:767px){
        .product_view .product_tit em {padding:3rem 1.5rem;}
        .product_view .flexbox {flex-direction:column;flex-wrap:wrap;}
        .product_view .flexbox .img_box {width:100%;aspect-ratio:2/1;}
        .product_view .flexbox .txtbox {width:100%;}
    }