@charset "utf-8";
@import url("./fonts.css");
@import url("./reset.css");
@import url("./swiper.min.css");
@import url("./one.css");



/* ------------------------------------------------------------
Setting
------------------------------------------------------------ */
:root {
    --primary: #FFC200;
    --secondary: #88B3FF;
    --white: #FFFFFF;
    --gray-100: #F2F3F4;
    --gray-200: #E9EAEB;
    --gray-300: #D5D7DD;
    --gray-400: #B9BDC7;
    --gray-500: #8A91A1;
    --gray-600: #6E7481;
    --gray-700: #525660;
    --gray-800: #42454D;
    --gray-900: #212529;
    --black: #000000;
}
body {
    font-family: 'NanumSquare';
    font-size: 15px;
}

.header_inner,
.footer_inner address {
    font-family: 'NanumSquare';
    font-weight: 700;
}
/* ------------------------------------------------------------
Layout
------------------------------------------------------------ */

.wrap {
    min-width: 360px;
}

/* Header */
.header {
    height: 100px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}
.header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1250px;
    height: 100%;
    margin: 0 auto;
}
.header .logo a
{
    display: block;
}
.header .logo img {
    height: 40px;
}
.gnb .depth1_list {
    display: flex;
    align-items: center;
    text-align: center;
}
.gnb .depth1_item {
    position: relative;
    padding: 24px 32px;
    font-size: 20px;
}
.gnb .depth1_link {
    position: relative;
    padding: 8px 0;
    font-weight: 700;
    transition: all 0.4s ease;
}
.gnb .depth1_link::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background-color: var(--primary);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    transform-origin: left bottom;
    transition: all .3s ease;
}
.gnb .active .depth1_link {
    font-weight: 700;
}
.gnb .active .depth1_link::after {
    transform: scaleX(1);
}
.gnb .depth2_list {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    padding: 0 40px 32px;
    background: var(--white);
    border: solid var(--gray-300);
    border-width: 0 1px 1px 1px;
    border-radius: 0 0 8px 8px;
    transform: translateX(-50%);
    z-index: 99;
}
.gnb .depth2_link {
    padding: 8px 0;
}
.gnb .depth2_link {
    display: block;
    white-space: nowrap;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
    transition: all 0.1s ease;
}
.gnb .depth2_item:hover .depth2_link {
    font-weight: 600;
    color: var(--primary);
}
.header .btn_menu {
    display: none;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M3 4H21V6H3V4ZM3 11H21V13H3V11ZM3 18H21V20H3V18Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 101;
}
@media (max-width: 1280px) {
    .header {
        height: 64px;
    }
    .header_inner {
        padding: 0 24px;
    }
    .header .logo img {
        height: 28px;
    }
    .gnb {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 400px;
        background: var(--white);
        z-index: 100;
        overflow-y: auto;
    }
    .gnb .depth1_list {
        flex-direction: column;
        height: auto;
        min-height: 100%;
        padding: 64px 40px;
    }
    .gnb .depth1_item {
        position: relative;
        padding: 16px 32px;
        font-size: 18px;
    }
    .header .btn_menu {
        display: block;
    }
    .header .btn_menu.btn_close {
        position: fixed;
        top: 16px;
        right: 16px;
        z-index: 101;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M10.5859 12L2.79297 4.20706L4.20718 2.79285L12.0001 10.5857L19.793 2.79285L21.2072 4.20706L13.4143 12L21.2072 19.7928L19.793 21.2071L12.0001 13.4142L4.20718 21.2071L2.79297 19.7928L10.5859 12Z'%3E%3C/path%3E%3C/svg%3E");
    }
}

/* Footer */
.footer {
    height: 120px;
    background-color: var(--gray-100);
	margin-top: 40px;
}
.footer_inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    width: 100%;
    max-width: 1280px;
    height: 100%;
    padding: 0 40px;
    margin: 0 auto;
}
.footer .logo a {
    display: block;
}
.footer .logo img {
    height: 32px;
}
.footer address {
    font-size: 14px;
    line-height: 1.5;
}
.footer .br_mobile {
    display: none;
}
@media (max-width: 992px) {
    .footer {
        height: auto;
    }
    .footer_inner {
        flex-direction: column;
        gap: 16px;
        padding: 40px 24px;
        text-align: center;
    }
    .footer .logo img {
        height: 28px;
    }
}
@media (max-width: 768px) {
    .footer .br_mobile {
        display: block;
    }
}

/* common */
.container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}
.content {
	width: 100%;
	max-width: 1280px;
	padding: 0 40px;
	margin: 0 auto;
}
.inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}
@media (max-width: 1280px) {
	.content {
        width: 100%;
        padding: 0 24px;
    }
    .inner {
        width: 100%;
        padding: 0 8px;
    }
}

/* dim */
.dim {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .25) ;
    z-index: 1;
}


/* ------------------------------------------------------------
Main
------------------------------------------------------------ */

/* main */
.main_top {
    margin-top: 40px;
}
.main_top .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 456px;
}
.main_visual {
    width: calc((100% - 48px) / 3 * 2 + 24px);
    height: 100%;
}
.main_visual .swiper {
    overflow: hidden;
    position: relative;
    height: 100%;
    border-radius: 24px;
}
.main_visual .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.main_visual .swiper-slide > a {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.main_visual .btn_prev {
    position: absolute;
    top: 50%;
    left: 24px;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 1);
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.8284 12.0007L15.7782 16.9504L14.364 18.3646L8 12.0007L14.364 5.63672L15.7782 7.05093L10.8284 12.0007Z' fill='black'/%3E%3C/svg%3E%0A");
    background-size: 24px;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    cursor: pointer;
    z-index: 99;
}
.main_visual .btn_next {
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 1);
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.1717 12.0007L8.22192 7.05093L9.63614 5.63672L16.0001 12.0007L9.63614 18.3646L8.22192 16.9504L13.1717 12.0007Z' fill='black'/%3E%3C/svg%3E%0A");
    background-size: 24px;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    cursor: pointer;
    z-index: 99;
}
.pagination  {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 99;
}
.swiper-pagination-bullet {
    background: var(--black);
    opacity: .75;
}
.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
}
.main_shortcut {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc((100% - 48px) / 3);
    height: 100%;
    border: 1px solid var(--gray-300);
    border-radius: 24px;
    overflow: hidden;
}
.main_shortcut .link_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 30px;
}
.main_shortcut .link_item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.main_shortcut .link_item .ico {
    display: block;
    width: 90px;
    height: 90px;
    margin: 0 auto;
    background-size: 90px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 35px;
    transition: all 0.4s ease;
}
.main_shortcut .link_item:hover .ico {
    background-color: var(--gray-100);
    transition: all 0.4s ease;
}
.main_shortcut .link_item .txt {
    display: block;
    margin-top: 8px;
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
}
.main_middle {
    margin-top: 40px;
}
.main_middle .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.main_middle .inner > div {
    width: calc((100% - 48px) / 3);
    height: 248px;
    border: 1px solid var(--gray-300);
    border-radius: 24px;
}
.main_board {
    padding: 24px;
    border: 1px solid var(--gray-300);
}
.main_board .tab_list {
    display: flex;
    align-items: center;
    gap: 0;
    border-bottom: 2px solid var(--primary);
    margin-bottom: 8px;
}
.main_board .tab_item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33.333%;
    height: 40px;
    padding: 0;
    border-radius: 8px 8px 0 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
}
.main_board .tab_item.active {
    background: var(--primary);
    font-weight: 700;
    color: var(--black);
}
.main_board .board_list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
	gap: 40px;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 14px;
}
.main_board .board_list li > a {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
  font-size: 1rem;
}
.main_board .board_list li:last-of-type {
    border-bottom: 0;
}

.main_call {
    padding: 24px;
}
.main_call .call_tit {
    padding: 12px 0;
    background: var(--primary);
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
}
.main_call .call_cont {
    position: relative;
    margin-top: 15px;
}
.main_call .call_cont .num {
    font-size: 40px;
    font-weight: 800;
}
.main_call .call_cont .txt {
    display: block;
}
.main_call .call_cont .txt:first-of-type {
    margin-top: 8px;
    font-size: 16px;
    font-weight: 600;
}
.main_call .call_cont .txt:last-of-type {
    margin-top: 4px;
    margin-bottom: 16px;
    font-size: 14px;
}
.main_call .call_cont .ico {
    position: absolute;
    top: 8px;
    right: 0;
    display: block;
    width: 88px;
    height: 88px;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    z-index: 0;
}
.main_call .call_cont .num,
.main_call .call_cont .txt {
    position: relative;
    z-index: 1;
}
.main_youtube iframe {
    width: 100%;
    height: 100%;
    border-radius: 24px;
}
.main_bottom {
    margin-top: 40px;
}
.main_related {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 48px;
    border: 1px solid var(--gray-300);
    border-radius: 24px;
}
.main_related .related_tit {
    font-size: 20px;
    font-weight: 700;
    white-space: nowrap;
}
.main_related .related_cont {
    width: 88%;
}
.main_related .related_slide {
    position: relative;
    margin: 0 64px;
}
.main_related .img_slide {
    height: 28px;
}
.main_related .btn_prev {
    position: absolute;
    top: 0;
    left: -64px;
    width: 28px;
    height: 28px;
    background-color: var(--white);
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.8284 12.0007L15.7782 16.9504L14.364 18.3646L8 12.0007L14.364 5.63672L15.7782 7.05093L10.8284 12.0007Z' fill='black'/%3E%3C/svg%3E%0A");
    background-size: 24px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}
.main_related .btn_next {
    position: absolute;
    top: 0;
    right: -64px;
    width: 28px;
    height: 28px;
    background-color: var(--white);
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.1717 12.0007L8.22192 7.05093L9.63614 5.63672L16.0001 12.0007L9.63614 18.3646L8.22192 16.9504L13.1717 12.0007Z' fill='black'/%3E%3C/svg%3E%0A");
    background-size: 24px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}
@media (max-width: 1280px) {
    .main_top .inner {
        flex-direction: column;
        height: auto;
    }
    .main_visual {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }
    .main_shortcut {
        width: 100%;
        height: auto;
        padding: 40px;
    }
    .main_shortcut .link_list {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 24px 72px
    }
    .main_middle {
        margin-top: 24px;
    }
    .main_middle .inner {
        flex-wrap: wrap;
    }
    .main_middle .inner > div {
        width: unset;
    }
    .main_board {
        width: 100% !important;
    }
    .main_call {
        width: calc((100% - 24px) / 2) !important;
    }
    .main_youtube {
        width: calc((100% - 24px) / 2) !important;
    }
    .main_bottom {
        margin-top: 24px;
    }
}
@media (max-width: 992px) {

}
@media (max-width: 768px) {
    .main_visual {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }
    .main_shortcut {
        padding: 24px;
    }
    .main_shortcut .link_list {
        gap: 16px;
        width: 100%;
    }
    .main_shortcut .link_item .ico {
        width: 70px;
        height: 70px;
        background-size: 70px;
        border-radius: 28px;
    }
    .main_shortcut .link_item .txt {
        font-size: 0.875rem;
    }
    .main_call {
        width: 100% !important;
    }
    .main_youtube {
        width: 100% !important;
    }
}
@media (max-width: 576px) {
    .main_shortcut {
        padding: 20px 16px;
    }
    .main_shortcut .link_list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 12px 8px;
        width: 100%;
    }
    .main_shortcut .link_item .ico {
        width: 56px;
        height: 56px;
        background-size: 56px;
        border-radius: 22px;
    }
    .main_shortcut .link_item .txt {
        font-size: 0.75rem;
        margin-top: 4px;
    }
    /* 유관기관 모바일 - 1개씩 크게 표시 */
    .main_related {
        flex-direction: column;
        padding: 24px 16px;
        gap: 16px;
    }
    .main_related .related_tit {
        font-size: 18px;
    }
    .main_related .related_cont {
        width: 100%;
    }
    .main_related .related_slide {
        margin: 0 40px;
    }
    .main_related .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .main_related .img_slide {
        height: 48px;
        max-width: 100%;
        object-fit: contain;
    }
    .main_related .btn_prev {
        left: -40px;
        top: 50%;
        transform: translateY(-50%);
    }
    .main_related .btn_next {
        right: -40px;
        top: 50%;
        transform: translateY(-50%);
    }
}

/* ------------------------------------------------------------
Sub Common
------------------------------------------------------------ */

/* visual */
.sub_visual {
	height: 150px;
}
.sub_visual.depth_01 {
	background-color: #FFEAEA;
}
.sub_visual.depth_02 {
	background-color: #FFEFE4;
}
.sub_visual.depth_03 {
	background-color: #FFF6E2;
}
.sub_visual.depth_04 {
	background-color: #FFF4ED;
}
.sub_visual.depth_05 {
	background-color: #ECF6FF;
}
.sub_visual.depth_06 {
	background-color: #EEF3FF;
}
.sub_visual.depth_07 {
	background-color: #EDEAFF;
}
.sub_visual .inner {
	display: flex;
	justify-content: center;
	flex-direction: column;
	height: 100%;
	padding: 0 40px;
	background-position: center right 40px;
	background-size: auto 100%;
	background-repeat: no-repeat;
}
.sub_visual .tit {
	font-size: 28px;
	font-weight: 800;
}
@media (max-width: 1280px) {
	.sub_visual .inner {
		padding: 0 24px;
		background-position: center right 24px;
	}
}
@media (max-width: 768px) {
	.sub_visual {
		height: 120px;
	}
	.sub_visual .inner {
		padding: 0 16px;
		background-position: center right;
		background-size: auto 100%;
	}
	.sub_visual .tit {
		font-size: 24px;
	}
}

/* tab */
.page_tab .tab_list {
	overflow: hidden;
	display: flex;
	align-items: center;
	gap: 2px;
	margin-top: 40px;
	margin-bottom: 40px;
	/* border-radius: 16px; */
}
.page_tab .tab_list li {
	width: 100%;
}
.page_tab .tab_list a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 56px;
	background-color: var(--gray-100);
	font-size: 16px;
	font-weight: 500;
	text-align: center;
}
.page_tab .tab_list a.on {
	background-color: var(--primary);
	font-weight: 800;
	color: var(--black);
}
@media (max-width: 992px) {
	.page_tab .tab_list {
		flex-wrap: wrap;
	}
	.page_tab .tab_list li {
		width: calc((100% - 2px) / 2)
	}
}












/* ------------------------------------------------------------
Old Reset
------------------------------------------------------------ */


/* setting */
.clear{clear:both}
.fl {float:left;}
.fr {float:right;}
.tc {text-align:center;}
.tr {text-align:right;}
.tl {text-align:left;}
#skip, .skip { font-size:0; width:0; height:0; line-height:0; position:absolute; left:-9999px; }

/* bootstrap */
/*.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}*/
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  /* outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; */
}
.btn:hover,
.btn:focus,
.btn.focus {
  color: #333;
  text-decoration: none;
}
.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  pointer-events: none;
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: .65;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default:hover,
.btn-default:focus,
.btn-default.focus,
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none;
}
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
  background-color: #fff;
  border-color: #ccc;
}
.btn-default .badge {
  color: #fff;
  background-color: #333;
}
.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-footer:before,
.modal-footer:after {
  display: table;
  content: " ";
}
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-footer:after {
  clear: both;
}
.text-center {
  text-align: center;
}
/*
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
*/
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.glyphicon-menu-left:before {
  content: "\e257";
}
.glyphicon-menu-right:before {
  content: "\e258";
}
.glyphicon-menu-down:before {
  content: "\e259";
}
.glyphicon-menu-up:before {
  content: "\e260";
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}
/*
@media (min-width: 800px) {
  .container {max-width: 720px; }
  .gnb_area {max-width: 100%;}
}

@media (min-width: 998px) {
  .container { max-width: 960px; }
}

@media (min-width: 1200px) {
  .container { max-width: 1170px; }
}
*/






/* ------------------------------------------------------------
Gnu Default Css
------------------------------------------------------------ */

.placeholdersjs {color:#aaa !important}

/* 공통 - display none/block */
.is-hidden { display: none !important; }
.is-visible { display: block !important; }

/* 공통 - 뷰포트 (pc / mobile) 별 display none/block */
.pc-only { display: none; }
@media (min-width: 769px) { .pc-only { display: block !important; }}
.mobile-only { display: block; }
@media (min-width: 769px) { .mobile-only { display: none !important; }}

/* 팝업레이어 */
#hd_pop {z-index:1000;position:relative;margin:0 auto;height:0}
#hd_pop h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
.hd_pops {position:absolute;border:1px solid #e9e9e9;background:#fff}
.hd_pops img {max-width:100%}
.hd_pops_con {}
.hd_pops_footer {padding:0;background:#000;color:#fff;text-align:left;position:relative}
.hd_pops_footer:after {display:block;visibility:hidden;clear:both;content:""}
.hd_pops_footer button {padding:10px;border:0;color:#fff}
.hd_pops_footer .hd_pops_reject {background:#000;text-align:left}
.hd_pops_footer .hd_pops_close {background:#393939;position:absolute;top:0;right:0}

/* 상단 레이아웃
#hd {background:#212020}
#hd_h1 {position:absolute;font-size:0;line-height:0;overflow:hidden}

#tnb {border-bottom:1px solid #383838;margin:0 auto}
#tnb:after {display:block;visibility:hidden;clear:both;content:""}
#tnb .inner {margin:0 auto}

#hd_wrapper {position:relative;margin:0 auto;height:140px;zoom:1}
#hd_wrapper:after {display:block;visibility:hidden;clear:both;content:""}

#logo {float:left;padding:30px 0 0}

.hd_sch_wr {float:left;padding:30px 0;width:445px;margin-left:65px}
#hd_sch h3 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#hd_sch {border-radius:30px;overflow:hidden}
#hd_sch #sch_stx {float:left;width:385px;height:45px;padding-left:10px;border-radius:30px 0 0 30px;background:#2c2c2c;border:0;border-right:0;font-size:1.25em;color:#fff}
#hd_sch #sch_submit {float:left;width:60px;height:45px;border:0;background:#2c2c2c;color:#fff;border-radius:0 30px 30px 0;cursor:pointer;font-size:16px}

#hd_define {float:left}
#hd_define:after {display:block;visibility:hidden;clear:both;content:""}
#hd_define li {float:left;font-size:1.083em;line-height:14px;border-right:1px solid #4a4a4a;position:relative;text-align:center;margin:15px 10px 15px 0;padding-right:10px}
#hd_define li:last-child {padding-right:0;margin-right:0;border-right:0}
#hd_define li a {display:inline-block;color:#919191}
#hd_define li.active a {color:#fff}


#hd_qnb {float:right;text-align:right}
#hd_qnb:after {display:block;visibility:hidden;clear:both;content:""}
#hd_qnb li {float:left;font-size:1.083em;line-height:14px;border-right:1px solid #4a4a4a;position:relative;text-align:center;margin:15px 10px 15px 0;padding-right:10px}
#hd_qnb li:last-child {padding-right:0;margin-right:0;border-right:0}
#hd_qnb li span {display:block;margin-top:5px;font-size:0.92em}
#hd_qnb li a {display:inline-block;color:#919191}
#hd_qnb .visit .visit-num {display:inline-block;line-height:16px;padding:0 5px;margin-left:5px;border-radius:10px;background:#da22f5;color:#fff;font-size:10px}


.hd_login {position:absolute;right:0;top:60px}
.hd_login li {float:left;margin:0 5px;border-left:1px solid #616161;padding-left:10px;line-height:13px}
.hd_login li:first-child {border-left:0}
.hd_login a {color:#fff}
*/

/* 메인메뉴
#gnb {position:relative;background:#fff}
#gnb > h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#gnb .gnb_wrap {margin:0 auto;position:relative}
#gnb .gnb_wrap:hover, #gnb .gnb_wrap:focus, #gnb .gnb_wrap:active{z-index:3}
#gnb #gnb_1dul {font-size:1.083em;padding:0;border-bottom:1px solid #e0e2e5;zoom:1}
#gnb ul:after {display:block;visibility:hidden;clear:both;content:""}
#gnb .gnb_1dli {float:left;line-height:55px;padding:0px;position:relative}
#gnb .gnb_1dli:hover > a {color:#3a8afd;
-webkit-transition:background-color 2s ease-out;
-moz-transition:background-color 0.3s ease-out;
-o-transition:background-color 0.3s ease-out;
transition:background-color 0.3s ease-out}

.gnb_1dli .bg {position:absolute;top:24px;right:8px;display:inline-block;width:10px;height:10px;overflow:hidden;background:url('../img/gnb_bg2.gif') no-repeat 50% 50%;text-indent:-999px}
.gnb_1da {display:block;font-weight:bold;padding:0 15px;color:#080808;text-decoration:none}
.gnb_1dli.gnb_al_li_plus .gnb_1da{padding-right:25px}
.gnb_2dli:first-child {border:0}
.gnb_2dul {display:none;position:absolute;top:54px;min-width:140px;padding-top:2px}
.gnb_2dul .gnb_2dul_box {border:1px solid #e0e2e5;border-top:0;padding:0;
-webkit-box-shadow:0px 1px 5px rgba(97, 97, 97, 0.2);
-moz-box-shadow:0px 1px 5px rgba(97, 97, 97, 0.2);
box-shadow:0px 1px 5px rgba(97, 97, 97, 0.2)}
.gnb_2da {display:block;padding:0 10px;line-height:40px;background:#fff;color:#080808;text-align:left;text-decoration:none}
a.gnb_2da:hover {color:#3a8afd;background:#f7f7f8;
-moz-transition:all 0.3s ease-out;
-o-transition:all 0.3s ease-out;
transition:all 0.3s ease-out}

.gnb_1dli_air .gnb_2da {}
.gnb_1dli_on .gnb_2da {}
.gnb_2da:focus, .gnb_2da:hover {color:#fff}
.gnb_1dli_over .gnb_2dul {display:block;left:0}
.gnb_1dli_over2 .gnb_2dul {display:block;right:0}
.gnb_wrap .gnb_empty {padding:10px 0;width:100%;text-align:center;line-height:2.7em;color:#080808}
.gnb_wrap .gnb_empty a {color:#3a8afd;text-decoration:underline}
.gnb_wrap .gnb_al_ul .gnb_empty, .gnb_wrap .gnb_al_ul .gnb_empty a {color:#555}

#gnb .gnb_menu_btn {background:#4158d1;color:#fff;width:50px;height:55px;border:0;vertical-align:top;font-size:18px}
#gnb .gnb_close_btn {background:#fff;color:#b6b9bb;width:50px;height:50px;border:0;vertical-align:top;font-size:18px;position:absolute;top:0;right:0}
#gnb .gnb_mnal {float:right;padding:0}

#gnb_all {display:none;position:absolute;border:1px solid #c5d6da;width:100%;background:#fff;z-index:1000;-webkit-box-shadow:0 2px 5px rgba(0,0,0,0.2);
-moz-box-shadow:0 2px 5px rgba(0,0,0,0.2);
box-shadow:0 2px 5px rgba(0,0,0,0.2)}
#gnb_all h2 {font-size:1.3em;padding:15px 20px;border-bottom:1px solid #e7eeef}
#gnb_all .gnb_al_ul:after {display:block;visibility:hidden;clear:both;content:""}
#gnb_all .gnb_al_ul > li:nth-child(5n+1) {border-left:0}
#gnb_all .gnb_al_li {float:left;width:20%;min-height:150px;padding:20px;border-left:1px solid #e7eeef}
#gnb_all .gnb_al_li .gnb_al_a {font-size:1.2em;display:block;position:relative;margin-bottom:10px;font-weight:bold;color:#3a8afd}
#gnb_all .gnb_al_li li {line-height:2em}
#gnb_all .gnb_al_li li a {color:#555}
#gnb_all_bg {display:none;background:rgba(0,0,0,0.1);width:100%;height:100%;position:fixed;left:0;top:0;z-index:999}
*/

/* 중간 레이아웃 */
#wrapper {}
#container_wr:after {display:block;visibility:hidden;clear:both;content:""}
#container_wr {margin:0 auto;zoom:1}
#aside {float:right;width:235px;padding:0;height:100%;margin:20px 0 20px 20px}

#container {position:relative;float:left;min-height:500px;height:auto !important;margin:20px 0;font-size:1em;width:930px;zoom:1}
#container:after {display:block;visibility:hidden;clear:both;content:""}
#container_title {font-size:1.333em;margin:0 auto;font-weight:bold}
#container_title span {margin:0 auto 10px;display:block;line-height:30px}

.lt_wr {width:32%}
.lt_wr:nth-child(3n+1) {clear:both}
.latest_wr {margin-bottom:20px}
.latest_wr:after {display:block;visibility:hidden;clear:both;content:""}
.latest_top_wr {margin:0 -10px 20px}
.latest_top_wr:after {display:block;visibility:hidden;clear:both;content:""}

/* 하단 레이아웃
#ft {background:#212020;margin:0 auto;text-align:center}
#ft h1 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#ft_wr {max-width:1240px;margin:0;padding:40px 0;position:relative;display:inline-block;text-align:left}
#ft_wr:after {display:block;visibility:hidden;clear:both;content:""}
#ft_wr .ft_cnt {width:25%;float:left;padding:0 20px}

#ft_link {text-align:left}
#ft_link a {display:block;color:#fff;line-height:2em;font-weight:bold}
#ft_company h2 {font-size:1.2em;margin-bottom:20px}
#ft_company {font-weight:normal;color:#e3e3e3;line-height:2em}
#ft_catch {margin:20px 0 10px}
#ft_copy {text-align:center;width:1200px;margin:0 auto;padding:20px 0;color:#5b5b5b;font-size:0.92em;border-top:1px solid #383838}
#top_btn {position:fixed;bottom:20px;right:20px;width:50px;height:50px;line-height:46px;border:2px solid #333;color:#333;text-align:center;font-size:15px;z-index:90;background:rgba(255,255,255,0.5)}
#top_btn:hover {border-color:#3059c7;background:#3059c7;color:#fff}
*/

/* 게시물 선택복사 선택이동 */
#copymove {}
#copymove .win_desc {text-align:center;display:block}
#copymove .tbl_wrap {margin:20px}
#copymove .win_btn {padding:0 20px 20px}
.copymove_current {float:right;background:#ff3061;padding:5px;color:#fff;border-radius:3px}
.copymove_currentbg {background:#f4f4f4}

/* 화면낭독기 사용자용 */
#hd_login_msg {position:absolute;top:0;left:0;font-size:0;line-height:0;overflow:hidden}
.msg_sound_only, .sound_only {display:inline-block !important;position:absolute;top:0;left:0;width:0;height:0;margin:0 !important;padding:0 !important;font-size:0;line-height:0;border:0 !important;overflow:hidden !important}

/* 본문 바로가기 */
#skip_to_container a {z-index:100000;position:absolute;top:0;left:0;width:1px;height:1px;font-size:0;line-height:0;overflow:hidden}
#skip_to_container a:focus, #skip_to_container a:active {width:100%;height:75px;background:#21272e;color:#fff;font-size:2em;font-weight:bold;text-align:center;text-decoration:none;line-height:3.3em}

/* ie6 이미지 너비 지정 */
.img_fix {width:100%;height:auto}

/* 캡챠 자동등록(입력)방지 기본 -pc */
#captcha {display:inline-block;position:relative}
#captcha legend {position:absolute;margin:0;padding:0;font-size:0;line-height:0;text-indent:-9999em;overflow:hidden}
#captcha #captcha_img {height:40px;border:1px solid #898989;vertical-align:top;padding:0;margin:0}
#captcha #captcha_mp3 {margin:0;padding:0;width:40px;height:40px;border:0;background:transparent;vertical-align:middle;overflow:hidden;cursor:pointer;background:url('../../../img/captcha2.png') no-repeat;text-indent:-999px;border-radius:3px}
#captcha #captcha_reload {margin:0;padding:0;width:40px;height:40px;border:0;background:transparent;vertical-align:middle;overflow:hidden;cursor:pointer;background:url('../../../img/captcha2.png') no-repeat 0 -40px;text-indent:-999px;border-radius:3px}
#captcha #captcha_key {margin:0 0 0 3px;padding:0 5px;width:90px;height:40px;border:1px solid #ccc;background:#fff;font-size:1.333em;font-weight:bold;text-align:center;border-radius:3px;vertical-align:top}
#captcha #captcha_info {display:block;margin:5px 0 0;font-size:0.95em;letter-spacing:-0.1em}

/* 캡챠 자동등록(입력)방지 기본 - mobile */
#captcha.m_captcha audio {display:block;margin:0 0 5px;width:187px}
#captcha.m_captcha #captcha_img {width:160px;height:60px;border:1px solid #e9e9e9;margin-bottom:3px;margin-top:5px;display:block}
#captcha.m_captcha #captcha_reload {position:static;margin:0;padding:0;width:40px;height:40px;border:0;background:transparent;vertical-align:middle;overflow:hidden;cursor:pointer;background:url('../../../img/captcha2.png') no-repeat 0 -40px;text-indent:-999px}
#captcha.m_captcha #captcha_reload span {display:none}
#captcha.m_captcha #captcha_key {margin:0;padding:0 5px;width:115px;height:29px;border:1px solid #b8c9c2;background:#f7f7f7;font-size:1.333em;font-weight:bold;text-align:center;line-height:29px;margin-left:3px}
#captcha.m_captcha #captcha_info {display:block;margin:5px 0 0;font-size:0.95em;letter-spacing:-0.1em}
#captcha.m_captcha #captcha_mp3 {width:31px;height:31px;background:url('../../../img/captcha2.png') no-repeat 0 0 ; vertical-align:top;overflow:hidden;cursor:pointer;text-indent:-9999px;border:none}

/* ckeditor 단축키 */
.cke_sc {margin:0 0 5px;text-align:right}
.btn_cke_sc {display:inline-block;padding:0 10px;height:23px;border:1px solid #ccc;background:#fafafa;color:#000;text-decoration:none;line-height:1.9em;vertical-align:middle;cursor:pointer}
.cke_sc_def {margin:0 0 5px;padding:10px;border:1px solid #ccc;background:#f7f7f7;text-align:center}
.cke_sc_def dl {margin:0 0 5px;text-align:left;zoom:1}
.cke_sc_def dl:after {display:block;visibility:hidden;clear:both;content:""}
.cke_sc_def dt, .cke_sc_def dd {float:left;margin:0;padding:5px 0;border-bottom:1px solid #e9e9e9}
.cke_sc_def dt {width:20%;font-weight:bold}
.cke_sc_def dd {width:30%}

/* 게시판 읽기 기본 폰트 사이즈 */
#bo_v {font-size:15px}

/* ckeditor 태그 기본값 */
#bo_v_con ul {display:block;list-style-type:disc;margin-top:1em;margin-bottom:1em;margin-left:0;margin-right:0;padding-left:40px}
#bo_v_con ol {display:block;list-style-type:decimal;margin-top:1em;margin-bottom:1em;margin-left:0;margin-right:0;padding-left:40px}
#bo_v_con li {display:list-item}

/* 버튼 */
/*a.btn,.btn {line-height:35px;height:35px;padding:0 10px;text-align:center;font-weight:bold;border:0;font-size:1.4em;
-webkit-transition:background-color 0.3s ease-out;
-moz-transition:background-color 0.3s ease-out;
-o-transition:background-color 0.3s ease-out;
transition:background-color 0.3s ease-out}*/
a.btn, .btn {line-height:35px;height:35px;padding:0 25px;text-align:center;border:0;border-radius: 4px;
    -webkit-transition: background-color 0.3s ease-out;
    -moz-transition: background-color 0.3s ease-out;
    -o-transition: background-color 0.3s ease-out;
    transition: background-color 0.3s ease-out;}
a.btn01 {display:inline-block;padding:7px;border:1px solid #ccc;background:#fafafa;color:#000;text-decoration:none;vertical-align:middle}
a.btn01:focus, a.btn01:hover {text-decoration:none}
button.btn01 {display:inline-block;margin:0;padding:7px;border:1px solid #ccc;background:#fafafa;color:#000;text-decoration:none}
a.btn02 {display:inline-block;padding:7px;border:1px solid #3b3c3f;background:#4b545e;color:#fff;text-decoration:none;vertical-align:middle}
a.btn02:focus, .btn02:hover {text-decoration:none}
button.btn02 {display:inline-block;margin:0;padding:7px;border:1px solid #3b3c3f;background:#4b545e;color:#fff;text-decoration:none}

.btn_confirm {text-align:right} /* 서식단계 진행 */

.btn_submit {border:0;background:#444;color:#fff;cursor:pointer;border:0; border-radius: 5px !important;}
.btn_submit:hover {background:#444; color:#fff !important; }
/*.btn_close {border:1px solid #dcdcdc;cursor:pointer;border-radius:3px;background:#fff}
a.btn_close {text-align:center;line-height:50px}*/

a.btn_cancel {display:inline-block;background:#969696;color:#fff;text-decoration:none;vertical-align:middle}
button.btn_cancel {display:inline-block;background:#969696;color:#fff;text-decoration:none;vertical-align:middle}
.btn_cancel:hover {background:#aaa}
a.btn_frmline, button.btn_frmline {display:inline-block;width:128px;padding:0 5px;height:40px;border:0;background:#434a54;border-radius:3px;color:#fff;text-decoration:none;vertical-align:top} /* 우편번호검색버튼 등 */
a.btn_frmline {}
button.btn_frmline {font-size:1em}

/* 게시판용 버튼 */
a.btn_b01,.btn_b01 {display:inline-block;background:#444;color:#fff;text-decoration:none;vertical-align:middle}
a.btn_b01 i,.btn_b01 i {display: none;}
a.btn_b01:hover, .btn_b01:hover {background:#444; color:#fff;}
a.btn_b02,.btn_b02 {display:inline-block;background:#444;padding:0 25px;color:#fff;text-decoration:none;border:0;vertical-align:middle;}
a.btn_b02 i,.btn_b02 i {display: none;}
a.btn_b02:hover, .btn_b02:hover {background:#444; color:#fff;}
a.btn_b03, .btn_b03 {display:inline-block;background:#fff;border:1px solid #b9bdd3;color:#646982;text-decoration:none;vertical-align:middle}
a.btn_b03:hover, .btn_b03:hover {background:#ebedf6; color:#fff;}
a.btn_b04, .btn_b04 {display:inline-block;background:#fff;border:1px solid #ccc;color:#707070;text-decoration:none;vertical-align:middle}
a.btn_b04:hover, .btn_b04:hover {color:#333;background:#f9f9f9}
a.btn_admin,.btn_admin {display:inline-block;background:#d13f4a;color:#fff;text-decoration:none;vertical-align:middle} /* 관리자 전용 버튼 */
.btn_admin:hover, a.btn_admin:hover {background:#ff3746}


/* 기본테이블 */
.tbl_wrap table {width:100%;border-collapse:collapse;border-spacing:0 5px;background:#fff;border-top:1px solid #ececec;border-bottom:1px solid #ececec}
.tbl_wrap caption {padding:10px 0;font-weight:bold;text-align:left}
.tbl_head01 {margin:0 0 10px}
.tbl_head01 caption {padding:0;font-size:0;line-height:0;overflow:hidden}
.tbl_head01 thead th {padding:20px 0;font-weight:normal;text-align:center;border-bottom:1px solid #ececec;height:40px}
.tbl_head01 thead th input {vertical-align:top} /* middle 로 하면 게시판 읽기에서 목록 사용시 체크박스 라인 깨짐 */
.tbl_head01 tfoot th, .tbl_head01 tfoot td {padding:10px 0;border-top:1px solid #c1d1d5;border-bottom:1px solid #c1d1d5;background:#d7e0e2;text-align:center}
.tbl_head01 tbody th {padding:8px 0;border-bottom:1px solid #e8e8e8}
.tbl_head01 td {color:#666;padding:10px 5px;border-top:1px solid #ecf0f1;border-bottom:1px solid #ecf0f1;line-height:1.4em;height:60px;word-break:break-all}
.tbl_head01 tbody tr:hover td {background:#fafafa}
.tbl_head01 a:hover {text-decoration:underline}

.tbl_head02 {margin:0 0 10px}
.tbl_head02 caption {padding:0;font-size:0;line-height:0;overflow:hidden}
.tbl_head02 thead th {padding:5px 0;border-top:1px solid #d1dee2;border-bottom:1px solid #d1dee2;background:#e5ecef;color:#383838;font-size:0.95em;text-align:center;letter-spacing:-0.1em}
.tbl_head02 thead a {color:#383838}
.tbl_head02 thead th input {vertical-align:top} /* middle 로 하면 게시판 읽기에서 목록 사용시 체크박스 라인 깨짐 */
.tbl_head02 tfoot th, .tbl_head02 tfoot td {padding:10px 0;border-top:1px solid #c1d1d5;border-bottom:1px solid #c1d1d5;background:#d7e0e2;text-align:center}
.tbl_head02 tbody th {padding:5px 0;border-top:1px solid #e9e9e9;border-bottom:1px solid #e9e9e9;background:#fff}
.tbl_head02 td {padding:5px 3px;border-top:1px solid #e9e9e9;border-bottom:1px solid #e9e9e9;background:#fff;line-height:1.4em;word-break:break-all}
.tbl_head02 a {}

/* 폼 테이블 */
.tbl_frm01 {margin:0 0 20px}
.tbl_frm01 table {width:100%;border-collapse:collapse;border-spacing:0}
.tbl_frm01 th {width:70px;padding:7px 13px;border:1px solid #e9e9e9;border-left:0;background:#f5f8f9;text-align:left}
.tbl_frm01 td {padding:7px 10px;border-top:1px solid #e9e9e9;border-bottom:1px solid #e9e9e9;background:transparent}
.wr_content textarea,.tbl_frm01 textarea,.form_01 textarea, .frm_input {border:1px solid #d0d3db;background:#fff;color:#000;vertical-align:middle;border-radius:3px;padding:5px;
-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, .075);
-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, .075);
box-shadow:inset 0 1px 1px rgba(0, 0, 0, .075);
}
.tbl_frm01 textarea {padding:2px 2px 3px}
.frm_input {height:40px}

.full_input {width:100%}
.half_input {width:49.5%}
.twopart_input {width:385px;margin-right:10px}
.tbl_frm01 textarea, .write_div textarea {width:100%;height:100px}
.tbl_frm01 a {text-decoration:none}
.tbl_frm01 .frm_file {display:block;margin-bottom:5px}
.tbl_frm01 .frm_info {display:block;padding:0 0 5px;line-height:1.4em}
.frm_info.add_info { margin-top: 10px !important; padding: 8px 12px; background: #fff; border: 1px solid #ddd; border-radius: 6px; line-height: 1.6; }
.btn_info_toggle { display: block; margin: 5px 0 0 21px; font-size: 12px; color: #3f51b5; background: none; border: none; cursor: pointer; text-decoration: underline; }

/*기본 리스트*/
.list_01 ul {border-top:1px solid #ececec}
.list_01 li {border-bottom:1px solid #ececec;background:#fff;padding:10px 15px;list-style:none;position:relative}
.list_01 li:nth-child(odd) {background:#f6f6f6}
.list_01 li:after {display:block;visibility:hidden;clear:both;content:""}
.list_01 li:hover {background:#f9f9f9}
.list_01 li.empty_li {text-align:center;padding:20px 0;color:#666}

/*폼 리스트*/
.form_01 h2 {font-size:1.167em}
.form_01 li {margin-bottom:10px}
.form_01 ul:after,
.form_01 li:after {display:block;visibility:hidden;clear:both;content:""}
.form_01 .left_input {float:left}
.form_01 .margin_input {margin-right:1%}
.form_01 textarea {height:100px;width:100%}
.form_01 .frm_label {display:inline-block;width:130px}

/* 자료 없는 목록 */
.empty_table {padding:50px 0 !important;text-align:center}
.empty_list {padding:20px 0 !important;color:#666;text-align:center}

/* 필수입력 */
.required, textarea.required {background-image:url('../img/require.png') !important;background-repeat:no-repeat !important;background-position:right top !important}

/* 테이블 항목별 정의 */
.td_board {width:80px;text-align:center}
.td_category {width:80px;text-align:center}
.td_chk {width:30px;text-align:center}
.td_date {width:60px;text-align:center}
.td_datetime {width:110px;text-align:center}
.td_group {width:80px;text-align:center}
.td_mb_id {width:100px;text-align:center}
.td_mng {width:80px;text-align:center}
.td_name {width:100px;text-align:left}
.td_nick {width:100px;text-align:center}
.td_num {width:50px;text-align:center}
.td_numbig {width:80px;text-align:center}
.td_stat {width:60px;text-align:center}

.txt_active {color:#5d910b}
.txt_done {color:#e8180c}
.txt_expired {color:#ccc}
.txt_rdy {color:#8abc2a}

/* 새창 기본 스타일 */
.new_win {position:relative}
.new_win .tbl_wrap {margin:0 20px}
.new_win #win_title {font-size:1.3em;height:50px;line-height:30px;padding:10px 20px;background:#fff;color:#000;-webkit-box-shadow:0 1px 10px rgba(0,0,0,.1);
-moz-box-shadow:0 1px 10px rgba(0,0,0,.1);
box-shadow:0 1px 10px rgba(0,0,0,.1)}
.new_win #win_title .sv {font-size:0.75em;line-height:1.2em}
.new_win .win_ul {margin-bottom:15px;padding:0 20px}
.new_win .win_ul:after {display:block;visibility:hidden;clear:both;content:""}
.new_win .win_ul li {float:left;background:#fff;text-align:center;padding:0 10px;border:1px solid #d6e9ff;border-radius:30px;margin-left:5px}
.new_win .win_ul li:first-child {margin-left:0}
.new_win .win_ul li a {display:block;padding:8px 0;color:#6794d3}
.new_win .win_ul .selected {background:#3a8afd;border-color:#3a8afd;position:relative;z-index:5}
.new_win .win_ul .selected a {color:#fff;font-weight:bold}
.new_win .win_desc {position:relative;margin:10px;border-radius:5px;font-size:1em;background:#f2838f;color:#fff;line-height:50px;text-align:left;padding:0 20px}
.new_win .win_desc i {font-size:1.2em;vertical-align:baseline}
.new_win .win_desc:after {content:"";position:absolute;left:0;top:0;width:4px;height:50px;background:#da4453;border-radius:3px 0 0 3px}
.new_win .frm_info {font-size:0.92em;color:#919191}
.new_win .win_total {float:right;display:inline-block;line-height:30px;font-weight:normal;font-size:0.75em;color:#3a8afd;background:#f6f6f6;padding:0 10px;border-radius:5px}
.new_win .new_win_con {margin:20px 0;padding:20px}
.new_win .new_win_con:after {display:block;visibility:hidden;clear:both;content:""}
.new_win .new_win_con2 {margin:20px 0}
.new_win .btn_confirm:after {display:block;visibility:hidden;clear:both;content:""}
.new_win .win_btn {text-align:center}
.new_win .cert_btn {margin-bottom:30px;text-align:center}
.new_win .btn_close {padding:0 20px;height:45px;overflow:hidden;cursor:pointer}
.new_win .btn_submit {padding:0 20px;height:45px;font-weight:bold;font-size:1.083em}

/* 검색결과 색상 */
.sch_word {color:#fff;background:#ff005a;padding:2px 5px 3px;line-height:18px;margin:0 2px}

/* 자바스크립트 alert 대안 */
#validation_check {margin:100px auto;width:500px}
#validation_check h1 {margin-bottom:20px;font-size:1.3em}
#validation_check p {margin-bottom:20px;padding:30px 20px;border:1px solid #e9e9e9;background:#fff}

/* 사이드뷰 */
.sv_wrap {position:relative;font-weight:normal}
.sv_wrap .sv {z-index:1000;display:none;margin:5px 0 0;font-size:0.92em;background:#333;
-webkit-box-shadow:2px 2px 3px 0px rgba(0,0,0,0.2);
-moz-box-shadow:2px 2px 3px 0px rgba(0,0,0,0.2);
box-shadow:2px 2px 3px 0px rgba(0,0,0,0.2)}
.sv_wrap .sv:before {content:"";position:absolute;top:-6px;left:15px;width:0;height:0;border-style:solid;border-width:0 6px 6px 6px;border-color:transparent transparent #333 transparent}
.sv_wrap .sv a {display:inline-block;margin:0;padding:0 10px;line-height:30px;width:100px;font-weight:normal;color:#bbb}
.sv_wrap .sv a:hover {background:#000;color:#fff}
.sv_member {color:#333}
.sv_on {display:block !important;position:absolute;top:23px;left:0px;width:auto;height:auto}
.sv_nojs .sv {display:block}

/* 페이징 */
.pg_wrap {clear:both;margin:30px 0 ;text-align:center}
.pg_wrap:after {display:block;visibility:hidden;clear:both;content:""}
.pg {text-align:center}
.pg_page, .pg_current {display:inline-block;vertical-align:middle;background:#eee;border:1px solid #eee}
.pg a:focus, .pg a:hover {text-decoration:none}
.pg_page {color:#959595;font-size:1.083em;height:30px;line-height:28px;padding:0 5px;min-width:30px;text-decoration:none;border-radius:3px}
.pg_page:hover{background-color:#ddd}
.pg_start {text-indent:-999px;overflow:hidden;background:url('../img/btn_first.gif') no-repeat 50% 50% #eee;padding:0;border:1px solid #eee}
.pg_prev {text-indent:-999px;overflow:hidden;background:url('../img/btn_prev.gif') no-repeat 50% 50% #eee;padding:0;border:1px solid #eee}
.pg_end {text-indent:-999px;overflow:hidden;background:url('../img/btn_end.gif') no-repeat 50% 50% #eee;padding:0;border:1px solid #eee}
.pg_next {text-indent:-999px;overflow:hidden;background:url('../img/btn_next.gif') no-repeat 50% 50% #eee;padding:0;border:1px solid #eee}
.pg_start:hover,.pg_prev:hover,.pg_end:hover,.pg_next:hover {background-color:#fafafa}

.pg_current {display:inline-block;background:#4c4f6f;color:#fff;font-weight:bold;height:30px;line-height:30px;padding:0 10px;min-width:30px;border-radius:3px;
    -webkit-box-shadow: inset 1px 1px 2px #222542;
    -moz-box-shadow:  inset 1px 1px 2px #222542;
    box-shadow: inset 1px 1px 2px #222542;
}
/* cheditor 이슈 */
.cheditor-popup-window *, .cheditor-popup-window :after, .cheditor-popup-window :before {
-webkit-box-sizing:content-box;
-moz-box-sizing:content-box;
box-sizing:content-box;
}

/* Mobile화면으로 */
#device_change {display:block;margin:0.3em;padding:0.5em 0;border:1px solid #eee;border-radius:2em;background:#fff;color:#000;font-size:2em;text-decoration:none;text-align:center}




/* ------------------------------------------------------------
Old Css
------------------------------------------------------------ */

.swiper-wrapper {border:0px solid red;}
.info-row {padding-bottom:80px;}
.bbs-row  {padding-bottom:80px;}
.mb50 {margin-bottom: 50px;}
.swiper-navi {width:1100px; left:50%; margin-left: -550px; top:50%;   position: absolute;;}

/* portpolio-project */
.portpolio-row .tit {font-size:25px; color:#333;}
.portpolio-row .tit p {font-size:14px; color:#9e9e9e; margin-bottom: 20px;}

/* cnt-design */
.cnt_wrap {position: relative;}
.txt-head {font-size:17px; text-align: center; color:var(--black); margin-bottom:50px; line-height: 1.8;}
.txt-head p {font-size:30px; color:var(--black);}
.txt-head p span {font-size:15px; color:var(--black); font-weight: 800;}
.txt-cnt {position: relative; display: flex; flex-wrap: wrap; gap: 30px; align-items: flex-start;}
.txt-cnt:first-child { border-bottom:1px solid #e1e1e1; padding-bottom: 50px;}
.txt-cnt .photo {width: calc(45% - 15px); flex-shrink: 0;}
.txt-cnt .photo img {max-width: 100%; height: auto; display: block;}
.txt-cnt .photo-right {width: calc(45% - 15px); flex-shrink: 0;}
.txt-cnt .photo2 {width: calc(45% - 15px); flex-shrink: 0; text-align: right;}
.txt-cnt .cnt  {width: calc(55% - 15px); line-height: 1.7; position: relative; padding-top:0px;}
.txt-cnt .cnt:before {position: absolute; content: '';left:0; top:0; height:0px; width:60px; background-color: var(--primary); }
.txt-cnt .cnt-full {width:100%; text-align: center; position: relative; }
.txt-cnt .cnt-full:before {position: absolute; content: '';left:50%; margin-left:-30px; top:-25px; height:0px; width:60px; background-color: var(--primary); }
.logo-box {margin-top:80px; text-align: center;}
.logo-box  p {margin-bottom:30px;}

/* 인사말 페이지 스타일 */
.greeting-wrap {padding: 0;}
.greeting-intro {text-align: center; margin-bottom: 50px; padding-bottom: 40px; border-bottom: 1px solid #e5e5e5; font-size: 16px; line-height: 1.8; color: #444; margin-bottom: 20px;}
.greeting-intro h3 {font-size: 26px; color: #333; font-weight: 600; margin-bottom: 15px; line-height: 1.5;}
.greeting-intro h3 span {font-size: 16px; color: #666; font-weight: 400;}
.greeting-intro p {font-size: 17px; color: #555; line-height: 1.7;}

.greeting-content {display: flex; gap: 40px; align-items: flex-start; margin-bottom: 50px;}
.greeting-image {flex: 0 0 380px; max-width: 380px;}
.greeting-image img {width: 100%; height: auto; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08);}
.greeting-text {flex: 1; padding-top: 10px;}
.greeting-text p {font-size: 16px; line-height: 1.8; color: #444; margin-bottom: 20px;}
.greeting-text p:last-child {margin-bottom: 0;}
.greeting-text p.highlight {color: #1c7324; font-weight: 500; padding: 20px; background: linear-gradient(135deg, #f8fff8 0%, #e8f5e9 100%); border-radius: 8px; border-left: 4px solid #45b54f;}
.greeting-text a {color: var(--primary); text-decoration: underline; font-weight: 500;}
.greeting-text a:hover {color: var(--primary);}

.greeting-signature {text-align: center; padding-top: 40px; border-top: 1px solid #e5e5e5;}
.greeting-signature span {display: inline-block; font-size: 18px; font-weight: 600; color: #333; position: relative; padding: 0 20px;}
.greeting-signature span::before,
.greeting-signature span::after {content: ''; position: absolute; top: 50%; width: 40px; height: 1px; background: #ccc;}
.greeting-signature span::before {left: -50px;}
.greeting-signature span::after {right: -50px;}

/* 인사말 반응형 - 태블릿 */
@media (max-width: 900px) {
	.greeting-wrap {padding: 10px 20px;}
	.greeting-content {flex-direction: column; gap: 30px;}
	.greeting-image {flex: none; max-width: 100%; width: 100%; text-align: center;}
	.greeting-image img {max-width: 320px; margin: 0 auto;}
	.greeting-text {padding-top: 0;}
	.greeting-intro {margin-bottom: 35px; padding-bottom: 30px;}
	.greeting-intro h3 {font-size: 20px;}
	.greeting-intro p {font-size: 15px;}
}

/* 인사말 반응형 - 모바일 */
@media (max-width: 600px) {
	.greeting-wrap {padding: 0 16px;}
	.greeting-intro {margin-bottom: 20px; padding-bottom: 40px;}
	.greeting-intro h3 {font-size: 16px; word-break: keep-all; line-height: 1.6;}
	.greeting-intro h3 span {font-size: 12px;}
	.greeting-intro p {font-size: 14px; word-break: keep-all; line-height: 1.6;}
	.greeting-content {gap: 18px; margin-bottom: 20px;}
	.greeting-image img {max-width: 220px;}
	.greeting-text p {font-size: 14px; margin-bottom: 10px; line-height: 1.65; word-break: keep-all;}
	.greeting-text p br {display: none;}
	.greeting-text p.highlight {padding: 12px; font-size: 14px; line-height: 1.6;}
	.greeting-text p.highlight br {display: inline;}
	.greeting-signature {padding-top: 18px;}
	.greeting-signature span {font-size: 14px;}
	.greeting-signature span::before,
	.greeting-signature span::after {width: 15px;}
	.greeting-signature span::before {left: -22px;}
	.greeting-signature span::after {right: -22px;}
}

.cslt01 span{font-size:50px; display: block; color:var(--primary);  }
.cslt01A span{font-size:25px; display: block; color:var(--primary); margin-bottom:10px;  }
.cslt02 {background-color: #eee; padding:20px; margin-bottom:50px; margin-top:50px; }
.cslt02 span{font-size:20px; width:50px; text-align: right; display: inline-block; float: left; margin-right:20px; margin-top:-3px; color:var(--primary);  }
.cslt02 span.third { margin-bottom:40px;}
.cslt02 p {margin-bottom:15px;}
.acti_cnt {}
.acti_cnt .grp {margin-bottom:50px;}
.acti_cnt .grp .gtit {font-size:20px;  margin-bottom:20px;}
.acti_cnt h4 {font-size:28px; display: inline-block; font-weight:800; letter-spacing: -1px;margin-bottom:20px; position: relative; margin-left:20px; margin-top:40px;}
.acti_cnt h4:after {content: '';  position: absolute; background-color: var(--primary); left:0; top:-5px; height:3px; width:20px; }

#subTab {display:flex; border-bottom:2px solid var(--primary); height:45px;}
#subTab li {
	width:150px;
	float:left;
	border:1px solid #ddd;
  background-color: #f5f5f5;
	text-align: center;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom:none;
  margin-left:-1px;
}
#subTab li a {display: inline-block; width:100%; padding:10px 10px 9px 10px;}
#subTab li.on {background-color: var(--primary);}
#subTab li.on a {color:var(--black); font-weight: 800;}
#subTab:after {
	content: '';
	clear:both;
}
.subtabcon {display: none}
.raw-lst li {width:50%; float: left;}
.raw-lst li span {color:#f60; display: inline-block; padding:0 10px;}
.spclr {color:#f60;}
.acti_lst {margin-left: 20px; line-height: 1.8;  }
.acti_lst > li {margin-bottom:10px; position: relative; padding-left:10px; font-size:18px;}
.acti_lst > li .tit {font-weight: 800; color:#29456e; margin-bottom:10px; font-size:20px;}
.acti_lst > li .clr {font-size:17px; margin:-5px 0 0 20px; color:var(--primary)}
.acti_lst > li:before {content: '';  position: absolute; background-color: var(--primary); left:0; top:10px; height:3px; width:3px; }
.cntstlA {border:1px solid #ddd; border-radius: 10px; margin:20px 20px; padding:20px;}
.cntstlA .clearfix  {font-size:18px;}
.cntstlA .n span {font-size:26px; color:#f60; font-weight: 800; display: inline-block; margin-right:10px;}
.cntstlA .n p {margin-left: 30px;}
.cntstlA .tit {border-bottom:1px solid #ddd; text-align: center; font-size:16px; padding:0 0 10px 0; margin-bottom:20px !important; font-size:28px;}
.innerlst {margin: 10px 10px 10px 30px;}
.innerlst span {color:#f60;}
.acti_lst_v2 { }
.acti_lst_v2 > li {margin-bottom:8px; padding-left:20px;font-size:13px;}
.acti_lst_v2 > li.sec {padding-left:10px; font-weight:800; position: relative;}
.acti_lst_v2 > li.sec:before {content: ''; position: absolute; width:5px; height:3px; left:0; top:12px; background-color: #5c80b6}
.acti_lst_v2 > li .box {background-color: #f1f1f1; padding:10px 20px; margin-top:10px;}
.acti_lst_v3 {margin-left:20px;}
.acti_lst_v3 > li {margin-bottom:5px; position: relative; padding-left:10px;}
.acti_lst_v3 > li:after {position: absolute; content: ''; background-color: #333; left:0; top:13px; height:1px; width:3px;}

.contact-box {background-color: #eee; padding:20px; text-align: center; font-size:20px;}
.contact-box img {vertical-align: middle;}
.contact-box span {font-size:25px; display: inline-block; margin-right: 10px; color:var(--primary); margin-bottom:10px;  }


/* */
.slide-photo {position: relative; height:600px; }
.swiper-container {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}
.swiper-slide {
  background-size: cover;
  background-position: center;
}
.gallery-top {
  height: 80%;
  width: 100%;
}
.gallery-thumbs {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}
.gallery-thumbs .swiper-slide {
  width: 25%;
  height: 70px !important;
  opacity: 0.4;

}
.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;

}


/* linklst */
.linkinfo-box {position: relative;}
.linklst { margin-right:260px;}
.linklst li {width:15%; float:left; text-align:center;}
.linklst li span {/* border:2px solid #7da4e0; border-radius: 50px; */width:95px; height:95px; line-height:90px; display: inline-block; }
.linklst li span img { vertical-align: middle;}
.linklst li em { display: block; margin-top:10px; }
 /* .linklst li:last-child span{border:2px solid #d9d9d9;} */

 /* 후원계좌 */
 .countinfo-box {position: absolute; right:0; top:0; width:320px; border-left:1px solid #ddd; padding-left: 30px;}
 .countinfo-box .tit {font-size:20px; margin-bottom: 25px; font-family: 'NotoSans Bold', sans-serif;}
 .countinfo-box .count {font-size:27px; font-family: 'Apple SD Gothic Neo', sans-serif;}

/* 공지사항 */
.bbs-box {float:left; margin-right:5%; width:30%; border:1px solid #ededed; box-shadow: 5px 5px 5px #f6f6f6;}
.bbs-box:last-child { margin-right:0%;}
.inner-boxA {height:100px; width:100%; background-color: #e6c968; text-align:center; display: table; }
.inner-boxB {height:100px; width:100%; background-color: #f38d86; text-align:center; display: table;}
.inner-boxC {height:100px; width:100%; background-color: #70b976; text-align:center; display: table;}
.bbs-box .tit {display: table-cell; vertical-align: middle; font-size: 24px;  color:#fff; }
.bbs-box .tit a { color: #fff;}
.bbs-box .tit img  {vertical-align: middle; margin-right:20px; margin-bottom:6px;}
.bbs-box .tit span {margin-left:5px;}
.bbs-lst {margin:20px; min-height:118px;}
.bbs-lst li {position: relative; width:100%; padding-right:80px; font-size:15px; margin-bottom:10px; text-overflow:ellipsis; white-space:nowrap; word-wrap:normal; overflow:hidden;}
.bbs-lst li span {position: absolute; right:0; top:5px; color:#5b5b5b; font-size:13px;}
.bbs-lst li a:hover {text-decoration: underline;}

/* map */
.map {border:1px solid #ccc;}
.location {background:url(../img/ico_map.png) no-repeat 0 0; padding:0 0 0 40px; margin:20px 0 0 20px;}

/* 포토갤러리 */
.photobackground-row {height:200px;}
.photobackground-row .tit {color:#fff; font-size:30px; padding-top: 55px;}
.photobackground-row .tit p {font-size:14px; font-weight:normal;}
.gallery-lst {background-color: #fff; margin-top: -50px; padding:20px 30px;}
.gallery-lst li {float: left; border:1px solid #fff;}
.gallery-lst li:nth-child(3n) {margin-right:0;}
.gallery-lst li img {width:100%; height:200px;}
.gallery-lst li .sbj {position: absolute; bottom:-30px; width:100%; text-align: center; font-size:14px; text-overflow:ellipsis;white-space:nowrap;word-wrap:normal; overflow:hidden;}
/* thumbnail effect */
.snip1561 {
  position: relative;
  /* overflow: hidden;  min-width: 230px;
  max-width: 296px;*/
  margin: 20px 1% 50px 1% ;
  width: 31%;
  background: var(--primary);
  background: -moz-linear-gradient(90deg, var(--primary) 0%, var(--primary) 100%, var(--primary) 100%);
  background: -webkit-linear-gradient(90deg, var(--primary) 0%, var(--primary) 100%, var(--primary) 100%);
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary) 100%, var(--primary) 100%);
}

.snip1561 img,
.snip1561:before,
.snip1561:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.snip1561 img {
  max-width: 100%;
  backface-visibility: hidden;
  vertical-align: top;
}

.snip1561:before,
.snip1561:after {
  content: '';
  background-color: #fff;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.snip1561:before {
  width: 60px;
  height: 1px;
  left: 100%;
}

.snip1561:after {
  height: 60px;
  width: 1px;
  top: 0%;
}

.snip1561 a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.snip1561:hover img,
.snip1561.hover img {
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  opacity: 0.5;
}

.snip1561:hover:before,
.snip1561.hover:before,
.snip1561:hover:after,
.snip1561.hover:after {
  opacity: 1;
  top: 50%;
  left: 50%;
}

/* 아이콘 마우스 오버 효과 */
.snip1452 {
  position: relative;
  font-size: 14px;
  width: 95px;
  height: 95px;
  display: inline-block;
  text-align: center;
  -webkit-perspective: 50em;
  perspective: 50em;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.snip1452 span {width:95px; height:95px; line-height: 90px;}
.snip1452:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 2px solid #dbdbdb;
  content: '';
  z-index: -1;
  border-radius: 50%;
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}
.snip1452:before,
.snip1452:after {
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}
.snip1452:hover,
.snip1452:active,
.snip1452.hover {
  color: var(--primary);
}
.snip1452:hover:after,
.snip1452:active:after,
.snip1452.hover:after {
  border-color: #ffc000;
  -webkit-transform: rotateY(0);
  transform: rotateY(0);
}

/* common */
.btn-area {text-align: center; margin:50px 0;}
.btn-blue {
  border-radius: 4px;
  color: #fff;
  background-color: #5980b9;
  border-color: #5980b9;
  padding:10px 50px;
  font-size:18px;
  height:50px;
}
.btn-blue:hover,
.btn-blue:focus,
.btn-blue.focus,
.btn-blue:active,
.btn-blue.active{
  color: #fff;
  background-color: #5980b9;
  border-color: #5980b9;
}

.btn-blue-a {
  border-radius: 4px;
  color: #fff;
  background-color: #5980b9;
  border-color: #5980b9;
  padding:10px 50px !important;
  height:55px !important;
  font-size:18px;
  height:50px;
}
.btn-blue-a:hover,
.btn-blue-a:focus,
.btn-blue-a.focus,
.btn-blue-a:active,
.btn-blue-a.active{
  color: #fff;
  background-color: #5980b9;
  border-color: #5980b9;
}


/* layout
header {background-color: #fff; }
footer {background-color:#444;color:#ccc; padding:20px 0; font-size:13px;}
.footer-logo {float:left; margin-right:20px; padding:3px 0 0 0 ;}
.footer-row {width:100%; text-align: center;}
img{max-width:100%;}
.onlymobile {display: none;}
.onlypc {display: inline-block;}
.cntimg .spc2{margin:0 10px 10px 0;}
.mb-nav {display: none;}
.mobilebr {display: none}
.mobilehr {display: none}
.container {max-width: 1100px; margin:0 auto; position:relative;}

h4.tit-support {font-size:20px; padding:0 0 10px 25px; letter-spacing: -1px; font-weight: 700; }
*/

/* gnb
h1 {position: absolute; left:0; top:25px;}
h1 img {width:auto;}
.mobile-gnb {display:none;}
#head-wrap { position: relative;height:85px; z-index: 100;background-color: #fff; border-bottom:1px solid #ddd; }

.gnb {width:69%; position: absolute; right:0; top:10px;  font-family: 'NotoSans bold',  sans-serif ; z-index: 30;}
.gnb li.one-dep {float:left; padding:0 26px;  position: relative; }
.gnb li.one-dep:last-child {padding-right:0;}
.gnb li a {padding:24px 0; font-size:16px; width:100%; display: inline-block; }
.gnb li a:hover, .gnb li a.on {color:#deaa0c; }
.gnb .two-dep {float:none; position:absolute; left:0; padding-top: 10px; display: none; width:100%; height:183px;}
.gnb .two-dep li {width:100%;}
.gnb .two-dep a {padding:7px 0 7px 20px;  font-size:14px; font-family: 'NotoSans DemiLight',  sans-serif ; text-align:left; }
.gnb .two-dep a:hover, .gnb .two-dep a.on {text-decoration: underline;}
.gnb .two-dep.m1 {margin-left:5px;}
.gnb .two-dep.m2 {margin-left:-10px; width:140px;}
.gnb .two-dep.m3 {margin-left:5px;}
.gnb .two-dep.m4 {margin-left:5px;}
.gnb .two-dep.m5 {margin-left:0px; width:110px;}
.gnb .two-dep.m6 {margin-left:5px;}
.gnb .two-dep.m7 {margin-left:5px;}

.menu-pannel {background-color: #f5f5f5; border-bottom:1px solid #ddd; position: absolute; top:85px; width:100%; height:180px; z-index: 1;  display: none;
        background-color: rgba( 245, 245, 245, 0.9 );  opacity: 0.9;}
*/
/* swiper */
.visual-slide {margin-bottom: 70px; border-bottom:1px solid #eee;}
/*
.swiper-slide.visual1 {background:url(../img/visual01.jpg) no-repeat 0 0; background-position:50% 0 ;}
.swiper-slide.visual2 {background:url(../img/visual02.jpg) no-repeat 0 0; background-position:50% 0 ;}
.swiper-slide.visual3 {background:url(../img/visual03.jpg) no-repeat 0 0; background-position:50% 0 ;}
*/
.swiper-container { width: 100%; height: 530px; }


/* linkbanner */
.banner-row {background-color: #f4f4f4;}
.banner-lst  {padding:20px 60px;}
.banner-lst li {float:left; width:25%; text-align: center; margin:5px 0;}
.banner-lst li img {width:180px;}

/* 탭메뉴
.sub-tab-menu-2 {margin:50px 0 60px 0;}
.sub-tab-menu-2 li {float: left;  width:50%; margin-left:-1px; margin-bottom: -1px;}
.sub-tab-menu-2 li a {display: inline-block; border:1px solid #dbdbdb; background-color: #f8f8f8; width:100%; text-align: center; padding:15px 0; font-size:16px; color:#959595;}
.sub-tab-menu-2 li a.on {background-color:#ffc000; color:#000; border:1px solid #ffc000; }
*/
.sub-tab-menu-4 {margin:50px 0 60px 0;}
.sub-tab-menu-4 li {float: left;  width:25%; margin-left:-1px;}
.sub-tab-menu-4 li a {display: inline-block; border:1px solid #dbdbdb; background-color: #f8f8f8; width:100%; text-align: center; padding:15px 0; font-size:16px; color:#959595;}
.sub-tab-menu-4 li a.on {background-color:#ffc000; color:#000; border:1px solid #ffc000; }


.sub-tab-menu-3 {margin:30px 0 80px 0;}
.sub-tab-menu-3 li {float: left;  width:33.3%; margin-left:-1px;}
.sub-tab-menu-3 li a {display: inline-block; border:1px solid #dbdbdb; background-color: #f8f8f8; width:100%; text-align: center; padding:15px 0; font-size:16px; color:#959595;}
.sub-tab-menu-3 li a.on {background-color:#ffc000; color:#000; border:1px solid #ffc000; }

.sub-tab-menu-2 {margin:50px 0 80px 0;}
.sub-tab-menu-2 li {float: left;  width:50%; margin-left:-1px;  margin-top:-1px;}
.sub-tab-menu-2 li a {display: inline-block; border:1px solid #dbdbdb; background-color: #f8f8f8; width:100%; text-align: center; padding:15px 0; font-size:16px; color:#959595;}
.sub-tab-menu-2 li a.on {background-color:#ffc000; color:#000; border:1px solid #ffc000; }

/* subframe */
.sub-visual {height:258px;}
.svbg01 {background:url('../img/subvisualimg01.jpg') no-repeat center / cover;}
.svbg02 {background:url('../img/subvisualimg02.jpg') no-repeat center / cover;}
.svbg03 {background:url('../img/subvisualimg03.jpg') no-repeat center / cover;}
.svbg04 {background:url('../img/subvisualimg04.jpg') no-repeat center / cover;}
.svbg05 {background:url('../img/subvisualimg05.jpg') no-repeat center / cover;}
.svbg06 {background:url('../img/subvisualimg06.jpg') no-repeat center / cover;}
.svbg07 {background:url('../img/subvisualimg07.jpg') no-repeat center / cover;}
.sub-visual h2{text-align: left; font-size:35px; font-family:  'NotoSans Bold', sans-serif ; margin-top:90px;}
.cntwarp {margin-bottom:100px;}
.cntwarp h3 {font-size:35px; font-family:  'NotoSans Regular', sans-serif ; text-align: center; margin-bottom: 50px; position: relative;}
/* .cntwarp h3:after {content: ''; position: absolute; width:20px; height:3px;  bottom:-30px; left:50%; margin-left:10px; background-color: #000;} */

/* 연혁 - 아코디언 스타일 */
.history-accordion {max-width: 900px; margin: 0 auto;}

/* 아코디언 아이템 */
.accordion-item {border-bottom: 1px solid #e0e0e0;}

/* 아코디언 헤더 */
.accordion-header {display: flex; align-items: center; padding: 18px 10px; cursor: pointer; transition: background-color 0.2s;}
.accordion-header:hover {background-color: #f9f9f9;}

/* 아코디언 아이콘 (+/-) */
.accordion-icon {width: 14px; height: 14px; position: relative; margin-right: 15px; flex-shrink: 0;}
.accordion-icon::before,
.accordion-icon::after {content: ''; position: absolute; background-color: #666; transition: transform 0.3s;}
.accordion-icon::before {width: 14px; height: 2px; top: 6px; left: 0;}
.accordion-icon::after {width: 2px; height: 14px; top: 0; left: 6px;}
.accordion-item.active .accordion-icon::after {transform: rotate(90deg); opacity: 0;}

/* 아코디언 제목 */
.accordion-title {font-size: 16px; color: #333; font-family: 'NotoSans Regular', sans-serif;}

/* 아코디언 컨텐츠 */
.accordion-content {display: none; padding: 20px 30px 40px;}
.accordion-item.active .accordion-content {display: block;}

/* 연도 탭 */
.year-tabs {display: flex; margin-bottom: 30px; border-bottom: 3px solid #36a7d1;}
.year-tab {padding: 12px 40px; font-size: 16px; border: none; background: #f5f5f5; color: #888; cursor: pointer; transition: all 0.2s; font-family: 'NotoSans Regular', sans-serif;}
.year-tab:hover {background: #e8e8e8;}
.year-tab.active {background: #36a7d1; color: #fff;}

/* 연도 컨텐츠 */
.year-content {display: none;}
.year-content.active {display: block;}

/* 연혁 리스트 */
.history-list {list-style: none; padding: 0; margin: 0;}
.history-list li {display: flex; align-items: flex-start; padding: 12px 0; font-size: 15px; color: #555; line-height: 1.6; border-bottom: 1px solid #f0f0f0;}
.history-list li:last-child {border-bottom: none;}
.history-list .date {color: #36a7d1; font-size: 18px; font-weight: 500; margin-right: 20px; font-family: 'NotoSans Regular', sans-serif; flex-shrink: 0; width: 100px;}

.tbl_apply {border-collapse: collapse; width:100%; border-top:2px solid #888888;}
.tbl_apply td em {display: none;}
.tbl_apply td textarea {width:100%; border:1px solid #ddd; padding:10px; height:150px;}
.tbl_apply tr {border-bottom:1px solid #e5e5e5;}
.tbl_apply th, .tbl_apply td {padding:15px 0; height:50px;}
.tbl_apply th {width:20%; text-align: left;}
.tbl_apply th span {padding-left:30px; display: inline-block;}
.tbl_apply td {width:80%;}
.tbl_apply td input[type="text"], .tbl_apply td select {border-radius: 4px; max-width: 365px; width: 100%; height: 40px; padding:0 7px; font-size: 15px; background: #fff; border: 1px solid #ddd; }
.tbl_apply td .mob-zip {width:70% !important; margin-right:10px; float:left; border:1px solid red; }
.tbl_apply .md3 {width:30%; float: left; margin-right:2%;}
.tbl_apply .md2 { float: left; margin-right:2%;}
.tit-guide {padding:0 25px 20px 25px; color:#cc0001;}
.inpt-box {width:100px; display: inline-block; vertical-align:middle; margin-right:10px}
.email-box {width:130px; display: inline-block; vertical-align:middle; margin-right:10px}
.donation-box {width:130px; display: inline-block;  margin-right:10px}
.donation-box input {text-align: right;}
.term-wrap {background-color: #f9f9f9;}
.term-wrap-inner {padding:0 30px; }
.term-wrap-inner .ck {padding:15px 20px; color: #e66948;}
.term-wrap-inner .grb.bgclr {padding:20px 10px;background-color: #f7f3e1;}
.term-wrap-inner .tit {margin-bottom:10px; font-size:16px; font-weight: 800; padding:0 0 0 25px; }
.term-wrap-inner .txt {margin:0 0 20px 20px; line-height: 1.7; }
.term-wrap-inner .txt span {font-size:13px; color:#214e90;}
.term-wrap-inner2 {padding:20px 0px;}
.term-wrap-inner2 .agr-com {padding:10px 0; margin-left:20px;}
.term-wrap-inner2 .agr-com label {font-weight: 800;}
.term-box {background-color: #fff; border:1px solid #e2e2e2; padding:10px; overflow-y:auto; height:200px;}
.term-allchek {text-align:right; padding:20px 0 0 0; border-top:1px solid #e1e1e1; font-weight: 800; margin-top:0px;}

.tbl_apply td input.inpt_lg { max-width:70%; margin:5px 0;}
.tbl_apply td input.inpt_sm { max-width:100px; }
.apply-box-wrap span{padding-right:10px;}

.tbl-typA {border-collapse: collapse; margin-bottom:20px; width:100%;}
.tbl-typA caption {padding:0 0 20px 0; color: var(--primary); font-size:17px;  font-weight:800;}
.tbl-typA th, .tbl-typA td{ padding:15px; border:1px solid #ddd; line-height: 1.8;}
.tbl-typA th {background-color: #f8f8f8; border-top:2px solid var(--primary); padding:22px;}
.tbl-typA td:first-child, .tbl-typA th:first-child  {border-left:0;}
.tbl-typA td:last-child, .tbl-typA th:last-child {border-right:0;}

.tbl-typB {border-collapse: collapse; margin-bottom:20px; width:100%; margin-top: 20px;}
.tbl-typB caption {padding:0 0 20px 0; color: var(--primary); font-size:17px;  font-weight:800;}
.tbl-typB th, .tbl-typB td{ padding:15px; border:1px solid #ddd; line-height: 1.8}
.tbl-typB th {background-color: #f8f8f8; padding:22px;}
.tbl-typB td:first-child, .tbl-typB th:first-child  {border-left:0;}
.tbl-typB td:last-child, .tbl-typB th:last-child {border-right:0;}
.tbl-typB .p1 {padding:3px ;}

.tbl-typC {border-collapse: collapse; margin-bottom:20px; width:100%; margin-top: 20px;}
.tbl-typC th, .tbl-typC td{ padding:15px; border:1px solid #ddd; line-height: 1.8;  text-align: center;}
.tbl-typC th {background-color: #f8f8f8; padding:10px;}
.tbl-typC td a {color:var(--primary); text-decoration: underline;}

.tbl-typD {border-collapse: collapse; margin-bottom:15px; width:100%; margin-top: 20px;}
.tbl-typD th, .tbl-typD td{ padding:15px; border:1px solid #ddd; line-height: 1.8;  text-align: left;}
.tbl-typD th {background-color: #f8f8f8; padding:10px;}
.tbl-typD td a {color:var(--primary); text-decoration: underline;}

.flowbox {background-color: #f8f8f8; border:1px solid #ddd; text-align: center; padding:50px 10px; }
.support-cat {margin-bottom: 40px;}
.support-cat li {float: left; width:31%; margin-right:3%; font-size:14px;}
.support-cat li:last-child {margin-right: 0;}
.support-cat li .tit {font-size:20px; color:#000; font-weight:700; margin-bottom:10px; }
.support-cat li img {width:100%;}
.support-cat li > div {padding:20px 20px; text-align: center; height:140px;}
.support-cat li.c1 {background-color: #f7f3e1;}
.support-cat li.c2 {background-color: #dce6f3;}
.support-cat li.c3 {background-color: #fdd1c5;}

@media (min-width:999px) and (max-width:1110px) {
  .gnb .two-dep {border:0px solid red;}
  .gnb .two-dep a {padding-left:10px;}
  .gnb li.one-dep {padding:0 19px; }
  .gnb .two-dep.m1 {margin-left:0;}

}

@media all and (max-width:998px) {
  h1 {left:10px; top:15px;}
  h1 img {width:200px;;}
  #head-wrap {height:60px; z-index: 9999; background-color: #fff;}
  .menu-pannel  {display: none; top:60px; height:220px;}
  .swiper-navi {width:100%; left:auto; margin-left: auto; top:50%;  position: absolute;}

  .gnb {display:none;}
  /*
  .mobile-gnb {display:none; width:100%; position: absolute; left:0; top:58px;  font-family: 'NotoSans bold',  sans-serif ; z-index: 30;}
  .mobile-gnb li.one-dep {float:left; width:14%; text-align:center; position: relative; height:220px;}
  .mobile-gnb li.one-dep:last-child {padding-right:0;}
  .mobile-gnb li a {padding:20px 0 10px 0; font-size:16px; width:100%; display: inline-block; }
  .mobile-gnb li a:hover, .gnb li a.on {color:#3e5b9f; }
  .mobile-gnb .two-dep {float:none; position:absolute; left:0;  display: block; width:100%; height:183px;}
  .mobile-gnb .two-dep li {width:100%; }
  .mobile-gnb .two-dep a {padding:7px 0 7px 0px;  text-align: center;  font-size:14px; font-family: 'NotoSans DemiLight',  sans-serif ; }
  .mobile-gnb .two-dep a:hover, .gnb .two-dep a.on {text-decoration: underline;}
*/

[data-scroll="false"] { overflow-y: hidden;}
.mobile-gnb {
    display:block;
    width:70%;
    height:100%;
    background-color: #fff;
    position: fixed;
    right:0;
    top:60px;
    z-index: 9999;
    overflow: hidden;
    -webkit-transform: translateX(101%);
    transform: translateX(101%);
    -webkit-transition: ease-in-out .55s;
    -o-transition: ease-in-out .55s;
    transition: ease-in-out .55s;
}
.mobile-gnb-on { -webkit-transform: translateX(101%); transform: translateX(101%); }
.gnb-dimmed { z-index: 9998; position: fixed; top: 60px; left: 0; width: 100%; height: 100%; animation: dimmed .1s ease-in-out .1s forwards;}
@keyframes dimmed {
    01% { background: rgba(0,0,0,0); }
    100% { background: rgba(0,0,0,.55); }
}

.mobile-gnb li.one-dep {float:none; width:100%;  border-bottom:1px solid #eee; position:relative; height:auto; padding:3px 0 0 0;}
.mobile-gnb li.one-dep a {font-size:15px; width:100%; padding:8px 30px; color:#000; text-align: left;  display:inline-block;}
.mobile-gnb li.one-dep:last-child {padding-right:0;}
.mobile-gnb li.one-dep .two-dep {float:none; position:relative; left:0;  display: none; width:100%; height:auto; border-top:1px solid #eee; background-color:#eee;}
.mobile-gnb li.one-dep .two-dep li {width:100%; }
.mobile-gnb li.one-dep .two-dep a { text-align: left;  font-size:14px; padding:6px 40px; }
.gnb-dimmd { z-index: 9998; position: fixed; top: 0; left: 0; width: 100%; height: 100%; animation: dimmed .35s ease-in-out .3s forwards;}

  .mb-nav {display:block; position: absolute; right:4px; font-size:18px; top:-6px; width:50px; height:60px; z-index: 2; padding:10px;}
  .mb-nav.mlist {display:block; }
  .mb-nav.mclose {display:none;  }
  .lines, .lines:before, .lines:after {background-color:#1b1d1f}
  .lines-button {
  transition: .3s;
  }
  .lines,
  .lines:before,
  .lines:after {
    display: inline-block;
    width: 20px;
    height: 2px;
    -webkit-border-radius: 5px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 5px;
    -moz-background-clip: padding;
    border-radius: 5px;
    background-clip: padding-box;
  }
  .lines {
    position: relative;
    top: -2px;
  }
  .lines:before,
  .lines:after {
    position: absolute;
    left: 0;
    content: '';
    -webkit-transform-origin: 10px center;
    transform-origin: 10px center;
  }
  .lines:before {
    top: 6px;
  }
  .lines:after {
    top: -6px;
  }
  .mclose .lines:before,
  .mclose .lines:after {
    -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s 0.5s ease-in-out;
    -moz-transition: top 0.3s ease-in-out, -moz-transform 0.3s 0.5s ease-in-out;
    -o-transition: top 0.3s ease-in-out, -o-transform 0.3s 0.5s ease-in-out;
    transition: top 0.3s ease-in-out,-webkit-transform 0.3s 0.5s ease-in-out,-moz-transform 0.3s 0.5s ease-in-out,-o-transform 0.3s 0.5s ease-in-out,transform 0.3s 0.5s ease-in-out;
    top: 0;
    width: 20px;
  }
  .mclose .lines {
    transition: background 0.3s 0s ease-in-out;
    background: transparent !important;
  }
  .mclose .lines:before {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    -moz-transform: rotate3d(0, 0, 1, 45deg);
    -o-transform: rotate3d(0, 0, 1, 45deg);
    -ms-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
  }
  .mclose .lines:after {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -moz-transform: rotate3d(0, 0, 1, -45deg);
    -o-transform: rotate3d(0, 0, 1, -45deg);
    -ms-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
  }


}

@media all and (max-width:817px) {
  .container {max-width: 790px;}
  .tab4mb {margin:50px 0 80px 0;}
  .tab4mb li {float: left;  width:50%; margin-left:-1px;  margin-top:-1px;}
  .tab4mb li a {display: inline-block; border:1px solid #dbdbdb; background-color: #f8f8f8; width:100%; text-align: center; padding:15px 0; font-size:16px; color:#959595;}
  .tab4mb li a.on {background-color:#ffc000; color:#000; border:1px solid #ffc000; }

}


@media all and (max-width:900px) {
  .container {max-width: 880px;}
  .visual-slide {margin-bottom: 30px;}
  .info-row {padding-bottom: 30px;}
  .countinfo-box {position: relative; margin-top: 20px;}
  .countinfo-box {float: none; width:100%;border-right:0; margin-bottom:20px;border:1px solid #eee; padding:15px 15px; background-color: #eee; text-align: center;}

  .linklst {width:100%; margin-left:0; margin-left: 0;}
  .bbs-box {width:100%; margin-bottom:30px;}
  .inner-boxA, .inner-boxB, .inner-boxC {height:70px;}

  .svbg01, .svbg02, .svbg03, .svbg04, .svbg05, .svbg06, .svbg07 {height:150px; background-size: cover; background-position: 60% 0;}
  .sub-visual h2 {margin-top:40px; font-size:25px;}


  /* 연혁 아코디언 반응형 */
  .history-accordion {width: 100%;}
  .year-tabs {flex-wrap: wrap;}
  .year-tab {padding: 10px 20px; font-size: 14px;}

  /* 이미지-텍스트 레이아웃 반응형 */
  .txt-cnt {flex-direction: column; gap: 25px;}
  .txt-cnt .photo {width: 100%; text-align: center;}
  .txt-cnt .photo img {max-width: 400px; margin: 0 auto;}
  .txt-cnt .cnt {width: 100%;}

}

@media all and (max-width:100px) {
  .countinfo-box .tit {margin-bottom: 15px;}
  body {font-size:14px;}
  h1 {left:7px;}
  .swiper-container {height:220px;}
  /*
  .swiper-slide.visual1 {background:url(../img/visual01_mob.jpg) no-repeat 0 0; background-position:50% 0 ; background-size: cover;}
  .swiper-slide.visual2 {background:url(../img/visual02_mob.jpg) no-repeat 0 0; background-position:50% 0 ; background-size: cover;}
  .swiper-slide.visual3 {background:url(../img/visual03_mob.jpg) no-repeat 0 0; background-position:50% 0 ; background-size: cover;}
  */
   .hd_pops {display:none;}
  .container {width:100%; max-width: 100%;}
  .onlymobile {display: inline-block;}
  .onlypc {display: none;}
  .gnb {display:none;}
  .menu-pannel  {display: none;}
  .sub-tab-menu-2, .sub-tab-menu-3, .sub-tab-menu-4 {margin-bottom:30px; margin-top:30px;}
  .sub-tab-menu-2 li a,  .sub-tab-menu-3 li a,  .sub-tab-menu-4 li a {padding:8px 0; font-size:14px; line-height: 1.2;}
  /* .acti_support_sub li {width:28%;}
  .acti_support_sub li:last-child {width:44%;}
  */
  .inde_support_sub li:first-child {width:23%}
  .inde_support_sub li:nth-child(2) {width:77%}

  .sponsor_sub li {width:25%}
  .sponsor_sub li:last-child  {width:50%}
  .cntwarp h3 {font-size:20px; letter-spacing: -1px; margin-bottom:30px;}
  .bbs-box .tit img.mico {display: none;}

  .support-cat {margin-bottom: 10px;}

  .inner-boxA, .inner-boxB, .inner-boxC {height: 50px;}
  .bbs-box .tit {font-size:18px;}
  .visual-slide {margin-bottom:30px;}
  .linklst li {width:50%; margin-bottom:25px; height:130px;}
  .bbs-row, .info-row {padding-bottom:15px;}
  .gallery-lst {padding:10px 10px 0 30px;}
  .gallery-lst li .sbj {bottom:-30px; }
  .snip1561 {
    position: relative;
    /* overflow: hidden;  min-width: 230px;
    max-width: 296px;*/
    margin: 10px 4% 50px 0% ;
    width: 44%;
  }
  .gallery-lst li:nth-child(2n) {margin-right:0;}
  .gallery-lst li:nth-child(3n) {margin-right:4%;}
  .gallery-lst li img {height:130px;}
  .banner-lst {padding:20px 0;}
  .banner-lst li {width:50%;}

  .tbl_apply th {display: none;}
  .tbl_apply td em {display: block; margin-bottom:5px; font-weight:800;}
  .tbl_apply th, .tbl_apply td {padding:10px 0; height:auto;}
  .tbl_apply td input.inpt_lg {width:100%; max-width:100%;}
  .term-wrap-inner {padding:10px 13px;}
  .term-wrap-inner .tit {padding:0;}
  .term-wrap-inner .txt {margin: 0 0 0 0 ; }
  .term-wrap-inner2 .agr-com {margin-left: 0;}
  .inpt-box {width:80px; margin-right: 0;}
  .apply-box-wrap span {padding-right:0;}
  .gall_row .col-gn-4 {width:50%;}
  .cntwarp {padding-bottom: 20px;}
  .btn-area {margin-bottom: 20px; }
  .btn-area .btn-blue-a {width:100%; float: left; font-size:15px; }

  #subTab li {width:33.3%}
  .acti_cnt h4 {margin-left:0;}
  .raw-lst li {width:100%;}
  .cntstlA {margin:20px auto;}

  /* 게시판 검색 */
  #bo_sch select {width:88px;}
  #bo_sch .sch_input {width:150px;}
  #bo_sch .sch_btn {width:40px;}

  /* 연혁 아코디언 모바일 */
  .accordion-content {padding: 15px 10px 30px;}
  .year-tab {padding: 8px 15px; font-size: 13px;}
  .history-list .date {font-size: 15px; width: 70px; margin-right: 10px;}
  .history-list li {font-size: 14px; padding: 10px 0; display: flex; align-items: flex-start;}

 #map {width:100% !important; height:300px !important; }

 .txt-cnt {flex-direction: column; gap: 20px;}
 .txt-cnt .photo {width:100%;}
 .txt-cnt .photo img {max-width:100%;}
 .txt-head  {font-size:16px; line-height: 1.6; margin-bottom:20px;}
 .txt-head  p {font-size:20px;}
 .txt-cnt .cnt {width:100%; padding-top:0; margin-top:0;}

 .tbl-typA .colA {width:15%;}
 .tbl-typA .colB {width:20%;}
 .tbl-typA .colC {width:65%;}
 .tbl-typA th, .tbl-typA td {padding:10px;}
 .acti_lst {margin-left:0;}
 .cntstlA {padding:10px; }
 .acti_lst_v2 > li {padding-left:10px;}
 .acti_lst_v2 > li .box {padding:10px;}
 .acti_lst_v3 {margin-left:0;}
 .contact-box {font-size:16px;}
 .contact-box img {width:40px;}
 .contact-box span {font-size: 20px; display: block;}
 .gallery-thumbs .swiper-slide {height: 50px !important;}
 .support-cat li {width:100%;height:117px;float: none; position: relative; margin-bottom:10px;}
 .support-cat li img { width:100px;height:117px; position: absolute; left:0; top:0;}
 .support-cat li > div  { margin-left: 100px; padding:10px; text-align: left; height:auto;}
 .support-cat li .tit {font-size: 16px; margin-bottom: 0;}
 .support-cat li.c2 {font-size: 13px;}

 .slide-photo {height: 230px !important;}

}

@media all and (max-width:320px) {

}


/* iPhone X and Xs Max */
@media only screen
    and (min-device-width: 375px)
    and (min-device-height: 812px)
    and (-webkit-device-pixel-ratio: 3)
    and (orientation: landscape) {
}




/* ============================================================
   [css_basic] - 기본 테마 스타일
   아래는 css_basic/default.css 에서 가져온 스타일입니다.
   css_new_2025/default.css 와 겹치는 부분이 있을 수 있으니 필요시 조정하세요.
   
   주요 차이점:
   - 레이아웃: 그누보드 기본 스타일
   - 색상 테마: var(--primary) (녹색 계열)
   - 게시판, 탭메뉴, 테이블 스타일 등
   ============================================================ */

@charset "utf-8";

/* 초기화 */
html {overflow-y:scroll}
body {margin:0;padding:0;font-size:0.75em;font-family:'Malgun Gothic', dotum, sans-serif;}
html, h1, h2, h3, h4, h5, h6, form, fieldset, img {margin:0;padding:0;border:0}
h1, h2, h3, h4, h5, h6 {font-size:1em;font-family:'Malgun Gothic', dotum, sans-serif}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display:block}

ul, dl,dt,dd {margin:0;padding:0;list-style:none}
legend {position:absolute;margin:0;padding:0;font-size:0;line-height:0;text-indent:-9999em;overflow:hidden}
label, input, button, select, img {vertical-align:middle;font-size:1em}
input, button {margin:0;padding:0;font-family:'Malgun Gothic', dotum, sans-serif;font-size:1em}
input[type="submit"]{cursor:pointer}
button {cursor:pointer}

textarea, select {font-family:'Malgun Gothic', dotum, sans-serif;font-size:1em}
select {margin:0}
p {margin:0;padding:0;word-break:break-all}
hr {display:none}
pre {overflow-x:scroll;font-size:1.1em}
a {color:#000;text-decoration:none}

*, :after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

input[type=text],input[type=password], textarea {
-webkit-transition: all 0.30s ease-in-out;
-moz-transition: all 0.30s ease-in-out;
-ms-transition: all 0.30s ease-in-out;
-o-transition: all 0.30s ease-in-out;
outline: none;
}

input[type=text]:focus,input[type=password]:focus,  textarea:focus,select:focus {
-webkit-box-shadow:  0 0 5px #9ed4ff;
-moz-box-shadow:  0 0 5px #9ed4ff;
box-shadow: 0 0 5px #9ed4ff;
border: 1px solid #558ab7 !important;
}
.placeholdersjs { color: #aaa !important; }

/* 레이아웃 크기 지정 */
#hd, #wrapper, #ft{min-width:1200px}

#hd_pop,
#hd_wrapper,
#tnb ul,
#gnb .gnb_wrap,
#container_wr,
#ft_wr{width:1200px}

/* 팝업레이어 */
#hd_pop {z-index:1000;position:relative;margin:0 auto;height:0}
#hd_pop h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
.hd_pops {position:absolute;border:1px solid #e9e9e9;background:#fff;}
.hd_pops img{max-width:100%}
.hd_pops_con {}
.hd_pops_footer {padding: 0;background:#000;color:#fff;text-align:left;position:relative;}
.hd_pops_footer:after {display:block;visibility:hidden;clear:both;content:""}
.hd_pops_footer button {padding: 10px;border:0;color:#fff}
.hd_pops_footer .hd_pops_reject{background:#000;text-align:left}
.hd_pops_footer .hd_pops_close{background:#393939;position:absolute;top:0;right:0}

/* 상단 레이아웃 */
#hd {border-top:2px solid #253dbe}
#hd_h1 {position:absolute;font-size:0;line-height:0;overflow:hidden}

#hd_wrapper {position:relative;margin:0 auto;padding:10px 0;height:115px;zoom:1}
#hd_wrapper:after {display:block;visibility:hidden;clear:both;content:""}

#logo {float:left;padding:30px 0 0}

.hd_sch_wr{position:absolute;top:25px;left:50%;width:430px;margin-left:-215px;}
#hd_sch h3 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#hd_sch{border:2px solid #556ada;background:#fff;border-radius:5px;overflow:hidden}
#hd_sch #sch_stx {padding-left:10px;height:40px;width:376px;border:0;border-right:0;float:left;font-size:1.25em}
#hd_sch #sch_submit {height:40px;border:0;background:#fff;color:#253dbe;width:50px;float:left;cursor:pointer;font-size:18px}

#sbn_side{position:absolute;top:20px;right:0}

#tnb {border-bottom:1px solid #ddd;background:#fff}
#tnb h3 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#tnb ul {margin:0 auto;zoom:1}
#tnb ul:after {display:block;visibility:hidden;clear:both;content:""}
#tnb li {float:right;border-left:1px solid #ddd;margin-bottom:-1px;font-size:0.92em}
#tnb a {display:inline-block;padding:0 10px;color:#646464;line-height:35px}
#tnb a:focus, #tnb a:hover {color:#253dbe;background:#fafafa}
#tnb .tnb_admin a{color:#ff0000;}
#tnb .tnb_left{float:left}
#tnb .tnb_left a{padding:0 14px}
#tnb .tnb_cart{border-right:1px solid #ddd;}
#tnb .tnb_community{border-right:1px solid #ddd}
#tnb .tnb_community i{font-size:15px}
#tnb .tnb_community{background:#e7e7e7;font-weight:bold;}
#tnb .tnb_community:focus, #tnb .tnb_community:hover {color:#333;border-bottom:0}
#tnb .tnb_community a{color:#253dbe;border-bottom:1px solid #e7e7e7}

#hd_qnb{float:right;margin-top:20px}
#hd_qnb:after {display:block;visibility:hidden;clear:both;content:""}
#hd_qnb li{float:left;font-size:1.083em;line-height:15px;position:relative;text-align:center;margin:0 10px}
#hd_qnb li span {display:block;margin-top:5px;font-size:0.92em}
#hd_qnb li a{display:block}
#hd_qnb li i{display:inline-block;width:40px;line-height:40px;border-radius:25px;background:#fff;text-align:center;margin:0;color:#fff}
#hd_qnb .visit .visit-num{display:inline-block;line-height:18px;padding:0 5px;border-radius:10px;background:#f04e00;color:#fff;font-size:10px;position:absolute;top:0;right:0}
#hd_qnb li .fa-question{background:#e83a5f;font-size:20px}
#hd_qnb li .fa-question:hover{background:#e41b45}
#hd_qnb li .fa-comments{background:#82c13f;font-size:16px}
#hd_qnb li .fa-comments:hover{background:#5aa708}
#hd_qnb li .fa-users{background:#f0ba00;font-size:15px}
#hd_qnb li .fa-users:hover{background:#f06f00}
#hd_qnb li .fa-history{background:#8522c4;font-size:15px}
#hd_qnb li .fa-history:hover{background:#6700a9}

/* 메인메뉴 */
#gnb{position:relative}
#gnb h2{position:absolute;font-size:0;line-height:0;overflow:hidden}
#gnb .gnb_wrap{margin:0 auto;position:relative}
#gnb #gnb_1dul {font-size:1.083em;padding: 0;background:#253dbe;zoom:1;
-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.3);
-moz-box-shadow:  0 1px 3px rgba(0,0,0,0.3);
box-shadow: 0 1px 3px rgba(0,0,0,0.3)}
#gnb ul:after {display:block;visibility:hidden;clear:both;content:""}
#gnb .gnb_1dli{float:left;line-height:50px;padding:0 15px;position:relative;}
#gnb .gnb_1dli:hover{background:#1a30a7;
-webkit-transition: background-color 2s ease-out;
-moz-transition: background-color 0.3s ease-out;
-o-transition: background-color 0.3s ease-out;
transition: background-color 0.3s ease-out;}

.gnb_1dli .bg{display:inline-block;width:10px;height:10px;overflow:hidden;background:url(../img/gnb_bg2.gif) no-repeat 50% 50%;text-indent:-999px}
.gnb_1da {display:inline-block;font-weight:bold;color:#fff;text-decoration:none;}
.gnb_2dli{border-top:1px solid #253dbe}
.gnb_2dli:first-child{border:0}
.gnb_2dul {display:none;position:absolute;top:50px;min-width:140px;background:#1a30a7;padding: 0;
-webkit-box-shadow: 0 1px 5px rgba(0,0,0,0.1);
-moz-box-shadow:  0 1px 5px rgba(0,0,0,0.1);
box-shadow: 0 1px 5px rgba(0,0,0,0.1);}
.gnb_2da {display:block;padding:0 10px;line-height:40px;color:#c3cbf7;text-align:left;text-decoration:none}
a.gnb_2da:hover{background:#0e2080;
-moz-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;}

.gnb_1dli_air .gnb_2da {}
.gnb_1dli_on .gnb_2da {}
.gnb_2da:focus, .gnb_2da:hover {color:#fff}
.gnb_1dli_over .gnb_2dul {display:block;left:0}
.gnb_1dli_over2 .gnb_2dul {display:block;right:0}
.gnb_wrap .gnb_empty {padding:10px 0;width:100%;text-align:center;line-height:2em;color:#fff}
.gnb_wrap .gnb_empty a{color:#fff;text-decoration:underline}
.gnb_wrap .gnb_al_ul .gnb_empty, .gnb_wrap .gnb_al_ul .gnb_empty a{color:#555}

#gnb .gnb_menu_btn{background:#4158d1;color:#fff;width:50px;height:50px;border:0;vertical-align:top;font-size:18px}
#gnb .gnb_close_btn{background:#4158d1;color:#fff;width:50px;height:50px;border:0;vertical-align:top;font-size:18px;position:absolute;top:-50px;left:0}
#gnb .gnb_mnal{padding:0}

#gnb_all{display:none;position:absolute;width:100%;z-index:99;}
#gnb_all .gnb_al_ul:after {display:block;visibility:hidden;clear:both;content:""}
#gnb_all .gnb_al_ul{background:#fff;border:1px solid #4158d1;padding:20px;
-webkit-box-shadow: 0 2px 5px rgba(0,0,0,0.2);
-moz-box-shadow:  0 2px 5px rgba(0,0,0,0.2);
box-shadow: 0 2px 5px rgba(0,0,0,0.2);}
#gnb_all .gnb_al_li{background:#fff;float:left;min-width:20%;padding:5px }
#gnb_all .gnb_al_li .gnb_al_a{font-size:1.083em;padding:10px;display:block;position:relative;margin-bottom:10px;background: #eff1f9;border-bottom: 1px solid #dee2f1;font-weight: bold;color:#243071}
#gnb_all .gnb_al_li li {padding-left:10px;line-height:2em}
#gnb_all .gnb_al_li li i{color:#9ca6cc}
#gnb_all .gnb_al_li li a{color:#555}

/* 중간 레이아웃 */
#wrapper{}
#container_wr:after {display:block;visibility:hidden;clear:both;content:""}
#container_wr {z-index:5;margin:0 auto;height:100%;zoom:1}
#aside {float:right;width:305px;padding:0;background: #e7ebf3;height: 100%;border: 1px solid #adbfd2;margin:20px 0 20px 20px}

#container {z-index:4;position:relative;float:left;min-height:500px;height:auto !important;margin:20px  0;height:500px;font-size:1em;width:875px;zoom:1}
#container:after {display:block;visibility:hidden;clear:both;content:""}
#container_title {font-size:1.333em;margin:0 auto;font-weight:bold;}
#container_title span{margin:0 auto 10px;display:block;line-height:30px;}
/*.latest_wr:after {display:block;visibility:hidden;clear:both;content:""}*/
.lt_wr{width:49%}
.lt_wr:nth-child(2n+1){clear:both}
.latest_wr:after {display:block;visibility:hidden;clear:both;content:""}
/* 하단 레이아웃 */
#ft {border-top:1px solid #d5d5d5;background:#fff;padding-bottom:30px;margin:0 auto;text-align:center}
#ft h1 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#ft_wr {margin:0 auto;position:relative;}
#ft_link{padding:15px 0;border-bottom:1px solid #eee}
#ft_link a{display:inline-block;padding:0 8px;line-height:1.083em;font-weight:bold}
#ft_catch{margin:20px 0 10px}
#ft_copy{color:#555;font-size:0.92em}
#top_btn {position:fixed;bottom:20px;right:20px;width:50px;height:50px;line-height:46px;border:2px solid #333;color:#333;text-align:center;font-size:15px;z-index:90;background:rgba(255,255,255,0.5)}
#top_btn:hover{border-color:#3059c7;background:#3059c7;color:#fff}

/* 게시물 선택복사 선택이동 */
#copymove {}
#copymove  .win_desc {text-align:center;display:block}
#copymove  .tbl_wrap{margin:20px }
#copymove  .win_btn{padding:0 20px 20px}
.copymove_current {float:right;background:#ff3061;padding:5px;color:#fff;border-radius:3px}
.copymove_currentbg {background:#f4f4f4}

/* 화면낭독기 사용자용 */
#hd_login_msg {position:absolute;top:0;left:0;font-size:0;line-height:0;overflow:hidden}
.msg_sound_only, .sound_only {display:inline-block !important;position:absolute;top:0;left:0;margin:0 !important;padding:0 !important;font-size:0;line-height:0;border:0 !important;overflow:hidden !important}
/* 본문 바로가기 */
#skip_to_container a {z-index:100000;position:absolute;top:0;left:0;width:1px;height:1px;font-size:0;line-height:0;overflow:hidden}
#skip_to_container a:focus, #skip_to_container a:active {width:100%;height:75px;background:#21272e;color:#fff;font-size:2em;font-weight:bold;text-align:center;text-decoration:none;line-height:3.3em}

/* ie6 이미지 너비 지정 */
.img_fix {width:100%;height:auto}

/* 캡챠 자동등록(입력)방지 기본 -pc */
#captcha {display:inline-block;position:relative}
#captcha legend {position:absolute;margin:0;padding:0;font-size:0;line-height:0;text-indent:-9999em;overflow:hidden;}
#captcha #captcha_img {height:40px;border:1px solid #898989;vertical-align:top;padding:0;margin:0}
#captcha #captcha_mp3 {margin:0;padding:0;width:40px;height:40px;border:0;background:transparent;vertical-align:middle;overflow:hidden;cursor:pointer;background:url('../../../img/captcha2.png') no-repeat;text-indent:-999px;border-radius:3px}
#captcha #captcha_reload {margin:0;padding:0;width:40px;height:40px;border:0;background:transparent;vertical-align:middle;overflow:hidden;cursor:pointer;background:url('../../../img/captcha2.png') no-repeat  0 -40px;text-indent:-999px;border-radius:3px}
#captcha #captcha_key {margin:0 0 0 3px;padding:0 5px;width:90px;height:40px;border:1px solid #ccc;background:#fff;font-size:1.333em;font-weight:bold;text-align:center;border-radius:3px;vertical-align:top}
#captcha #captcha_info {display:block;margin:5px 0 0;font-size:0.95em;letter-spacing:-0.1em}

/* 캡챠 자동등록(입력)방지 기본 - mobile */
#captcha.m_captcha audio {display:block;margin:0 0 5px;width:187px}
#captcha.m_captcha #captcha_img {width:160px;height:60px;border:1px solid #e9e9e9;margin-bottom:3px;margin-top:5px;display:block;}
#captcha.m_captcha #captcha_reload {position:static;margin:0;padding:0;width:40px;height:40px;border:0;background:transparent;vertical-align:middle;overflow:hidden;cursor:pointer;background:url('../../../img/captcha2.png') no-repeat  0 -40px;text-indent:-999px}
#captcha.m_captcha #captcha_reload span{display:none;}
#captcha.m_captcha #captcha_key {margin:0;padding:0 5px;width:115px;height:29px;border:1px solid #b8c9c2;background:#f7f7f7;font-size:1.333em;font-weight:bold;text-align:center;line-height:29px;margin-left:3px}
#captcha.m_captcha #captcha_info {display:block;margin:5px 0 0;font-size:0.95em;letter-spacing:-0.1em}
#captcha.m_captcha #captcha_mp3 {width:31px;height:31px;background:url('../../../img/captcha2.png') no-repeat 0 0 ;  vertical-align:top;overflow:hidden;cursor:pointer;text-indent:-9999px;border:none}

/* ckeditor 단축키 */
.cke_sc {margin:0 0 5px;text-align:right}
.btn_cke_sc{display:inline-block;padding:0 10px;height:23px;border:1px solid #ccc;background:#fafafa;color:#000;text-decoration:none;line-height:1.9em;vertical-align:middle;cursor:pointer}
.cke_sc_def {margin:0 0 5px;padding:10px;border:1px solid #ccc;background:#f7f7f7;text-align:center}
.cke_sc_def dl{margin:0 0 5px;text-align:left;zoom:1}
.cke_sc_def dl:after {display:block;visibility:hidden;clear:both;content:""}
.cke_sc_def dt, .cke_sc_def dd {float:left;margin:0;padding:5px 0;border-bottom:1px solid #e9e9e9}
.cke_sc_def dt {width:20%;font-weight:bold}
.cke_sc_def dd {width:30%}

/* ckeditor 태그 기본값 */
#bo_v_con ul{display: block;list-style-type: disc;margin-top: 1em;margin-bottom: 1em;margin-left: 0;margin-right: 0;padding-left: 40px;}
#bo_v_con ol{display: block;list-style-type: decimal;margin-top: 1em;margin-bottom: 1em;margin-left: 0;margin-right: 0;padding-left: 40px;}
#bo_v_con li{display: list-item;}

/* 버튼 */
a.btn, .btn {line-height:35px;height:35px;padding:0 25px;text-align:center;border:0;border-radius: 4;
-webkit-transition: background-color 0.3s ease-out;
-moz-transition: background-color 0.3s ease-out;
-o-transition: background-color 0.3s ease-out;
transition: background-color 0.3s ease-out;}

a.btn01 {display:inline-block;padding:7px;border:1px solid #ccc;background:#fafafa;color:#000;text-decoration:none;vertical-align:middle}
a.btn01:focus, a.btn01:hover {text-decoration:none}
button.btn01 {display:inline-block;margin:0;padding:7px;border:1px solid #ccc;background:#fafafa;color:#000;text-decoration:none}
a.btn02 {display:inline-block;padding:7px;border:1px solid #3b3c3f;background:#4b545e;color:#fff;text-decoration:none;vertical-align:middle;}
a.btn02:focus, .btn02:hover {text-decoration:none}
button.btn02 {display:inline-block;margin:0;padding:7px;border:1px solid #3b3c3f;background:#4b545e;color:#fff;text-decoration:none}

.btn_confirm {text-align:right} /* 서식단계 진행 */

.btn_submit {border:0;background:#444;color:#fff;cursor:pointer;border:0; border-radius: 5px !important;}
.btn_submit:hover {background:#444; color:#fff !important; }

a.btn_cancel {display:inline-block;background:#969696;color:#fff;text-decoration:none;vertical-align:middle;}
button.btn_cancel {display:inline-block;background:#969696;color:#fff;text-decoration:none;vertical-align:middle}
.btn_cancel:hover {background:#aaa;
}
a.btn_frmline, button.btn_frmline {display:inline-block;padding:0 5px;height:40px;border:0;background:#3c3c3c;border-radius:5px;color:#fff;text-decoration:none;vertical-align:top} /* 우편번호검색버튼 등 */
a.btn_frmline {}
button.btn_frmline {font-size:1em}

/* 게시판용 버튼 */
a.btn_b01,.btn_b01 {display:inline-block;background:#444;color:#fff;text-decoration:none;vertical-align:middle}
a.btn_b01 i,.btn_b01 i {display: none;}
a.btn_b01:hover, .btn_b01:hover {background:#444; color:#fff;}
a.btn_b02,.btn_b02 {display:inline-block;background:#444;padding:0 25px;color:#fff;text-decoration:none;border:0;vertical-align:middle;}
a.btn_b02 i,.btn_b02 i {display: none;}
a.btn_b02:hover, .btn_b02:hover {background:#444; color:#fff;}
a.btn_b03, .btn_b03 {display:inline-block;background:#fff;border:1px solid #b9bdd3;color:#646982;text-decoration:none;vertical-align:middle}
a.btn_b03:hover, .btn_b03:hover {background:#ebedf6; color:#fff;}
a.btn_b04, .btn_b04 {display:inline-block;background:#fff;border:1px solid #ccc;color:#707070;text-decoration:none;vertical-align:middle}
a.btn_b04:hover, .btn_b04:hover {color:#333;background:#f9f9f9}
a.btn_admin,.btn_admin {display:inline-block;background:#d13f4a;color:#fff;text-decoration:none;vertical-align:middle} /* 관리자 전용 버튼 */
.btn_admin:hover, a.btn_admin:hover {background:#ff3746}


/*컬러*/
.color_1 {background:#169dd6}
.color_2 {background:#14d53d}
.color_3 {background:#3814ff}
.color_4 {background:#7520c5}

/* 기본테이블 */
.tbl_wrap table {width:100%;border-collapse:collapse;border-spacing: 0 5px; }
.tbl_wrap caption {padding:10px 0;font-weight:bold;text-align:left}
.tbl_head01 {margin:0 0 10px}
.tbl_head01 caption {padding:0;font-size:0;line-height:0;overflow:hidden}
.tbl_head01 thead th {padding:15px 0;font-weight:normal;text-align:center; border-top:2px solid #888888;  border-bottom:1px solid #ddd; background:#fafafa;height:40px}
.tbl_head01 thead th input {vertical-align:top} /* middle 로 하면 게시판 읽기에서 목록 사용시 체크박스 라인 깨짐 */
.tbl_head01 tfoot th, .tbl_head01 tfoot td {padding:10px 0;border-top:1px solid #c1d1d5;border-bottom:1px solid #c1d1d5;background:#d7e0e2;text-align:center}
.tbl_head01 tbody th {padding:8px 0;border-bottom:1px solid #e8e8e8}
.tbl_head01 td {color:#666;background:#fff;padding:10px 5px;border-top:1px solid #ecf0f1;line-height:1.4em;height:60px;word-break:break-all}
.tbl_head01 tbody tr:hover td{background:#fafafa;}
.tbl_head01 a:hover {text-decoration:underline}

.tbl_head02 {margin:0 0 10px}
.tbl_head02 caption {padding:0;font-size:0;line-height:0;overflow:hidden}
.tbl_head02 thead th {padding:5px 0;border-top:1px solid #d1dee2;border-bottom:1px solid #d1dee2;background:#e5ecef;color:#383838;font-size:0.95em;text-align:center;letter-spacing:-0.1em}
.tbl_head02 thead a {color:#383838}
.tbl_head02 thead th input {vertical-align:top} /* middle 로 하면 게시판 읽기에서 목록 사용시 체크박스 라인 깨짐 */
.tbl_head02 tfoot th, .tbl_head02 tfoot td {padding:10px 0;border-top:1px solid #c1d1d5;border-bottom:1px solid #c1d1d5;background:#d7e0e2;text-align:center}
.tbl_head02 tbody th {padding:5px 0;border-top:1px solid #e9e9e9;border-bottom:1px solid #e9e9e9;background:#fff}
.tbl_head02 td {padding:5px 3px;border-top:1px solid #e9e9e9;border-bottom:1px solid #e9e9e9;background:#fff;line-height:1.4em;word-break:break-all}
.tbl_head02 a {}

/* 폼 테이블 */
.tbl_frm01 {margin:0 0 20px}
.tbl_frm01 table {width:100%;border-collapse:collapse;border-spacing:0}
.tbl_frm01 th {width:70px;padding:7px 13px;border:1px solid #e9e9e9;border-left:0;background:#f5f8f9;text-align:left}
.tbl_frm01 td {padding:7px 10px;border-top:1px solid #e9e9e9;border-bottom:1px solid #e9e9e9;background:transparent}
.wr_content textarea,.tbl_frm01 textarea,.form_01 textarea, .frm_input {border:1px solid #ccc;background:#fff;color:#000;vertical-align:middle;border-radius:3px;padding:5px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.tbl_frm01 textarea {padding:2px 2px 3px}
.frm_input {height:40px;}

.full_input{width:100%}
.half_input{width:49.5%}
.tbl_frm01 textarea, .write_div textarea {width:100%;height:100px}
.tbl_frm01 a {text-decoration:none}
.tbl_frm01 .frm_file {display:block;margin-bottom:5px}
.tbl_frm01 .frm_info {display:block;padding:0 0 5px;line-height:1.4em}

/*기본 리스트*/
.list_01 li{border:1px solid #dbdbdb;background:#fff;border-radius:3px;margin:3px 0;padding:10px 15px;list-style:none;position:relative;}
.list_01 li:after {display:block;visibility:hidden;clear:both;content:""}
.list_01 li:hover{background:#f9f9f9}
.list_01 li.empty_li{text-align:center;padding:20px 0;color:#666}
/*폼 리스트*/
.form_01 h2{margin:0 0 10px;font-size:1.167em}
.form_01 li{margin:10px 0}
.form_01 li:after {display:block;visibility:hidden;clear:both;content:""}
.form_01 li .right_input{float:right}
.form_01 textarea{height:100px;width:100%}
.form_01 .frm_label{display:inline-block;width:130px}

/* 자료 없는 목록 */
.empty_table {padding:50px 0 !important;text-align:center}
.empty_list {padding:20px 0 !important;color:#666;text-align:center}

/* 필수입력 */
.required, textarea.required {background-image:url('../img/require.png')  !important;background-repeat:no-repeat   !important;background-position:right top  !important;}

/* 테이블 항목별 정의 */
.td_board {width:80px;text-align:center}
.td_category {width:80px;text-align:center}
.td_chk {width:30px;text-align:center}
.td_date {width:60px;text-align:center}
.td_datetime {width:110px;text-align:center}
.td_group {width:80px;text-align:center}
.td_mb_id {width:100px;text-align:center}
.td_mng {width:80px;text-align:center}
.td_name {width:100px;text-align:left}
.td_nick {width:100px;text-align:center}
.td_num {width:50px;text-align:center}
.td_numbig {width:80px;text-align:center}
.td_stat {width:60px;text-align:center}

.txt_active {color:#5d910b}
.txt_done {color:#e8180c}
.txt_expired {color:#ccc}
.txt_rdy {color:#8abc2a}

/* 새창 기본 스타일 */
.new_win {position:relative;}
.new_win .tbl_wrap {margin:0 20px}
.new_win #win_title {font-size:1.25em;height:50px;line-height:30px;padding:10px 20px;background:#333;color:#fff;}
.new_win #win_title .sv {font-size:0.75em;line-height:1.2em}
.new_win .win_ul {border-right:1px solid #dfe6e7;}
.new_win .win_ul:after {display:block;visibility:hidden;clear:both;content:""}
.new_win .win_ul li{float:left;background:#fff;width:33.333%;text-align:center;border:1px solid #ccc;margin-left:-1px}
.new_win .win_ul li a{display:block;padding:10px 0}
.new_win .win_ul .selected{background:#fff;border-color:#253dbe;position:relative;z-index:5}
.new_win .win_ul .selected a{color:#253dbe;font-weight:bold}
.new_win .win_desc {margin:5px 0;font-size:0.92em;color:#3598db;}
.new_win .frm_info{font-size:0.92em;color:#3598db}
.new_win .win_total{text-align:right;margin:10px 0}
.new_win .win_total span{display:inline-block;line-height:30px;font-size:0.92em;color:#4e546f;background:#d4d4d4;padding:0 10px;border-radius:5px;}
.new_win .new_win_con{margin:20px;}
.new_win .new_win_con:after {display:block;visibility:hidden;clear:both;content:""}
.new_win .btn_confirm:after {display:block;visibility:hidden;clear:both;content:""}
.new_win .win_btn{text-align:right}
.new_win .btn_close {position:absolute;top:0;right:0;height:50px;width:50px;background:url(../img/close_btn.gif) no-repeat 50% 50%;border:0;text-indent:-999px;overflow:hidden;cursor:pointer}
.new_win .btn_submit {padding:0 20px;height:40px;font-weight:bold;font-size:1.083em;float:right}

/* 검색결과 색상 */
.sch_word {color:#00c4ac}

/* 자바스크립트 alert 대안 */
#validation_check {margin:100px auto;width:500px}
#validation_check h1 {margin-bottom:20px;font-size:1.3em}
#validation_check p {margin-bottom:20px;padding:30px 20px;border:1px solid #e9e9e9;background:#fff}

/* 사이드뷰 */
.sv_wrap {position:relative;font-weight:normal}
.sv_wrap .sv {z-index:1000;display:none;margin:5px 0 0;font-size:0.92em;background:#333;
-webkit-box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.2);
-moz-box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.2);
box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.2);}
.sv_wrap .sv:before{content: "";position: absolute;top: -6px;left: 15px;width: 0;height: 0;border-style: solid;border-width: 0 6px 6px 6px;border-color: transparent transparent #333 transparent;}
.sv_wrap .sv a {display:inline-block;margin:0;padding:0  10px;line-height:30px;width:100px;font-weight:normal;color:#bbb }
.sv_wrap .sv a:hover{background:#000;color:#fff}
.sv_member{color:#333}
.sv_on {display:block !important;position:absolute;top:23px;left:0px;width:auto;height:auto}
.sv_nojs .sv {display:block}

/* 페이징 */
.pg_wrap {clear:both;margin:30px 0 ;text-align:center}
.pg_wrap:after {display:block;visibility:hidden;clear:both;content:""}
.pg {}
.pg_page, .pg_current {display:inline-block;vertical-align:middle;background:#f3f3f3;border:1px solid #bbbcc3}
.pg a:focus, .pg a:hover {text-decoration:none}
.pg_page {color:#555;font-size:1.083em;height:30px;line-height:28px;padding:0 5px;min-width:30px;text-decoration:none;border-radius:3px;}
.pg_page:hover{background-color:#ddd}
.pg_start {text-indent:-999px;overflow:hidden;background:url('../img/btn_first.gif') no-repeat 50% 50% #fff;padding:0;border:1px solid #bbb;}
.pg_prev {text-indent:-999px;overflow:hidden;background:url('../img/btn_prev.gif') no-repeat 50% 50% #fff;padding:0;border:1px solid #bbb}
.pg_end {text-indent:-999px;overflow:hidden;background:url('../img/btn_end.gif') no-repeat 50% 50% #fff;padding:0;border:1px solid #bbb}
.pg_next {text-indent:-999px;overflow:hidden;background:url('../img/btn_next.gif') no-repeat 50% 50% #fff;padding:0;border:1px solid #bbb}
.pg_start:hover,.pg_prev:hover,.pg_end:hover,.pg_next:hover{background-color:#fafafa}

.pg_current {display:inline-block;background:#4c4f6f;color:#fff;font-weight:bold;height:30px;line-height:30px;padding:0 10px;min-width:30px;border-radius:3px;
-webkit-box-shadow: inset 1px 1px 2px #222542;
-moz-box-shadow:  inset 1px 1px 2px #222542;
box-shadow: inset 1px 1px 2px #222542;
}

/* cheditor 이슈 */
.cheditor-popup-window *, .cheditor-popup-window :after, .cheditor-popup-window :before {
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
}

/* Mobile화면으로 */
#device_change {display:block;margin:0.3em;padding:0.5em 0;border:1px solid #eee;border-radius:2em;background:#fff;color:#000;font-size:2em;text-decoration:none;text-align:center}


/* custom.css */
#bo_sch form .sch_input {
    width: 250px;
    font-size: 17px;
}
#bo_sch form select { margin: 9px 10px;}
#bo_sch form select, #bo_sch form .sch_input::placeholder {
    font-size: 17px;
}

/* 후원계좌 */
.cntwarp .countinfo-box-v2 {
    display: flex;
    margin-bottom: 40px;
}
.cntwarp .countinfo-box-v2 .tit {font-size:20px; margin-bottom: 10px;}
.cntwarp .countinfo-box-v2 .count {font-size:27px;}
.w-250 {
    width: 250px;
}
.flex-end {
    align-items: flex-end
}
.text-end {
    text-align: end;
}

/* 후원계좌 모바일 반응형 */
@media all and (max-width:768px) {
  .cntwarp .countinfo-box-v2 .count {font-size: 22px; white-space: nowrap;}
  .cntwarp .countinfo-box-v2 .w-250 {width: 180px;}
}

/* 조직도 모바일 반응형 */
@media all and (max-width:500px) {
    .org-team-wrapper {
        display: flex;
        justify-content: center !important;
        gap: 10px !important;
    }
    .org-branch-container {
        width: 390px !important;
    }
}