@charset "UTF-8";
:root {
    /* ----------------------------------------------------------------------------------------
        ## 게시판 관련 설정
    ---------------------------------------------------------------------------------------- */
    /* 텍스트 관련 */
    --base-text-size: 15px; /* 기본 글자 크기 */
    --btn-text-size: 14px;  /* 버튼 글자 크기 */
    --page-text-size: 13px; /* 페이지 글자 크기 */

    /* 텍스트 굵기 */
    --font-weight-light: 300;  /* 얇게 */
    --font-weight-normal: 400; /* 보통 */
    --font-weight-bold: 500;   /* 굵게 */


    /* 기본 색상 */
    --base-color: #000000;        /* 게시판 기본 글자 색상 */
    --text-link-color: #000000;   /* 게시판 제목 링크 색상 */
    --link-hover-color: #2475d0;  /* 게시판 제목 오버 색상 */
    --search-line-color: #9f9f9f; /* 검색창 테두리 색상 */

    /* 게시판 관련 색상 */
    --table-border-color: #000;   /* 게시판 위, 아래 테두리 색상 */
    --table-line-color: #9f9f9f;  /* 게시물 분리선 색상 */
    --notice-bg-color: rgba(100,191,103,0.05); /* 게시물 공지사항 배경 색상 */

    /* 버튼 색상 */
    --btn-text-color: #000000;    /* 버튼 글자 기본 색상 */
    --btn-bg-color: #ffffff;      /* 버튼 배경 색상 + 오버시 버튼 글자 색상 */
    --btn-border-color: #000000;  /* 버튼 테두리 색상 + 오버시 버튼 배경 색상 */

    /* 페이지 색상 */
    --page-current-color: #ffffff;   /* 현재 페이지 글자 색상 */
    --page-current-bgcolor: #2475d0; /* 현재 페이지 배경 색상 */


    /* ----------------------------------------------------------------------------------------
        ## 로그인 관련 설정
    ---------------------------------------------------------------------------------------- */
    /* 로그인 색상 */
    --login-link-color: #000000;          /* 로그인창 : 링크 기본 색상 */
    --login-hover-color: #2475d0;         /* 로그인창 : 링크 마우스 오버 색상 */

    --login-box-hover-txt-color: #ffffff; /* 로그인창 : 버튼 및 링크 오버 색상 */
    --login-box-hover-bg-color: #2475d0;  /* 로그인창 : 버튼 및 링크 오버 배경 색상 */
    --login-box-border-color: #efefef;    /* 로그인창 : 테두리 색상 */
}


/* --------------------------------------------------------------------------------------------
    ## BOARD RESET
-------------------------------------------------------------------------------------------- */
strong {
    font-weight: var(--font-weight-bold);
}
.ibbs .bbstop form.navbar-form,
.ibbs .bbstop form.navbar-right,
.ibbs .bbstop form.pull-right,
.ibbs_list .bbstop form.navbar-form,
.ibbs_list .bbstop form.navbar-right,
.ibbs_list .bbstop form.pull-right {
    margin: 0 !important;
    padding: 0 !important;
}
.ibbs .bbstop form.navbar-right,
.ibbs_list .bbstop form.navbar-right {
    float: none !important;
}
.rows:before,
.rows:after {
    display: block;
    content: '';
    height: 0;
    overflow: hidden;
    visibility: hidden;
    line-height: 0;
}
.rows:after {
    clear: both;
}
.rows {
    zoom: 1;
}


/* --------------------------------------------------------------------------------------------
    ## 리스트형 게시판
-------------------------------------------------------------------------------------------- */
.ibbs,
.ibbs_list {
    width: 100%;
    margin-bottom: 0;
}
.ibbs *,
.ibbs_list * {
    color: var(--base-color);
}
.ibbs .bbs_category,
.ibbs_list .bbs_category,
.ibbs.catebg .bbs_category,
.ibbs_list.catebg .bbs_category {
    display: none;
    margin: 20px auto;
}
.ibbs .bbs_category.on,
.ibbs_list .bbs_category.on,
.ibbs.catebg .bbs_category.on,
.ibbs_list.catebg .bbs_category.on {
    display: block;
    border: 1px solid #ccc;
    border-top: 0;
}
.ibbs .bbs_category li,
.ibbs_list .bbs_category li,
.ibbs.catebg .bbs_category li,
.ibbs_list.catebg .bbs_category li {
    position: relative;
    width: 33.333333333333333%;
    float: left;
    font-size: 20px;
    text-align: center;
    line-height: 1;
    border-top: 1px solid #ccc;
}
.ibbs .bbs_category li::before,
.ibbs_list .bbs_category li::before,
.ibbs.catebg .bbs_category li::before,
.ibbs_list.catebg .bbs_category li::before {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    top: 0;
    left: 0;
    background: #ccc;
}
.ibbs .bbs_category li:nth-child(3n+1)::before,
.ibbs_list .bbs_category li:nth-child(3n+1)::before,
.ibbs.catebg .bbs_category li:nth-child(3n+1)::before,
.ibbs_list.catebg .bbs_category li:nth-child(3n+1)::before {
    display: none;
}
.ibbs .bbs_category li a,
.ibbs_list .bbs_category li a,
.ibbs.catebg .bbs_category li a,
.ibbs_list.catebg .bbs_category li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 30px 5px;
}
.ibbs .bbs_category li,
.ibbs_list .bbs_category li,
.ibbs.catebg .bbs_category li,
.ibbs_list.catebg .bbs_category li,
.ibbs .bbs_category li a,
.ibbs_list .bbs_category li a,
.ibbs.catebg .bbs_category li a,
.ibbs_list.catebg .bbs_category li a {
    color: #333;
}

.ibbs .bbs_category li a:hover,
.ibbs_list .bbs_category li a:hover,
.ibbs.catebg .bbs_category li a:hover,
.ibbs_list.catebg .bbs_category li a:hover {
    color: #2475d0;
}

.ibbs .bbs_category li.current,
.ibbs_list .bbs_category li.current,
.ibbs.catebg .bbs_category li.current,
.ibbs_list.catebg .bbs_category li.current,
.ibbs .bbs_category li.current a,
.ibbs_list .bbs_category li.current a,
.ibbs.catebg .bbs_category li.current a,
.ibbs_list.catebg .bbs_category li.current a,
.ibbs .bbs_category li.current a:hover,
.ibbs_list .bbs_category li.current a:hover,
.ibbs.catebg .bbs_category li.current a:hover,
.ibbs_list.catebg .bbs_category li.current a:hover {
    color: #fff;
    background: #2475d0;
}
/*
.ibbs .bbs_category_on li,
.ibbs_list .bbs_category_on li {
    display: inline-block;
    width: 33.33333333333333333%;
    float: left;
}
.ibbs .bbs_category_on li:first-child,
.ibbs_list .bbs_category_on li:first-child {
    margin-left: 0;
}
.ibbs .bbs_category_on li a,
.ibbs_list .bbs_category_on li a,
.ibbs.catebg .bbs_category_on li a,
.ibbs.catebg .bbs_category_on li button {
    display: block;
    font-size: 16px;
    border: 1px solid #ddd;
    border-left: 0;
    -webkit-transition: color 300ms ease, background 300ms ease, border 300ms ease;
       -moz-transition: color 300ms ease, background 300ms ease, border 300ms ease;
            transition: color 300ms ease, background 300ms ease, border 300ms ease;
}
.ibbs .bbs_category li a,
.ibbs_list .bbs_category li a {
    padding: 7px 40px;
}
.ibbs_list .bbs_category li.current a,
.ibbs_list .bbs_category li.current button {
    color: #fff;
    background: #7d80d2;
    border-color: #7d80d2;
}
.ibbs .bbs_category li:first-child a,
.ibbs_list .bbs_category li:first-child a,
.ibbs.catebg .bbs_category li:first-child a,
.ibbs.catebg .bbs_category li:first-child button {
    border-left: 1px solid #ddd;
}
.ibbs .bbs_category li a:hover,
.ibbs .bbs_category li button:hover,
.ibbs_list .bbs_category li a:hover,
.ibbs_list .bbs_category li button:hover,
.ibbs.catebg .bbs_category li a:hover,
.ibbs.catebg .bbs_category li button:hover,
.ibbs .bbs_category li.current a,
.ibbs .bbs_category li.current button,
.ibbs.catebg .bbs_category li .mixitup-control-active,
.ibbs.catebg .bbs_category li .mixitup-control-active:hover {
    color: #fff;
    background: #2475d0;
    border-color: #2475d0;
}
.ibbs.catebg .bbs_category li:first-child {
    border-left: 1px solid #ddd;
}
*/
.ibbs.catebg .bbs_category .btn_cate {
    display: block;
    width: 100%;
    padding: 10px;
}
.ibbs.catebg .category01 .cate_area,
.ibbs.catebg .category02 .cate_area {
    color: #fff;
    background:;
}
.ibbs.catebg .category01 .cate_area {
    background: #2475d0;
}
.ibbs.catebg .category02 .cate_area {
    background: #164e81;
}
.ibbs.mixup .mix,
.ibbs.mixup .gap {
    display: inline-block;
    width: calc(100%/4 - ((4 * 1.196rem) / 4));
    margin: 0 0.5rem 1.5rem;
    float: none;
    vertical-align: top;
}
.ibbs.mixup .mix:nth-child(4n+1),
.ibbs.mixup .gap:nth-child(4n+1) {
    margin: 0 0.5rem 1.5rem;
}
.mix {
    background: #fff;
    border-radius: 2px;
    margin-bottom: 1rem;
    position: relative;
}
.mix, .gap {
    display: inline-block;
    vertical-align: top;
}
.ibbs .bbstop,
.ibbs_list .bbstop {
    margin-bottom: 5px;
    font-size: 14px;
}
.ibbs .bbstop .leftarea,
.ibbs_list .bbstop .leftarea {
    margin-top: 15px;
    float: left;
}
.ibbs .bbstop .rightarea,
.ibbs_list .bbstop .rightarea {
    float: right;
    margin-bottom: 5px;
}
.ibbs .center .rightarea,
.ibbs_list .center .rightarea {
    max-width: 280px;
    margin: 0 auto;
    float: none;
}

/* LEFT AREA */
.ibbs .bbstop .pageinfo,
.ibbs .bbstop .postinfo,
.ibbs_list .bbstop .pageinfo,
.ibbs_list .bbstop .postinfo {
    display: inline-block;
}
.ibbs .bbstop .postinfo,
.ibbs_list .bbstop .postinfo {
    margin-left: 10px;
}

/* RIGHT AREA */
.ibbs .bbstop select,
.ibbs .bbstop input,
.ibbs_list .bbstop select,
.ibbs_list .bbstop input {
    min-height: 35px;
    float: left;
    font-size: 1em;
    line-height: 35px;
    vertical-align: middle;
}
.ibbs .bbstop .sgroup,
.ibbs_list .bbstop .sgroup {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--search-line-color);
}
.ibbs .bbstop .sgroup01,
.ibbs .bbstop .sgroup02,
.ibbs_list .bbstop .sgroup01,
.ibbs_list .bbstop .sgroup02 {
    display: inline-block;
    margin-top: 0;
    font-size: 1em;
}
.ibbs .bbstop .sgroup01 span,
.ibbs_list .bbstop .sgroup01 span,
.ibbs .bbstop .sgroup01 select,
.ibbs_list .bbstop .sgroup01 select {
    display: block;
    float: left;
}
.ibbs .bbstop .sgroup01 span,
.ibbs_list .bbstop .sgroup01 span {
    margin: 0 5px 0 8px;
    line-height: 35px;
    vertical-align: top;

}
.ibbs .bbstop select,
.ibbs_list .bbstop select {
    margin-right: 5px;
    padding: 0 10px 0 3px;
}
.ibbs .bbstop input,
.ibbs_list .bbstop input {
    padding: 0 5px;
}
.ibbs .bbstop .searchbar,
.ibbs_list .bbstop .searchbar {
    width: 135px;
    margin-right: 40px;
}
.ibbs .bbstop .searchbtn,
.ibbs .bbstop .searchico,
.ibbs_list .bbstop .searchbtn,
.ibbs_list .bbstop .searchico {
    position: absolute;
    width: 35px;
    top: 0;
    right: 0;
    line-height: 35px;
    background-color: #fff;
}
.ibbs .bbstop .searchico,
.ibbs_list .bbstop .searchico {
    height: 100%;
    top: 2px;
    bottom: 0;
    /*z-index: 1;*/
    font-size: 1em;
    text-align: center;
    cursor: pointer;
}

    /* --------------------------------------------------------
        :: 게시판 기본형 레이아웃
    -------------------------------------------------------- */
    .ibbs_list .tbl {
        border-bottom: 1px solid #080808;
    }
    .ibbs_list .total_post_count {
        color: #f57402;
    }
    .ibbs_list .thead .colgroup,
    .ibbs_list .tbody .colgroup {
        position: relative;
        width: 100%;
        font-size: var(--base-text-size);
        font-weight: var(--font-weight-bold);
    }
    .ibbs_list .thead .colgroup {
        font-weight: var(--font-weight-bold);
        border-top: 2px solid #080808;
    }
    .ibbs_list .tbody .colgroup {
        border-top: 1px solid #ddd;
    }
    .ibbs_list .thead .colspan,
    .ibbs_list .tbody .colspan {
        position: absolute;
        height: 100%;
        text-align: center;
    }
    .ibbs_list .thead .colspan i,
    .ibbs_list .tbody .colspan i {
        display: none;
        font-style: normal;
    }
    .ibbs_list .thead .colspan {
        padding: 15px 3px;
        text-align: center;
    }
    .ibbs_list .bcheck,
    .ibbs_list .bnum,
    .ibbs_list .bname,
    .ibbs_list .bdown,
    .ibbs_list .btarget,
    .ibbs_list .bterm,
    .ibbs_list .bdate,
    .ibbs_list .bview,
    .ibbs_list .bproc  {
        height: 100%;
        top: 0;
    }
    .ibbs_list .btitle strong {
        font-weight: inherit;
    }
    .ibbs_list .btitle .icate {
        color: var(--link-hover-color);
    }
    .ibbs_list .btitle a {
        vertical-align: top;
    }
    .ibbs_list .tbody .colspan a {
        color: var(--text-link-color);
        -webkit-transition: color 300ms ease;
           -moz-transition: color 300ms ease;
                transition: color 300ms ease;
    }
    .ibbs_list .tbody .btitle a:hover,
    .ibbs_list .tbody .btitle a:focus {
        color: var(--link-hover-color);
    }


    /* --------------------------------------------------------
        :: 게시판 - 관리자 전용 화면
    -------------------------------------------------------- */
    .ibbs_list .admin .bcheck  { display: block; }
    .ibbs_list .admin .bcheck  { width: 30px;  left:  0;     }
    .ibbs_list .admin .bnum    { width: 85px;  left:  30px;  }
    .ibbs_list .admin .bname   { width: 125px; right: 205px; }
    .ibbs_list .admin .bdown   { width: 90px;  right: 205px; }
    .ibbs_list .admin .btarget { width: 80px;  right: 385px; }
    .ibbs_list .admin .bterm   { width: 220px; right: 170px; }
    .ibbs_list .admin .bdate   { width: 120px; right: 85px;  }
    .ibbs_list .admin .bview   { width: 85px;  right: 0;     }
    .ibbs_list .admin .bproc   { width: 85px;  right: 0;     }
    .ibbs_list .admin .colspan.btitle {
        position: relative;
        margin-left: 115px;
        margin-right: 330px;
    }



    /* --------------------------------------------------------
        :: 게시판 - 일반 사용자 화면
    -------------------------------------------------------- */
    .ibbs_list .bcheck  { display: none; }
    .ibbs_list .bnum    { width: 85px;  left:  0; }
    .ibbs_list .bname   { width: 150px; right: 205px; }
    .ibbs_list .bdown   { width: 115px; right: 205px; }
    .ibbs_list .btarget { width: 80px;  right: 385px; }
    .ibbs_list .bterm   { width: 220px; right: 170px; }
    .ibbs_list .bdate   { width: 120px; right: 85px;  }
    .ibbs_list .bview   { width: 85px;  right: 0;     }
    .ibbs_list .bproc   { width: 85px;  right: 0;     }

    .ibbs_list .bdown,
    .ibbs_list .btarget,
    .ibbs_list .bterm,
    .ibbs_list .bproc {
        display: none;
        text-align: center;
    }

    .ibbs_list .colspan.btitle {
        position: relative;
        margin-left: 85px;
        margin-right: 330px;
    }
    .ibbs_list .thead .colspan.bcheck span,
    .ibbs_list .tbody .colspan.bcheck span {
        left: 0;
        right: 0;
    }
    .ibbs_list .tbody .colspan.btitle h3 {
        position: relative;
        display: block;
        width: 100%;
        padding: 15px 10px;
        overflow: hidden;
        font-size: 1em;
        font-weight: inherit;
        text-align: left;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .ibbs_list .tbody .colspan span {
        position: absolute;
        display: block;
        height: 100%;
        padding: 15px 5px;
        left: 10px;
        right: 10px;
        vertical-align: middle;
    }
    .ibbs_list .tbody .colspan.bcheck span {
        padding-left: 0;
        padding-right: 0;
    }

    /* --------------------------------------------------------
        :: 게시판 - 공지 및 소식
    -------------------------------------------------------- */
    .ibbs_list .bdown {
        display: block;
    }
    .ibbs_list.notice .bname,
    .ibbs_list.notice .bdown,
    .ibbs_list.notice .btarget,
    .ibbs_list.notice .bsdate,
    .ibbs_list.notice .bcond {
        display: none;
    }
    .ibbs_list.notice .colspan.btitle {
        margin-right: 205px;
    }

    /* --------------------------------------------------------
        :: 게시판 - 자료실
    -------------------------------------------------------- */
    .ibbs_list.download .bname   { width: 150px; right: 285px; }
    .ibbs_list.download .bdown   { width: 80px;  right: 205px; }
    .ibbs_list.download .bdown i { display: block; font-size: 1.25em; }
    .ibbs_list.download .colspan.btitle {
        margin-right: 425px;
    }
    .ibbs_list.notice.download .bname   { display: none; }
    .ibbs_list.notice.download .bdown   { display: block; width: 80px;  right: 205px; }
    .ibbs_list.notice.download .colspan.btitle {
        margin-right: 275px;
    }

    /* --------------------------------------------------------
        :: 게시판 - 설문조사
    -------------------------------------------------------- */
    .ibbs_list.survey .btarget,
    .ibbs_list.survey .bterm,
    .ibbs_list.survey .bproc {
        display: block;
    }
    .ibbs_list.survey .bname,
    .ibbs_list.survey .bdown,
    .ibbs_list.survey .bdate {
        display: none;
    }
    .ibbs_list.survey .bview {
        right: 85px;
    }
    .ibbs_list.survey .bproc.progress span,
    .ibbs_list.survey .bproc.progress i {
        color: var(--link-hover-color);
    }
    .ibbs_list.survey .colspan.btitle {
        margin-right: 460px;
    }


    /* --------------------------------------------------------
        :: 예약조회
    -------------------------------------------------------- */
    .ibbs_list.res_list .bdown,
    .ibbs_list.res_list .bview {
        display: none;
    }
    .ibbs_list.res_list .colspan.btitle {
        margin-right: 270px;
    }
    .ibbs_list.res_list .bname {
        right: 120px;
    }
    .ibbs_list.res_list .bdate {
        right: 0;
    }


    /* --------------------------------------------------------
        :: 공지체크
    -------------------------------------------------------- */
    .ibbs_list .noti {
        background-color: var(--notice-bg-color);
    }
    .ibbs_list .noti .icate,
    .ibbs_list .noti .bdown,
    .ibbs_list .noti .btarget,
    .ibbs_list .noti .bterm,
    .ibbs_list .noti .bproc {
        display: none !important;
    }
    .ibbs_list .noti .bnum i {
        display: none !important;
    }
    .ibbs_list.survey .noti .bview {
        right: 0;
    }


    /* --------------------------------------------------------
        :: 페이지
    -------------------------------------------------------- */
    .ibbs_page_num {
        margin-top: 50px;
        margin-bottom: 100px;
        text-align: center;
    }
    .ibbs_page_num a {
        display: inline-block;
        width: 24px;
        height: 24px;
        color: var(--text-link-color);
        font-size: var(--page-text-size);
        font-weight: var(--font-weight-bold);
        line-height: 26px;
        vertical-align: middle;
        -webkit-transition: color 250ms ease, background 250ms ease;
           -moz-transition: color 250ms ease, background 250ms ease;
                transition: color 250ms ease, background 250ms ease;
    }
    .ibbs_page_num a:hover {
        color: var(--link-hover-color);
    }
    .ibbs_page_num a.current {
        color: var(--page-current-color);
        background: var(--page-current-bgcolor);
        border-radius: 50%;
    }
    .ibbs_page_num a.first,
    .ibbs_page_num a.last {
        width: 18px;
        font-size: 18px;
        font-weight: var(--font-weight-bold);
        line-height: 24px;
    }



/* --------------------------------------------------------------------------------------------
    ## 테이블형 게시판
-------------------------------------------------------------------------------------------- */
.ibbs_table {
    width: 100%;
}
.ibbs_table .type_table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
.ibbs_table .type_table th,
.ibbs_table .type_table td {
    width: auto;
    padding: 20px 10px;
    font-size: 1.125em;
    font-weight: 400;
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.ibbs_table .type_table th {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}
.ibbs_table .admin .type_table th:first-child,
.ibbs_table .admin .type_table td:first-child,
.ibbs_table .type_table .w2 {
    border-left: 0;
}
.ibbs_table .admin .type_table .w2 {
    border-left: 1px solid #ccc;
}
.ibbs_table .type_table .w1,
.ibbs_table .type_table .w2,
.ibbs_table .type_table .w7 {
    text-align: center;
}
.ibbs_table .type_table .w1 {
    width: 30px;
}
.ibbs_table .type_table .w2 {
    width: 60px;
}
.ibbs_table .type_table .w3 {
    width: 180px;
    text-align: center;
}
.ibbs_table .admin .type_table .w1 {
    position: static;
    display: table-cell;
    height: auto;
}
.ibbs_table .type_table .lnk_home {
    display: inline-block;
    width: 28px;
    height: 24px;
    margin: 0 auto;
    text-indent: -9999px;
    background-image: url('../img/bbs/ico_website.png');
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}



/* --------------------------------------------------------------------------------------------
    ## 갤러리A형 게시판
-------------------------------------------------------------------------------------------- */
.ibbs_gallery {
    width: 100%;
}
.ibbs_gallery .imgrid3 li {
    position: relative;
    display: block;
    width: 32%;
    margin: 0 0 20px 2%;
    float: left;
}

.ibbs_gallery .imgrid3 li a,
.ibbs_gallery .imgrid4 li a {
    position: relative;
    display: block;
}
.ibbs_gallery .imgrid3 li:nth-child(1),
.ibbs_gallery .imgrid3 li:nth-child(2),
.ibbs_gallery .imgrid3 li:nth-child(3) {
    margin-top: 0;
}
.ibbs_gallery .imgrid3 li:nth-child(3n+1){
    margin-left: 0;
    clear: both;
}
.ibbs_gallery .imgrid4 li {
    position: relative;
    display: block;
    width: 23.5%;
    margin: 0 0 20px 2%;
    float: left;
}
.ibbs_gallery .imgrid4 li:nth-child(1),
.ibbs_gallery .imgrid4 li:nth-child(2),
.ibbs_gallery .imgrid4 li:nth-child(3),
.ibbs_gallery .imgrid4 li:nth-child(4) {
    margin-top: 0;
}
.ibbs_gallery .imgrid4 li:nth-child(4n+1){
    margin-left: 0;
    clear: both;
}
.ibbs_gallery li .icheckbox {
    position: absolute;
    display: block;
    z-index: 10;
    top: 10px;
    right: 10px;
}
.ibbs_gallery li .icheckbox input {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
}
.ibbs_gallery li .icheckbox span {
    position: relative;
    display: block;
    padding: 4px 5px;
    text-align: center;
    line-height: 0;
}
.ibbs_gallery li .icheckbox span i {
    display: none;
    color: #ddd;
    font-size: 28px;
    vertical-align: middle;
    text-shadow: 0 0 3px rgba(0,0,0,0.5);
}
.ibbs_gallery li .icheckbox input + span .ncheck {
    display: block;
}
.ibbs_gallery li .icheckbox input + span .ycheck {
    display: none;
}
.ibbs_gallery li .icheckbox input:checked + span .ncheck {
    display: none;
}
.ibbs_gallery li .icheckbox input:checked + span .ycheck {
    display: block;
    color: #2475d0;
}
.ibbs_gallery .anchorbox {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid #ccc;
    -webkit-transition: border 300ms ease;
       -moz-transition: border 300ms ease;
            transition: border 300ms ease;
}
.ibbs_gallery .anchorbox:hover {
    border-color: #2475d0;
}
.ibbs_gallery .anchorbox .image_area {
    position: relative;
    display: block;
    overflow: hidden;
    line-height: 0;
}
.ibbs_gallery .anchorbox .image_area img {
    width: 100%;
    height: auto;
}
.ibbs_gallery .anchorbox .cate_area {
    position: absolute;
    padding: 5px 10px;
    top: 10px;
    left: 10px;
    overflow: hidden;
    z-index: 1;
    color: #fff;
    font-size: 14px;
    border-radius: 4px;
}
.ibbs_gallery .anchorbox .cate_area {
    color: #232323;
    background: #fff;
}
.ibbs_gallery .anchorbox .text_area {
    width: 100%;
    padding: 0;
    background: #fff;
}
.ibbs_gallery .anchorbox .ilist_subject h3 {
    width: 100%;
    padding: 10px 15px;
    overflow: hidden;
    color: #232323;
    font-size: 1.125em;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-transition: color 300ms ease;
       -moz-transition: color 300ms ease;
            transition: color 300ms ease;
}
.ibbs_gallery .anchorbox .ilist_subject .colgroup {
    padding: 10px 15px;
    font-size: 14px;
    border-top: 1px dashed #e5e5e5;
}
.ibbs_gallery .anchorbox .ilist_subject .left,
.ibbs_gallery .anchorbox .ilist_subject .right {
    width: 50%;
    float: left;
}
.ibbs_gallery .anchorbox .ilist_subject .left {}
.ibbs_gallery .anchorbox .ilist_subject .right {
    text-align: right;
}
.ibbs_gallery .anchorbox .ilist_text {
    display: -webkit-box;
    width: 100%;
    height: 2.8em;
    margin-bottom: 15px;
    padding: 0 15px;
    overflow: hidden;
    font-size: 0.9375em;
    font-weight: 300;
    text-overflow: ellipsis;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    -webkit-transition: color 300ms ease;
       -moz-transition: color 300ms ease;
            transition: color 300ms ease;
}
.ibbs_gallery .anchorbox .ilist_date {
    margin-bottom: 20px;
    padding: 0 15px;
    color: #aaa;
    font-size: 12px;
    -webkit-transition: color 300ms ease;
       -moz-transition: color 300ms ease;
            transition: color 300ms ease;
}


/* imgrid3 */
.ibbs_gallery .imgrid3 li {
    margin-bottom: 45px;
}
.ibbs_gallery .imgrid3 .anchorbox {
    border: 0;
}
.ibbs_gallery .imgrid3 .anchorbox .image_area {
    position: relative;
    border: 1px solid #ccc;
}
.ibbs_gallery .imgrid3 .anchorbox .image_area::before {
    position: absolute;
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    border: 2px solid rgba(255,255,255,0);
    -webkit-transition: all 400ms ease;
       -moz-transition: all 400ms ease;
            transition: all 400ms ease;
}
.ibbs_gallery .imgrid3 .anchorbox:hover .image_area::before {
    z-index: 10;
    border-color: #2475d0;
}
.ibbs_gallery .imgrid3 .anchorbox:hover img {
    opacity: 1;
}
.ibbs_gallery .imgrid3 .anchorbox .ilist_date,
.ibbs_gallery .imgrid3 .anchorbox .ilist_subject h3,
.ibbs_gallery .imgrid3 .anchorbox .ilist_text {
    padding-left: 0px;
    padding-right: 0px;
}
.ibbs_gallery .imgrid3 .anchorbox .ilist_date {
    margin: 15px auto 0;
    color: #000;
    font-size: 1.25em;
    font-weight: 500;
}
.ibbs_gallery .imgrid3 .anchorbox .ilist_subject h3 {
    font-size: 1.5em;
}

/* Gallery Hover Effect */
.ibbs_gallery .anchorbox:hover .ilist_subject h3,
.ibbs_gallery .anchorbox:hover .ilist_text,
.ibbs_gallery .anchorbox:hover .ilist_date {
    color: #2475d0;
}
.ibbs_gallery .ilist_info {
    position: relative;
    padding: 10px;
    letter-spacing: -0.06em;
    border-top: 1px dashed #a7a7a7;
}
.ibbs_gallery .ilist_info .ical  {display: none;}
.ibbs_gallery .ilist_info .inum  {
    display: inline-block;
    margin-left: 0;
}
.ibbs_gallery .ilist_info .icmt  {
    display: inline-block;
    margin-left: 10px;
    text-align: center;
}
.ibbs_gallery .ilist_info .iview {
    display: inline-block;
    margin-left: 10px;
    text-align: right;
}
.ibbs_gallery .ilist_info .icate,
.ibbs_gallery .ilist_info .idate {
    position: absolute;
    padding: 10px;
    top: 0;
    right: 0;
    text-align: right;
}
.ibbs_gallery .ilist_info .idate:after {
    position: relative;
    content: '';
    width: 100%;
    height: 0;
    overflow: hidden;
    visibility: 0;
    clear: both;
}
.ibbs_gallery .ilist_info .iname {
    display: block;
    width: 100%;
    margin-top: 5px;
    margin-right: 2%;
    float: left;
}
.ibbs_gallery .ilist_info p {
    font-size: 1em;
    font-weight: 400;
    line-height: 1.6;
}
.ibbs_gallery .ilist_info span {
    display: inline-block;
}
.ibbs_gallery .ilist_info strong {
    font-weight: 500;
}


/* EVENT */
.ibbs_event .anchorbox .cate_area.ecate_ing {
    color: #fff;
    background: #2475d0;
}
.ibbs_event .anchorbox .cate_area.ecate_end {
    color: #fff;
    background: #707070;
}
.ibbs_event .ilist_info .ical  {
    display: block;
}
.ibbs_event .ilist_info .inum  {
    display: none;
}
.ibbs_event .ilist_info .iname {
    display: none;
}
.ibbs_event .ilist_info .iview {
    position: absolute;
    padding: 10px;
    top: 0;
    right: 0;
}
.ibbs_event .ilist_info .icmt  {
    display: none;
}
.ibbs_event .ilist_info .idate {
    display: none;
}

    /* ----------------------------------------------------------------------------------------
        // GALLERY BORDER EFFECT
    ---------------------------------------------------------------------------------------- */
    /*
    .ibbs_gallery .imgrid4 li a::before {
        position: absolute;
        display: block;
        content: '';
        width: 100%;
        height: 100%;
        z-index: 1;
        border: 2px solid rgba(126,190,114,0);
        -webkit-transition: border 300ms ease;
           -moz-transition: border 300ms ease;
                transition: border 300ms ease;
    }
    .ibbs_gallery li a:hover::before {
        border-color: rgba(126,190,114,1);
    }
    .ibbs_gallery li a .top::before,
    .ibbs_gallery li a .bottom::before,
    .ibbs_gallery li a .left::before,
    .ibbs_gallery li a .right::before,
    .ibbs_gallery li a .top::after,
    .ibbs_gallery li a .bottom::after,
    .ibbs_gallery li a .left::after,
    .ibbs_gallery li a .right::after {
        position: absolute;
        display: block;
        content: '';
        z-index: 1;
        background: #e3e3e3;
        -webkit-transition: all 300ms ease;
           -moz-transition: all 300ms ease;
                transition: all 300ms ease;
    }
    .ibbs_gallery li a .top::after,
    .ibbs_gallery li a .bottom::after,
    .ibbs_gallery li a .left::after,
    .ibbs_gallery li a .right::after {
        position: absolute;
        z-index: 1;
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
        -webkit-transition: all 10ms ease 0ms;
           -moz-transition: all 10ms ease 0ms;
                transition: all 10ms ease 0ms;
    }
    .ibbs_gallery li a:hover .top::before,
    .ibbs_gallery li a:hover .bottom::before,
    .ibbs_gallery li a:hover .left::before,
    .ibbs_gallery li a:hover .right::before,
    .ibbs_gallery li a:hover .top::after,
    .ibbs_gallery li a:hover .bottom::after,
    .ibbs_gallery li a:hover .left::after,
    .ibbs_gallery li a:hover .right::after {
        position: absolute;
        z-index: 1;
        background: #2475d0;
        -webkit-transition: all 400ms ease;
           -moz-transition: all 400ms ease;
                transition: all 400ms ease;
    }
    .ibbs_gallery li a:hover .top::after,
    .ibbs_gallery li a:hover .bottom::after,
    .ibbs_gallery li a:hover .left::after,
    .ibbs_gallery li a:hover .right::after {
        position: absolute;
        z-index: 1;
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        filter: alpha(opacity=100);
        -webkit-transition: all 200ms ease 200ms;
           -moz-transition: all 200ms ease 200ms;
                transition: all 200ms ease 200ms;
    }
    .ibbs_gallery li a .top::before,
    .ibbs_gallery li a .bottom::before {
        width: 100%;
        height: 1px;
    }
    .ibbs_gallery li a .left::before,
    .ibbs_gallery li a .right::before {
        width: 1px;
        height: 100%;
    }
    .ibbs_gallery li a .top::before {
        top: 0;
        left: 0;
    }
    .ibbs_gallery li a .left::before {
        top: auto;
        left: 0;
        bottom: 0;
    }
    .ibbs_gallery li a .right::before {
        top: 0;
        right: 0;
        bottom: auto;
    }
    .ibbs_gallery li a .bottom::before {
        right: 0;
        bottom: 0;
    }
    .ibbs_gallery li a:hover .top::before,
    .ibbs_gallery li a:hover .bottom::before,
    .ibbs_gallery li a:hover .left::after,
    .ibbs_gallery li a:hover .right::after {
        width: 40px;
        height: 4px;
    }
    .ibbs_gallery li a:hover .left::before,
    .ibbs_gallery li a:hover .right::before,
    .ibbs_gallery li a:hover .top::after,
    .ibbs_gallery li a:hover .bottom::after  {
        width: 4px;
        height: 40px;
    }

    .ibbs_gallery li a .top::after,
    .ibbs_gallery li a .bottom::after {
        width: 4px;
        height: 100%;
    }
    .ibbs_gallery li a .left::after,
    .ibbs_gallery li a .right::after {
        width: 100%;
        height: 4px;
    }
    .ibbs_gallery li a .top::after {
        top: -100%;
        left: 0;
    }
    .ibbs_gallery li a .left::after {
        left: -100%;
        bottom: 0;
    }
    .ibbs_gallery li a .right::after {
        top: 0;
        right: -100%;
    }
    .ibbs_gallery li a .bottom::after {
        right: 0;
        bottom: -100%;
    }
    .ibbs_gallery li a:hover .top::after {
        top: 0;
    }
    .ibbs_gallery li a:hover .left::after {
        left: 0;
    }
    .ibbs_gallery li a:hover .right::after {
        right: 0;
    }
    .ibbs_gallery li a:hover .bottom::after {
        bottom: 0;
    }
    */




/* --------------------------------------------------------------------------------------------
    ## 갤러리A형 게시판
-------------------------------------------------------------------------------------------- */
.ibbs_photo {
    width: 100%;
}




/* --------------------------------------------------------------------------------------------
    ## 캘린더
-------------------------------------------------------------------------------------------- */
.type_bbs .total_date {
    position: relative;
    margin-bottom: 40px;
}
.type_bbs .total_date .prev,
.type_bbs .total_date .next {
    position: absolute;
    display: block;
    height: 24px;
    margin-top: -12px;
    top: 50%;
    font-size: 24px;
    line-height: 24px;
}
.type_bbs .total_date .prev {
    left: 50%;
    margin-left: -120px;
}
.type_bbs .total_date .next {
    right: 50%;
    margin-right: -120px;
}
.type_bbs .total_date h5 {
    font-size: 2em;
    font-weight: 500;
    text-align: center;
}
.type_bbs .icalendar {
    width: 100%;
}
.type_bbs .icalendar th,
.type_bbs .icalendar td {
    width: 14.28571428571429%;
    border: 1px solid #dcdcdc;
}
.type_bbs .icalendar th {
    padding: 10px;
    font-weight: 400;
    border-bottom: 1px dashed #dcdcdc;
}
.type_bbs .icalendar td {
    vertical-align: top;
    border-top: 0;
}
.type_bbs .icalendar th.sun,
.type_bbs .icalendar td.sun .days {
    color: #d00;
}
.type_bbs .icalendar th.sat,
.type_bbs .icalendar td.sat .days {
    color: #3c3fa8;
}
.type_bbs .icalendar td .days {
    padding: 10px;
    font-size: 13px;
    text-align: right;
}
.type_bbs .icalendar td .ctitle {
    min-height: 80px;
    padding: 0 10px;
}
.type_bbs .icalendar td .ctitle a {
    display: block;
    padding: 3px 0;
    font-size: 14px;
}

.mbtbl {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
.mbtbl th,
.mbtbl td {
    padding: 25px 5px;
    font-weight: 400;
    text-align: center;
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.mbtbl th {
    border-top: 1px solid #000;
}
.mbtbl th:first-child,
.mbtbl td:first-child {
    border-left: 0;
}
.mbtbl .w2 {width: 84px;}
.mbtbl .w3 {width: 120px;}
.mbtbl .w4 {width: 160px;}
.mbtbl td.w5 {
    text-align: left;
}
.mbtbl .mview {
    display: none;
}



/* --------------------------------------------------------------------------------------------
    ## BOARD WRITE
-------------------------------------------------------------------------------------------- */
.ibbs_write {
    margin-bottom: 50px;
    font-size: 1em;
}
.ibbs_write select,
.ibbs_write input,
.ibbs_write button,
.ibbs_write textarea {
    font-size: 1em;
}
.ibbs_write .header {
    margin-bottom: 1%;
}
.ibbs_write .header .cate_area {
    margin-bottom: 1%;
}
.ibbs_write .header select {
    display: block;
    min-width: 200px;
    padding: 10px 5px 10px 0;
    color: var(--text-link-color);
    background-color: #fff;
    border: 1px solid var(--search-line-color);
    -webkit-transition: border 250ms ease;
       -moz-transition: border 250ms ease;
            transition: border 250ms ease;
}
.ibbs_write .header select:hover,
.ibbs_write .header select:focus {
    border-color: var(--link-hover-color);
}
.ibbs_write .header input {
    display: block;
    width: 100%;
    padding: 10px 5px;
    color: var(--text-link-color);
    background-color: #fff;
    border: 1px solid var(--search-line-color);
    -webkit-transition: border 250ms ease;
       -moz-transition: border 250ms ease;
            transition: border 250ms ease;
}
.ibbs_write .header input:hover,
.ibbs_write .header input:focus {
    border-color: var(--link-hover-color);
}
.ibbs_write .header .user_login {
    display: none;
}
.ibbs_write .header .user_guest {
    margin-bottom: 1%;
}
.ibbs_write .header .user_guest .colspan {
    position: relative;
    margin-left: 1%;
    float: left;
}
.ibbs_write .header .user_guest .colspan1,
.ibbs_write .header .user_guest .colspan2,
.ibbs_write .header .user_guest .colspan3 {
    width: 15.83333333333333%;
}
.ibbs_write .header .user_guest .colspan4 {
    width: 49.5%;
}
.ibbs_write .header .user_guest .colspan1 {
    margin-left: 0;
}
.ibbs_write .header .youtube_area {
    margin-top: 1%;
}
.ibbs_write .header .eventdate_area {
    margin-top: 1%;
}
.ibbs_write .header .eventdate_area .colspan {
    position: relative;
    width: 49.5%;
    margin-left: 1%;
    float: left;
}
.ibbs_write .header .eventdate_area .colspan:first-child {
    margin-left: 0;
}
.ibbs_write .header .age_area {
    margin-top: 1%;
}
.ibbs_write .header .age_area .colspan {
    position: relative;
    width: 49.5%;
    margin-left: 1%;
    float: left;
}
.ibbs_write .header .age_area .colspan:first-child {
    margin-left: 0;
}

.ibbs_write .header .opt_area {
    margin-top: 1%;
}
.ibbs_write .header .opt_area .switch {
    position: relative;
    display: inline-block;
    margin-left: calc(1% - 4px);
    text-align: center;
}
.ibbs_write .header .opt_area .switch:first-child {
    margin-left: 0;
}
.ibbs_write .header .opt_area .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.ibbs_write .header .opt_area .switch .sbc-btn {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
}
.ibbs_write .header .opt_area .toggle_btn {
    display: block;
    width: 100%;
    height: 100%;
    padding: 7px 12px;
    cursor: pointer;
    color: var(--btn-text-color);
    font-size: 1em;
    opacity: 0.85;
    background-color: var(--btn-bg-color);
    border: 1px solid var(--search-line-color);
    -webkit-transition: color 250ms ease, background 250ms ease, opacity 250ms ease, border 250ms ease;
       -moz-transition: color 250ms ease, background 250ms ease, opacity 250ms ease, border 250ms ease;
            transition: color 250ms ease, background 250ms ease, opacity 250ms ease, border 250ms ease;
}
.ibbs_write .header .opt_area .switch:hover .toggle_btn,
.ibbs_write .header .opt_area .sbc-btn:focus + .toggle_btn {
    color: var(--link-hover-color);
    opacity: 1;
    border-color: var(--link-hover-color);
}
.ibbs_write .header .opt_area input:checked + .toggle_btn,
.ibbs_write .header .opt_area .sbc-checked + .toggle_btn {
    color: var(--btn-bg-color) !important;
    background-color: var(--link-hover-color);
    opacity: 1;
    border-color: var(--link-hover-color);
}

.ibbs_write .cont {
    margin-bottom: 1%;
}
.ibbs_write .cont .writecont {
    width: 100%;
    min-height: 300px;
    padding: 10px 5px;
    border: 1px solid var(--search-line-color);
    -webkit-transition: border 250ms ease;
       -moz-transition: border 250ms ease;
            transition: border 250ms ease;
}
.ibbs_write .cont .writecont:focus {
    border-color: var(--link-hover-color);
}
.ibbs_write .footer .boxgroup {
    position: relative;
    margin-top: 5px;
}
.ibbs_write .footer .boxgroup:first-child {
    margin-top: 0;
}
.ibbs_write .footer input {
    display: block;
    width: 100%;
    padding: 10px 5px;
    color: var(--text-link-color);
    background-color: #fff;
    border: 1px solid var(--search-line-color);
    -webkit-transition: border 250ms ease;
       -moz-transition: border 250ms ease;
            transition: border 250ms ease;
}
.ibbs_write .footer input:hover,
.ibbs_write .footer input:focus {
    border-color: var(--link-hover-color);
}
.ibbs_write .footer .link_area {
    margin-bottom: 15px;
}
.ibbs_write .footer .file_area input {
    padding: 5px;
}

.ibbs_write_btn {
    text-align: center;
}
.ibbs_write_btn button,
.ibbs_write_btn input,
.ibbs_write_btn a {
    min-width: 120px;
}



/* --------------------------------------------------------------------------------------------
    ## BOARD VIEW
-------------------------------------------------------------------------------------------- */
.ibbs_view .view_header {
    border-top: 2px solid #000;
    border-bottom: 1px solid #ccc;
}
.ibbs_view .view_header h4 {
    padding: 20px 10px;
    font-size: 1.25em;
    font-weight: 500;
    border-bottom: 1px dashed #ccc;
}
.ibbs_view .view_header .ibbs_view_info {
    padding: 10px;
    background: #fbfbfb;
}
.ibbs_view .view_header .ibbs_view_info div {
    display: inline-block;
    margin-left: 15px;
    font-size: 14px;
    line-height: 1.1;
}
.ibbs_view .view_header .ibbs_view_info div:first-child {
    margin-left: 0;
}
.ibbs_view .view_header .ibbs_view_info i {
    display: inline-block;
    width: 20px;
}
.ibbs_view .view_contents {
    min-height: 450px;
    padding: 25px 10px;
}
.ibbs_view .view_footer {
    padding: 10px;
    font-size: 1rem;
    line-height: 1.8;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.ibbs_view .view_footer a {
    display: inline-block;
}
.ibbs_view .view_footer a span {
    display: inline-block;
}
.ibbs_view .view_footer .down_area {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ccc;
}
.ibbs_view .view_footer .link_area {}
.ibbs_view .view_footer i {
    display: inline-block;
    width: 25px;
}
.ibbs_view .view_footer .counter {
    display: inline-block;
    min-width: 23px;
    height: 23px;
    margin-left: 10px;
    font-size: 12px;
    text-align: center;
    line-height: 23px;
    background: #ececec;
    border-radius: 50px;
}



/* --------------------------------------------------------------------------------------------
    ## BOARD BUTTON DESIGN
-------------------------------------------------------------------------------------------- */
.ibbs_btn {
    margin-top: 30px;
    margin-bottom: 0;
}
.ibbs_write_btn {
    margin-bottom: 100px;
}
.psc21.ibbs_btn {
    margin-top: 5px;
}
.ibbs_btn .admin_btn {
    float: left;
}
.ibbs_btn .user_btn {
    float: right;
}
.ibbs_btn button,
.ibbs_btn input,
.ibbs_btn a {
    display: inline-block;
    padding: 7px 15px;
    color: var(--btn-text-color);
    font-size: var(--btn-text-size);
    font-weight: var(--font-weight-bold);
    text-align: center;
    vertical-align: middle;
    background: var(--btn-bg-color);
    border: 2px solid var(--btn-border-color);
    -webkit-transition: color 250ms ease, background 250ms ease, border 250ms ease;
       -moz-transition: color 250ms ease, background 250ms ease, border 250ms ease;
            transition: color 250ms ease, background 250ms ease, border 250ms ease;
}
.ibbs_btn button:hover,
.ibbs_btn button:focus,
.ibbs_btn input:hover,
.ibbs_btn input:focus,
.ibbs_btn a:hover,
.ibbs_btn a:focus {
    color: var(--btn-bg-color);
    background: var(--btn-border-color);
}



/* --------------------------------------------------------------------------------------------
    ## CIBOARD
-------------------------------------------------------------------------------------------- */
/* CIBOARD VIEW */
.ibbs_list .info li {
    display: inline-block;
    padding-right: 10px;
    float: none !important;
}
.ibbs_list .info li.pull-right {
    float: none !important;
}
.ibbs_list .contents-view {
    padding: 20px 0;
}
.list-group-item-info {
    color: var(--link-hover-color);
    background-color: var(--notice-bg-color);
}
.ibbs_list .recommand {
    display: none;
}



/* --------------------------------------------------------------------------------------------
    ## JOIN
-------------------------------------------------------------------------------------------- */
.pjc_top .inner {
    border: 1px solid #ccc;
}
.pjc_top li {
    position: relative;
    width: 33.333333333333333%;
    padding: 30px 5px;
    float: left;
    font-size: 20px;
    text-align: center;
    line-height: 1;
}
.pjc_top li::before {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    top: 0;
    left: 0;
    background: #ccc;
}
.pjc_top li:first-child::before {
    display: none;
}
.pjc_top li a {
    display: block;
    width: 100%;
    height: 100%;
}
.pjc_top li,
.pjc_top li a {
    color: #333;
}
.pjc_top li a:hover {
    color: #2475d0;
}
.pjc_top li.current,
.pjc_top li.current a,
.pjc_top li.current a:hover {
    color: #fff;
    background: #2475d0;
}
.pjc_title {
    margin-top: 80px;
    text-align: center;
}
.pjc_title h3 {
    color: #383838;
    font-size: 30px;
    font-weight: 500;
}

.pjc_11 .iagreement {
    margin-bottom: 100px;
}
.pjc_11 .iagreement h4 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
}
.pjc_11 .iagreement h4 span {
    color: #2475d0;
}
.pjc_11 .iagreement .iagree_cont {
    position: relative;
    height: 300px;
    margin-bottom: 10px;
    padding: 15px;
    overflow-y: scroll;
    color: #232323;
    background: #f6f6f6;
}
    .pjc_11 .iagree_cont h5,
    .pjc_11 .iagree_cont div,
    .pjc_11 .iagree_cont p,
    .pjc_11 .iagree_cont li {
        font-size: 1em;
        line-height: 1.8;
    }
    .pjc_11 .iagree_cont h5 {
        font-weight: 500;
    }
    .pjc_11 .iagree_cont div,
    .pjc_11 .iagree_cont p,
    .pjc_11 .iagree_cont li {
        font-size: 15px;
    }
    .pjc_11 .iagree_cont li {
        margin-top: 5px;
    }
.pjc_11 .iagreement .iagree_btn {
    text-align: right;
}
.pjc_11 .iagreement label {
    cursor: pointer;
    text-align: center;
}
.pjc_11 .iagreement label input {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
}
.pjc_11 .iagreement label span {
    display: inline-block;
    padding: 7px 8px;
    color: #7f7f7f;
    border: 1px solid #c0c0c0;
    -webkit-transition: color 300ms ease, background 300ms ease, border 300ms ease;
       -moz-transition: color 300ms ease, background 300ms ease, border 300ms ease;
            transition: color 300ms ease, background 300ms ease, border 300ms ease;
}
.pjc_11 .iagreement label input:hover + span,
.pjc_11 .iagreement label input:focus + span {
    color: #232323;
    border-color: #353535;
}
.pjc_11 .iagreement label.ialert input:focus + span {
    color: #d22;
    border-color: #d22;
}
.pjc_11 .iagreement label.ialert input:checked + span,
.pjc_11 .iagreement label input:checked + span {
    color: #fff;
    background: #2475d0;
    border-color: #2475d0;
}
.pjc_11 .iagreement label span .ichecked {
    display: none;
}
.pjc_11 .iagreement label input:checked + span .inochecked {
    display: none;
}
.pjc_11 .iagreement label input:checked + span .ichecked {
    display: inline;
}


.pjc_21 {}
.pjc .irgroup {
    margin-bottom: 120px;
}
.pjc_21 .irgroup h4 {
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
    border-bottom: 1px solid #424242;
}
.pjc_21 .irgroup .igroup {
    position: relative;
    margin-top: 30px;
}
.pjc_21 .irgroup .igroup label span {
    cursor: pointer;
}
.pjc_21 .irgroup .irtitle {
    position: absolute;
    padding: 10px 0;
    top: 0;
    left: 0;
    z-index: 1;
    color: #656565;
}
.pjc_21 .irgroup .ircont {
    padding-left: 130px;
}
.pjc_21 .irgroup .ircont .help {
    margin-top: 5px;
    color: #505050;
    font-size: 14px;
}
.pjc_21 .irgroup .irinput,
.pjc_21 .irgroup .irselect,
.pjc_21 .irgroup .irbtn {
    display: inline-block;
    padding: 10px 15px;
    font-size: 16px;
}
.pjc_21 .irgroup .irinput::placeholder {
    color: #ccc;
}
.pjc_21 .irgroup .irinput,
.pjc_21 .irgroup .irselect {
    color: #666;
}
.pjc_21 .irgroup .irinput,
.pjc_21 .irgroup .irselect {
    border: 1px solid #dcdcdc;
}
.pjc_21 .irgroup .irinput {
    width: calc(100% - 125px);
}
.pjc_21 .irgroup .isingle {
    width: 100%;
}

.pjc_21 .irgroup .ircont2 {
    width: 100%;
    max-width: 830px;
}
.pjc_21 .irgroup .irinput2 {
    width: calc(100% - 125px);
}
.pjc_21 .irgroup .isingle2 {
    width: 100%;
    max-width: 700px;
}
.pjc_21 .irgroup .irows {
    display: flex;
    gap: 5px;
}
.pjc_21 .irgroup .iselectbox {
    position: relative;
    display: flex;
    width: 50%;
}
.msie .pjc_21 .irgroup .iselectbox {
    width: 49.5%;
    margin-left: 1%;
}
.msie .pjc_21 .irgroup .iselectbox:first-child {
    margin-left: 0;
}
.pjc_21 .irgroup .irselect {
    position: relative;
    padding-right: 45px;
    z-index: 1;
    font-family: 'SCoreDream', 'Malgun Gothic', 'Apple SD Gothic Neo', Helvetica, Dotum, '돋움', sans-serif;
    text-align: center;
    background: transparent;
    border-radius: 0px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
.msie .pjc_21 .irgroup .irselect {
    padding-right: 15px;
}
.pjc_21 .irgroup .irselect option {
    color: #666;
}
.pjc_21 .irgroup .iselectbox .irselect {
    width: 100%;
}
.pjc_21 .irgroup .iselectbox span {
    position: absolute;
    display: block;
    width: 45px;
    padding: 10px 0;
    top: 0;
    right: 0;
    z-index: -1;
    color: #ccc;
    text-align: center;
}
.pjc_21 .irgroup .iselectbox span::before {
    line-height: 1.6;
}
.msie .pjc_21 .irgroup .iselectbox span {
    display: none;
}
.pjc_21 .irgroup .iabox {
    margin-top: 10px;
}
.pjc_21 .irgroup .iabox:first-child {
    margin-top: 0;
}
.pjc_21 .irgroup .ir_address_01,
.pjc_21 .irgroup .ir_address_02 {
    cursor: pointer;
}
.pjc_21 .irgroup .ireceive_label {
    display: block;
    margin-top: 5px;
    font-size: 15px;
}
.pjc_21 .irgroup .ireceive_label input {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
}
.pjc_21 .irgroup .ireceive_label input + span .inochecked {
    color: #ccc;
}
.pjc_21 .irgroup .ireceive_label input + span .ichecked {
    display: none;
}
.pjc_21 .irgroup .ireceive_label span {
    color: #666;
}
.pjc_21 .irgroup .ireceive_label input:checked + span .inochecked {
    display: none;
}
.pjc_21 .irgroup .ireceive_label input:checked + span .ichecked {
    display: inline;
    color: #2475d0;
}
.pjc_21 .irgroup .irbtn {
    display: inline-block;
    width: 120px;
    color: #fff;
    text-align: center;
    background: #2475d0;
    -webkit-transition: background 300ms ease;
       -moz-transition: background 300ms ease;
            transition: background 300ms ease;
}
.pjc_21 .irgroup .irbtn:hover,
.pjc_21 .irgroup .irbtn:focus {
    background: #164e81;
}
.pjc_21 .irgroup01 .igroup,
.pjc_21 .irgroup02 .igroup {
    width: 100%;
    max-width: 830px;
}


.pjc_31 {
    padding-top: 50px;
    text-align: center;
}
.pjc_31 .icon {
    width: 100px;
    height: 76px;
    margin: 0 auto 50px;
    line-height: 0;
    background-image: url('../img/bbs/join_last.png');
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}
.pjc_31 .txt_area {
    margin-bottom: 50px;
}
.pjc_31 p {
    margin-bottom: 5px;
    color: #6e6e6e;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
}
.pjc_31 p.strong {
    color: #3b3b3b;
    font-size: 28px;
    font-weight: 500;
}
.pjc_31 a {
    color: #6e6e6e;
}
.pjc .btn_area a,
.pjc .btn_area input[type="submit"],
.pjc .btn_area button {
    display: block;
    width: 90%;
    max-width: 320px;
    padding: 25px;
    margin: 0 auto;
    color: #fff;
    font-size: 20px;
    text-align: center; 
    line-height: 1;
    background: #2475d0;
    -webkit-transition: background 300ms ease;
       -moz-transition: background 300ms ease;
            transition: background 300ms ease;
}
.pjc .btn_area a:hover,
.pjc .btn_area a:focus,
.pjc .btn_area input[type="submit"]:hover,
.pjc .btn_area input[type="submit"]:focus,
.pjc .btn_area button:hover,
.pjc .btn_area button:focus {
    background-color: #164e81;
}



/* --------------------------------------------------------------------------------------------
    ## LOGED
-------------------------------------------------------------------------------------------- */
.login_page {
    color: var(--login-link-color);
    background-color: #fff;
    background-image: url('../img/bbs/loged_bg@2x.jpg');
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}
@media screen and (max-width: 1920px) {
    .login_page {
        background-image: url('../img/bbs/loged_bg.jpg');
    }
}
.login_page *:before,
.login_page *:after,
.login_page * {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}
.iloged {
    position: fixed;
    width: 270px;
    height: 340px;
    margin: -170px 0 0 -135px;
    padding: 25px;
    top: 50%;
    left: 50%;
    z-index: 99;
    background: #fff;
    border: 1px solid var(--login-box-border-color);
}
.iloged a {
    color: var(--login-link-color);
    -webkit-transition: color 300ms ease;
       -moz-transition: color 300ms ease;
            transition: color 300ms ease;
}
.iloged a:hover {
    color: var(--login-hover-color);
}
.iloged_bg {
    position: fixed;
    content: '';
    width: 268px;
    height: 308px;
    margin: -154px 0 0 -134px;
    top: 50%;
    left: 50%;
    z-index: 0;
    background: rgba(0,0,0,0.15);
    border-radius: 60px;
    filter: blur(8px);
}
.iloged h3 {
    width: 164px;
    height: 28px;
    margin: 2px auto 27px;
    text-indent: -9999px;
    background-image: url('../img/bbs/logo.png');
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}
.mobile .iloged h3 {
    background-image: url('../img/bbs/logo@3x.png');
}
@media screen and (max-width: 375px) {
    .mobile .iloged h3 {
        background-image: url('../img/bbs/logo@2x.png');
    }
}
.iloged .inner {
    position: relative;
    width: 100%;
    height: 100%;
}
.iloged .group {
    position: relative;
    margin-bottom: 10px;
}
.iloged .user_input {
    width: 100%;
    height: 36px;
    padding: 0 46px 0 10px;
    outline: none;
    color: var(--login-link-color);
    font-size: 13px;
    font-weight: var(--font-weight-bold);
    line-height: 36px;
    background: #f5f5f5;
    border: 0;
    border-radius: 5px;
    -webkit-transition: background 300ms ease;
       -moz-transition: background 300ms ease;
            transition: background 300ms ease;
}
.iloged .user_input:focus {
    color: #fff;
    background: var(--login-box-hover-bg-color);
}
.iloged .user_input:focus::placeholder {
    color: var(--login-box-hover-txt-color);
}
.iloged .ui_label {
    position: absolute;
    width: 36px;
    height: 36px;
    top: 0;
    right: 0;
    z-index: 1;
    color: #9f9f9f;
    font-size: 22px;
    text-align: center;
    line-height: 36px;
    -webkit-transition: color 300ms ease;
       -moz-transition: color 300ms ease;
            transition: color 300ms ease;
}
.iloged .user_input:focus + .ui_label {
    color: #fff;
}
.iloged .loged_info_area {
    margin-bottom: 20px;
}
.iloged .loged_info_area .colspan {
    position: relative;
    width: 50%;
    float: left;
    font-size: 12px;
    font-weight: var(--font-weight-bold);
    line-height: 16px;
}
.iloged .loged_info_area .colspan1 a {
    display: inline-block;
    padding: 3px 5px;
    border-radius: 3px;
}
.iloged .loged_info_area .colspan2 {
    text-align: right;
}
.iloged .loged_info_area .colspan2 label {
    display: inline-block;
}
.iloged .loged_info_area .colspan2 input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}
.iloged .loged_info_area .colspan2 .toggle_btn {
    display: inline-block;
    height: 100%;
    padding: 3px 5px;
    cursor: pointer;
    color: var(--btn-text-color);
    font-size: 12px;
    opacity: 0.85;
    background-color: var(--btn-bg-color);
    -webkit-transition: color 250ms ease, background 250ms ease, opacity 250ms ease, border 250ms ease;
       -moz-transition: color 250ms ease, background 250ms ease, opacity 250ms ease, border 250ms ease;
            transition: color 250ms ease, background 250ms ease, opacity 250ms ease, border 250ms ease;
}
.iloged .loged_info_area .colspan2 label:hover .toggle_btn,
.iloged .loged_info_area .colspan2 input:hover + .toggle_btn,
.iloged .loged_info_area .colspan2 input:focus + .toggle_btn {
    color: var(--link-hover-color);
    border-color: var(--login-box-hover-bg-color);
}
.iloged .loged_info_area .colspan2 input:checked + .toggle_btn {
    cursor: pointer;
    color: var(--login-box-hover-txt-color);
    background-color: var(--login-box-hover-bg-color);
    border: 1px solid var(--login-box-hover-bg-color);
}
.iloged .loged_btn {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}
.iloged .loged_btn input {
    width: 100%;
    height: 36px;
    padding: 0 10px;
    color: #fff;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Malgun Gothic', '맑은 고딕', Helvetica, 'Apple SD Gothic Neo', Dotum, '돋움', sans-serif;
    font-weight: var(--font-weight-bold);
    line-height: 36px;
    background: #080808;
    border: 0;
    border-radius: 5px;
    -webkit-transition: background 300ms ease;
       -moz-transition: background 300ms ease;
            transition: background 300ms ease;
}
.iloged .loged_btn input:hover,
.iloged .loged_btn input:focus {
    background: var(--link-hover-color);
}
.iloged .loged_join {
    color: #8f8f8f;
    font-size: 13px;
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.05em;
}
.iloged .loged_join a {
    vertical-align: top;
    -webkit-transition: color 300ms ease;
       -moz-transition: color 300ms ease;
            transition: color 300ms ease;
}
.iloged .loged_join a:hover {
    color: var(--link-hover-color);
}
.iloged .loged_join .colspan {
    width: 75%;
    float: left;
}
.iloged .loged_join .right {
    width: 25%;
    text-align: right;
}



/* --------------------------------------------------------------------------------------------
    ## INTERNET EXPLORER
-------------------------------------------------------------------------------------------- */
.msie {}

    .msie strong {
        font-weight: 500;
    }
    .msie .ibbs_list * {
        color: #000000;
    }
    .msie .ibbs .bbstop .sgroup,
    .msie .ibbs_list .bbstop .sgroup {
        border: 1px solid #9f9f9f;
    }
    .msie .ibbs_list .thead .colgroup,
    .msie .ibbs_list .tbody .colgroup {
        font-size: 15px;
        font-weight: 400;
    }
    .msie .ibbs_list .btitle .icate {
        color: #2475d0;
    }
    .msie .ibbs_list .tbody .colspan a {
        color: #000000;
    }
    .msie .ibbs_list .tbody .btitle a:hover,
    .msie .ibbs_list .tbody .btitle a:focus,
    .msie .ibbs_list.survey .bproc.progress span {
        color: #2475d0;
    }


    /* --------------------------------------------------------
        :: 공지체크
    -------------------------------------------------------- */
    .msie .ibbs_list .noti {
        background-color: rgba(125,128,210,0.1);
    }

    /* --------------------------------------------------------
        :: 페이지
    -------------------------------------------------------- */
    .msie .ibbs_page_num a {
        color: #000000;
        font-size: 13px;
    }
    .msie .ibbs_page_num a:hover {
        color: #2475d0;
    }
    .msie .ibbs_page_num a.current {
        color: #fff;
        background: #2475d0;
    }

    /* --------------------------------------------------
        ## BOARD WRITE
    -------------------------------------------------- */
    .msie .ibbs_write .header select {
        color: #000000;
        border: 1px solid #9f9f9f;
    }
    .msie .ibbs_write .header select:hover,
    .msie .ibbs_write .header select:focus {
        border-color: #2475d0;
    }
    .msie .ibbs_write .header input {
        color: #000000;
        border: 1px solid #9f9f9f;
    }
    .msie .ibbs_write .header input:hover,
    .msie .ibbs_write .header input:focus {
        border-color: #2475d0;
    }
    .msie .ibbs_write .header .opt_area .toggle_btn {
        color: #000;
        background-color: #fff;
        border: 1px solid #9f9f9f;
    }
    .msie .ibbs_write .header .opt_area .switch:hover  .toggle_btn {
        color: #2475d0;
        border-color: #2475d0;
    }
    .msie .ibbs_write .header .opt_area input:checked + .toggle_btn {
        color: #fff !important;
        background-color: #2475d0;
        border-color: #2475d0;
    }
    .msie .ibbs_write .cont .writecont {
        border: 1px solid #9f9f9f;
    }
    .msie .ibbs_write .cont .writecont:focus {
        border-color: #2475d0;
    }
    .msie .ibbs_write .footer input {
        color: #000000;
        border: 1px solid #9f9f9f;
    }
    .msie .ibbs_write .footer input:hover,
    .msie .ibbs_write .footer input:focus {
        border-color: #2475d0;
    }

    /* --------------------------------------------------
        ## BOARD BUTTON DESIGN
    -------------------------------------------------- */
    .msie .ibbs_btn button,
    .msie .ibbs_btn input,
    .msie .ibbs_btn a {
        color: #000;
        font-size: 14px;
        background: #fff;
        border: 2px solid #000;
    }
    .msie .ibbs_btn button:hover,
    .msie .ibbs_btn button:focus,
    .msie .ibbs_btn input:hover,
    .msie .ibbs_btn input:focus,
    .msie .ibbs_btn a:hover,
    .msie .ibbs_btn a:focus {
        color: #fff;
        background: #000;
    }

    /* --------------------------------------------------
        ## CIBOARD
    -------------------------------------------------- */
    .msie .list-group-item-info {
        color: #2475d0;
        background-color: rgba(125,128,210,0.1);
    }

    /* --------------------------------------------------
        ## LOGIN
    -------------------------------------------------- */
    .msie .login_page {
        color: #000000;
    }
    .msie .iloged {
        border-color: #efefef;
    }
    .msie .iloged a {
        color: #000000;
    }
    .msie .iloged a:hover {
        color: #2475d0;
    }
    .msie .iloged .user_input {
        color: #000000;
    }
    .msie .iloged .user_input:focus {
        background: #2475d0;
    }
    .msie .iloged .user_input:focus::placeholder {
        color: #ffffff;
    }
    .msie .iloged .loged_info_area .colspan2 .toggle_btn {
        color: #000000;
        background-color: #ffffff;
        border-color: #9f9f9f;
    }
    .msie .iloged .loged_info_area .colspan2 label:hover .toggle_btn,
    .msie .iloged .loged_info_area .colspan2 input:hover + .toggle_btn,
    .msie .iloged .loged_info_area .colspan2 input:focus + .toggle_btn {
        color: #2475d0;
        border-color: #2475d0;
    }
    .msie .iloged .loged_info_area .colspan2 input:checked + .toggle_btn {
        color: #ffffff;
        background-color: #2475d0;
        border-color: #2475d0;
    }
    .msie .iloged .loged_btn input:hover,
    .msie .iloged .loged_btn input:focus {
        background: #2475d0;
    }
    .msie .iloged .loged_join a:hover {
        color: #2475d0;
    }



/* --------------------------------------------------------------------------------------------
    ## MOBILE
-------------------------------------------------------------------------------------------- */
.mobile .pjc_11 a .reg_ico_01 {background-image: url('../img/member/join_step11_01@2x.png');}
.mobile .pjc_11 a .reg_ico_02 {background-image: url('../img/member/join_step11_02@2x.png');}
.mobile .pjc_11 a .reg_ico_03 {background-image: url('../img/member/join_step11_03@2x.png');}
.mobile .pjc_11 a .arrow {
    background-image: url('../img/member/join_step11_arrow@2x.png');
    background-position: right 50%;
    background-size: 210px 29px;
}
.mobile .iloged h3 {background-image: url('../img/loged_logo@3x.png');}


/* --------------------------------------------------------------------------------------------
    ## RESPONSIVE
-------------------------------------------------------------------------------------------- */
@media screen and (max-width: 1024px) {
    /* BOARD LIST */
    .ibbs .bbs_category li a,
    .ibbs_list .bbs_category li a,
    .ibbs.catebg .bbs_category li a,
    .ibbs_list.catebg .bbs_category li a {
        padding: 15px 5px;
    }
    .ibbs_list .thead {
        display: none;
    }
    .ibbs_list .tbody .colgroup {
        padding-top: 30px;
    }
    .ibbs_list .tbody .colspan {
        position: static;
        display: inline-block;
        height: auto;
        padding-bottom: 5px;
    }
    .ibbs_list .tbody .colspan span {
        position: static;
        display: block;
        height: auto;
        padding: 0;
        left: 0;
        right: 0;
        text-align: left;
    }
    .ibbs_list .tbody .colspan i {
        display: inline;
    }
    .ibbs_list.notice .colspan.btitle,
    .ibbs_list.download .colspan.btitle,
    .ibbs_list .admin .colspan.btitle,
    .ibbs_list .colspan.btitle {
        position: absolute;
        margin: 0;
        padding: 0;
        top: 5px;
        left: 5px;
        right: 5px;
    }
    .ibbs_list .tbody .colspan.btitle h3 {
        margin: 0;
        padding: 0;
    }
    .ibbs_list.notice.download .colspan.btitle {
        margin-right: 0;
    }

    .ibbs_list .bcheck,
    .ibbs_list .bnum,
    .ibbs_list .bname,
    .ibbs_list .bdown,
    .ibbs_list .btarget,
    .ibbs_list .bterm,
    .ibbs_list .bdate,
    .ibbs_list .bview,
    .ibbs_list .bproc,
    .ibbs_list .admin .bcheck,
    .ibbs_list .admin .bnum,
    .ibbs_list .admin .bname,
    .ibbs_list .admin .bdown,
    .ibbs_list.notice.download .bdown,
    .ibbs_list .admin .btarget,
    .ibbs_list .admin .bterm,
    .ibbs_list .admin .bdate,
    .ibbs_list .admin .bview,
    .ibbs_list .admin .bproc {
        position: static;
        display: inline-block;
        width: auto;
        margin: 0 5px;
        font-size: 13px;
    }
    .ibbs_list.notice .bname,
    .ibbs_list.notice .bdown {
        display: none;
    }
    .ibbs_list .bcheck,
    .ibbs_list .admin .bcheck {
        position: relative;
        display: none !important;
        margin-right: 0;
        float: right;
    }
    .ibbs_list .admin .bcheck {
        display: inline-block !important;
    }
    .ibbs_table .admin .type_table .w1 {
        display: table-cell !important;
        margin: auto;
        float: none;
    }


    /* BOARD GALLERY */
    .ibbs_gallery .imgrid4 li {
        width: 32%;
    }
    .ibbs_gallery .imgrid4 li:nth-child(4n+1) {
        margin-left: 2%;
        clear: none;
    }
    .ibbs_gallery .imgrid4 li:nth-child(3n+1) {
        margin-left: 0;
        clear: both;
    }

    .ibbs_gallery .imgrid3 .anchorbox .ilist_date {
        font-size: 18px;
    }
    .ibbs_gallery .imgrid3 .anchorbox .ilist_subject h3 {
        font-size: 20px;
    }

    .ibbs.mixup .mix,
    .ibbs.mixup .gap {
        display: inline-block;
        width: calc(100%/3 - ((3 * 1.18rem) / 3));
        margin: 0 0.5rem 1.5rem;
        float: none;
        vertical-align: top;
    }
    .ibbs.mixup .mix:nth-child(4n+1),
    .ibbs.mixup .gap:nth-child(4n+1),
    .ibbs.mixup .mix:nth-child(3n+1),
    .ibbs.mixup .gap:nth-child(3n+1) {
        margin: 0 0.5rem 1.5rem;
    }


    /* BOARD WRITE */
    .ibbs_write .header .user_guest .colspan1,
    .ibbs_write .header .user_guest .colspan2,
    .ibbs_write .header .user_guest .colspan3 {
        width: 32.66666666666667%;
        margin-bottom: 1%;
    }
    .ibbs_write .header .user_guest .colspan4 {
        width: 100%;
        margin-left: 0;
        clear: both;
    }
}


@media screen and (max-width: 736px) {
    /* BOARD GALLERY */
    .ibbs_gallery .imgrid3 li,
    .ibbs_gallery .imgrid4 li {
        width: 49%;
        margin: 0 0 20px 2%;
    }
    .ibbs_gallery .imgrid3 li:nth-child(3n+1),
    .ibbs_gallery .imgrid4 li:nth-child(3n+1) {
        margin-left: 2%;
        clear: none;
    }
    .ibbs_gallery .imgrid3 li:nth-child(2n+1),
    .ibbs_gallery .imgrid4 li:nth-child(2n+1) {
        margin-left: 0;
        clear: both;
    }
    .ibbs.mixup .mix,
    .ibbs.mixup .gap {
        display: inline-block;
        width: calc(100%/2 - ((2 * 1.13rem) / 2));
        margin-left: 0;
        margin: 0 0.5rem 1.5rem;
        vertical-align: top;
    }
    .ibbs.mixup .mix:nth-child(3n+1),
    .ibbs.mixup .gap:nth-child(3n+1),
    .ibbs.mixup .mix:nth-child(2n+1),
    .ibbs.mixup .gap:nth-child(2n+1) {
        margin: 0 0.5rem 1.5rem;
    }

    .mbtbl thead {
        display: none;
    }
    .mbtbl tr {
        display: block;
        padding: 10px;
        border-bottom: 1px solid #ccc;
    }
    .mbtbl tr:first-child {
        border-top: 1px solid #ccc;
    }
    .mbtbl td {
        display: inline-block;
        padding: 0;
        text-align: left;
        line-height: 2;
        border: 0;
    }
    .mbtbl td .mview {
        position: relative;
        display: inline-block;
        margin-right: 5px;
        padding-left: 10px;
        color: #333;
        font-weight: 500;
    }
    .mbtbl td .mview::before {
        position: absolute;
        display: block;
        content: '·';
        top: 0;
        left: 0;
    }
    .mbtbl .w1 {
        width: 100%;
    }
    .mbtbl .w2,
    .mbtbl .w3 {
        margin-right: 15px;
    }
    .mbtbl .w2,
    .mbtbl .w3,
    .mbtbl .w4 {
        width: auto;
    }
    .mbtbl .w5 {
        width: 100%;
    }
    .mbtbl .w5 p {
        position: relative;
        margin-left: 10px;
        padding-left: 12px;
    }
    .mbtbl .w5 p::before {
        position: absolute;
        display: block;
        content: '-';
        top: 0;
        left: 0;
    }
}


@media screen and (max-width: 640px) {
    /* BOARD GALLERY */
    .ibbs_gallery .anchorbox .ilist_subject h3 {
        font-size: 14px;
    }
    .ibbs_gallery .imgrid3 .anchorbox .ilist_date {
        font-size: 15px;
    }
    .ibbs_gallery .imgrid3 .anchorbox .ilist_subject h3 {
        font-size: 17px;
    }
    .ibbs_gallery .ilist_info p {
        font-size: 13px;
    }


    /* JOIN */
    .pjc_title h3 {
        font-size: 20px;
    }
    .pjc_top li {
        padding: 20px 5px;
        font-size: 17px;
        letter-spacing: -0.075em;
    }
    .pjc_11,
    .pjc_21 {
        margin-top: 50px;
    }
    .pjc_21 .irgroup h4 {
        font-size: 18px;
    }
    .pjc .irgroup {
        margin-bottom: 100px;
    }
    .pjc_21 .irgroup .irtitle {
        position: static;
        margin-bottom: 8px;
        padding-bottom: 5px;
        border-bottom: 1px dashed #9f9f9f;
    }
    .pjc_21 .irgroup .irinput,
    .pjc_21 .irgroup .irselect,
    .pjc_21 .irgroup .irbtn {
        font-size: 15px;
    }
    .pjc_21 .irgroup .ircont {
        padding-left: 0;
    }
    .pjc_21 .irgroup .isingle2 {
        max-width: 100%;
    }
    .pjc_31 {
        margin-top: 120px;
        margin-bottom: 50px;
    }
    .pjc_31 .icon {
        font-size: 80px;
    }
    .pjc_31 p {
        font-size: 18px;
    }
    .pjc_31 p.strong {
        font-size: 22px;
    }
    .pjc .btn_area a,
    .pjc .btn_area input[type="submit"],
    .pjc .btn_area button {
        width: 150px;
        padding: 15px;
        font-size: 14px;
    }
}


@media screen and (max-width: 560px) {
    /* BOARD LIST */
    .ibbs .bbstop .leftarea,
    .ibbs .bbstop .rightarea,
    .ibbs_list .bbstop .leftarea,
    .ibbs_list .bbstop .rightarea {
        width: 100%;
        float: none;
    }
    .ibbs .bbstop .leftarea,
    .ibbs_list .bbstop .leftarea {
        margin-bottom: 5px;
    }
    .ibbs .bbstop .searchbar,
    .ibbs_list .bbstop .searchbar {
        width: calc(100% - 155px);
    }


    /* BOARD WRITE */
    .ibbs_write {
        font-size: 15px;
    }
    .ibbs_write .header .user_guest .colspan {
        width: 49.5%;
        margin: 0 0 1% 1%;
        float: left;
        clear: none;
    }
    .ibbs_write .header .user_guest .colspan1,
    .ibbs_write .header .user_guest .colspan3 {
        margin-left: 0;
    }
    .ibbs_write .header .user_guest .colspan3,
    .ibbs_write .header .user_guest .colspan4 {
        margin-bottom: 0;
    }
    .ibbs_write .header select {
        padding: 10px 5px;
    }
    .ibbs_write .header input,
    .ibbs_write .cont textarea,
    .ibbs_write .footer input {
        padding: 10px;
    }

    .ibbs .bbstop .sgroup01,
    .ibbs .bbstop .sgroup02,
    .ibbs_list .bbstop .sgroup01,
    .ibbs_list .bbstop .sgroup02 {
        display: block;
    }
    .ibbs .bbstop .sgroup01,
    .ibbs_list .bbstop .sgroup01 {
        margin-bottom: 10px;
    }
    .ibbs .bbstop .sgroup01 select,
    .ibbs_list .bbstop .sgroup01 select {
        width: calc(100% - 45px);
    }
}


@media screen and (max-width: 428px) {
    /* iPhone 12/13 Pro Max Portrait */

    /* BOARD LIST */
    .ibbs .bbstop select,
    .ibbs .bbstop input,
    .ibbs_list .bbstop select,
    .ibbs_list .bbstop input {
        font-size: 14px;
    }
    .ibbs .bbstop .searchbar,
    .ibbs_list .bbstop .searchbar {
        width: calc(100% - 155px);
    }
    .ibbs .bbstop .searchico,
    .ibbs_list .bbstop .searchico {
        top: 3px;
    }
    .ibbs_list .tbody .colspan.btitle h3 {
        font-size: 14px;
    }


    /* BOARD GALLERY */
    .ibbs_gallery .imgrid3 li,
    .ibbs_gallery .imgrid4 li {
        width: 100%;
        margin-left: auto !important;
        margin-right: auto !important;
        clear: both;
    }
    .ibbs_gallery .imgrid3 li:nth-child(2),
    .ibbs_gallery .imgrid4 li:nth-child(2) {
        margin-top: 20px;
    }


    /* BOARD PAGE */
    .ibbs_page_num a {
        width: 20px;
        height: 20px;
        font-size: 12px;
        line-height: 22px;
    }
    .ibbs_page_num a.first,
    .ibbs_page_num a.last {
        font-size: 17px;
        line-height: 23px;
    }


    /* BOARD WRITE */
    .ibbs_write .header select {
        width: 100%;
    }


    /* BOARD BUTTON DESIGN */
    .ibbs_btn button,
    .ibbs_btn input,
    .ibbs_btn a {
        font-size: 14px;
    }
    .ibbs_btn .admin_btn,
    .ibbs_btn .user_btn {
        float: none;
        text-align: center;
    }
    .ibbs_btn .admin_btn {
        margin-bottom: 5px;
    }
    .ibbs_btn .user_btn a {
        width: 104px;
    }


    /* BOARD */
    .ibbs .bbstop .right select,
    .ibbs .bbstop .right input,
    .ibbs .bbstop .right button,
    .ibbs_list .bbstop .right select,
    .ibbs_list .bbstop .right input,
    .ibbs_list .bbstop .right button {
        height: 30px;
        padding: 0 5px;
        line-height: 28px;
    }
    .ibbs_list .ibbs_btn_area a,
    .ibbs_list .ibbs_btn_area button,
    .ibbs_list .ibbs_btn_area input {
        width: auto;
        height: 32px;
        padding: 0 15px;
        font-size: 14px;
        line-height: 30px;
    }
    .ibbs_list .ibbs_btn_area .admin_btn {
        text-align: center;
    }


    /* JOIN */
    .pjc_top li {
        font-size: 16px;
        line-height: 1.4;
        letter-spacing: 0;
    }
    .pjc_top li span {
        display: block;
    }
    .pjc_11,
    .pjc_21 {
        margin-top: 20px;
    }
    .pjc_21 .irgroup h4 {
        font-size: 16px;
    }
    .pjc .irgroup {
        margin-bottom: 80px;
    }
    .pjc_21 .irgroup .irtitle {
        font-size: 15px;
        font-weight: 500;
    }
    .pjc_21 .irgroup .irinput,
    .pjc_21 .irgroup .irselect,
    .pjc_21 .irgroup .irbtn {
        font-size: 14px;
    }
    .pjc_31 {
        margin-top: 60px;
        margin-bottom: 20px;
    }
    .pjc_31 .icon {
        font-size: 60px;
    }
    .pjc_31 p {
        font-size: 15px;
    }
    .pjc_31 p.strong {
        font-size: 20px;
    }

    .mbtbl .w1,
    .mbtbl .w2,
    .mbtbl .w3,
    .mbtbl .w4,
    .mbtbl .w5 {
        width: 100%;
        margin-left: 0;
    }
    .mbtbl .w5 p {
        font-size: 0.9375em;
    }
}

@media screen and (max-width: 375px) {
    .mobile .iloged h3 {background-image: url('../img/loged_logo@2x.png');}
}


@media screen and (max-width: 359px) {
    /* iPhone 5 Portrait */

    /* BOARD WRITE */
    .ibbs_write {
        font-size: 14px;
    }
    .ibbs_write .header select {
        width: 100%;
    }
    .ibbs_write .header .user_guest .colspan {
        width: 100% !important;
        margin: 0 0 1% 0;
        float: none;
        clear: both;
    }
    .ibbs_write .header .user_guest .colspan4 {
        margin-bottom: 0;
    }
    .ibbs_write .header .age_area .colspan {
        width: 100%;
        margin: 1% 0 0 0;
        float: none;
        clear: both;
    }
    .ibbs_write .header .age_area .colspan:first-child {
        margin-top: 0;
    }
    .ibbs_write_btn button,
    .ibbs_write_btn input,
    .ibbs_write_btn a {
        min-width: 90px;
    }


    /* JOIN */
    .pjc_31 .icon {
        font-size: 60px;
    }
    .pjc_31 p {
        font-size: 13px;
    }
    .pjc_31 p.strong {
        font-size: 16px;
    }
}

@media screen and (max-width: 319px) {
    /* BOARD LIST */
    .ibbs .bbstop select,
    .ibbs .bbstop input,
    .ibbs_list .bbstop select,
    .ibbs_list .bbstop input {
        width: 100%;
        float: none;
    }
    .ibbs .bbstop select,
    .ibbs_list .bbstop select {
        border-bottom: 1px dotted #ccc;
    }
    .ibbs .bbstop .searchbar,
    .ibbs_list .bbstop .searchbar {
        width: calc(100% - 35px);
    }
    .ibbs .bbstop .searchbtn,
    .ibbs .bbstop .searchico,
    .ibbs_list .bbstop .searchbtn,
    .ibbs_list .bbstop .searchico {
        height: auto;
        top: auto;
        bottom: 0;
    }


    /* BOARD GALLERY */
    .ibbs_gallery .ilist_info p {
        font-size: 12px;
    }


    /* JOIN */
    .pjc_top li {
        font-size: 14px;
    }
    .pjc_31 p {
        font-size: 12px;
    }
}