/* 포인트 폰트 */
.b-sct {
  font-family: "brush-script-std", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* 메인메뉴 */
header {
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 10;
  height: 10rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px) brightness(1.1);
  transition: all 0.3s ease-in-out;
}
header:hover {
  background: white;
}
header .logo {
  height: 90%;
  padding: 1rem;
  a {
    display: block;
    height: 100%;
  }
  img {
    height: 100%;
  }
}
header #gnb {
  position: relative;
  font-size: 1.6rem;
  z-index: 1;
  margin-left: auto;
  #gnb_1dul {
    gap: 3rem;
    .gnb_1dli {
      position: relative;
      font-size: 1.8rem;
    }
    .gnb_1dli a {
      white-space: nowrap;
    }
    .gnb_1dli:hover > a {
      color: var(--main);
    }
  }
}
header .gnb_1dli.gnb_mnal {
  z-index: 100;
}
header .gnb_menu_btn {
  border: 0;
  font-size: 15px;
  background: var(--main);
  color: white;
  border-radius: 50px;
  padding: 6px 12px 8px 14px;
  margin-left: 3rem;
  white-space: nowrap;
}
#gnb_all {
  display: none;
  position: absolute;
  border: 1px solid #c5d6da;
  width: 100%;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.gnb_2dul {
  display: none;
  position: absolute;
  min-width: 140px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: white;
  font-size: 1.6rem;
}
.gnb_2da {
  display: block;
  padding: 1.2rem;
}
a.gnb_2da:hover {
  background: var(--lightG);
  transition: all 0.3s ease-out;
}
.gnb_1dli_over .gnb_2dul {
  display: block;
  left: 0;
}
.gnb_1dli_over2 .gnb_2dul {
  display: block;
  right: 0;
}
.gnb_wrap .gnb_empty {
  padding: 10px 0;
  width: 100%;
  text-align: center;
  line-height: 2.7em;
  a {
    color: var(--main);
  }
}
#gnb_all_over {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  overflow: auto;
  z-index: 100;
  .gnb_all_over_wrap {
    width: 100%;
    height: 100%;
  }
}
.gnb_al_ul {
  display: flex;
}
.gnb_al_li {
  flex: 1;
  padding: 0 3rem;
  font-size: 2rem;
  border-right: 1px solid var(--border);
  height: 100vh;
  overflow: auto;
}
.gnb_cell {
  display: block;
  ul {
    margin-top: 2rem;
  }
  ul li {
    font-size: 1.6rem;
    padding: 8px 0;
    color: var(--black40);
  }
  ul li:hover {
    color: var(--black80);
  }
}
.gnb_al_a {
  font-weight: 700;
}
.gnb_al_li:hover {
  color: var(--main);
}
.gnb_close_btn {
  position: absolute;
  right: 0;
  width: 68px;
  height: 68px;
  background: var(--black80);
  color: white;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  z-index: 1;
}
.gnb_close_btn:hover {
  width: 80px;
  height: 80px;
}

/* 임시메뉴 모바일 */
.sub-gnb {
  overflow-x: auto;
  #gnb_1dul {
    padding-left: 4rem;
  }
}

/* 메인-슬라이드 */
#sec0 {
  width: 100%;
  height: 100vh;
  min-height: 74rem;
  overflow-x: hidden;
}
#sec0 .swiper {
  width: 100%;
  height: 100%;
  position: relative;
  .swiper-pagination {
    bottom: 4rem !important;
    span {
      opacity: 0.3;
      position: relative;
      width: 30px;
      height: 40px;
      margin: 0 5px;
      background-color: transparent;
      transition: all 0.3s ease-in-out;
    }
    span.on {
      opacity: 1;
    }
    span:before {
      opacity: 0;
      display: block;
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 45px;
      height: 45px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      transition: all 0.3s ease-in-out;
    }
    span.on:before {
      opacity: 1;
      width: 30px;
      height: 30px;
    }
    span:after {
      display: block;
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #fff;
    }
  }
  .swiper-slide {
    overflow: hidden;
  }
  .swiper-slide img {
    position: absolute;
    z-index: -1;
  }
  .main-sd-over {
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    position: absolute;
    bottom: 0;
    z-index: -1;
  }
  .main-sd-img {
    transform-origin: center center;
  }
  .main-sd-text-wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    p {
      color: white;
      font-size: clamp(18px, 2.2vw, 24px);
      text-shadow: 2px 2px 6px var(--shadow);
    }
    p:nth-of-type(1) {
      font-size: clamp(46px, 5.2vw, 80px);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1rem;
    }
  }
  .main-circle1 {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    width: min(60vw, 36rem);
    aspect-ratio: 1;
    border: 1px solid white;
    border-radius: 100%;
    z-index: 1;
  }
  .main-circle2 {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    width: min(20vw, 12rem);
    aspect-ratio: 1;
    background: var(--main);
    border-radius: 100%;
    z-index: 1;
    cursor: pointer;
  }
  .main-circle2::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--main);
    opacity: 0.6;
    animation: ripple 1.5s infinite ease-out;
  }
  .main-sd-text-wrap p:nth-of-type(1) {
    position: relative;
  }
  .main-sd-text-wrap p:nth-of-type(1)::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: white;
    position: absolute;
    top: 50%;
    transform: translateX(-102%);
  }
  .main-sd-text-wrap p:nth-of-type(1)::after {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50px;
    background: var(--main);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-200%, -50%);
  }
}
@keyframes ripple {
  0% {
    transform: scale(1.5);
    opacity: 0.6;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 메인-프로필 */
#sec1 {
  overflow: hidden;
  > .inner > p {
    font-size: 2rem;
    text-transform: capitalize;
    position: relative;
    background: linear-gradient(
      to right,
      var(--main-light),
      var(--main),
      var(--main-dark)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  > .inner > p::before {
    /* content: ''; */
    position: absolute;
    width: 8rem;
    height: 6rem;
    background: url("../img/apostrophe.png") no-repeat center / cover;
    top: 0;
    transform: translate(-80%, -80%);
    scale: 0.8;
    z-index: -1;
  }
}
.sec1-btn-wrap {
  text-align: right;
  margin-top: 6rem;
}
.main-pf-wrap {
  padding: 6rem 0;
  align-items: center;
  > * {
    flex: 1;
    width: 100%;
  }
}
.main-pf-wrap:last-of-type {
  padding-bottom: 0;
}
.main-pf-text {
  padding-left: 6rem;
  p {
    font-size: 4.6rem;
    margin-bottom: 4rem;
    font-weight: 800;
  }
}
.main-pf-name {
  background: linear-gradient(
    to right,
    var(--main-light),
    var(--main),
    var(--main-dark)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.main-pf-nameE {
  font-size: 2.4rem;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--black40);
}
.main-pf-text ul {
  margin-bottom: 2rem;
  color: var(--black60);
  line-height: 1.6;
}
.main-pf-text ul li:first-of-type {
  color: var(--main);
  font-weight: 700;
}
.main-pf-hero {
  .round {
    width: 90%;
    aspect-ratio: 1;
    max-width: 100%;
    max-height: 100%;
    border-radius: 52% 48% 37% 63% / 42% 29% 71% 58%;
    position: relative;
  }
  .round1 {
    background: url("../img/main-pf-img1.jpg") no-repeat center / cover;
  }
  .round2 {
    background: url("../img/main-pf-img2.jpg") no-repeat center / cover;
  }
  .round::after {
    content: "";
    width: 105%;
    height: 105%;
    position: absolute;
    top: 0%;
    left: 0%;
    z-index: -1;
    background: linear-gradient(-220deg, #81c7eb 0%, #328df5 60%, #2b4ca0 100%);
    border-radius: 36% 42% 55% 45% / 33% 30% 70% 67%;
    animation: rotate 50s infinite linear;
  }
}
.main-pf-wrap:nth-of-type(2) {
  flex-direction: row-reverse;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(90deg) scale(1.1);
    border-radius: 49% 51% 39% 61% / 36% 34% 66% 64%;
  }
  50% {
    transform: rotate(180deg) scale(0.9);
  }
  75% {
    transform: rotate(270deg) scale(1.1);
    border-radius: 49% 51% 39% 61% / 36% 34% 66% 64%;
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

/* 메인-교육과정 */
#sec2 {
  background: var(--base);
}
.ed-list {
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 6rem;
  li {
    width: 32%;
    text-align: center;
    .edu-list-img {
      aspect-ratio: 4.5/5;
      overflow: hidden;
      margin-bottom: 3rem;
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s ease-in-out;
      }
    }
    h3 {
      font-size: 2.4rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }
    p {
      color: var(--black60);
    }
    .smp-sp {
      background: var(--main-dark);
      padding: 12px 16px;
      margin: 2rem auto 0;
      width: fit-content;
      color: white;
      span {
        font-weight: bold;
        margin-right: 1rem;
      }
    }
  }
  li:hover .edu-list-img img {
    scale: 1.1;
  }
}

/* 메인-특장점 */
#sec3 {
  .sec-title {
    .b-sct {
      font-size: 2.6rem;
    }
    .sec3-title-p {
      font-weight: 600;
      color: var(--black80);
    }
  }
  .ed-list .edu-list-img {
    aspect-ratio: 4/2.4;
  }
}

#sec5 .swiper2 {
  .swiper-wrapper {
    aspect-ratio: 16/9;
  }
}
/* 메인-포트폴리오 */
#sec4 {
  background: var(--base);
}
.sec4-pf-wrap {
  padding: 0 12rem;
  margin-bottom: 12rem;
  h3 {
    font-size: 2.6rem;
    font-weight: bold;
    border-bottom: 3px solid var(--point);
    width: fit-content;
    margin: 0 auto 1rem auto;
  }
  p {
    color: var(--black60);
    margin-bottom: 4rem;
  }
}
.sec4-pf-wrap:last-of-type {
  margin-bottom: 0;
}
.slick-for-wrap {
  position: relative;
  .slick-arrow {
    position: absolute;
    top: 50%;
    width: 6rem;
    height: 6rem;
    border-radius: 100%;
    font-size: 3.6rem;
    line-height: 6rem;
    text-align: center;
    color: var(--black60);
    background: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    cursor: pointer;
  }
  .sc-prev,
  .sc-prev2,
  .sc-prev3 {
    left: 0;
    transform: translate(-50%, -50%);
  }
  .sc-next,
  .sc-next2,
  .sc-next3 {
    right: 0;
    transform: translate(50%,-50%);
  }
}
.slick-for,
.slick-for2,
.slick-for3 {
  background: var(--black80);

  .slick-slide {
    aspect-ratio: 16/9;
    overflow: hidden;
    img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
  }
}
.slick-nav,
.slick-nav2,
.slick-nav3 {
  margin-top: 12px;

  .slick-track {
    display: flex;
  }
  .slick-slide {
    aspect-ratio: 4/3;
    cursor: pointer;
    margin: 0 6px;
    opacity: 0.5;
    transition: all 0.3s ease-in-out;
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
  .slick-slide.slick-current {
    opacity: 1;
  }
}

/* 메인-인사이트 */
#sec5 .main-pl {
  display: flex;
  justify-content: space-between;
  text-align: center;

  li {
    width: 23.6%;
    .main-pl-img {
      width: 100%;
      aspect-ratio: 3/4;
      border-radius: 3rem;
      overflow: hidden;
      margin-bottom: 3rem;
      transition: all 0.3s ease-in-out;
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }
    h3 {
      font-size: 2.4rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }
    p {
      color: var(--black60);
    }
  }
  li:hover .main-pl-img {
    transform: translateY(-5%);
  }
}

/* 메인-하단배너 */
.bt-banner {
  width: 100%;
  font-size: 0;
  img {
    width: 100%;
  }
}

/* 하단 */
footer {
  background: var(--dark);
  color: white;
  font-size: 14px;
  #ft_wr {
    gap: 6rem;
    padding: 6rem 0;
    justify-content: space-between;
  }
  .ft_logo {
    height: 12rem;
    opacity: 0.5;
    display: flex;
    flex-direction: row-reverse;
    gap: 2rem;
    img {
      height: 100%;
      width: auto;
      filter: brightness(0) invert(1);
    }
  }
  #ft_company {
    .ft_info {
      row-gap: 1rem;
      column-gap: 2rem;
      flex-wrap: wrap;
      color: rgba(255, 255, 255, 0.7);
    }
    button {
      background: none;
      border: 1px solid white;
      color: white;
      padding: 0.6rem 2rem;
      margin-top: 3rem;
      border-radius: 50px;
      font-weight: bold;
    }
    button:hover {
      background: white;
      color: var(--black60);
    }
  }
  #ft_link {
    font-size: 1.6rem;
    gap: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    a:hover {
      color: var(--main);
    }
  }
  #ft_copy {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    padding: 2rem 0;
  }
}
#top_btn {
  display: none;
  position: fixed;
  bottom: 2%;
  right: 2%;
  width: clamp(60px, 6vw, 80px);
  height: clamp(60px, 6vw, 80px);
  color: var(--black60);
  text-align: center;
  font-weight: bold;
  z-index: 1;
  background: black;
  color: white;
  border: 0;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
}
#top_btn:hover {
  transform: scale(1.2);
}

section {
  width: 100%;
  overflow-x: hidden;
}

/* 서브-아카데미 */
#sub-hd {
  padding-top: 16rem;
}
#sub-hd-top {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
#sub-hd-top h2 {
  font-size: clamp(40px, 4.4vw, 60px);
  font-weight: bold;
}
#breadcrumb {
  color: var(--black60);
  .sep {
    color: var(--black40);
    margin: 0 10px;
  }
  .current {
    font-weight: 600;
  }
}
#sub-hd-hero {
  width: 100%;
  height: min(34rem, 30vw);
  min-height: 22rem;
  overflow: hidden;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
#sub-hd-tab {
  overflow: auto;
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.subnav ul {
  font-size: 1.8rem;
  font-weight: 500;
  li {
    padding: 0 2rem;
    border-left: 1px solid var(--border);
    a {
      white-space: nowrap;
    }
  }
  li:first-of-type {
    padding-left: 0;
    border-left: 0;
  }
  li.on {
    color: var(--main);
    font-weight: 600;
  }
}

#sub1-sec1 {
  background: url(../img/sub1-sec1-bg.jpg) no-repeat center / cover;
}
#greeting > div {
  flex: 1;
}
.deco-gd {
  background: linear-gradient(
    to right,
    var(--main-light),
    var(--main),
    var(--main-dark)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sub1-sec1-text {
  > p {
    margin-bottom: 3rem;
  }
  div {
    margin-top: 6rem;
    font-size: 14px;
    color: var(--black40);
    text-align: right;
    img {
      height: 3.6rem;
    }
  }
}

#sub-pf .main-pf-wrap {
  padding: 0;
  gap: 2rem;
  justify-content: center;
  > div {
    max-width: 54rem;
    overflow: hidden;
  }
}
.sub-pf-img {
  aspect-ratio: 3/4;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
#sub-pf .main-pf-wrap:nth-of-type(2) {
  flex-direction: row;
  margin-top: 10rem;
}

#sub2-sec1 {
  overflow: visible;
  .inner {
    justify-content: space-between;
    gap: 4rem;
  }
  .inner > div {
    flex: 1;
  }
}
.border-bt-1 {
  border-bottom: 1px solid var(--border);
}
.stk {
  position: sticky;
  height: fit-content;
  top: 16rem;
}
.sub2-sec1-con {
  img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 3rem;
  }
}
.sub2-sec1-con:not(:first-of-type) {
  margin-top: 5rem;
}
.sub2-sec1-con-t {
  padding: 2.4rem;
  p {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
  }
  ul li {
    position: relative;
    color: var(--black60);
    line-height: 2;
    padding-left: 25px;
  }
  ul li:before {
    content: "";
    background: url(../img/check_circle.png) no-repeat center / cover;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 5px;
    left: 0;
  }
}

.sub2-sec2-con {
  justify-content: space-between;
}
.sub2-sec2-con:not(:last-of-type) {
  margin-bottom: min(16rem, 12vw);
}
#sub2-sec2 .sec-title {
  width: 30%;
  padding-right: 10%;
}
.sub2-sec2-con-t {
  width: 70%;
  background: var(--lightG);
  padding: 5rem;
  color: var(--black60);
  p {
    margin-top: 2rem;
  }
  p.text-b {
    font-size: 2rem;
    color: var(--black80);
    margin-top: 0;
    margin-bottom: 3rem;
  }
}
.sub2-sec2-con-ul1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  li {
    flex: 1;
    background: white;
    border: 2px solid var(--dark);
    text-align: center;
    h3 {
      background: var(--dark);
      color: white;
      padding: 10px 0;
      font-weight: 600;
    }
    p {
      margin: 0;
      padding: 1.2rem;
    }
  }
}
.sub2-sec2-con-ul2 li {
  display: flex;
  gap: 3rem;
  align-items: center;
  p.text-b {
    margin-bottom: 1rem;
  }
  p:not(.text-b) {
    margin-top: 0;
  }
}
.sub2-ul2-hr {
  width: 100%;
  border: 1px dotted var(--border);
  margin: 2.4rem 0;
}
.sub2-ul2-img {
  background: white;
  border-radius: 100%;
  font-size: 0;
}

.sub2Swiper {
  cursor: url("../img/cursor-move.png"), auto;
}
.sub2Swiper .swiper-slide {
  border: 1px solid var(--border);
  padding: 4rem;
  transition: all 0.3s ease-in-out;
  img {
    width: 4rem;
    margin-bottom: 4rem;
    filter: grayscale(1);
  }
}
.sub2Swiper .swiper-slide-active {
  border: 1px solid var(--main);
  box-shadow: 0 0 2rem var(--shadow);
  img {
    filter: grayscale(0);
  }
}

#sub3-sec1 .slick-for img {
  object-fit: cover;
}

.marquee {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 16rem;
}
.marquee .js-marquee {
  display: flex;
  white-space: nowrap;
  > * {
    flex: 0 0 auto;
  }
  li {
    position: relative;
    margin-right: clamp(4rem, 12vw, 8rem);
  }
  li img {
    width: min(16rem, 24vw);
  }
  li p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: min(20px, 4vw);
    font-weight: 600;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.164);
    text-align: center;
    span {
      display: block;
      font-size: min(14px, 3.2vw);
    }
  }
}

.sub4-sec3-ul {
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
  li {
    flex: 1;
  }
}
.sub4-sec3-ul-img {
  aspect-ratio: 16/9;
  border-radius: 2rem;
  overflow: hidden;
  margin-bottom: 2rem;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.sub4-sec3-ul-t {
  padding: 1rem;
  h3 {
    font-size: 2rem;
    font-weight: bold;
  }
  p {
    color: var(--black60);
    margin-top: 1rem;
  }
}

/* 특장점 전체 */
#strength article .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: min(8rem, 8vw);
  > div {
    flex: 1;
  }
}
.st-text-wrap {
  padding-right: min(6rem, 4vw);
  h2 {
    font-size: clamp(28px, 4.4vw, 54px);
    font-weight: bold;
    margin-bottom: min(6rem, 6vw);
    position: relative;
    span {
      display: block;
      position: absolute;
      top: 0;
      z-index: -1;
      transform: translate(-50%, -50%);
      color: #f2f2f2;
      font-size: clamp(6rem, 5vw, 14rem);
      width: fit-content;
    }
  }
  p {
    color: var(--black60);
  }
  p:first-of-type {
    font-size: clamp(18px, 2.1vw, 24px);
    font-weight: 600;
    color: var(--main-dark);
  }
  p:not(:last-of-type) {
    margin-bottom: 1rem;
  }
}
.st-img-wrap {
  font-size: 0;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.st-cta {
  background: none !important;
}

/* 서브반복-상담 */
#br-consult-wrap {
  padding: min(10rem, 16vw) 2rem;
  background: var(--lightG);
  text-align: center;
  color: var(--black60);
  .br-c-tit {
    font-size: min(32px, 5vw);
    font-weight: bold;
    margin-bottom: 2rem;
    color: var(--black80);
  }
  #br-c-btn {
    margin-top: 4rem;
  }
}

/* 수강과목 */
.sub5-14-top-line {
  width: 3px;
  height: 8rem;
  margin: 0 auto 3rem;
  background: linear-gradient(
    to bottom,
    var(--main-light),
    var(--main),
    var(--main-dark)
  );
}
#sub5-14-3list {
  margin: 6rem auto;
  display: flex;
  justify-content: center;
  li {
    width: min(30rem, 33%);
    text-align: center;
    padding: 2rem 3rem;
  }
  li:not(:last-of-type) {
    border-right: 1px solid var(--border);
  }
  p {
    color: var(--black60);
  }
  p:first-of-type {
    color: var(--main-dark);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2rem;
  }
}
#sub5-14-top-img {
  overflow: hidden;
  border-radius: min(6rem, 4vw);
  height: min(46rem, 38vw);
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
#sub5-14 article {
  margin-top: min(10rem, 10vh);
  display: flex;
  h3 {
    width: 30%;
    padding-right: 10%;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: bold;
  }
  ul li {
    padding: 4rem 0;
  }
  ul li:not(:last-of-type) {
    border-bottom: 1px solid var(--border);
  }
}
.sub5-14-con-wrap {
  width: 70%;
  border-top: 2px solid var(--black80);
  margin-top: 1rem;
}
.edu-pp li {
  position: relative;
  padding-left: 30px !important;
  font-size: 1.8rem;
  i {
    color: var(--main-dark);
  }
}
.edu-pp li:before {
  content: "";
  background: url(../img/check_circle.png) no-repeat center / cover;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  transform: translateY(3px);
}
.edu-gl > li {
  display: flex;
  gap: 4rem;
  align-items: center;
  img {
    display: block;
    width: 40%;
  }
}
.edu-gl-text {
  color: var(--black60);
  p:first-of-type {
    color: var(--black80);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.6rem;
  }
  ul li {
    padding: 6px 0 !important;
    border-bottom: 0 !important;
  }
}

#patent-wrap {
  padding-top: min(10rem, 10vh);
  padding-bottom: 4rem;
}
#patent {
  background: url(../img/patent-bg.jpg) no-repeat center / cover;
  position: relative;
  padding: min(7rem, 8vw);
  p {
    color: white;
    opacity: 0.8;
    margin-bottom: 2rem;
    width: 60%;
  }
  p:first-of-type {
    font-size: 2.8rem;
    font-weight: bold;
    opacity: 1;
    width: 100%;
  }
}
#patent-nb {
  background: rgba(255, 255, 255, 0.8);
  color: var(--dark);
  width: fit-content;
  padding: 10px 14px;
}
#patent-md {
  position: absolute;
  bottom: -7rem;
  right: 3rem;
  width: min(32rem, 26vw);
}

/* 지점안내상담 */
#bran-top {
  padding-top: clamp(10rem, 12vw, 16rem);
}
#bran-top-wrap {
  background: url(../img/sub21-img1.jpg) no-repeat right center / cover;
  padding: min(12rem, 10vw) min(8rem, 8vw);
  border-radius: min(4rem, 4vw);
  h2 {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: bold;
    margin-bottom: 4rem;
  }
}
.bran-top-info {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.bran-top-info-left {
  background: var(--main-dark);
  font-size: 2.4rem;
  color: white;
  width: min(5.6rem, 12vw);
  height: min(5.6rem, 12vw);
  border-radius: 100%;
}
.bran-top-info-right {
  h3 {
    color: var(--main-dark);
    font-size: clamp(2rem, 6vw, 2.8rem);
    font-weight: bold;
    line-height: 1.2;
  }
}

#br-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: min(8rem, 5vw);
  column-gap: min(4rem, 3vw);
}
#br-list li {
  border-radius: 2rem;
  border: 1px solid var(--border);
  overflow: hidden;
  img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: var(--border);
  }
}
#br-list li:hover {
  a {
    background: var(--main);
  }
}
.br-list-text {
  padding: 3rem;
  h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  p {
    color: var(--black60);
    margin-bottom: 4rem;
  }
  a {
    display: block;
    background: var(--dark);
    padding: 1.4rem 3rem;
    color: white;
    transition: all 0.3s;
    span {
      float: right;
      font-weight: bold;
    }
  }
}
#br-detail article:not(:last-of-type) {
  padding-bottom: clamp(10rem, 12vw, 16rem);
}
#map-info {
  display: flex;
  align-items: center;
  > div {
    flex: 1;
  }
}
.map-info-left button {
  margin-top: 0;
}
.root_daum_roughmap {
  width: auto !important;
  border-radius: min(3rem, 4vw);
  .wrap_map {
    height: auto !important;
    aspect-ratio: 4/3 !important;
  }
  .wrap_controllers,
  .cont {
    display: none;
  }
  .wrap_btn_zoom {
    z-index: 1 !important;
  }
}
.br-detail-tit {
  font-size: 2.8rem;
  font-weight: bold;
  padding-bottom: 3rem;
}
.br-df-list {
    display: flex;
    gap: 2rem;
    margin-bottom: 6rem;
}
.br-df-list li {
    width: 15%;
    min-width: 20rem;
}
.br-df-list img {
    border-radius: min(2rem, 3vw);
    width: 100%;
    object-fit: cover;
}
.br-pf-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
.br-pf-img {
  background: var(--border);
  width: 40%;
  aspect-ratio: 1;
  border-radius: min(2rem, 3vw);
  overflow: hidden;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.br-pf-info {
  width: 60%;
  padding: 3rem;
  h4 {
    font-size: 2rem;
    margin-bottom: 6px;
  }
  > p {
    color: var(--black40);
  }
}
.br-kt-link {
  margin-top: 3rem;
  p {
    margin-bottom: 6px;
  }
  img {
    width: max(8rem, 30%);
  }
  img.pf-qr {
    background: var(--border);
    border: 1px solid var(--border);
    margin-left: 1rem;
  }
}
#br-fa-slide {
  padding-bottom: clamp(10rem, 12vw, 16rem);
  h3.br-detail-tit {
    float: left;
  }
}
.branSwiperBtn {
  padding-left: 2rem;
}
.branSwiperBtn > div {
  border: 1px solid var(--border);
  width: 4rem;
  height: 4rem;
  font-size: 2.4rem;
  line-height: 4rem;
  text-align: center;
  cursor: pointer;
}
.branSwiper .swiper-slide {
  aspect-ratio: 16/9;
  border-radius: min(3rem, 4vw);
  overflow: hidden;
  opacity: 0.5;
}
.branSwiper .swiper-slide-active {
  opacity: 1;
}
.branSwiper .swiper-slide-prev {
  opacity: 0;
}

/* 반응형 */
@media (max-width: 1440px) {
  #sec0 .pd-sec-y {
    padding-bottom: 6rem;
  }
  .main-sd-text-wrap p:nth-of-type(1)::before,
  .main-sd-text-wrap p:nth-of-type(1)::after {
    display: none;
  }
  footer > .inner {
    padding: 0 !important;
  }
}

@media (max-width: 1024px) {
  header {
    #gnb {
      display: none;
    }
  }
  .gnb_al_ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .gnb_al_li {
    height: 50vh;
    padding: 4rem !important;
    border-bottom: 1px solid var(--border);
  }
  #sec1 .main-pf-nameE {
    display: block;
  }

  .sub2-sec2-con-ul1 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* 특장점 전체 */
  #strength article .inner {
    flex-direction: column;
  }
  .st-m-only {
    height: min(10rem, 12vw);
  }
  .st-text-wrap {
    margin-left: 4vw;
  }

  /* 지점안내&상담 */
  .br-pf-list li {
    flex-direction: column;
    > div {
      width: 100% !important;
    }
  }

  footer {
    #ft_company {
      width: 70%;
    }
  }
}

@media (max-width: 768px) {
  html {
    font-size: 58% !important;
  }
  header {
    height: 8rem;
    background: white;
    box-shadow: 0 3px 6px var(--shadow);
  }
  #gnb_all_over {
    overflow: auto;
  }
  .gnb_al_ul {
    grid-template-columns: repeat(1, 1fr);
  }
  .gnb_al_li {
    height: fit-content;
  }
  /* 메인 */
  #sec1 .main-pf-wrap {
    flex-direction: column-reverse !important;
    .round {
      width: 70%;
      margin: 0 auto;
    }
  }
  #sec1 .main-pf-text {
    padding-left: 2rem;
    margin-top: 8rem;
    p {
      font-size: clamp(28px, 4vw, 46px);
    }
  }
  .sec1-btn-wrap {
    text-align: center;
  }
  .ed-list {
    li {
      width: 48%;
    }
  }
  .sec4-pf-wrap {
    padding: 0rem;
  }
  .slick-for,
  .slick-for2,
  .slick-for3 {
    .slick-slide {
      aspect-ratio: 4/3;
    }
  }
  #sec5 .main-pl {
    flex-wrap: wrap;
    row-gap: 8rem;
    li {
      width: 48%;
    }
  }
  /* 서브-아카데미 */
  #sub-hd-top {
    flex-direction: column !important;
    gap: 1rem;
  }
  #greeting {
    flex-direction: column;
  }
  #sub-pf .main-pf-wrap {
    flex-direction: column !important;
  }
  .sub-pf-img {
    margin-bottom: 3rem;
  }
  .main-pf-text {
    padding-left: 0;
    width: fit-content;
  }
  .main-pf-nameE {
    display: block;
  }

  #sub2-sec1 .inner {
    flex-direction: column;
  }
  .stk {
    position: static !important;
    margin-bottom: 0 !important;
  }
  .sub2-sec2-con {
    flex-direction: column;
    > * {
      width: 100% !important;
    }
  }
  #sub2-sec2 .sec-title {
    margin-bottom: 2rem;
  }
  .sub2-sec2-con-t {
    padding: 3rem;
  }
  .sub2-sec2-con-ul1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .sub4-sec3-ul {
    grid-template-columns: repeat(2, 1fr);
  }

  #br-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .br-list-text {
    padding: 2rem;
  }

  /* 서브-수강과목 */
  #sub5-14 article {
    flex-direction: column;
    h3 {
      width: 100%;
      margin-bottom: 1rem;
    }
  }
  .sub5-14-con-wrap {
    width: 100%;
  }

  #patent {
    min-height: 40rem;
    p {
      width: 80%;
    }
  }
  #patent-md {
    width: 34vw;
  }

  /* 서브-지점상담안내 */
  #bran-top-wrap {
    height: min(60rem, 110vw);
    background: url(../img/sub21-img1-m.jpg) no-repeat bottom / cover;
  }

  #map-info {
    flex-direction: column;
    > div {
      width: 100%;
    }
  }
  .map-info-left .sec-title {
    float: left;
  }
  .map-info-left button {
    float: right;
  }
  .root_daum_roughmap .wrap_map {
    aspect-ratio: 16/9 !important;
  }
  .br-pf-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .br-pf-list li {
    flex-direction: row;
  }

  /* 게시판 */
  #bo_btn_top {
    flex-direction: column;
    align-items: end !important;
  }
  .bo_search_inline {
    width: 100%;
    .bo_search_form {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
    }
    .bo_search_select {
      width: 25%;
    }
    .bo_search_field {
      width: 75%;
      display: flex;
    }
    .bo_search_input {
      width: 90%;
    }
    .bo_search_btn {
      width: 10%;
    }
  }
  .bo_v_nb li {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  #bo_v_title_wrp {
    padding: 4rem 0 !important;
  }
  #bo_v_con {
    padding-top: 4rem;
  }
  #bo_v_link a {
    word-break: break-all;
  }

  /* 하단 */
  footer {
    #ft_company {
      width: 100%;
    }
    .ft_logo {
      display: none;
    }
  }
}

@media (max-width: 480px) {
  html {
    font-size: 55 !important;
  }
  #sec1 .main-pf-nameE {
    display: block;
  }
  .ed-list {
    li {
      width: 100%;
    }
  }
  #sec5 .main-pl {
    li {
      width: 100%;
    }
  }

  .sub2-sec2-con-ul2 li {
    flex-direction: column;
  }
  .sub4-sec3-ul {
    grid-template-columns: repeat(1, 1fr);
  }

  .slick-for-wrap {
    .slick-arrow {
      width: 4rem;
      height: 4rem;
      line-height: 4rem;
      font-size: 2.6rem;
    }
  }

  #br-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .br-df-list li {
    width: 50%;
    min-width: unset;
  }
  .br-pf-list li {
    flex-direction: column;
    > div {
      width: 100% !important;
    }
  }

  .map-info-left .sec-title,
  .map-info-left button {
    float: none;
    margin-bottom: 3rem;
  }

  #sub5-14-3list {
    flex-direction: column;
    li {
      width: 100%;
    }
    li:not(:last-of-type) {
      border-right: 0;
      border-bottom: 1px solid var(--border);
    }
  }
  #sub5-14 article {
    ul li {
      padding: 3rem 0;
    }
  }
  .edu-gl li {
    flex-direction: column;
    img {
      width: 100%;
    }
  }

  #patent {
    min-height: auto;
    p {
      width: 100%;
    }
  }
  #patent-md {
    bottom: 70%;
    right: 1rem;
    width: 24vw;
  }

  .tbl_head01 td {
    padding: 1.6rem !important;
  }
}

@media (max-width: 425px) {
  #patent-md, .m-d-none {
    display: none;
  }
}

/* 게시판 공통 */
#bo_cate {
  text-align: center;
  margin: 0 !important;
  margin-bottom: 6rem !important;
  h2 {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 700;
    margin-bottom: 3rem !important;
  }
}
#bo_cate ul {
  overflow-x: auto;
  display: flex;
  margin: 0 auto;
  width: fit-content;
}
#bo_cate_ul li {
  padding: 0 !important;
  a {
    font-size: 1.8rem;
    padding: 1.6rem 4.6rem;
    border: 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    color: var(--black60);
  }
  a#bo_cate_on {
    background: none;
    border: 0;
    border-bottom: 2px solid var(--black80);
    color: var(--black80);
    box-shadow: none;
  }
  a:hover {
    background: none;
    color: inherit;
  }
}
#bo_btn_top {
  margin: 0 0 3rem 0 !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#bo_btn_top::after {
  display: none !important;
}
#bo_list_total {
  font-size: 14px !important;
  color: var(--black40) !important;
}
#gall_ul {
  border-top: 4px solid var(--black80);
}
.gall_con .gall_img img {
  transition: all .3s ease-in-out;
}
.gall_con:hover .gall_img img {
  scale: 1.1;
}
.gall_box {
  margin-bottom: 0 !important;
}
.bo_tit_plus {
  gap: 1.6rem;
  color: var(--black60);
  .bo_tit_plus_name {
    font-weight: bold;
    color: var(--black80);
  }
}
.bo_tit_date {
  margin-top: 10px;
  color: var(--black40);
  text-align: right;
}
.chk_box {
  margin-bottom: 10px;
}
section#bo_v_info {
  overflow: visible;
  border-bottom: 1px solid var(--border) !important;
}
#bo_list .bo_tit .fa-link,
#bo_list .bo_tit .fa-download {
  width: 22px !important;
  line-height: 22px !important;
  background: var(--lightG) !important;
  color: var(--black40) !important;
}

#bo_w {
  width: min(1080px, 90%);
  margin: 0 auto;
}
#bo_w > h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: bold;
  margin-bottom: 6rem;
}
.bo_w_label {
  font-size: 2rem;
  font-weight: 600;
  display: block;
  margin: 4rem 0 1rem 0;
  strong {
    color: var(--point);
  }
}
#bo_w .bo_w_select select,
#bo_w .bo_w_flie .file_wr {
  height: auto !important;
  padding: 2rem 1rem !important;
  border-radius: 0 !important;
  border: 0 !important;
  border-bottom: 1px solid var(--border) !important;
  color: var(--black60) !important;
  font-size: 16px;
}
#bo_w .bo_w_flie .lb_icon {
  position: static !important;
}
.wr_ct-guide {
  color: var(--black60);
  line-height: 1.8;
}
#bo_w .bo_w_flie .file_del {
  position: static !important;
  font-size: inherit !important;
  color: var(--point) !important;
  display: block;
  margin-top: 1rem;
  text-align: right;
}
#bo_w .bo_w_link label {
  height: auto !important;
  line-height: 56px !important;
}

.board-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: bold;
  text-align: center;
  padding-bottom: 3rem;
  border-bottom: 3px solid var(--black80);
}
#bo_v_title .bo_v_cate {
  line-height: 18px !important;
  background: var(--base) !important;
  color: var(--main) !important;
  padding: 4px 8px !important;
  font-weight: 500;
  margin-bottom: 1rem;
}

#bo_v_title_wrp {
  text-align: center;
  padding: 5rem;
  border-bottom: 1px solid var(--border);
  .if_date {
    color: var(--black40);
    margin-bottom: 1rem;
  }
  .bo_v_tit {
    font-size: clamp(24px, 3vw, 36px) !important;
    margin: 0 !important;
  }
}
#bo_v_con {
  width: min(100rem, 100%) !important;
  margin: 0 auto 12rem !important;
  line-height: 1.7em;
  min-height: 200px;
  padding-top: 6rem;
  word-break: keep-all !important;
  p span {
    font-weight: bold;
    display: block;
    margin-bottom: 1.4rem;
  }
}
#bo_v_con a {
  color: #000;
  text-decoration: underline;
}
#bo_v_con img {
  width: auto !important;
  height: auto !important;
  padding: 2rem 0;
}
.bo_v_com {
  margin: 0 !important;
  margin-top: 2rem;
}
#bo_v_link {
  background: #f2f2f2;
  margin-top: 6rem;
  padding: 2rem;
}
.bo_v_link_wrap {
  gap: 2rem;
  align-items: center;
  i {
    font-size: 4rem;
    color: var(--black40);
  }
  h3 {
    font-size: 2rem;
    font-weight: 700;
  }
  a {
    color: var(--black60) !important;
    float: none !important;
  }
}
#bo_v_link:hover a {
  color: var(--main) !important;
}
.bo_v_nb {
  margin: 8rem 0 20px 0 !important;
}
.bo_v_nb li {
  border-top: 1px solid var(--border) !important;
  padding: 2rem !important;
}
.bo_v_nb li:last-child {
  border-bottom: 1px solid var(--border) !important;
}

/* 게시판 검색창 */
.bo_search_select {
  border: 1px solid var(--border);
  padding: 10px;
}
.bo_search_field {
  display: inline-block;
  background: var(--lightG);
  padding: 0 10px;
}
.bo_search_input {
  border: 0;
  background: transparent;
  padding: 12px 10px;
}
.bo_search_btn {
  border: 0;
  background: transparent;
}
.form_bo_btn_top {
  justify-content: right !important;
}

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

/* 게시판 목록 글 전체선택 */
.all_chk.chk_box input[type="checkbox"] + label span {
  top: 2px !important;
}

/* 화면낭독기 사용자용 */
#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 {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 8rem !important;
} /* 서식단계 진행 */

.btn_submit {
  border: 0;
  background: var(--main);
  color: #fff;
  cursor: pointer;
  border-radius: 3px;
}
.btn_submit:hover {
  background: var(--main-dark);
}
.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: var(--black80);
  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;
  border: 0;
  background: var(--black80);
  border-radius: 3px;
  color: #fff;
  text-decoration: none;
  vertical-align: top;
  transform: translate(-10%, 25%);
} /* 우편번호검색버튼 등 */
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_more_opt {
  margin-top: 2px;
}
.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: #bababa;
  text-decoration: none;
  vertical-align: middle;
  padding: 0 !important;
} /* 관리자 전용 버튼 */
.btn_admin:hover,
a.btn_admin:hover {
  color: #ff3746;
}

/* 기본테이블 */
.tbl_wrap table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0 5px;
  border-bottom: 1px solid var(--border);
}
.tbl_wrap caption {
  padding: 10px 0;
  font-weight: bold;
  text-align: left;
}
.tbl_head01 {
  border-top: 4px solid var(--black80);
}
.tbl_head01 caption {
  padding: 0;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}
.tbl_head01 thead th {
  padding: 2rem;
  font-weight: 700;
  text-align: center;
  color: var(--black80);
  border-bottom: 1px solid #ececec;
}
.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: var(--black40);
  padding: 2.4rem;
  border-top: 1px solid #ecf0f1;
  border-bottom: 1px solid #ecf0f1;
  line-height: 1.4em;
  word-break: break-all;
}
.notice_icon {
  color: var(--main) !important;
  background: var(--base);
  padding: 4px 12px;
}
.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: 0;
  border-bottom: 1px solid var(--border);
  background: #fff;
  color: var(--black80);
  vertical-align: middle;
  padding: 2rem 1rem;
  font-size: 16px;
}
.tbl_frm01 textarea {
  padding: 2px 2px 3px;
}

.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;
}

/*기본 리스트*/
.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: 11rem;
  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, 0.1);
  -moz-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 10px rgba(0, 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 {
  width: fit-content;
  margin: 3rem auto 0 auto;
  padding-top: 5rem;
}
.pg {
  text-align: center;
}
.pg_page,
.pg_current {
  display: inline-block;
  vertical-align: middle;
}
.pg a:focus,
.pg a:hover {
  text-decoration: none;
}
.pg_page {
  color: #959595;
  font-size: 1.083em;
  height: 36px;
  line-height: 36px;
  padding: 0 5px;
  min-width: 36px;
  text-decoration: none;
}
.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;
}
.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;
  font-weight: bold;
  height: 36px;
  line-height: 36px;
  padding: 0 10px;
  min-width: 36px;
}

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

/* 커뮤니티 게시판 그룹 nav */
.group-nav {
  margin: 20px 0;
  border-bottom: 1px solid #ddd;
}
.group-nav ul {
  display: flex;
  gap: 20px;
}
.group-nav li a {
  text-decoration: none;
  color: var(--black60);
  padding: 5px 10px;
  display: inline-block;
}
.group-nav li.active a {
  font-weight: bold;
  color: var(--black80);
  border-bottom: 2px solid var(--black80);
}
