/* ---------------------------------------------------- */
/* -------------------- 1216px 이상 -------------------- */

/* header, footer */
/* 로그인, 회원가입, 마이페이지 */
/* 기관소개 : KACE연합, 회장 인사말, 비전과 사명, 조직현황, 오시는 길 */
/* 주요사업 : 부모, 인문, 청소년, 학교안전, 도서관, 시민 */
/* 교육신청 : 연합프로그램, 지역프로그램, 교육의뢰, 평생교육사 실습신청 */
/* 회원학습 동아리 : CMS 신청, 학습동아리 */
/* 커뮤니티 : 공지사항, 활동소식, 뉴스레터 */
/* 지역협의회 */
/* 개인정보처리방침, mailform, 404, 검색결과 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Pretendard Variable, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
;
}
li {
  list-style-type: none;
}
a {
  color: inherit;
  text-decoration: none;
}
a[title='사용자 프로필 보기'] {
  pointer-events: none;
}
body {
  margin: 0 !important;
}
main {
  position: relative;
}
.clear {
  clear: both;
}

.inner {
  max-width: 1216px;
  width: 90%;
  margin: auto;
}
.inner-article {
  width: 90%;
  max-width: 1008px;
  margin: auto;
}
.inner-small {
  width: 90%;
  max-width: 800px;
  margin: auto;
}

.pc {
  display: block;
}
.mobile {
  display: none;
}
.show {
  opacity: 1 !important;
  visibility: visible !important;
}
.show-transition {
  opacity: 1 !important;
  visibility: visible !important;
  transition: all 0.4s;
}
.hide {
  opacity: 0 !important;
  visibility: hidden !important;
}
.hide-transition {
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.4s;
}

body.dim .layout-container::after {
  content: '';
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  background-color: rgba(52, 58, 64, 0.8);
  z-index: 50;
}

/* ------------------------------------------------------------- */
/* -------------------- HEADER -------------------- */
#header {
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #dee2e6;
  position: fixed;
  top: 0;
  z-index: 100;
}
#header.scrolled {
  box-shadow: 0 2px 2px rgba(0, 0, 0, .05);
  transition: all 0.4s;
}
body.search-open #header {
  box-shadow: none;
}

/* ----- TOP ------ */
#header .top {
  background-color: #1a7ec0;
  height: 48px;
  display: flex;
  align-items: center;
}
#header .top ul:not(.contextual-links) {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#header .top ul li {
  display: flex;
  align-items: center;
}
#header .top ul li:not(:last-child)::after {
  content: '';
  width: 1px;
  height: 16px;
  background-color: #fff;
  display: inline-block;
  margin: 0 16px;
  opacity: 0.2;
}
#header .top a {
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  transition: all 0.4s;
}
#header .top a:hover {
  opacity: 0.6;
  transition: all 0.4s;
}

/* ----- LOGO ----- */
#header #block-kace-branding {
  height: 32px;
  width: auto;
  display: inline-block;
}
#header #block-kace-branding img {
  width: auto;
  width: 120px;
  height: 100%;
}
#header #block-kace-branding a {
  display: flex;
  align-items: center;
}
#header #block-kace-branding .bname {
  font-size: 24px;
  padding-top: 4px;
  line-height: 1.1;
  color: #005099;
  display: block;
  white-space: nowrap;
}

/* ----- BOTTOM ----- */
#header .bottom,
#header .bottom .inner > div {
  width: 100%;
  height: 100%;
}
#header .bottom .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
#header .bottom .inner > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header #block-kace-main-menu {
  display: inline-block;
  white-space: nowrap;
}
#header #block-kace-main-menu > ul:not(.contextual-links) {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#header #block-kace-main-menu > ul > li {
  margin-right: 48px;
  height: 88px;
  display: flex;
  align-items: center;
  position: relative;
}
#header #block-kace-main-menu > ul > li > a {
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  color: #343a40;
}
#header #block-kace-main-menu > ul > li > a:hover {
  color: #1a7ec0;
  transition: all 0.4s;
}
.border {
  border: 1px solid red;
}
@media all and (min-width: 1216px) {
  #header #block-kace-main-menu > ul > li:hover ul {
    visibility: visible;
    opacity: 1;
    transition: all 0.4s;
  }
}
#header #block-kace-main-menu > ul > li > ul {
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s;
  position: absolute;
  top: 88px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  background-color: #fff;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
  padding: 24px 0;
  text-align: center;
}
#header #block-kace-main-menu > ul > li > ul > li {
  margin-right: 0;
}
#header #block-kace-main-menu > ul > li > ul > li:not(:last-child) {
  margin-bottom: 8px;
}
#header #block-kace-main-menu > ul > li > ul > li > a {
  font-size: 14px;
  line-height: 24px;
  font-weight: normal;
  color: #343a40;
}
#header #block-kace-main-menu > ul > li > ul > li > a:hover {
  color: #343a40;
  text-decoration: underline;
}
/* --- 지도자 실무자 --- */
#header .bottom .mobile {
  /*display: none !important;*/
  opacity: 0;
  visibility: hidden;
  width: 0 !important;
}

/* ----- SEARCH ----- */
#header .bottom .inner span {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .bottom .gnb-search {
  width: 24px;
  height: 24px;
  cursor: pointer;
}
#header .bottom .gnb-search img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
body.search-open .gnb-search img {
  display: none;
}
body.search-open .gnb-search {
  background: url('/themes/custom/kace/img/close-search.svg') no-repeat 50% 50%;
  background-size: 80%;
}

/* ----- SEARCH-dd ----- */
.gnb-search-dd {
  width: 100%;
  padding: 64px 0;
  padding-bottom: 80px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: 90;
  transform: translateY(-300px);
  transition: all 0.4s;
}
body.search-open .gnb-search-dd {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: all 0.4s;
}
.gnb-search-dd h2 {
  display: none;
}
.gnb-search-dd form {
  max-width: 448px;
  width: 90%;
  margin: auto;
  position: relative;
}
.gnb-search-dd input[type='search'] {
  width: 100%;
  height: 56px;
  border: none;
  border-bottom: 2px solid #1a7ec0;
  border-radius: 0;
  padding-right: 56px;
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  color: #1a7ec0;
}
.gnb-search-dd input[type='search']::placeholder {
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  color: #868e96;
}
.gnb-search-dd .form-submit {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: none;
  padding: 0;
  text-indent: -9999px;
  background: url('/themes/custom/kace/img/Search.svg') no-repeat 50% 50%;
  background-size: contain;
  cursor: pointer;
}

.gnb-search-dd .info {
  position: absolute;
  right: calc(50% - 608px);
  bottom: 16px;
  display: inline;
  text-align: right;
  font-size: 14px;
  color: #868e96;
  cursor: pointer;
  transition: color 0.4s;
}
body.search-open .gnb-search-dd .info:hover {
  color: #1a7ec0;
  transition: color 0.4s;
}
.gnb-search-dd .info-dd {
  display: none;
}
body.search-open .gnb-search-dd .info-dd {
  width: 100%;
  height: auto;
  display: inline-block;
  border: none;
  padding: 16px 5%;
  font-size: 14px;
  line-height: 24px;
  color: #868e96;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
  margin-top: 16px;
}

/* -------------------- FOOTER -------------------- */
#footer {
  background-color: #fff;
  padding: 56px 0 88px;
  border-top: 1px solid #dee2e6;
  margin-top: 120px;
}
#footer img {
  width: auto;
  width: 120px;
  height: 100%;
}
#footer .logo {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
#footer .bname {
  font-size: 24px;
  padding-top: 4px;
  line-height: 1.1;
  color: #005099;
  display: block;
  white-space: nowrap;
}

#footer ul {
  display: flex;
  align-items: center;
}
#footer ul li {
  display: flex;
  align-items: center;
}
#footer ul li:not(:last-child)::after {
  content: '';
  width: 1px;
  height: 16px;
  background-color: #dee2e6;
  display: inline-block;
  margin: 0 14px;
}
#footer ul li a {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  color: #343a40;
}

#footer address {
  margin: 16px 0;
  font-style: normal;
  font-size: 14px;
  line-height: 24px;
  color: #495057;
}
#footer address a {
  color: #495057 !important;
}

#footer p {
  font-size: 14px;
  line-height: 24px;
  color: #868e96;
}

/* -------------------- SIDE -------------------- */
.layout-container {
  position: relative;
}
#top-btn {
  width: 48px;
  height: 48px;
  position: fixed;
  left: calc(50% + 608px);
  bottom: 5%;
  z-index: 13;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(186, 199, 213, 0.5);
  color: #343a40;
  cursor: pointer;
}
@media all and (max-width: 1264px) {
  #top-btn {
    left: calc(50% + 45% - 48px );
  }
}
#top-btn .top-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
#top-btn .line1 {
  width: 1px;
  height: 18px;
  background-color: #343a40;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#top-btn .line2 {
  width: 12px;
  height: 12px;
  border-bottom: 1px solid #343a40;
  border-right: 1px solid #343a40;
  position: absolute;
  top: 23px;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-135deg);
}

/* ------------------------------------------------------------- */
/* -------------------- 로그인 -------------------- */
form.user-login-form {
  border-top: 4px solid #343a40;
  width: 90%;
  max-width: 520px;
  margin: auto;
}

form.user-login-form .js-form-item {
  border-bottom: 1px solid #dee2e6;
  padding: 16px;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 0 24px;
}
form.user-login-form .description {
  display: none;
}

form.user-login-form label {
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  color: #343a40;
  margin-top: 8px;
  display: flex;
}
form.user-login-form input {
  width: 100%;
}

#edit-find {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
}
form.user-login-form #edit-find label {
  font-size: 14px;
  line-height: 24px;
  color: #495057;
}
#edit-find #edit-right a {
  font-weight: bold;
  font-size: 14px;
  line-height: 24px;
  color: #495057;
}

#edit-find #edit-right {
  display: flex;
}
#edit-find #edit-right a {
  display: flex;
  align-items: center;
}
#edit-find #edit-right a:not(:last-child)::after {
  content: '';
  width: 1px;
  height: 16px;
  background-color: #dee2e6;
  display: inline-block;
  margin: 0 8px;
}
#edit-find #edit-right a:hover {
  text-decoration: underline;
}

form.user-login-form input[type='submit'] {
  display: block;
  width: auto;
  margin: 32px auto 0;
  padding: 12px 64px;
  border: 1px solid #1a7ec0;
  border-radius: 4px;
  background-color: #fff;
  color: #1a7ec0;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  cursor: pointer;
}
form.user-login-form input[type='submit']:hover {
  background-color: #1a7ec0;
  color: #fff;
  transition: all 0.4s;
}
form.user-login-form p, form.user-pass p {
  grid-row: 1/2;
  border-bottom: 1px solid #dee2e6;
  display: block;
  padding: 24px;
  font-size: 18px;
  line-height: 24px;
  color: #495057;
  text-align: center;
  word-break: keep-all;
}

/* ----- 비밀번호 재설정 ----- */
form.user-pass {
  display: grid;
  border-top: 4px solid #343a40;
  width: 90%;
  max-width: 592px;
  margin: auto;
}
form.user-pass {
  grid-row: 1/2;
  border-bottom: 1px solid #dee2e6;
  display: block;
  padding: 24px;
  font-size: 18px;
  line-height: 24px;
  color: #495057;
  text-align: center;
  word-break: keep-all;
}
form.user-pass .js-form-item {
  border-bottom: 1px solid #dee2e6;
  padding: 16px;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 0 24px;
}

form.user-pass label {
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  margin-top: 8px;
  color: #343a40;
  display: block;
}
form.user-pass input[type='text'] {
  width: 100%;
  height: 42px;
}

form.user-pass input.form-submit {
  display: block;
  width: auto;
  margin: 32px auto 0;
  padding: 12px 64px;
  border: 1px solid #1a7ec0;
  border-radius: 4px;
  background-color: #fff;
  color: #1a7ec0;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  cursor: pointer;
}
form.user-pass input.form-submit:hover {
  background-color: #1a7ec0;
  color: #fff;
  transition: all 0.4s;
}
form.user-pass-reset {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
form.user-pass-reset em {
  font-style: normal;
  color: #0a65aa;
  font-weight: bold;
}
form.user-pass-reset .form-actions {
  display: flex;
  margin: 2rem 0 3rem;
  align-items: center;
  justify-content: center;
}
form.user-pass-reset .form-actions input.form-submit {
  font-size: 1.2rem;
  -webkit-appearance: none;
  padding: 0.8rem 2rem;
  cursor: pointer;
  background-color: #0a65aa;
  color: #fff;
  border: none;
}
form.user-pass-reset .form-actions input.form-submit:hover {
  background-color: #0c97ed;
  color: #fff;
}

/* -------------------- 회원가입 -------------------- */
form.user-register-form {
  border-top: 4px solid #343a40;
  width: 90%;
  max-width: 592px;
  margin: auto;
}
form.user-register-form .js-form-item {
  border-bottom: 1px solid #dee2e6;
  padding: 16px;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 16px 24px;
}

form.user-register-form .select .error-message {
  display: none;
}

.field--type-datetime {
  border-bottom: 1px solid #dee2e6;
  padding: 16px;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 16px 24px;
}
form.user-register-form .js-form-type-date {
  display: block !important;
  padding: 0 !important;
  border-bottom: none !important;
}
.password-confirm-message {
  grid-column: 2/3;
  font-size: 14px;
  line-height: 24px;
  color: #868e96;
  margin-top: 8px;
}

form.user-register-form label {
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  color: #343a40;
  margin-top: 8px;
  display: block;
}
form.user-register-form input {
  width: 100%;
}

form.user-register-form summary {
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  color: #343a40;
  padding: 16px 16px 0 16px;
  cursor: pointer;
}

.agreement {
  background-color: #f0f4f8;
  padding: 16px;
}
.agreement label {
  font-size: 14px !important;
  line-height: 24px !important;
  color: #868e96 !important;
  display: flex;
  align-items: center;
}

form.user-register-form input[value='회원가입'] {
  display: block;
  width: auto;
  margin: 32px auto 0;
  padding: 12px 64px;
  border: 1px solid #1a7ec0;
  border-radius: 4px;
  background-color: #fff;
  color: #1a7ec0;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  cursor: pointer;
}
form.user-register-form input[value='회원가입']:hover {
  background-color: #1a7ec0;
  color: #fff;
  transition: all 0.4s;
}

.js-form-type-checkbox label {
  margin-top: 0 !important;
}

/* -------------------- 마이페이지 -------------------- */
#block-account-sub-menu {
  border-bottom: 1px solid #dee2e6;
  width: 100%;
  max-width: 1216px;
  margin: 0 auto 96px;
}
#block-account-sub-menu ul:not(.contextual-links) {
  display: flex;
  align-items: center;
  justify-content: center;
}
#block-account-sub-menu ul:not(.contextual-links) li {
  width: 100%;
  max-width: 168px;
}
#block-account-sub-menu ul:not(.contextual-links) li a {
  width: 100%;
  padding: 16px 0;
  text-align: center;
  display: inline-block;
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  color: #868e96;
  position: relative;
  transition: all 0.4s;
}
#block-account-sub-menu ul:not(.contextual-links) li a:hover {
  color: #1a7ec0;
  transition: all 0.4s;
}
#block-account-sub-menu ul:not(.contextual-links) li a.is-active {
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  color: #1a7ec0;
}
#block-account-sub-menu ul:not(.contextual-links) li a.is-active::after {
  content: '';
  width: 100%;
  height: 2px;
  background-color: #1a7ec0;
  position: absolute;
  bottom: -1px;
  left: 0;
}

/* ---------- 내 정보 ---------- */
form.user-form {
  width: 100%;
  max-width: 592px;
  margin: auto;
  display: grid;
}
form.user-form #edit-path-wrapper {
  grid-row: 6/7;
}
form.user-form .js-form-item {
  border-bottom: 1px solid #dee2e6;
  padding: 16px;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 0 24px;
}

form.user-form #edit-pass {
  grid-template-columns: 1fr;
  padding: 0;
  border: none;
}
form.user-form #edit-pass .js-form-item:first-child {
  border-bottom: none;
  padding: 16px 16px 0 16px;
}
form.user-form #edit-pass .js-form-item:nth-child(2) {
  border-top: 1px solid #dee2e6;
}
form.user-form #edit-pass--description {
  grid-column: 1/2;
  grid-row: 2/3;
  width: 66.66%;
  margin-left: 33.33%;
  margin-top: 8px;
  padding-left: 24px;
  padding-bottom: 16px;
}

#edit-field-birth-0-value .js-form-item {
  display: block;
  padding: 0;
  border-bottom: none;
}

form.user-form:not(.user-register-form) #edit-field-terms-wrapper,
form.user-form:not(.user-register-form) #edit-field-policy-wrapper {
  display: none;
}

form.user-form .form-item-current-pass {
  /*display: none;*/
}

form.user-form label {
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  color: #343a40;
  margin-top: 8px;
  display: block;
}

form.user-form input {
  width: 100%;
}
#edit-status--wrapper,
#edit-roles--wrapper {
  display: none;
}

form.user-form input.js-form-submit {
  display: block;
  width: auto;
  margin: 32px auto 0;
  padding: 12px 64px;
  border: 1px solid #1a7ec0;
  border-radius: 4px;
  background-color: #fff;
  color: #1a7ec0;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  cursor: pointer;
}
form.user-form input.js-form-submit:hover {
  background-color: #1a7ec0;
  color: #fff;
  transition: all 0.4s;
}

/* ---------- 내 신청내역 ---------- */
#mypage.views-element-container header form {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#mypage.views-element-container header .select-wrap {
  position: initial;
}

#mypage.views-element-container article .teaser {
  border-bottom: 1px solid #dee2e6;
  padding: 32px 24px;
  transition: background-color 0.4s;
}
#mypage.views-element-container article .teaser:hover {
  background-color: rgba(222, 226, 230, 0.2);
  transition: background-color 0.4s;
}
#mypage.views-element-container article .teaser .tags {
  color: #1a7ec0;
  font-weight: bold;
}
#mypage.views-element-container article .teaser .status {
  position: absolute;
  background: #f6f6f6;
  border-radius: 0 0 5px 5px;
  padding: .4rem 1rem;
  font-size: .9rem;
  right: 24px;
  top: 0;
  color: #666;
  font-weight: bold;
}
#mypage.views-element-container article .teaser .status.completed {
  background: #c7e9ff;
  color: #1a7ec0;
}

/* ------------------------------- 기관소개 ------------------------------ */
/* -------------------- KACE 연합 -------------------- */
#about section:not(:last-child) {
  margin-bottom: 120px;
}

#about section:nth-child(1) {
  text-align: center;
}
#about section:nth-child(1) p {
  font-family: Poppins;
}
#about section:nth-child(1) h2 {
  margin-top: 16px;
  word-break: keep-all;
}
#about section:nth-child(1) img {
  width: 90%;
  max-width: calc( 50% - 48px);
  margin-top: 72px;
}

#about section:nth-child(2) img {
  width: 100%;
  height: auto;
}
#about section:nth-child(2) .grid_2-1 {
  margin-top: 64px;
}
#about section:nth-child(2) .grid_2-1 p {
  width: calc( (100% * 7 / 8) - 32px );
  word-break: keep-all;
}

/* -------------------- 회장 인사말 -------------------- */
.greetings {
  display: grid;
  grid-template-columns: 5fr 7fr;
  grid-gap: 32px;
}

.greetings section:nth-child(1) img {
  width: 100%;
  height: auto;
}

.greetings section:nth-child(2) {
  margin-top: 40px;
}
.greetings section:nth-child(2) h2 {
  margin: 0 0 0 72px;
  word-break: keep-all;
}
.greetings section:nth-child(2) > p {
  margin: 24px 0 16px 72px;
  word-break: keep-all;
}

.greetings section:nth-child(3) {
  grid-column-start: 2;
}
.greetings section:nth-child(3) .sign {
  margin-top: 16px;
  text-align: right;
}
.greetings section:nth-child(3) .sign p strong {
  margin-left: 14px;
}
.greetings section:nth-child(3) .sign img {
  margin-top: 16px;
  max-width: 155px;
}

.greetings_flex h2 {
  margin-bottom: 24px;
}

.greetings_flex section .sign {
  display: flex;
  justify-content: end;
  line-height: 24px;
}

.greetings_flex section .sign p {
  font-weight: 400;
  line-height: 24px;
}

/* -------------------- 현황 -------------------- */

#assets .inner {
  text-align: center;
}

#assets .inner p {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}

#assets .chart {
  display: flex;
  justify-content: center;
  margin-top: 96px;
}

#assets .chart ul {
  width: 1216px;
  border-top: 1px solid #343a40;
}

#assets .chart li {
  display: flex;
  padding: 24px;
  border-bottom: 1px solid #dee2e6;
}

#assets .chart .date {
  min-width: 184px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #495057;
}

#assets .chart .content {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #495057;
}

/* -------------------- 비전과 사명 -------------------- */
#vision h2 {
  text-align: center;
  word-break: keep-all;
  margin-bottom: 64px;
}

#vision section {
  display: grid;
  grid-template-columns: 1fr 5fr;
  grid-gap: 32px;
  padding: 64px 0;
}
#vision section:nth-child(2) {
  padding-top: 0;
}
#vision section:last-child {
  padding-bottom: 0;
}
#vision section:not(:last-child) {
  border-bottom: 1px solid #dee2e6;
}

#vision section:nth-child(3) > div {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
#vision section:nth-child(3) p {
  font-size: 16px;
  line-height: 24px;
  color: #868e96;
}
#vision section:nth-child(3) b {
  font-size: 18px;
  line-height: 24px;
}
#vision section:nth-child(3) .circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #1a7ec0;
  margin: 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
#vision section:nth-child(3) .circle div[class*='line'] {
  width: 16px;
  height: 1px;
  background-color: #fff;
  position: absolute;
}
#vision section:nth-child(3) .circle .line2 {
  transform: rotate(90deg);
}

#vision section:nth-child(4) h3 {
  display: grid;
  grid-template-rows: 120px 1fr;
}
#vision section:nth-child(4) dl {
  width: 100%;
  height: 100%;
  align-items: flex-start;
  justify-content: space-between;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 16px;
}
#vision section:nth-child(4) dl dd {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: 120px 1fr;
}
#vision section:nth-child(4) .box {
  border: 1px solid #7ec6f5;
  background-color: #fff;
  position: relative;
  z-index: 1;
}
#vision section:nth-child(4) .box b {
  font-size: 16px;
  line-height: 24px;
}
#vision section:nth-child(4) .box::after {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  border: 2px solid #fff;
  background-color: #1a7ec0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}
#vision section:nth-child(4) dl dd > div:nth-child(1) {
  position: relative;
}
#vision section:nth-child(4) .line {
  display: block;
  width: 1px;
  height: 100%;
  background-color: #dee2e6;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
#vision section:nth-child(4) .box2 {
  position: relative;
}
#vision section:nth-child(4) .box2::after {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  border: 2px solid #fff;
  background-color: #1a7ec0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
#vision section:nth-child(4) .box2 strong {
  font-size: 16px;
  line-height: 24px;
  color: #343a40;
}
#vision section:nth-child(4) ul {
  margin-top: 16px;
}
#vision section:nth-child(4) ul li {
  position: relative;
  padding-left: 12px;
  font-size: 14px;
  line-height: 24px;
  color: #495057;
}
#vision section:nth-child(4) ul li:not(:last-child) {
  margin-bottom: 8px;
}
#vision section:nth-child(4) ul li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #1a7ec0;
  position: absolute;
  top: 10px;
  left: 0;
}

#vision section:nth-child(5) > div {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 16px;
}
#vision section:nth-child(5) .box3 {
  display: flex;
  align-items: center;
  justify-content: center;
}
#vision section:nth-child(5) .box3 strong {
  font-size: 16px;
  line-height: 24px;
  color: #343a40;
}

/* -------------------- 조직도 -------------------- */
#organization h2 {
  text-align: center;
  margin-bottom: 64px;
}

#organization section svg {
  width: 100%;
  margin: 0 auto;
}

#organization section .cheonan {
  width: 100%;
  margin: 0 auto;
  transform: translateX(-72.555555555px);
}

/* -------------------- 오시는 길 -------------------- */
#contact .root_daum_roughmap {
  width: 100% !important;
  height: 480px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 48px;
}
#contact .root_daum_roughmap .wrap_map {
  width: 100% !important;
  height: 100% !important;
}
#contact .root_daum_roughmap .wrap_controllers {
  display: none;
}
#contact section:nth-child(2) .table {
  margin-top: 32px;
}


/* ------------------------------- 주요사업 ------------------------------ */
/* -------------------- 공통 -------------------- */
.business {
  margin-top: 120px;
}

.business section:not(:last-child) {
  margin-bottom: 96px;
}
.business .grid_3:not(:last-child) {
  margin-bottom: 48px;
}
.business h3 {
  margin-bottom: 48px;
}
.business h4 {
  margin-bottom: 24px;
}
.business section p {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  color: #495057;
}
.business .desc {
  font-size: 14px;
  line-height: 24px;
  color: #495057;
  margin-top: 8px;
  display: block;
  word-break: keep-all;
}


/* ------------------------------- 교육신청 ------------------------------ */
/* -------------------- 공통 -------------------- */
body.page-node-type-program #block-kace-page-title,
body.page-node-type-local-program #block-kace-page-title,
body.page-node-type-notice #block-kace-page-title,
body.page-node-type-article #block-kace-page-title,
body.page-node-type-newsletter #block-kace-page-title,
body.page-node-type-workshop #block-kace-page-title {
  display: none;
}

/* -------------------- 연합프로그램 -------------------- */

/* -------------------- 지역협의회 -------------------- */

/* -------------------- 교육의뢰 -------------------- */
.request-title {
  margin-bottom: 96px;
}
.request-title h2 {
  font-weight: normal;
  text-align: center;
  word-break: keep-all;
}

.request section:not(:last-child) {
  margin-bottom: 64px;
}
.request h2 {
  margin-bottom: 24px;
}
.request h3 {
  margin-bottom: 32px;
  position: relative;
}
.request h3 span {
  padding-right: 24px;
  display: inline-block;
  position: relative;
  background-color: #fff;
  word-break: keep-all;
  z-index: 1;
}
.request h3::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #343a40;
  position: absolute;
  top: 50%;
}
.request p {
  line-height: 24px;
  color: #495057;
  word-break: keep-all;
}
.request p a {
  color: #1a7ec0;
}

.request .grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 32px;
}
.request img {
  width: 100%;
}

.request .btn-wrap {
  margin: 64px auto 0;
  text-align: center;
}
.request .grid_2 .btn-blue {
  margin-top: 48px;
}

/* -------------------- 평생교육사 -------------------- */
/* ----- webform ----- */
body.page-node-type-life-program #block-kace-page-title h1 {
  font-size: 32px;
  line-height: 40px;
}
body.page-node-type-life-program article form fieldset {
  border: none;
}
#edit-applicant {
  margin-bottom: 64px;
  border-bottom: 2px solid #868e96;
}
body.page-node-type-life-program article form > fieldset > legend {
  font-weight: bold;
  font-size: 24px;
  line-height: 32px;
  color: #343a40;
  border-bottom: 4px solid #343a40;
  width: 100%;
  padding-bottom: 12px;
}
body.page-node-type-life-program article form fieldset > .fieldset-wrapper > .js-form-item {
  border-bottom: 1px solid #dee2e6;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 4fr;
  grid-gap: 0 32px;
}
/* label */
body.page-node-type-life-program article form label {
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  color: #343a40;
  margin-top: 8px;
  word-break: keep-all;
}
body.page-node-type-life-program article form input[type='text'],
body.page-node-type-life-program article form input[type='email'] {
  width: 50%;
}
/* gender */
body.page-node-type-life-program article form #edit-gender {
  width: 25%;
}
/* age */
body.page-node-type-life-program article form .js-form-item-age {
  display: block !important;
}
body.page-node-type-life-program article form label[for='edit-age'] {
  display: block;
  width: calc(100%/5);
  margin-right: 26px;
  float: left;
}
.field-prefix,
.field-suffix {
  font-size: 14px;
  line-height: 24px;
  color: #495057;
}
body.page-node-type-life-program article form input#edit-age {
  width: 48px;
  margin: 0 8px;
  padding: 8px;
  text-align: right;
}
body.page-node-type-life-program article form input#edit-age::-webkit-outer-spin-button,
body.page-node-type-life-program article form input#edit-age::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#edit-age-error {
  display: inline;
  position: absolute;
  left: calc(100%/5 + 26px);
  margin-left: 126.26px;
}
/* 실습형태 */
body.page-node-type-life-program article form #edit-practice-type--wrapper {
  display: block;
}
body.page-node-type-life-program article form #edit-practice-type--wrapper > legend {
  width: calc( 100%/5 + 32px );
  float: left;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  color: #343a40;
}
body.page-node-type-life-program article form #edit-practice-type {
  display: flex;
  align-items: center;
}
body.page-node-type-life-program article form #edit-practice-type > .js-form-item:first-child {
  margin-right: 32px;
}
body.page-node-type-life-program article form .js-form-type-checkbox label.option {
  font-weight: normal;
}

body.page-node-type-life-program article form input[type=date] {
  position: relative;
  width: 25%;
}
/* 동의 */
body.page-node-type-life-program article form #edit-agreement {
  background-color: #f0f4f8;
  padding: 24px 16px;
}
body.page-node-type-life-program article form #edit-agreement .description {
  margin-top: 0;
}
body.page-node-type-life-program article form #edit-agreement-options {
  display: flex;
  align-items: center;
  margin-top: 16px;
}
body.page-node-type-life-program article form #edit-agreement #edit-agreement--description {
  font-weight: bold;
  font-size: 14px;
  line-height: 24px;
  color: #343a40;
}
body.page-node-type-life-program article form #edit-agreement p {
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  color: #868e96;
  margin-top: 16px;
}

body.page-node-type-life-program article form #edit-actions {
  margin-top: 32px;
  text-align: center;
}
body.page-node-type-life-program article form #edit-actions input[type='submit'] {
  width: 100%;
  max-width: 192px;
  margin: 32px auto 0;
  padding: 12px 64px;
  border: 1px solid #1a7ec0;
  border-radius: 4px;
  background-color: #fff;
  color: #1a7ec0;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  display: inline-block;
  cursor: pointer;
  transition: all 0.4s;
}
body.page-node-type-life-program article form #edit-actions input[type='submit']:hover {
  background-color: #1a7ec0;
  color: #fff;
  transition: all 0.4s;
}

/* ------------------------------- 회원·학습동아리 ------------------------------ */
/* -------------------- CMS 회원신청 -------------------- */
#cms {
  word-break: keep-all;
}
#cms .title {
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 96px;
  margin-bottom: 72px;
}
#cms .title h2 {
  margin-bottom: 24px;
  text-align: center;
}
#cms .title p {
  line-height: 24px;
  text-align: center;
}

#cms section h2 {
  margin-bottom: 24px;
}
#cms section .box-blue {
  margin-right: 8px;
}
#cms section .btn-blue {
  margin: 24px 0 48px;
}
#cms section p a {
  color: #1a7ec0;
}
#cms section p a:hover {
  text-decoration: underline;
}

#cms img {
  width: 100%;
}

/* -------------------- 학습동아리 -------------------- */
#learning-club {
  word-break: keep-all;
}
#learning-club .title {
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 96px;
  margin-bottom: 72px;
}
#learning-club .title h2 {
  font-weight: normal;
  text-align: center;
}

#learning-club section h2 {
  margin-bottom: 24px;
}
#learning-club section .btn-blue {
  margin-top: 48px;
}

#learning-club section img {
  width: 100%;
}


/* ------------------------------- 커뮤니티 ------------------------------ */
/* -------------------- 공지사항 -------------------- */

/* -------------------- 활동소식 -------------------- */

/* -------------------- 뉴스레터 -------------------- */


/* ------------------------------- 지도자 네트워크 ------------------------------ */
/* -------------------- 증명서 신청 -------------------- */
#request-certificate {
  word-break: keep-all;
}
#request-certificate .title {
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 96px;
  margin-bottom: 72px;
  text-align: center;
}
#request-certificate .title h2 {
  font-weight: normal;
}

#request-certificate section h2 {
  margin-bottom: 24px;
}
#request-certificate section .btn-blue {
  margin-top: 48px;
}

#request-certificate section img {
  width: 100%;
}

/* -------------------- 워크숍 신청 -------------------- */


/* ------------------------------- 실무자 네트워크 ------------------------------ */
body.path-request-textbook h3 {
  padding-bottom: 12px;
}
#staff-numbering.views-element-container header .apply-btn-wrap {
  text-align: center;
  margin-bottom: 64px;
}

/* -------------------- 수료번호 -------------------- */
/* ----- header ----- */
#staff-numbering header {
  padding-bottom: 48px;
}
#staff-numbering header > p {
  margin-bottom: 40px;
  text-align: center;
  word-break: keep-all;
}

#staff-numbering header .title-line {
  position: relative;
  margin-bottom: 48px;
}
#staff-numbering header .title-line h3 {
  background-color: #fff;
  display: inline-block;
  padding-right: 24px;
  position: relative;
  z-index: 1;
}
#staff-numbering header .title-line::after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #343a40;
  position: absolute;
  top: 50%;
  left: 0;
}
#staff-numbering header h3::after {
  content: '';
  display: block;
  clear: both;
}

#staff-numbering .box4 {
  height: auto;
  border-bottom: none;
  padding: 24px;
  color: #495057;
  flex-direction: column;
  margin-bottom: 64px;
}
#staff-numbering .box4 dl:first-child {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 16px;
}

#staff-numbering form {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#staff-numbering form .right {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 8px;
}
#staff-numbering form .select-wrap {
  margin-right: 8px;
  width: 100%;
  position: relative;
  right: initial;
  bottom: initial;
}
#staff-numbering form .select .error-message {
  display: none;
}

#staff-numbering form .search-wrap {
  display: flex;
  justify-content: space-between;
}
#staff-numbering form .form-item-keys {
  position: initial;
  width: calc(100% - 40px);
}
#staff-numbering form .form-item-keys input[type='text'] {
  width: 100%;
  position: initial;
}
#staff-numbering form .form-submit {
  position: initial;
}

/* ----- popup ----- */
#staff-numbering .popup-wrap .popup {
  max-width: 592px;
}
#staff-numbering .popup-wrap .popup .top {
  border-bottom: none;
  border-radius: 0;
  max-width: 592px;
}
#staff-numbering .popup-wrap .popup .bottom {
  border-radius: 0;
}

#staff-numbering .popup-wrap .popup .bottom dl {
  font-size: 16px;
  line-height: 24px;
  word-break: keep-all;
}
#staff-numbering .popup-wrap .popup .bottom dl:not(:last-child) {
  margin-bottom: 16px;
}
#staff-numbering .popup-wrap .popup .bottom dl dt {
  font-weight: bold;
  color: #343a40;
}
#staff-numbering .popup-wrap .popup .bottom dl dd {
  color: #495057;
}
#staff-numbering .popup-wrap .popup .bottom dl span:not(:last-child)::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 12px;
  background-color: #dee2e6;
  margin: 0 8px;
}

/* -------------------- 수료번호 신청 폼 -------------------- */
#branch-numbering-form {
  width: 90%;
  max-width: 1008px;
  margin: auto;
}
#branch-numbering-form h3 {
  font-weight: bold;
  color: #343a40;
  border-bottom: 4px solid #343a40;
  width: 100%;
  padding-bottom: 12px;
}
#branch-numbering-form > fieldset {
  border: none;
}
/* list */
#branch-numbering-form > .js-form-item,
#branch-numbering-form > fieldset,
#branch-numbering-form div[id*='ajax-'] > .js-form-item {
  display: grid;
  grid-template-columns: 1fr 4fr;
  grid-gap: 0 32px;
  border-bottom: 1px solid #dee2e6;
  padding: 16px;
}
#branch-numbering-form > fieldset legend {
  float: left;
}
/* label */
#branch-numbering-form label {
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  color: #343a40;
  margin-top: 8px;
  word-break: keep-all;
}
#branch-numbering-form > fieldset > legend {
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  color: #343a40;
  margin-top: 8px;
  word-break: keep-all;
}
#branch-numbering-form #wrapper-numbering-type legend::after,
#branch-numbering-form #edit-date-group legend::after {
  content: '*';
  color: #1a7ec0;
  margin: 0 0 0 4px;
}
/* input */
#branch-numbering-form #wrapper-numbering-type .fieldset-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 8px;
}
#branch-numbering-form .form-item-year .select-wrap,
#branch-numbering-form .js-form-type-date,
#branch-numbering-form input[type='number'] {
  width: 25%;
}
#branch-numbering-form input[type='text'] {
  width: 50%;
}

/* 강의시작일 */
#branch-numbering-form #edit-date-group .fieldset-wrapper {
  display: flex;
}
#branch-numbering-form .form-item-date-start {
  margin-right: 8px;
}
/* 사업종류 */
#branch-numbering-form #edit-type--wrapper legend {
  margin-top: 0;
}
#branch-numbering-form #edit-type {
  display: flex;
}
/* 참가자 명단 */
#branch-numbering-form div[id*='ajax-'] .filebox {
  width: 50%;
}
/* 신청하기 */
#branch-numbering-form .form-actions {
  text-align: center;
}
#branch-numbering-form #edit-submit {
  width: 100%;
  max-width: 192px;
  margin: 32px auto 0;
  padding: 12px 64px;
  border: 1px solid #1a7ec0;
  border-radius: 4px;
  background-color: #fff;
  color: #1a7ec0;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  display: inline-block;
  cursor: pointer;
  transition: all 0.4s;
}
#branch-numbering-form #edit-submit:hover {
  background-color: #1a7ec0;
  color: #fff;
  transition: all 0.4s;
}

#branch-numbering-form .select-wrap .help-block,
#branch-numbering-form .select-wrap .error-message {
  display: none !important;
}


/* -------------------- 교재신청 -------------------- */
#staff-textbook {
  position: relative;
}
#staff-textbook .apply {
  padding-top: 2rem;
  text-align: right;
}
#staff-textbook .apply .btn-blue {
  padding: 12px 24px;
}

.textbook-view .article header .tags {
  text-align: right;
}
.textbook-view .article.type1 header {
  padding-bottom: 12px;
  margin-bottom: 0;
}
.textbook-view main {
  border-top: solid 2px #333;
}
.textbook-view main dl {
  border-bottom: 1px solid #dee2e6;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 4fr;
  grid-gap: 0 32px;
}
.textbook-view main dl dt {
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  color: #343a40;
}
.textbook-view main dl dd {
  font-size: 18px;
  line-height: 24px;
  color: #495057;
}
.textbook-view .comment {
  background: #F0F4F8;
  font-size: 18px;
  padding: 24px;
  margin-top: 16px;
}
.textbook-view .comment .meta {
  display: flex;
  justify-content: space-between;
}

/* -------------------- KACE 양식 -------------------- */


/* ------------------------------- 지역협의회 ------------------------------ */
/* -------------------- header -------------------- */
.page-branch #header a.home {
  position: absolute;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  height: 48px;
  display: flex;
  align-items: center;
  transition: all 0.4s;
  z-index: 100;
}
.page-branch #header a.home:hover {
  opacity: 0.6;
  transition: all 0.4s;
}

/* -------------------- 메인 -------------------- */
#block-program-branch h1 p,
#block-sosig-branch h1 p {
  -webkit-text-stroke-color: transparent !important;
  -webkit-text-fill-color: #343a40 !important;
}

/* ---------- 포토갤러리 --------- */
#block-branch-articles {
  padding: 120px 0;
  margin-bottom: -120px;
}
#block-branch-articles .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 32px;
}
#block-branch-articles .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 2px solid #343a40;
}

#block-branch-articles .photo-gallery ul {
  display: grid;
  grid-gap: 24px;
  margin-top: 24px;
}
#block-branch-articles .photo-gallery li {
  display: grid;
  grid-template-columns: 120px auto;
  grid-gap: 24px;
}
#block-branch-articles .photo-gallery li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: all 0.4s;
}
#block-branch-articles .photo-gallery li:hover img {
  box-shadow: 0 4px 12px rgba(186, 199, 213, 0.5);
  transition: all 0.4s;
}
#block-branch-articles .photo-gallery li .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#block-branch-articles .photo-gallery li h4 {
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
#block-branch-articles .photo-gallery li h4:hover {
  text-decoration: underline;
}
#block-branch-articles .photo-gallery li p {
  font-size: 14px;
  line-height: 24px;
  color: #495057;
}

#block-branch-articles .branch-notice li {
  padding: 16px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 24px;
  border-bottom: 1px solid #dee2e6;
  transition: background-color 0.4s;
}
#block-branch-articles .branch-notice li:hover {
  background-color: rgba(222, 226, 230, 0.2);
  transition: background-color 0.4s;
}
#block-branch-articles .branch-notice li h4 {
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
#block-branch-articles .branch-notice li h4:hover {
  text-decoration: underline;
}
#block-branch-articles .branch-notice li p {
  font-size: 14px;
  line-height: 24px;
  color: #868e96;
}

/* -------------------- 협의회 소개 -------------------- */
/* ---------- 인사말 --------- */
#assets h3 {
  font-weight: normal;
  text-align: center;
  margin-bottom: 96px;
}
#assets .table dl {
  grid-template-columns: 1fr 5fr;
}
#assets .table dt {
  color: #495057;
}
#assets .table dd {
  word-break: keep-all;
}

/* ---------- 조직도 --------- */
#organization .box-wrap {
  padding-bottom: 56px;
  position: relative;
}
#organization .box-wrap::after {
  content: '';
  width: 1px;
  height: 56px;
  background-color: #dee2e6;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
#organization .box-wrap .box {
  width: 240px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  word-break: keep-all;
}

#organization .box {
  background-color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  color: #1a7ec0;
  position: relative;
}
#organization .box::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  border: 2px solid #fff;
  background-color: #1a7ec0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
#organization .box::after {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  border: 2px solid #fff;
  background-color: #1a7ec0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 1;
}
#organization .box-wrap:first-child .box::before {
  display: none;
}

#organization .box-wrap:last-child {
  margin-bottom: 0;
  padding-top: 56px;
}
#organization .box-wrap:last-child::after {
  content: '';
  width: 1px;
  height: 56px;
  background-color: #dee2e6;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

#organization .scroll {
  position: relative;
}
#organization .scroll::before {
  content: '';
  width: calc(100% - 1056px /4);
  height: 1px;
  background-color: #dee2e6;
  position: absolute;
  top: 0;
  left: calc(1056px/8);
}
#organization .scroll::after {
  content: '';
  width: calc(100% - 1056px /4);
  height: 1px;
  background-color: #dee2e6;
  position: absolute;
  bottom: 0;
  left: calc(1056px/8);
}
#organization .scroll {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}
#organization .scroll .box {
  margin: 48px 0 48px 0;
  width: calc(1096px /4);
}
#organization .scroll .wrap {
  position: relative;
}
#organization .scroll .wrap::before {
  content: '';
  width: 1px;
  height: 48px;
  background-color: #dee2e6;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
#organization .scroll .wrap::after {
  content: '';
  width: 1px;
  height: 48px;
  background-color: #dee2e6;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}


#organization .box-bg-blue {
  background-color: #1a7ec0;
  color: #fff;
}
#organization .box-wrap .box-wrap {
  padding: 0;
}
#organization .box-wrap .box-wrap::after {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
}
#organization .box-navy {
  background-color: #fff;
  border: 1px solid #005093;
  color: #005093;
  width: 160px !important;
  height: 40px;
}
#organization .flex {
  position: relative;
  max-width: 800px;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#organization .flex .line {
  width: calc(100% - 1056px /6);
  height: 1px;
  background-color: #dee2e6;
  position: absolute;
  top: 50%;
  left: calc(1056px/12);
}
#organization .flex .box-wrap {
  padding: 0;
  background: #fff;
  z-index: 1;
}
#organization .flex .box-wrap .box:not(:first-child) {
  margin-top: 8px;
}
#organization .flex .box-wrap::after {
  display: none;
}
#organization .flex .box-wrap:first-child .box::after {
  bottom: 50%;
  left: 100%;
}
#organization .flex .box-wrap:nth-child(2) .box::after,
#organization .flex .box-wrap:nth-child(4) .box::after {
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}
#organization .flex3 {
  margin-top: -7.5px;
  margin-bottom: -7.5px;
}
#organization .flex3 .line {
  margin-top: -28px;
}
#organization .flex3::after {
  bottom: 7.5px;
}
#organization .flex3 .box-wrap:first-child::before {
  content: '';
  height: 47px;
  width: 24px;
  position: absolute;
  top: 20px;
  left: 160px;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-left: none;
  z-index: 1;
}
#organization .flex3 .box-wrap:last-child::before {
  content: '';
  height: 47px;
  width: 24px;
  position: absolute;
  top: 20px;
  right: 160px;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-right: none;
  z-index: 1;
}
#organization .flex p {
  font-size: 12px;
  line-height: 16px;
  color: #868e96;
  position: absolute;
  width: 100%;
  text-align: center;
  word-break: keep-all;
  margin-top: 8px;
}
#organization .box-skyblue {
  background-color: #fff;
  border: 1px solid #6ac3c3;
  color: #6ac3c3;
}
#organization .box-gray {
  background-color: #fff;
  border: 1px solid #868e96;
  color: #868e96;
  width: 160px !important;
  height: 40px;
}
#organization .box-gray::before {
  display: none !important;
}

#organization .scroll2 {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr 1fr 1fr;
  grid-gap: 24px;
}
#organization .scroll2::-webkit-scrollbar {
  height: 6px;
}
#organization .scroll2::-webkit-scrollbar-track {
  background-color: rgba(73, 80, 87, 0.1);
}
#organization .scroll2::-webkit-scrollbar-thumb {
  background-color: rgba(73, 80, 87, 0.4);
  border-radius: 3px;
}
#organization .scroll2::before {
  width: calc(100% - 1056px /6);
  left: calc(1056px/12);
}
#organization .scroll2::after {
  width: calc(100% - 1056px /6);
  left: calc(1056px/12);
}
#organization .scroll2 .wrap {
  display: grid;
  grid-template-rows: 114px 1fr 1fr;
  height: 100%;
}
#organization .scroll2 .wrap::before {
  height: 100%;
}
#organization .scroll2 .wrap.cols_2::before {
  height: calc(100% - 114px);
  top: 114px;
}
#organization .scroll2 .box {
  width: calc(1096px /6);
  height: 58px;
  z-index: 1;
}
#organization .scroll2 .nodot .top .box::after,
#organization .scroll2 .nodot .middle .box::before {
  display: none;
}
#organization .scroll2 .middle .box {
  margin: 0;
}
#organization .scroll2 .cols_2 .top {
  height: 114px;
}
#organization .scroll2 .cols_2 .middle {
  height: 216px;
}
#organization .scroll2 .cols_2 .middle .box {
  width: 100%;
  height: auto;
  border-radius: 8px;
  padding: 24px 32px;
  word-break: keep-all;
}
#organization .scroll2 .cols_2 .middle .box::before {
  display: none;
}
#organization .scroll2 .cols_2 .bottom {
  height: 216px;
}
#organization .scroll2 .flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 24px;
}
#organization .scroll2 .box3 {
  width: 100% !important;
  height: 154px;
  margin: 0;
  border: 1px solid #dee2e6;
  font-size: 12px;
  line-height: 16px;
  font-weight: normal;
  color: #868e96;
  display: flex;
  align-items: center;
  justify-content: center;
}

#organization .box-table {
  width: 100%;
  max-width: 592px;
  margin: auto;
  padding-bottom: 0;
}
#organization .box-table ::after {
  display: none !important;
}
#organization .box-table .box {
  width: 100%;
  flex-direction: column;
  padding: 0;
}
#organization .box-table .box span {
  background-color: #f2f9fe;
  display: block;
  width: 100%;
  padding: 16px;
}
#organization .box-table .box dl {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  font-size: 14px;
  line-height: 24px;
  color: #495057;
  font-weight: normal;
  padding: 8px;
}
#organization .box-table .box dd {
  padding: 8px;
}

#organization .box-green {
  background-color: #fff;
  border: 1px solid #1b895a;
  color: #1b895a;
}
#organization .box-default-green {
  background-color: #f0f4f8;
  border: none;
  color: #1b895a;
}
#organization .box-default-skyblue {
  background-color: #f0f4f8;
  border: none;
  color: #6ac3c3;
}
#organization .box-default-lightgreen {
  background-color: #f0f4f8;
  border: none;
  color: #a1c736;
}
#organization .box-lightgreen {
  background-color: #fff;
  border: 1px solid #a1c736;
  color: #a1c736;
}
#organization .box-blue3 {
  background-color: #fff;
  border: 1px solid #3968e2;
  color: #3968e2;
}
#organization .box-gray2 {
  background-color: #fff;
  border: 1px solid #89abc7;
  color: #89abc7;
}

#organization .box-bold-blue {
  background-color: #fff;
  border: 4px solid #1a7ec0;
  color: #1a7ec0;
}
#organization .box-bold-green {
  background-color: #fff;
  border: 4px solid #a1c736;
  color: #a1c736;
}
#organization .box-red {
  background-color: #fff;
  border: 1px solid #ec6061;
  color: #ec6061;
}
#organization .box-olive {
  background-color: #fff;
  border: 1px solid #9e9966;
  color: #9e9966;
}

/* ---------- 주요사업 --------- */
#business section {
  border-top: 1px solid #343a40;
}

.box_business {
  display: flex;
  padding-top: 40px;
  border-bottom: 1px solid #dee2e6;
}

.box_business_title {
  width: 17.5rem;
  margin-right: 8.5rem;
}

.box_business_title h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
}

.box_business_content {
  width: 50rem;
  padding-bottom: 40px;
}

.box_business_content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  color: #495057;
}

/* ------------------------------------------------------------- */
/* -------------------- 개인정보처리방침 -------------------- */
#privacy_policy .content ul {
  margin-left: 24px;
}
#privacy_policy .content a {
  color: #1a7ec0;
}

/* -------------------- 메일폼 -------------------- */
#mailform {
  width: 640px;
  margin: auto;
}

#mailform header {
  padding: 36px 24px;
  border-bottom: 1px solid #dee2e6;
}
#mailform header svg {
  height: 32px;
  width: auto;
}

#mailform section {
  padding: 64px 24px;
  text-align: center;
}
#mailform section h2 {
  color: #1a7ec0;
  margin-bottom: 24px;
}
#mailform section h4 {
  color: #343a40;
  margin-top: 64px;
}
#mailform section p {
  color: #495057;
  font-size: 14px;
  line-height: 24px;
}
#mailform .box4 {
  margin: 24px 0 32px 0;
  padding: 32px;
  height: auto;
  border-bottom: none;
  flex-direction: column;
}
#mailform .box4 dl {
  display: flex;
  gap: 8px;
}

#mailform #footer {
  margin-top: 0;
  padding: 40px 24px 56px 24px;
}

/* -------------------- 404 -------------------- */
#page-error {
  text-align: center;
}
#page-error img {
  margin: 160px auto 32px;
}
#page-error p {
  margin: 8px auto 32px;
  word-break: keep-all;
}

/* -------------------- 검색결과 -------------------- */
body.page-search #block-kace-page-title,
body.page-search .search-help-link,
body.page-search .search-advanced,
body.page-search form label,
body.page-search .layout-content h2 {
  display: none;
}

/* ----- form ----- */
body.page-search .layout-content form {
  padding: 96px 0;
  text-align: center;
  position: relative;
}
body.page-search .layout-content #edit-basic {
  width: 90%;
  max-width: 448px;
  margin: auto;
  position: relative;
}
body.page-search .layout-content #edit-basic .js-form-type-search {
  width: 100%;
}
body.page-search .layout-content input[type='search'] {
  width: 100%;
  height: 56px;
  border: none;
  border-bottom: 2px solid #1a7ec0;
  border-radius: 0;
  padding-right: 56px;
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  color: #1a7ec0;
}
body.page-search .layout-content input[type='search']:focus {
  background-color: #fff;
}
body.page-search .layout-content .form-submit {
  width: 24px;
  height: 24px;
  border: none;
  padding: 0;
  text-indent: -9999px;
  background: url('/themes/custom/kace/img/Search.svg') no-repeat 50% 50%;
  background-size: contain;
  cursor: pointer;
  position: absolute;
  top: 0;
  transform: translate(-100%, 50%);
  margin-left: -16px;
}
body.page-search .layout-content p {
  margin-top: 32px;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  color: #343a40;
  word-break: keep-all;
}
body.page-search .layout-content p span {
  color: #1a7ec0;
}

/* ----- search list ----- */
/*body.page-search .search-list {*/
/*  border-top: 4px solid #343a40;*/
/*}*/
body.page-search .search-list li:first-child {
  border-top: 4px solid #343a40;
}
body.page-search .search-list li {
  border-bottom: 1px solid #dee2e6;
  padding: 32px 24px;
  transition: background-color 0.4s;
}
body.page-search .search-list li:hover {
  background-color: rgba(222, 226, 230, 0.2);
  transition: background-color 0.4s;
}

/* ----- search article ----- */
body.page-search article {
  display: grid;
  grid-template-columns: 1fr 5fr;
  grid-gap: 24px;
}
body.page-search article .res-box-wrap {
  border-radius: 8px;
  overflow: hidden;
}

body.page-search .search-list article .tag {
  display: flex;
  align-items: center;
}
body.page-search .search-list article .tag .box-blue {
  margin-right: 8px;
}
body.page-search .search-list article .tag .box-blue,
body.page-search .search-list article .tag .box-blue2 {
  font-size: 14px;
  line-height: 24px;
  width: auto;
  padding: 0 8px;
}
body.page-search .search-list article h4 {
  display: inline-block;
}
body.page-search .search-list article h4 a {
  color: #343a40;
  margin-top: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
body.page-search .search-list article h4 a:hover {
  text-decoration: underline;
}
body.page-search .search-list article .snippet {
  color: #495057;
  margin: 8px 0;
}
body.page-search .search-list article .snippet strong {
  color: #1a7ec0;
}
body.page-search .search-list article .info dl {
  font-size: 14px;
  line-height: 24px;
  display: flex;
  align-items: center;
}
body.page-search .search-list article .info dl dt {
  color: #868e96;
}
body.page-search .search-list article .info dl dd {
  color: #495057;
  margin-left: 4px;
}

/* no result */
body.page-search .search-list h3 {
  padding: 72px 32px;
  text-align: center;
  font-size: 18px;
  line-height: 32px;
  color: #495057;
  font-weight: normal;
}

/* ---------------------------------------------------- */
/* Drupal 10 System Messages */
/* ---------------------------------------------------- */
.messages-list {
  margin: 20px 0;
}
.messages {
  padding: 15px 20px;
  margin-bottom: 15px;
  border: 1px solid transparent;
  border-radius: 4px;
  position: relative;
}
.messages--status {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.messages--warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
.messages--error {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.messages__header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  margin-bottom: 5px;
}
.messages__content {
  margin-left: 0;
}
.messages__list {
  margin: 5px 0 0 20px;
  padding: 0;
}
.messages__item {
  list-style-type: disc;
}

/* ---------------------------------------------------- */
/* Drupal 10 Local Tasks (Tabs) - 관리자/로컬 태스크 전용 */
/* ---------------------------------------------------- */
.block-local-tasks-block .tabs,
.block-local-tasks-block nav.tabs,
nav.tabs.primary-tabs,
ul.primary-tabs {
  margin: 20px 0;
  padding: 0;
  border-bottom: 1px solid #dee2e6;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.block-local-tasks-block .tabs__tab,
.block-local-tasks-block .tabs > li,
nav.tabs.primary-tabs > ul > li,
ul.primary-tabs > li {
  margin: 0;
  padding: 0;
}
.block-local-tasks-block .tabs__link,
.block-local-tasks-block .tabs > li > a,
nav.tabs.primary-tabs a,
ul.primary-tabs > li > a {
  display: block;
  padding: 10px 20px;
  color: #495057;
  text-decoration: none;
  border: 1px solid transparent;
  border-bottom: none;
  margin-bottom: -1px;
  background: transparent;
  border-radius: 4px 4px 0 0;
  transition: all 0.2s ease;
}
.block-local-tasks-block .tabs__link:hover,
.block-local-tasks-block .tabs > li > a:hover,
nav.tabs.primary-tabs a:hover,
ul.primary-tabs > li > a:hover {
  color: #1a7ec0;
  background-color: #f8f9fa;
}
.block-local-tasks-block .tabs__link.is-active,
.block-local-tasks-block .tabs__link--active,
.block-local-tasks-block .tabs > li.is-active > a,
.block-local-tasks-block .tabs > li > a.is-active,
nav.tabs.primary-tabs a.is-active,
ul.primary-tabs > li > a.is-active {
  color: #1a7ec0;
  background-color: #fff;
  border-color: #dee2e6;
  font-weight: 600;
}

/* Secondary tabs */
.block-local-tasks-block .secondary-tabs,
.block-local-tasks-block .tabs.secondary {
  border-bottom: none;
  margin-top: -10px;
}
.block-local-tasks-block .secondary-tabs .tabs__link,
.block-local-tasks-block .tabs.secondary > li > a {
  padding: 5px 15px;
  font-size: 14px;
  border-radius: 4px;
  margin: 0 5px 5px 0;
  border: 1px solid #dee2e6;
}
.block-local-tasks-block .secondary-tabs .tabs__link.is-active,
.block-local-tasks-block .tabs.secondary > li > a.is-active {
  background-color: #1a7ec0;
  color: #fff;
  border-color: #1a7ec0;
}

/* ---------------------------------------------------- */
/* Better Exposed Filters (BEF) Links */
/* ---------------------------------------------------- */
.bef-exposed-form .bef-links {
  margin: 0 0 20px 0;
}
.bef-exposed-form .bef-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.bef-exposed-form .bef-links li {
  margin: 0;
  padding: 0;
}
.bef-exposed-form .bef-links .bef-link {
  display: inline-block;
  padding: 10px 20px;
  color: #495057;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 20px;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.2s ease;
}
.bef-exposed-form .bef-links .bef-link:hover {
  color: #1a7ec0;
  background-color: #e9ecef;
  border-color: #1a7ec0;
}
.bef-exposed-form .bef-links .bef-link--selected,
.bef-exposed-form .bef-links .bef-link.bef-link--selected:hover {
  color: #fff;
  background-color: #1a7ec0;
  border-color: #1a7ec0;
}

/* BEF Form Layout */
.bef-exposed-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.bef-exposed-form .form-item {
  margin: 0;
}
.bef-exposed-form .form-text {
  padding: 10px 14px;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  font-size: 16px;
}
.bef-exposed-form .form-text:focus {
  outline: none;
  border-color: #1a7ec0;
  box-shadow: 0 0 0 2px rgba(26, 126, 192, 0.2);
}
.bef-exposed-form .form-actions {
  margin: 0;
}
.bef-exposed-form .button {
  padding: 10px 20px;
  background-color: #1a7ec0;
  color: #fff;
  border: 1px solid #1a7ec0;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.2s ease;
}
.bef-exposed-form .button:hover {
  background-color: #155a8a;
  border-color: #155a8a;
}

/* ---------------------------------------------------- */
/* BEF Responsive Styles */
/* ---------------------------------------------------- */
@media (max-width: 768px) {
  .bef-exposed-form {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .bef-exposed-form .bef-links {
    margin: 0;
    width: 100%;
  }
  .bef-exposed-form .bef-links ul {
    gap: 6px;
    justify-content: flex-start;
  }
  .bef-exposed-form .bef-links .bef-link {
    padding: 8px 14px;
    font-size: 14px;
  }
  .bef-exposed-form .form-item {
    width: 100%;
  }
  .bef-exposed-form .form-text {
    width: 100%;
    font-size: 16px; /* iOS zoom 방지 */
  }
  .bef-exposed-form .form-actions {
    width: 100%;
  }
  .bef-exposed-form .button {
    width: 100%;
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .bef-exposed-form .bef-links ul {
    gap: 5px;
  }
  .bef-exposed-form .bef-links .bef-link {
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 16px;
  }
}
