@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700&family=Noto+Serif+KR:wght@400;500;600&display=swap');

/* =========================================================
   DEFAULT.CSS CLEANUP
   - 기본 폰트 15px
   - 한글 본문 줄바꿈 개선
   - 명백한 중복 선언 정리
   - 기존 GNUBOARD / HEADER / FOOTER / MAIN 구조 유지
========================================================= */


/* 초기화 */
html {overflow-y:scroll}
body {margin:0;padding:0;font-size:15px;font-family:'Noto Sans KR', dotum, sans-serif;background:#fff}
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:'Noto Sans KR', 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:'Noto Sans KR', dotum, sans-serif;font-size:1em}
input[type="submit"] {cursor:pointer}
button {cursor:pointer}

textarea, select {font-family:'Noto Sans KR', dotum, sans-serif;font-size:1em}
select {margin:0}
p {margin:0;padding:0;word-break:keep-all;overflow-wrap:break-word}
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}

/* 레이아웃 크기 지정
   기존 1200px 고정폭 / min-width를 제거하고 반응형 기준으로 정리 */
#hd, #wrapper, #ft {
  width:100%;
  min-width:0;
}

#hd_pop,
#hd_wrapper,
#tnb .inner,
#gnb .gnb_wrap,
#ft_wr {
  width:100%;
  max-width:1440px;
}


/* 공통 - 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}

/* 상단 레이아웃 */
/* =========================================================
   HEADER
========================================================= */
#hd,
.site-header {
  position:relative;
  z-index:1000;
  width:100%;
  min-width:0;
  background:#fff;
  border-bottom:1px solid #eee8e2;
}

#hd_h1 {
  position:absolute;
  width:1px;
  height:1px;
  margin:-1px;
  padding:0;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.site-header__inner {
  display:grid;
  grid-template-columns:220px minmax(0,1fr) 150px;
  align-items:center;
  width:min(calc(100% - 80px),1440px);
  height:96px;
  margin:0 auto;
}


/* Logo */
#logo,
.site-header__logo {
  float:none;
  padding:0;
}

.site-header__logo a {
  display:inline-flex;
  align-items:center;
}

.site-header__logo img {
  display:block;
  width:auto;
  max-width:200px;
  max-height:54px;
}


/* GNB */
#gnb,
.site-header__nav {
  position:static;
  width:auto;
  background:transparent;
}

#gnb > h2,
.site-header__nav > h2 {
  position:absolute;
  width:1px;
  height:1px;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
}

#gnb_1dul,
.gnb-depth1 {
  display:flex;
  align-items:center;
  justify-content:right;
  gap:48px;
  margin:0;
  padding:0;
  border:0;
  font-size:16px;
}

.gnb-depth1__item {
  position:relative;
}

.gnb-depth1__link {
  position:relative;
  display:flex;
  align-items:center;
  height:96px;
  padding:0 2px;
  color:#25211f;
  font-size:16px;
  font-weight:500;
  letter-spacing:-.02em;
  white-space:nowrap;
  transition:color .2s ease;
}

.gnb-depth1__link:after {
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  width:0;
  height:2px;
  background:#5F1C27;
  transform:translateX(-50%);
  transition:width .2s ease;
}

.gnb-depth1__item:hover > .gnb-depth1__link,
.gnb-depth1__link:focus {
  color:#5F1C27;
}

.gnb-depth1__item:hover > .gnb-depth1__link:after,
.gnb-depth1__link:focus:after {
  width:100%;
}


/* 2Depth */
.gnb-depth2 {
  position:absolute;
  left:50%;
  top:100%;
  z-index:1010;
  min-width:190px;
  padding-top:10px;
  opacity:0;
  visibility:hidden;
  transform:translate(-50%,10px);
  transition:
    opacity .2s ease,
    transform .2s ease,
    visibility .2s ease;
}

.gnb-depth1__item:hover .gnb-depth2,
.gnb-depth1__item:focus-within .gnb-depth2 {
  opacity:1;
  visibility:visible;
  transform:translate(-50%,0);
}

.gnb-depth2__list {
  padding:10px;
  border:1px solid #ebe4dc;
  border-radius:14px;
  background:#fff;
  box-shadow:0 14px 35px rgba(55,38,26,.10);
}

.gnb-depth2__item + .gnb-depth2__item {
  margin-top:2px;
}

.gnb-depth2__link {
  display:block;
  padding:11px 14px;
  border-radius:9px;
  color:#5e5752;
  font-size:14px;
  line-height:1.35;
  white-space:nowrap;
  transition:
    background .2s ease,
    color .2s ease;
}

.gnb-depth2__link:hover,
.gnb-depth2__link:focus {
  color:#5F1C27;
  background:#f8f2ed;
}

.gnb_empty {
  padding:25px;
  color:#777;
  text-align:center;
}


/* Right util */
.site-header__util {
  display:flex;
  align-items:center;
  justify-content:flex-end;
}


/* 원서접수 */
.site-header__apply {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:116px;
  height:44px;
  gap: 18px;
  padding:0 24px;
  border:1px solid #5F1C27;
  border-radius:999px;
  color:#fff;
  background:#5F1C27;
  font-size:14px;
  font-weight:600;
  letter-spacing:-.02em;
  transition:
    background .2s ease,
    border-color .2s ease;
}

.site-header__apply:hover,
.site-header__apply:focus {
  color:#fff;
  border-color:#7A2433;
  background:#7A2433;
}


/* Mobile hamburger
   PC에서는 숨김 */
.site-header__menu-btn {
  display:none;
  position:relative;
  flex-direction:column;
  align-items:flex-end;
  justify-content:center;
  gap:5px;
  width:42px;
  height:42px;
  padding:0;
  border:0;
  background:transparent;
}

.site-header__menu-btn span {
  display:block;
  height:1px;
  background:#302a27;
}

.site-header__menu-btn span:nth-child(1) {
  width:24px;
}

.site-header__menu-btn span:nth-child(2) {
  width:30px;
}

.site-header__menu-btn span:nth-child(3) {
  width:20px;
}


/* =========================================================
   MOBILE ALL MENU
========================================================= */
.all-menu,
#gnb_all {
  display:none;
  position:fixed;
  left:16px;
  right:16px;
  top:16px;
  bottom:16px;
  z-index:2001;
  overflow-y:auto;
  border-radius:18px;
  background:#fff;
  box-shadow:0 30px 80px rgba(35,22,14,.24);
}

.all-menu__inner {
  padding:28px 24px 34px;
}

.all-menu__head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-bottom:22px;
  border-bottom:1px solid #ece5df;
}

.all-menu__head strong {
  font-family:"Noto Serif KR", serif;
  color:#2e2824;
  font-size:26px;
  font-weight:500;
}

.gnb_close_btn {
  position:relative;
  width:42px;
  height:42px;
  padding:0;
  border:0;
  background:transparent;
}

.gnb_close_btn span {
  position:absolute;
  left:9px;
  top:20px;
  width:24px;
  height:1px;
  background:#2d2825;
}

.gnb_close_btn span:first-child {
  transform:rotate(45deg);
}

.gnb_close_btn span:last-child {
  transform:rotate(-45deg);
}

.all-menu__list {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:30px 20px;
  padding-top:30px;
}

.all-menu__title {
  display:inline-block;
  margin-bottom:14px;
  color:#2d2825;
  font-size:17px;
  font-weight:600;
}

.all-menu__depth2 li + li {
  margin-top:9px;
}

.all-menu__depth2 a {
  color:#77706b;
  font-size:14px;
  line-height:1.5;
}

.all-menu-bg,
#gnb_all_bg {
  display:none;
  position:fixed;
  inset:0;
  z-index:2000;
  background:rgba(28,20,16,.46);
  backdrop-filter:blur(4px);
}

body.all-menu-open {
  overflow:hidden;
}


/* =========================================================
   HEADER RESPONSIVE
========================================================= */
@media (max-width:1440px) {

  .site-header__inner {
    width:calc(100% - 64px);
    grid-template-columns:190px minmax(0,1fr) 130px;
  }

  #gnb_1dul,
  .gnb-depth1 {
    gap:32px;
  }

}


@media (max-width:1180px) {

  .site-header__inner {
    width:calc(100% - 48px);
    grid-template-columns:180px minmax(0,1fr) 120px;
  }

  #gnb_1dul,
  .gnb-depth1 {
    gap:20px;
  }

  .gnb-depth1__link {
    font-size:14px;
  }

  .site-header__apply {
    min-width:100px;
    padding:0 18px;
  }

}


@media (max-width:900px) {

  .site-header__inner {
    display:flex;
    justify-content:space-between;
    width:calc(100% - 36px);
    height:78px;
  }

  .site-header__logo img {
    max-width:170px;
    max-height:46px;
  }

  .site-header__nav {
    display:none;
  }

  .site-header__util {
    gap:10px;
  }

  .site-header__apply {
    min-width:auto;
    height:40px;
    padding:0 18px;
    font-size:13px;
  }

  .site-header__menu-btn {
    display:flex;
  }

}


@media (max-width:540px) {

  .site-header__inner {
    width:calc(100% - 28px);
    height:70px;
  }

  .site-header__logo img {
    max-width:145px;
    max-height:40px;
  }

  .site-header__apply {
    height:38px;
    padding:0 14px;
    font-size:12px;
  }

  .all-menu__list {
    grid-template-columns:1fr;
    gap:25px;
  }

}

/* 중간 레이아웃 */
#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;
  padding: 0px;
  font-size:1em;
  zoom:1;
}
#container:after {display:block;visibility:hidden;clear:both;content:""}
#container_title {font-size:1.333em;margin:0 auto;font-weight:bold; display: none;}
#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:""}

/* =========================================================
   FOOTER
========================================================= */

#ft,
.site-footer {
  width:100%;
  margin:0;
  background:#f6efe6;
  color:#69615c;
  text-align:left;
}

#ft h1 {
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  font-size:0;
  line-height:0;
}


/* Footer Inner */

#ft_wr,
.site-footer__inner {
  position:relative;
  display:block;
  width:min(calc(100% - 80px),1440px);
  max-width:1440px;
  margin:0 auto;
  padding:38px 0 24px;
}


/* =========================================================
   FOOTER TOP
========================================================= */

.site-footer__top {
  display:grid;
  grid-template-columns:260px minmax(0,1fr) 180px;
  align-items:center;
  min-height:70px;
}


/* Logo */

.site-footer__brand {
  display:flex;
  align-items:center;
}

.site-footer__logo {
  display:inline-flex;
  align-items:center;
}

.site-footer__logo img {
  display:block;
  width:auto;
  max-width:200px;
  max-height:50px;
}


/* Info */

.site-footer__info {
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;

  color:#756d67;
  font-size:13px;
  line-height:1.6;
  letter-spacing:-.02em;
}

.site-footer__info span {
  white-space:nowrap;
}

.site-footer__info i {
  display:block;
  width:1px;
  height:12px;
  background:#d9cec3;
}


/* Policy */

.site-footer__policy {
  display:flex;
  justify-content:flex-end;
  gap: 20px;
}

.site-footer__policy a {
  color:#554d48;
  font-size:13px;
  font-weight:500;
  white-space:nowrap;

  transition:color .2s ease;
}

.site-footer__policy a.user {
  color:var(--muted);
}

.site-footer__policy a:hover,
.site-footer__policy a:focus {
  color:var(--burgundy);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.site-footer__bottom {
  margin-top:24px;
  padding-top:22px;

  border-top:1px solid #e4d9cf;

  text-align:center;
}

.site-footer__bottom p {
  margin:0;

  color:#8b827b;
  font-size:11px;
  line-height:1.6;
}


/* =========================================================
   FOOTER RESPONSIVE
========================================================= */

@media (max-width:1440px) {

  #ft_wr,
  .site-footer__inner {
    width:calc(100% - 64px);
  }

  .site-footer__top {
    grid-template-columns:220px minmax(0,1fr) 150px;
  }

  .site-footer__info {
    gap:8px;
    font-size:12px;
  }

}


@media (max-width:1100px) {

  .site-footer__top {
    grid-template-columns:200px 1fr;
    gap:25px 30px;
  }

  .site-footer__info {
    justify-content:flex-start;
  }

  .site-footer__policy {
    grid-column:2;
    justify-content:flex-start;
  }

}


@media (max-width:767px) {

  #ft_wr,
  .site-footer__inner {
    width:calc(100% - 36px);
    padding:32px 0 22px;
  }

  .site-footer__top {
    display:block;
  }

  .site-footer__logo img {
    max-width:170px;
  }

  .site-footer__info {
    justify-content:flex-start;
    margin-top:24px;
    gap:6px 8px;
  }

  .site-footer__info i {
    display:none;
  }

  .site-footer__info span {
    width:100%;
    white-space:normal;
  }

  .site-footer__policy {
    margin-top:18px;
  }

  .site-footer__bottom {
    margin-top:26px;
    padding-top:18px;
    text-align:left;
  }

}


@media (max-width:420px) {

  #ft_wr,
  .site-footer__inner {
    width:calc(100% - 28px);
  }

  .site-footer__logo img {
    max-width:150px;
  }

}

/* 게시물 선택복사 선택이동 */
#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%}

/* 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.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:#3a8afd;color:#fff;cursor:pointer;border-radius:3px}
.btn_submit:hover {background:#2375eb}
.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;color:#bababa;text-decoration:none;vertical-align:middle;border:0;background:transparent}
.btn_b01:hover, .btn_b01:hover {color:#000}
a.btn_b02,.btn_b02 {display:inline-block;background:#253dbe;padding:0 10px;color:#fff;text-decoration:none;border:0;vertical-align:middle}
a.btn_b02:hover, .btn_b02:hover {background:#0025eb}
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}
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;color:#d13f4a;text-decoration:none;vertical-align:middle} /* 관리자 전용 버튼 */
.btn_admin:hover, a.btn_admin:hover {color:#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;float:left;display:inline-block}
.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:#fafafa}
.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:#3a8afd;border:1px solid #3a8afd;color:#fff;font-weight:bold;height:30px;line-height:30px;padding:0 10px;min-width:30px;border-radius:3px}

/* 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}


/* =========================================================
   GNUBOARD 기본 레이아웃 반응형 보정
   - 기존 PC 고정폭 구조 때문에 모바일에서 가로 스크롤이 생기는 부분 정리
========================================================= */
@media (max-width: 1440px) {
  #hd_pop,
  #hd_wrapper,
  #tnb .inner,
  #gnb .gnb_wrap,
  #container_wr,
  #ft_wr {
    max-width:100%;
  }

  #container_wr {
    padding-left:0;
    padding-right:0;
  }

  #ft_wr {
    padding-left:20px;
    padding-right:20px;
  }
}

@media (max-width: 768px) {
  #container_wr {
    padding-left:0;
    padding-right:0;
  }

  #container,
  #aside {
    float:none;
    width:100%;
  }

  #container {
    margin:0;
  }

  #aside {
    height:auto;
    margin:16px 0;
  }

  #ft_wr .ft_cnt {
    float:none;
    width:100%;
    padding:0;
    margin-top:24px;
  }

  #ft_wr .ft_cnt:first-child {
    margin-top:0;
  }

  #ft_copy {
    width:100%;
    padding-left:16px;
    padding-right:16px;
  }
}


/* main */
:root {
  --burgundy:#5F1C27;
  --burgundy-dark:#7A2433;
  --gold:#b99a58;
  --ink:#222;
  --muted:#6f6a66;
  --line:#e9e2d9;
  --inner:1440px;
  --shadow:0 18px 45px rgba(56,41,30,.12);
  --sub-inner:1440px
}
/* 메인페이지에서는 그누보드 기본 #container float/shrink-to-fit 해제 */
#container:has(.kcaea-main) {
  float:none;
  width:100%;
  max-width:none;
  min-height:0;
  margin:0;
}

.kcaea-main {
  width:100%;
  min-width:0;
  overflow:hidden;
  background:#fff;
  color:var(--ink);
}

.kcaea-main * {
  box-sizing:border-box;
}

.kcaea-main img {
  display:block;
  width:100%;
  height:auto;
}

.kcaea-main a {
  color:inherit;
  text-decoration:none;
}

.kcaea-main .pc-only {
  display:inline;
}

.main-inner {
  width:100%;
  margin:0 auto;
}


/* =========================================================
   HERO
========================================================= */

.main-hero {
  max-width: 1440px;
  margin: 0 auto;
  min-height:820px;
  padding:34px 0 84px;
  background:
    radial-gradient(
      circle at 78% 38%,
      rgba(185,154,88,.07),
      transparent 31%
    ),
    #fff;
}

.main-hero__inner {
  position:relative;
  display:grid;
  grid-template-columns:660px minmax(0,680px);
  gap:0;
  align-items:center;
}

.main-hero__copy {
  position:relative;
  z-index:6;
  width:820px;
  padding:44px 0 22px;
}

.main-hero__title {
  margin:0 0 28px;
  font-family:"Noto Serif KR","Nanum Myeongjo",serif;
  font-size:64px;
  font-weight:500;
  line-height:1.38;
  letter-spacing:-.04em;
  white-space:nowrap;
}

.main-hero__visual {
  position:relative;
  z-index:2;
  width:920px;
  min-width:760px;
  min-height:670px;
  margin-left:-110px;
}

.main-hero__sub {
  margin:0 0 30px;
  color:var(--burgundy);
  font-family:"Noto Serif KR", serif;
  font-size:25px;
  line-height:1.25;
}

.main-hero__desc {
  margin:0;
  color:var(--muted);
  font-size:16px;
  line-height:1.8;
}


/* Scroll */

.main-scroll {
  position:absolute;
  left:0;
  bottom:-150px;
  display:inline-flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
  width:50px;
  color:#666;
  font-size:12px;
}

.main-scroll i {
  position:relative;
  width:1px;
  height:90px;
  background:#aaa;
}

.main-scroll i:after {
  content:"";
  position:absolute;
  left:50%;
  bottom:-3px;
  width:6px;
  height:6px;
  border-radius:50%;
  background:#222;
  transform:translateX(-50%);
}

/* Hero Visual */

.hero-photo {
  position:absolute;
  overflow:hidden;
  margin:0;
  border-radius:22px;
  /* background:#eee;
  box-shadow:var(--shadow); */
}

.hero-photo img {
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-photo--main {
  left: 30%;
  top: 94px;
  z-index: 2;
  width: 57%;
  aspect-ratio: 1 / 1.22;
}

.hero-photo--top {
  right:0%;
  top:12px;
  z-index:4;
  width:22%;
  aspect-ratio:1/1.28;
}

.hero-photo--left {
  left:0;
  bottom:-60px;
  z-index:4;
  width:26%;
  aspect-ratio:.86/1;
}

.hero-photo--right {
  right:0;
  bottom:-110px;
  z-index:5;
  width:29%;
  aspect-ratio:1.03/1;
}


/* Hero Decoration */

.hero-deco {
  position:absolute;
  pointer-events:none;
}

.hero-deco--circle {
  right:5%;
  top:2%;
  width:330px;
  height:330px;
  border:1px solid rgba(194,161,100,.45);
  border-radius:50%;
}

.hero-deco--block {
  left:15%;
  bottom:30px;
  width:180px;
  height:250px;
  border-radius:28px;
  background:rgba(255,242,184,.25);
}


/* =========================================================
   FIRST STEP
========================================================= */

.first-step {
  position:relative;
  min-height:430px;
  overflow:hidden;
}

.first-step__bg {
  position:absolute;
  inset:0;
}

.first-step__bg:after {
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(70,50,42,.10),
      rgba(255,255,255,.05)
    );
}

.first-step__bg img {
  width:100%;
  height:100%;
  object-fit:cover;
}

.first-step__inner {
  position:relative;
  z-index:2;
  display:flex;
  justify-content:flex-end;
  align-items:center;
  min-height:430px;
  max-width: 1440px;
}


/* First Step Card */

.first-step__card {
  display:grid;
  grid-template-columns:1.12fr .88fr;
  width:880px;
  padding:42px 34px 42px 44px;
  border:1px solid rgba(255,255,255,.65);
  border-radius:24px;
  background:rgba(255,255,255,.92);
  box-shadow:0 22px 55px rgba(47,36,27,.15);
  backdrop-filter:blur(10px);
}

.first-step__copy {
  padding-right:34px;
}

.first-step__copy h2 {
  margin:0 0 20px;
  font-family:"Noto Serif KR","Nanum Myeongjo",serif;
  font-size:30px;
  font-weight:500;
  line-height:1.4;
}

.first-step__copy p {
  margin:0 0 25px;
  color:var(--muted);
  font-size:15px;
  line-height:1.75;
}


/* Main Button */

.main-btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  min-height:48px;
  padding:0 24px;
  border-radius:999px;
  font-size:14px;
  font-weight:700;
  transition:.25s;
}

.main-btn--burgundy {
  color:#fff !important;
  background:var(--burgundy);
}

.main-btn--burgundy:hover {
  background:var(--burgundy-dark);
  transform:translateY(-2px);
}


/* Quick Menu */

.quick-menu {
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:6px;
  padding-left:28px;
  border-left:1px solid var(--line);
}

.quick-menu a {
  display:grid;
  grid-template-columns:34px 1fr 18px;
  gap:12px;
  align-items:center;
  min-height:50px;
  padding:7px 8px;
  border-radius:12px;
  transition:.2s;
}

.quick-menu a:hover {
  background:#f7f1eb;
}

.quick-menu__icon {
  display:grid;
  place-items:center;
  width:32px;
  height:32px;
}

.quick-menu__icon img {
  width:22px;
  height:22px;
  object-fit:contain;
}

.quick-menu strong {
  font-size:14px;
}

.quick-menu__arrow {
  justify-self:end;
  font-size:21px;
}


/* =========================================================
   ABOUT ASSOCIATION
========================================================= */

.main-about {
  position:relative;
  padding:110px 0 120px;
  max-width: 1440px;
  margin: 0 auto;
}

.section-heading {
  position:relative;
  z-index:2;
  max-width:760px;
  margin:0 auto 65px;
  text-align:center;
}

.section-heading__eyebrow {
  margin:0 0 10px;
  color:var(--burgundy);
  font-family:"Noto Serif KR", serif;
  font-size:15px;
}

.section-heading h2 {
  margin:0;
  font-family:"Noto Serif KR", serif;
  font-size:56px;
  font-weight:400;
  line-height:1.05;
}

.section-heading i {
  display:block;
  width:72px;
  height:2px;
  margin:23px auto;
  background:var(--burgundy);
}

.section-heading__desc {
  margin:0;
  color:#666;
  font-size:15px;
  line-height:1.7;
}

.section-heading__desc strong {
  color:#333;
}


/* About Decoration */

.about-deco {
  position:absolute;
  z-index:1;
}

.about-deco--left {
  left:7%;
  top:140px;
  width:185px;
}

.about-deco--right {
  right:-11%;
  top:80px;
  width:370px;
}


/* Main Cards */

.main-cards {
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:36px;
}

.main-card {
  overflow:hidden;
  border:1px solid #ebe5dd;
  border-radius:18px;
  background:#fff;
  box-shadow:0 14px 35px rgba(49,39,31,.08);
  transition:.25s;
}

.main-card:hover {
  transform:translateY(-6px);
  box-shadow:0 24px 45px rgba(49,39,31,.13);
}

.main-card > a {
  display:block;
}

.main-card__thumb {
  aspect-ratio:1.48/1;
  overflow:hidden;
}

.main-card__thumb img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.45s;
}

.main-card:hover .main-card__thumb img {
  transform:scale(1.035);
}

.main-card__body {
  position:relative;
  min-height:178px;
  padding:28px 30px;
}

.main-card__body h3 {
  margin:0 0 16px;
  font-family:"Noto Serif KR", serif;
  font-size:22px;
  font-weight:400;
}

.main-card__body p {
  margin:0;
  color:#666;
  font-size:14px;
  line-height:1.65;
}

/* Card More Button */
.main-card__more {
  position:absolute;
  right:20px;
  bottom:20px;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  width:44px;
  height:44px;
  padding:0;

  overflow:hidden;

  border-radius:999px;

  color:#fff;
  background:var(--burgundy);

  font-size:15px;
  white-space:nowrap;

  transition:
    width .3s ease,
    background .25s ease,
    padding .3s ease;
}


/* View More Text */
.main-card__more-text {
  max-width:0;
  overflow:hidden;

  opacity:0;
  transform:translateX(8px);

  transition:
    max-width .3s ease,
    opacity .2s ease,
    transform .3s ease,
    margin-right .3s ease;
}


/* Arrow */
.main-card__more b {
  flex:0 0 auto;

  font-size:18px;
  font-weight:400;
  line-height:1;
}


/* Card Hover */
.main-card:hover .main-card__more,
.main-card:focus-within .main-card__more {
  width:auto;
  padding:0 17px;
  background:var(--burgundy-dark);
}


/* Show View More */
.main-card:hover .main-card__more-text,
.main-card:focus-within .main-card__more-text {
  max-width:80px;
  margin-right:10px;

  opacity:1;
  transform:translateX(0);
}

/* =========================================================
   1440 이하
========================================================= */

@media (max-width:1440px) {

  .main-inner {
    width:calc(100% - 80px);
  }

  .main-hero__inner {
    grid-template-columns:minmax(0,.84fr) minmax(0,1.16fr);
    gap:32px;
  }

  .main-hero__title {
    font-size:clamp(46px,4.4vw,64px);
  }

  .main-hero__sub {
    font-size:clamp(20px,1.65vw,25px);
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width:1100px) {

  .main-inner {
    width:calc(100% - 48px);
  }

  .main-hero {
    min-height:auto;
    padding:70px 0 85px;
  }

  .main-hero__inner {
    grid-template-columns:1fr 1.05fr;
    gap:15px;
  }

  .main-hero__visual {
    min-height:590px;
  }

  .main-scroll {
    display:none;
  }

  .first-step__card {
    width:min(760px,82vw);
  }

  .about-deco {
    opacity:.16;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:767px) {

  .kcaea-main .pc-only {
    display:none;
  }

  .main-inner {
    width:calc(100% - 36px);
  }


  /* Hero */

  .main-hero {
    padding:52px 0 58px;
  }

  .main-hero__inner {
    display:block;
  }

  .main-hero__copy {
    padding:0;
  }

  .main-hero__title {
    margin-bottom:20px;
    font-size:clamp(34px,10vw,46px);
    line-height:1.35;
  }

  .main-hero__sub {
    margin-bottom:22px;
    font-size:18px;
  }

  .main-hero__desc {
    font-size:14px;
  }

  .main-hero__visual {
    min-height:470px;
    margin-top:34px;
  }

  .hero-photo {
    border-radius:16px;
  }

  .hero-photo--main {
    left:13%;
    top:40px;
    width:65%;
  }

  .hero-photo--top {
    right:0;
    top:0;
    width:27%;
  }

  .hero-photo--left {
    left:0;
    bottom:5px;
    width:29%;
  }

  .hero-photo--right {
    right:0;
    bottom:0;
    width:33%;
  }

  .hero-deco--circle {
    right:-15%;
    width:220px;
    height:220px;
  }

  .hero-deco--block {
    left:4%;
    width:120px;
    height:180px;
  }


  /* First Step */

  .first-step {
    min-height:auto;
  }

  .first-step__inner {
    min-height:650px;
    align-items:flex-end;
    padding:44px 0;
  }

  .first-step__bg img {
    object-position:34% center;
  }

  .first-step__card {
    grid-template-columns:1fr;
    width:100%;
    padding:28px 22px 20px;
    border-radius:20px;
  }

  .first-step__copy {
    padding:0 0 25px;
  }

  .first-step__copy h2 {
    font-size:24px;
  }

  .quick-menu {
    padding:22px 0 0;
    border-top:1px solid var(--line);
    border-left:0;
  }

  .quick-menu a {
    min-height:46px;
  }


  /* About */

  .main-about {
    padding:78px 0 82px;
  }

  .section-heading {
    margin-bottom:40px;
  }

  .section-heading h2 {
    font-size:38px;
  }

  .section-heading__desc {
    font-size:14px;
  }

  .about-deco--left {
    left:-10px;
    top:78px;
    width:90px;
  }

  .about-deco--right {
    right:-35px;
    top:90px;
    width:140px;
  }


  /* Cards */

  .main-cards {
    grid-template-columns:1fr;
    gap:22px;
  }

  .main-card__thumb {
    aspect-ratio:1.65/1;
  }

  .main-card__body {
    min-height:160px;
    padding:23px 24px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width:420px) {

  .main-inner {
    width:calc(100% - 28px);
  }

  .main-hero__visual {
    min-height:420px;
  }

  .hero-photo--main {
    left:10%;
    width:68%;
  }

  .hero-photo--left {
    width:31%;
  }

  .hero-photo--right {
    width:35%;
  }

  .section-heading h2 {
    font-size:34px;
  }

}



/* =========================================================
   SUB VISUAL
========================================================= */
.sub-page {
  width: 100%;
  overflow: hidden;
}

.sub-inner {
  width: 100%;
  max-width: var(--sub-inner);
  margin: 0 auto;
}

.sub-visual {
  position: relative;
  min-height: 360px;
  background:
      linear-gradient(rgba(248, 245, 240, .96), rgba(248, 245, 240, .96))
}

.sub-visual .sub-inner {
  min-height: 360px;
  display: flex;
  align-items: center;
}

.sub-visual__content {
  padding-top: 10px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: #77706b;
  font-size: 13px;
  line-height: 1;
}

.breadcrumb a:first-child,
.breadcrumb strong {
  color: var(--burgundy);
}

.breadcrumb strong {
  font-weight: 600;
}

.sub-visual h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -.04em;
}

.sub-visual__en {
  margin: 10px 0 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: .02em;
}

/* =========================================================
   1440 이하
   디자인 비율 유지, 별도 좌우 padding은 강제하지 않음
========================================================= */

@media (max-width: 1440px) {
  .sub-inner {
      max-width: 100%;
  }
}


@media screen and (max-width: 1100px) {
  .sub-visual,
  .sub-visual .sub-inner {
      min-height: 300px;
  }
  .sub-inner {
    width: calc(100% - 64px);
}

  .sub-visual h1 {
      font-size: 42px;
  }
}

@media screen and (max-width: 767px) {

  .sub-visual {
    background-position-x: 60% !important;
  }

  .sub-visual,
  .sub-visual .sub-inner {
        min-height: 180px;
    }

  

    .sub-inner {
      width: calc(100% - 36px);
  }

    .breadcrumb {
        flex-wrap: wrap;
        margin-bottom: 16px;
        font-size: 11px;
    }

    .sub-visual h1 {
        font-size: 34px;
    }

    .sub-visual__en {
        margin-top: 8px;
        font-size: 12px;
    }
}


/* =========================================================
   MAIN HERO RESPONSIVE REBALANCE
   index.php hero 영역 전용
========================================================= */

@media (max-width: 1180px) {

  .main-hero {
    max-width: none;
    min-height: auto;
    padding: 72px 32px 82px;
  }

  .main-hero__inner {
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 36px;
    align-items: center;
  }

  .main-hero__copy {
    width: auto;
    max-width: 640px;
    padding: 10px 0;
  }

  .main-hero__title {
    margin-bottom: 24px;
    font-size: clamp(42px, 5vw, 56px);
    line-height: 1.38;
    white-space: normal;
  }

  .main-hero__sub {
    margin-bottom: 22px;
    font-size: 21px;
    line-height: 1.35;
  }

  .main-hero__desc {
    font-size: 15px;
    line-height: 1.8;
  }

  .main-hero__visual {
    width: 420px;
    min-width: 0;
    min-height: 500px;
    margin-left: 0;
    justify-self: end;
  }

  .hero-photo--main {
    left: 8%;
    top: 74px;
    width: 74%;
  }

  .hero-photo--top {
    right: 0;
    top: 16px;
    width: 25%;
  }

  .hero-photo--left {
    left: 0;
    bottom: 0;
    width: 27%;
  }

  .hero-photo--right {
    right: 0;
    bottom: -12px;
    width: 30%;
  }

  .hero-deco--circle {
    right: 0;
    top: 8%;
    width: 250px;
    height: 250px;
  }

  .hero-deco--block {
    left: 9%;
    bottom: 24px;
    width: 120px;
    height: 170px;
  }

  .main-scroll {
    display: none;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .main-hero {
    padding: 54px 0 58px;
  }

  .main-hero__inner {
    display: block;
    width: calc(100% - 48px);
    margin: 0 auto;
  }

  .main-hero__copy {
    width: 100%;
    max-width: 680px;
    padding: 0;
  }

  .main-hero__title {
    margin-bottom: 20px;
    font-size: 42px;
    line-height: 1.4;
    white-space: normal;
  }

  .main-hero__sub {
    margin-bottom: 18px;
    font-size: 20px;
  }

  .main-hero__desc {
    max-width: 600px;
  }


  /* 이미지 영역 */

  .main-hero__visual {
    position: relative;

    width: 100%;
    min-width: 0;
    min-height: 390px;

    margin: 34px 0 0;
  }


  /* 메인 이미지만 강조 */

  .hero-photo--main {
    left: auto;
    right: 0;
    top: 0;

    width: 310px;
    max-width: 62%;

    aspect-ratio: 1 / 1.15;
  }


  /* 상단 작은 이미지는 태블릿부터 제거 */

  .hero-photo--top {
    display: none;
  }


  /* 좌측 보조 이미지만 유지 */

  .hero-photo--left {
    left: 0;
    bottom: 0;

    width: 190px;
    max-width: 38%;

    aspect-ratio: .92 / 1;
  }


  /* 우측 작은 이미지 제거 */

  .hero-photo--right {
    display: none;
  }


  .hero-deco--circle {
    right: 70px;
    top: 28px;

    width: 220px;
    height: 220px;
  }

  .hero-deco--block {
    left: 95px;
    bottom: 20px;

    width: 110px;
    height: 150px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .main-hero {
    padding: 42px 0 44px;
  }

  .main-hero__inner {
    width: calc(100% - 36px);
  }


  /* 제목 */

  .main-hero__title {
    margin-bottom: 18px;

    font-size: clamp(32px, 9.4vw, 40px);
    line-height: 1.42;
    letter-spacing: -.045em;

    white-space: normal;
  }

  .main-hero__title br {
    display: none;
  }


  /* 영문 */

  .main-hero__sub {
    margin-bottom: 16px;

    font-size: 17px;
    line-height: 1.45;
  }

  .main-hero__sub br {
    display: none;
  }


  /* 설명 */

  .main-hero__desc {
    font-size: 14px;
    line-height: 1.75;
  }

  .main-hero__desc br {
    display: none;
  }


  /* 이미지 */

  .main-hero__visual {
    min-height: 300px;

    margin-top: 28px;
  }

  .hero-photo--main {
    right: 0;

    width: 230px;
    max-width: 68%;

    border-radius: 18px;
  }

  .hero-photo--left {
    width: 135px;
    max-width: 39%;

    border-radius: 16px;
  }


  /* Decoration */

  .hero-deco--circle {
    right: 28px;
    top: 20px;

    width: 170px;
    height: 170px;
  }

  .hero-deco--block {
    left: 58px;
    bottom: 16px;

    width: 82px;
    height: 110px;

    border-radius: 20px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

  .main-hero {
    padding: 34px 0 36px;
  }

  .main-hero__inner {
    width: calc(100% - 28px);
  }

  .main-hero__title {
    font-size: 31px;
    line-height: 1.45;
  }

  .main-hero__sub {
    font-size: 16px;
  }

  .main-hero__desc {
    font-size: 13px;
  }

  .main-hero__visual {
    min-height: 255px;

    margin-top: 24px;
  }

  .hero-photo--main {
    width: 190px;
    max-width: 68%;
  }

  .hero-photo--left {
    width: 110px;
    max-width: 38%;
  }

  .hero-deco--circle {
    right: 20px;

    width: 145px;
    height: 145px;
  }

  .hero-deco--block {
    left: 45px;

    width: 70px;
    height: 92px;
  }

}