:root {
  --font-main:
          "NanumSquareNeo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          sans-serif;

  --color-black: #1A2B45;
  --color-white: #fff;
  --color-light: #F0F4FA;
  --color-main: #2E6FD8;
  --color-sub: #1A3A6B;
  --color-border: #eee;

  --filter-white: brightness(0) invert(1);
  --filter-black: brightness(0) saturate(100%) invert(15%) sepia(0%)
  saturate(0%) hue-rotate(0deg) brightness(95%) contrast(85%);
  --filter-sub: brightness(0) saturate(100%) invert(17%) sepia(34%)
  saturate(2300%) hue-rotate(204deg) brightness(94%) contrast(96%);
  --filter-main: brightness(0) saturate(100%) invert(35%) sepia(72%)
  saturate(1800%) hue-rotate(206deg) brightness(94%) contrast(91%);

  --box-shadow-5: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
}

.gradient-bg-area {
  background: url(../images/section1-bg.png) no-repeat center / cover;
}

/* 諛곌꼍�щ챸 */
.main-visual,
.section1 {
  background: transparent;
}

.main-visual .slider {
  width: 100%;
  overflow: hidden;
  border-radius: 0 0 100px 100px;
  box-shadow: 0 5px 16px 0 rgba(0, 0, 0, 0.3);
}

.main-visual .slider .item {
  width: 100%;
  height: 796px;
}

.main-visual .slider .item.item-01 {
  background: url(../images/slide-culture-01.jpg) no-repeat center / cover;
}

.main-visual .slider .item.item-02 {
  background: url(../images/main-slider-bg-01.png) no-repeat center / cover;
}

.main-visual .slider .item.item-03 {
  background: url(../images/main-slider-bg-01.png) no-repeat center / cover;
}

.main-visual .slider .item.item-04 {
  background: url(../images/main-slider-bg-01.png) no-repeat center / cover;
}

.main-visual .slider .item.item-05 {
  background: url(../images/main-slider-bg-01.png) no-repeat center / cover;
}

.content-box {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 60px;
  left: 50%;
  transform: translateX(-50%);
  top: 170px;
}

.content-box h2 {
  color: var(--color-light);
  font-size: 80px;
  line-height: 1.5;
}

.btn-more {
  margin-top: 25px;

  width: 188px;
  height: 58px;
  background-color: var(--color-white);
  padding: 12px 23px;
  border-radius: 12px;
  border: 1px solid #ededed;
  filter: drop-shadow(0 4.658px 11.646px rgba(0, 0, 0, 0.08));

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 10px;

  font-size: 16px;
  font-weight: 800;
}

.btn-more img {
  width: 20px;
  height: 20px;
}

@keyframes rotateSnowflake {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.snowflake-layer {
  top: 0;
  left: 0;
  width: 100%;
  height: 796px;
  overflow: hidden;
  border-radius: 0 0 100px 100px;
  pointer-events: none;
  z-index: 5;
}

.snowflake {
  position: absolute;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 5;

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

.snowflake img {
  width: 70%;
  height: auto;

  animation: rotateSnowflake 20s linear infinite;
}

.snowflake-01 {
  width: 45vw;
  height: 45vw;
  right: -15%;
  bottom: -2%;
}

.snowflake-01 img {
  opacity: 0.5;
}

.snowflake-02 {
  width: 15vw;
  height: 15vw;
  left: -6%;
  bottom: -7%;
}

.snowflake-01 img {
  opacity: 0.3;
}

.snowflake-02 img {
  animation-duration: 12s;
  animation-direction: reverse;
  opacity: 0.2;
}

.slider-controls {
  width: 100%;
  max-width: 1520px;
  padding: 0 60px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100px;
}

.paging-info {
  display: flex;
  align-items: center;
  gap: 24px;
}

.paging-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);

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

.paging-btn::after {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
}

.paging-btn.prev-btn::after {
  background: url(../images/icon-CaretLeft.svg) no-repeat center / cover;
}

.paging-btn.next-btn::after {
  background: url(../images/icon-CaretRight.svg) no-repeat center / cover;
}

.progress-area {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.progress-area .num {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-light);
}

.progress-bar {
  position: relative;
  background: #ededed4d;
  height: 4px;
  width: 140px;
  border-radius: 10px;
}

.progress-bar .bar {
  display: block;
  width: 0;
  height: 100%;
  background-color: var(--color-light);
  border-radius: 10px;
  transition: width 0.6s ease-in-out;
}

.progress-bar.moving .bar {
  transition: width 0.3s ease-out;
}

section {
  padding: 130px 0;
}

.section1 {
  background-image: url("../images/sc1-snow-bg.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto;
}

.search-input-box {
  margin: 0 auto;
  padding: 16px;
  width: 100%;
  max-width: 900px;
  height: 100px;
  background-color: var(--color-white);
  border-radius: 28.971px;
  border: 2px solid var(--color-main);
  box-shadow: var(--box-shadow-5);

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.search-input-box input {
  width: 100%;
  height: 100%;
  font-size: 23px;
}

.search-input-box input::placeholder {
  color: #99999970;
  letter-spacing: -0.05em;
  font-size: 23px;
  font-weight: 800;
}

.sc1-btn-search {
  width: 70px;
  height: 70px;
  border-radius: 17px;
  background-color: var(--color-light);

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

.section-head {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.sc1-head {
  margin-top: 55px;
}

.category-tag {
  padding: 9.5px 27px;
  border-radius: 13px;

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

  font-size: 16px;
  line-height: 25px;
  font-weight: 900;
}

.category-tag.tag-sky {
  background-color: var(--color-sub);
  color: var(--color-white);
}

.category-tag.tag-white {
  background-color: var(--color-white);
  color: var(--color-main);
}

.title-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.title-wrap::before {
  display: block;
  content: "";
}

.section-title {
  color: var(--color-black);
  font-size: 60px;
  font-weight: 800;
}

.btn-view-all {
  width: 185px;
  height: 58px;
  padding: 11px 22px;
  border-radius: 12px;
  border: 1px solid #ededed;
  box-shadow: var(--box-shadow-5);
  background: var(--color-white);
  font-weight: 800;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.btn-view-all::after {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/icon-ArrowRight.svg) no-repeat center / cover;
}

.week-calendar-wrap {
  margin-top: 63px;

  background-color: var(--color-white);
  width: 100%;
  border-radius: 29px;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.08);
  display: flex;
}

.calendar-label {
  padding: 40px;
  border-right: 1px solid #ffeae9;
}

.icon-calendar {
  background-color: var(--color-light);
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-calendar::after {
  content: "";
  display: block;
  width: 39px;
  height: 39px;
  background: url(../images/icon-CalendarCheck.svg) no-repeat center / cover;
}

.calendar-label span {
  display: block;
  margin-top: 22px;
  font-size: 25px;
  font-weight: 800;
}

.calendar-grid {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.grid-header {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ffeae9;
}

.day-name {
  padding: 18px 13px;
  width: 100%;
}

.day-name button {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  color: var(--color-black);
  font-size: 23px;
  font-weight: 800;
}

.day-name.active button {
  background-color: var(--color-main);
  color: var(--color-white);
}

.grid-content {
  display: flex;
  align-items: center;
}

.day-data {
  width: 100%;
  height: 100%;
  padding: 30px 22px;
  border-right: 1px solid #ffeae9;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
}

.day-data:last-child {
  border-right: none;
}

.day-data .num {
  color: #777;
  font-size: 23px;
  font-weight: 700;
}

.day-data .dots {
  display: flex;
  justify-content: center;
  align-items: center;
}

.leaf {
  display: block;
  width: 23px;
  height: 23px;
  background: url(../images/icon-Leaf.png) no-repeat center / cover;
}

.sc-slider-wrap {
  margin-top: 55px;
  overflow: visible;
}

.sc-slider {
  display: block;
  margin: 0 -15px;
}

.sc-item {
  padding: 0 15px;
  outline: none;
}

.sc-item a {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sc-item .thumb-box {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.sc1-thumb-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.sc-item .thumb-box .info-overlay {
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;

  background-color: var(--color-white);
  border-radius: 13px;
  width: 90%;
  height: 43px;
  padding: 10px;

  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-new {
  background-color: var(--color-light);
  border-radius: 5px;
  padding: 3px 6px;

  color: var(--color-sub);
  font-size: 11px;
  font-weight: 900;
  line-height: 25px;
}

.sc-item-title {
  color: var(--color-black);
  font-size: 23px;
  font-weight: 800;
}

.slick-prev,
.slick-next {
  display: none !important;
}

.slider-nav {
  width: calc(100% + 60px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.slider-nav button {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 1px solid #cfcfcf;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  pointer-events: auto !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.slider-nav button img {
  filter: var(--filter-black);
  width: 32px;
}

.slider-nav button:hover {
  background-color: var(--color-main);
  border-color: var(--color-main);
}

.slider-nav button:hover img {
  filter: var(--filter-white);
}

.sc-slider .slick-track {
  display: flex !important;
  align-items: flex-start;
}

.section2 {
  background-color: #f6fafb;

  background-image: url("../images/sc2-bg.png");
  background-position: 80% center;
  background-repeat: no-repeat;
  background-size: auto;
}

.sc2-head {
  align-items: flex-start;
}
.sc2-title-wrap {
  justify-content: flex-start;
  align-items: center;
}

.sc2-title-wrap::before {
  display: none;
}
.sc2-thumb-box {
  border: 1px solid #eee;
}

.btn-view-sns {
  height: 58px;
  padding: 11px;
  border-radius: 12px;
  border: 1px solid #ededed;
  background: var(--color-white);
  font-weight: 800;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.btn-view-sns::before {
  display: block;
  content: "";
  width: 37px;
  height: 37px;
}
.btn-view-sns.instagram::before {
  background: url(../images/icon-sns-instagram.svg) no-repeat center / cover;
}

.btn-view-sns.youtube::before {
  background: url(../images/icon-sns-youtube.svg) no-repeat center / cover;
}

.section3 {
  background: url("../images/sc3-bg-1.webp") no-repeat center / cover;
}
.section3::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/sc3-bg-2.svg") no-repeat center / auto;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}
.section3 .container {
  position: relative;
  z-index: 1;
}

.sc3-title {
  color: var(--color-white);
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.9);
}

.sc-item .sc3-thumb-box {
  aspect-ratio: 4 / 5;
  background-color: var(--color-white);
  border: 2px solid var(--color-white);
  padding: 20px;
  transition: all 0.3s ease;
}

.sc3-thumb-box-img-area {
  overflow: hidden;
  border-radius: 16px;
  display: flex;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.news-date {
  display: flex;
  margin-top: 18px;
  color: var(--color-black);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.4;
}
.news-date img {
  display: inline;
  width: 23px;
  height: 23px;
  transform: translateY(5px);
  filter: var(--filter-main);
}

.sc-item .sc3-thumb-box:hover {
  background-color: var(--color-main);
}
.sc-item .sc3-thumb-box:hover .news-date {
  color: var(--color-white);
}
.sc-item .sc3-thumb-box:hover .news-date img {
  filter: var(--filter-white);
}

.section4 {
  background: url(../images/Culture.svg) no-repeat 103% 0 / auto;
}

.sc4-head {
  gap: 20px;
  justify-content: flex-start;
  align-items: flex-start;
}
.sc4-title {
  display: flex;
  gap: 10px;
  align-items: center;
}
.sc4-title-wrap {
  justify-content: flex-start;
}
.sc4-title-wrap::before {
  display: none;
}
.sc4-title img {
  border-radius: 50%;
  border: 3px solid var(--color-sub);
}

.youtube-list {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.youtube-item {
  width: 100%;
  aspect-ratio: 11 / 6;
}

.youtube-item a {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
.youtube-item:nth-child(1) a {
  background-image: url(../images/sc4-yt-img-01.png);
}
.youtube-item:nth-child(2) a {
  background-image: url(../images/sc4-yt-img-02.png);
}
.youtube-item:nth-child(3) a {
  background-image: url(../images/sc4-yt-img-03.png);
}

.youtube-item a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #00000055;
}
.youtube-item a img {
  width: 50%;
  max-width: 65px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.section5 {
  background-image: url(../images/sc5-bg.png);
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

.sc5-slider-wrap {
  width: 100%;
  margin-top: 40px;
}
.sc5-overflow-hidden {
  width: 100%;
  overflow: visible;
}
.sc5-slider-container {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease-in-out;
  justify-content: flex-start;
  flex-wrap: nowrap;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);

  user-select: none;
  -webkit-user-drag: none;
}
.sc5-item {
  position: relative;
  width: 354px;
  height: 330px;
  border-radius: 30px;
  padding: 40px;
  background-color: #fff;
  background-blend-mode: overlay;
  border: 3px solid #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.sc5-item * {
  -webkit-user-drag: none;
  user-select: none;
}
.sc5-item:not(.is-active) {
  /*background-image: none !important;*/
}

.sc5-item.is-active {
  /*width: 480px;*/
  color: #fff;
  background-blend-mode: multiply;
  /*border-color: var(--color-sub);*/
}

.sc5-item .item-tag {
  color: var(--color-main);
  font-size: 16px;
  font-weight: 900;
  padding: 9px 14px;
  justify-content: center;
  align-items: center;
  border-radius: 13px;
  background: var(--color-light);
}
.sc5-item.is-active .item-tag {
  background-color: var(--color-white);
}
.sc5-item h3 {
  margin-top: 16px;
  color: var(--color-black);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.07em;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sc5-item.is-active h3 {
  color: var(--color-white);
}

.sc5-item .item-txt {
  /*display: none;*/
  position: absolute;
  left: 0;
  top: 0;
  color: #999;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  margin-top: auto;
  margin-bottom: 30px;
  /*display: -webkit-box;*/
  /*-webkit-line-clamp: 4;*/
  /*line-clamp: 4;*/
  /*-webkit-box-orient: vertical;*/
  /*overflow: hidden;*/
}
.sc5-item .btn-view-more {
  display: flex;
  width: 100%;
  max-width: 185px;
  height: 58px;
  padding: 10px 20px;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  background-color: var(--color-white);
  font-size: 16px;
  font-weight: 800;
  color: var(--color-black);
  border-radius: 10px;
  border: 1px solid #eee;
}
.sc5-item .btn-view-more::after {
  content: "";
  display: block;
  width: 19px;
  height: 20px;
  background: url(../images/icon-ArrowRight.svg) no-repeat center / cover;
}
.sc5-item.is-active .item-txt {
  color: var(--color-white);
}

.section6 {
  position: relative;
  background: none !important;
  overflow: hidden;
}
.section6::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/sc6-bg.svg) no-repeat center / cover;
  opacity: 0.4;
  z-index: -1;
}
.section6 .container {
  position: relative;
  z-index: 10;
  isolation: isolate;
}
.sc6-item:hover {
  border-color: var(--color-sub);
}
.sc6-slider {
  overflow: hidden;
}
.sc6-slider .slick-track {
  padding: 50px 0;
}
.sc6-date {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  font-weight: 400;
  border-radius: 13px;
  border: 1px solid #eee;

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

.sc6-badge-area {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;

  margin-top: 43px;
}
.sc6-badge-area span {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 900;
  border-radius: 13px;
  background: var(--color-main);
  display: flex;
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
}
.sc6-badge-area span.new-badge {
  color: var(--color-main);
  background-color: var(--color-light);
}
.sc6-contents h3 {
  text-align: center;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.6;

  margin: 20px 0;
}
.sc6-contents p {
  color: #999;
  font-size: 16px;
  line-height: 1.8;
  padding: 0 5px;
  text-align: center;

  margin-bottom: 55px;
}

.sc6-item {
  background-color: var(--color-white);
}

.sc6-item .sc6-btn-more {
  width: 100%;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #eee;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}
.sc6-btn-more span {
  font-weight: 800;
  font-size: 16px;
}
.sc6-btn-more img {
  width: 17px;
}
.sc-item.sc6-item {
  margin: 0 15px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 30px;
}
@media (max-width: 1400px) {
  .section1 {
    background-size: 103% auto;
  }
  .section3::before {
    background-size: 110% auto;
  }
  .section4 {
    background-size: 50% auto;
  }
}

@media (max-width: 1200px) {
  .sc5-slider .sc-item {
    width: 40vw !important;
  }
  .sc5-slider .sc-item.slick-current {
    width: 55vw !important;
  }
}

@media (max-width: 768px) {
  .sc5-slider .sc-item {
    width: 70vw !important;
    margin-right: 15px;
  }
  .sc5-slider .sc-item.slick-current {
    width: 85vw !important;
  }
}

/* =============================================
   재단소식 (.sec-2) - 메인 배너 + 열린마당 탭
   출처: https://jjct.or.kr/css/main.css (원본 그대로)
   ============================================= */

#main .sec-2{
  margin: 50px auto;
}

#main .sec-2 .top-tit{
  font-family: 'SEBANG_Gothic_Bold';
  margin: 0 auto 50px auto;
  text-align: center;
}

#main .sec-2 .top-tit p{
  font-family: 'GmarketSansMedium';
  letter-spacing: 0.05em;
  color: #ddd;
}

#main .sec-2 .cbox-wrap{
  gap: 20px;
}

#main .sec-2 .mainBannerSwiper{
  width: 445px;
  height: 458px;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
}

#main .sec-2 .mainBannerSwiper .swiper-slide {
  position: relative;
}

#main .sec-2 .mainBannerSwiper .swiper-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-prev::after,
.swiper-button-next::after {display: none;}
.swiper-button-prev,
.swiper-button-next {margin-top: 0 !important; transform: translateY(-50%);}
.swiper-button-prev img,
.swiper-button-next img {width: 24px;}

.mainBannerSwiper .swiper-slide img {position: absolute; max-width: 100%; max-height: 100%; object-fit: cover; top: 50%; left: 50%; transform: translate(-50%, -50%);}
.banner_control {
  height: 50px;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  padding: 0 20px;
}

.banner_control .swiper-pagination {position: relative; font-size: 1em;}
.banner_control .swiper-button-next,
.banner_control .swiper-button-prev {
  width: 30px !important;
  height: 30px !important;
  border-radius: 30px;
  border: 1px solid #ddd;
}

.banner_control .swiper-stop-pause {cursor: pointer; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center;}
.banner_control .swiper-stop-pause.swiper_play .btn_play {
  display: none;
}

.banner_control .swiper-stop-pause.swiper_pause .btn_pause {
  display: none;
}



.banner_control .material-symbols-outlined {
  font-variation-settings:
          'FILL' 1,
          'wght' 400,
          'GRAD' 0,
          'opsz' 24
}


.banner_control {display: flex; align-items: center;}
.banner_control .swiper-button-next,
.banner_control .swiper-button-prev {position: static; transform: none; width: auto; height: auto;}
.banner_control .swiper-pagination {position: static; left: auto; bottom: auto;}
.banner_control .swiper-pagination-fraction {font-weight: 700; display: flex; justify-content: space-between; align-items: center;}
.banner_control .swiper-pagination-fraction::after {
  content: "";
  display: block;
  width: 1px;
  height: 15px;
  background: #ddd;
  position: absolute;
  top: 50%;
  left: 45%;
  transform: skew(-20deg) translate(-50%,-50%);
}
.banner_control .swiper-pagination-fraction .fraction_num::before {content: "0"; display: inline-block;}
.banner_control .swiper-pagination-fraction .swiper-pagination-current {position: relative;}
.banner_control .swiper-pagination-fraction .swiper-pagination-total {color: #ccc;}
.banner_control .swiper-pagination-bullet {width: 10px; height: 10px; margin: 0 6px !important; opacity: 1 !important; background: #eee;}
.banner_control .swiper-pagination-bullet-active {background: #111;}
.banner_control .more_title_wrap {margin-bottom: 0;}
.banner_control .swiper-button-lock {display: flex !important;}

.banner_control .swiper-pagination{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 50px;
  margin-right: 10px;
}


.banner_control .box{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 65px;
  gap: 0 5px;
  margin-right: 5px;
}

.swiper-button-next,
.swiper-button-prev{
  color: #111;
}

#main .ntc-wrap{
  width: 445px;
  height: 458px;
}

#main .ntc-wrap .tabs{
  gap: 0 10px;
}

#main .ntc-wrap .tabs li{
  flex: 1;
}



#main .ntc-wrap .tabs li a{
  width: 100%;
  font-family: 'SEBANG_Gothic_Bold';
  text-align: center;
  border: 1px solid #eaeaea;
  background-color: #f7f7f7;
  border-radius: 10px;
}

#main .ntc-wrap .tabs li a.active{
  background-color: var(--color-sub);
  border: none;
}

#main .tabgroup{
  height: 400px;
  border: 1px solid #eaeaea;
  background-color: #f7f7f7;
  padding: 30px;
  border-radius: 10px;
  margin-top: 10px;
}

#main .tabgroup .list .item{
  border: 1px solid #eaeaea;
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
}

#main .tabgroup .list .item:not(:last-child){
  margin-bottom: 10px;
}

#main .tabgroup .list .item a,
#main .tabgroup .list .item b{
  display: block;
  height: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  white-space: nowrap;
  /*font-family: 'GmarketSansMedium';*/
}


#main .quick-wrap{
  position: relative;
  flex: 1;
  height: 458px;
  padding: 30px;
  border-radius: 10px;
  background-color: #ce4e4e;
}
#main .quick-wrap.v2{
  background: url(https://jjct.or.kr/images/main/main_new_fund2.png) no-repeat center center;
  background-size: cover;
}
#main .quick-wrap.v3{
  background: url(https://jjct.or.kr/images/main/main_new_fund3.png) no-repeat center center;
  background-size: cover;
}
#main .quick-wrap.v4{
  background: url(https://jjct.or.kr/images/main/main_new_fund4.png) no-repeat center center;
  background-size: cover;
}
#main .quick-wrap.v3::after,
#main .quick-wrap.v4::after {
  display: none;
}
#main .quick-wrap::after {
  display: block;
  content: "JJTC";
  color: rgba(255 255 255 / 20%);
  position: absolute;
  bottom: -78px;
  right: -20px;
  font-size: 134px;
  font-family: 'GmarketSansBold';
}

#main .quick-wrap .top{
  color: #fff;
  margin-bottom: 20px;
}

#main .quick-wrap .top .tit{
  /*font-family: 'SEBANG_Gothic_Bold';*/
  margin-bottom: 48px;
  font-size: 32px;
}

#main .quick-wrap .bottom{
  gap: 20px;
}

#main .quick-wrap .bottom .item{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100% - 20px) / 2);
  height: 120px;
  border-radius: 10px;
  background-color: #a94141;
  z-index: 9;
}

#main .quick-wrap.v2 .bottom .item{
  background: rgba(0 ,135 ,255, 0.5);
}
#main .quick-wrap.v3 .bottom .item{
  background: rgba(0 ,135 ,255, 0.8);
}
#main .quick-wrap.v4 .bottom .item{
  background: rgb(0 121 229 / 90%);
}
#main .quick-wrap .bottom .item p{
  color: #fff;
  font-family: 'GmarketSansMedium';
  background-repeat: no-repeat;
  background-position: top center;
  padding-top: 35px;
  line-height: 1.2;
  text-align: center;
}

#main .quick-wrap .bottom .item.n-1 p{
  background-image: url("https://jjct.or.kr/images/main/qk-icon-1.png");
  background-size: 21px;
}

#main .quick-wrap .bottom .item.n-2 p{
  background-image: url("https://jjct.or.kr/images/main/qk-icon-2.png");
  background-size: 16px;
}

#main .quick-wrap .bottom .item.n-3 p{
  background-image: url("https://jjct.or.kr/images/main/qk-icon-3.png");
  background-size: 21px;
}

#main .quick-wrap .bottom .item.n-4 p{
  background-image: url("https://jjct.or.kr/images/main/qk-icon-4.png");
  background-size: 20px;
}


/* 열린마당(탭) - .sec-2 .cbox-wrap 내부 우측 영역 */
#main .ntc-wrap {
    width: 445px;
    height: 458px;
}

.tabs{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.tabs li a{
  font-size: 24px;
  font-weight: bold;
  padding: 8px 40px;
}

.tabs li a.active{
  background-color: #3166ff;
  color: #fff;
  border-radius: 10px;
}

#main .ntc-wrap .tabs {
    gap: 0 10px;
}

#main .ntc-wrap .tabs li {
    flex: 1;
}

#main .ntc-wrap .tabs li a {
    width: 100%;
    font-family: 'SEBANG_Gothic_Bold';
    text-align: center;
    border: 1px solid #eaeaea;
    background-color: #f7f7f7;
    border-radius: 10px;
}

#main .ntc-wrap .tabs li a.active {
    background-color: var(--color-sub);
    border: none;
}

#main .tabgroup {
    height: 400px;
    border: 1px solid #eaeaea;
    background-color: #f7f7f7;
    padding: 30px;
    border-radius: 10px;
    margin-top: 10px;
}

#main .tabgroup .list .item {
    border: 1px solid #eaeaea;
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
}

#main .tabgroup .list .item:not(:last-child) {
    margin-bottom: 10px;
}

#main .tabgroup .list .item a,
#main .tabgroup .list .item b {
    display: block;
    height: 25px;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    white-space: nowrap;
    font-family: 'GmarketSansMedium';
}

@media screen and (max-width: 1440px) {
    #main .sec-2 .mainBannerSwiper {
        width: 400px;
    }

    #main .ntc-wrap {
        width: 400px;
    }
}

@media screen and (max-width: 1280px) {
    #main .ntc-wrap {
        width: 320px;
    }
}

@media screen and (max-width: 1024px) {
    #main .sec-2 .mainBannerSwiper,
    #main .ntc-wrap {
        width: calc((100% - 20px) / 2);
    }
}

@media screen and (max-width: 768px) {
    #main .sec-2 .top-tit {
        margin-bottom: 20px;
    }

    #main .sec-2 .mainBannerSwiper,
    #main .ntc-wrap {
        width: 100%;
    }

    #main .sec-2 .ntc-wrap .tabs {
        padding: 0;
        width: 100% !important;
    }

    #main .ntc-wrap .tabs li a {
        padding: 10px 0;
        font-size: 24px;
    }

    #main .tabgroup {
        height: auto;
        padding: 20px;
    }

    #main .ntc-wrap {
        height: auto;
    }
}

@media screen and (max-width: 420px) {
    #main .sec-2 .bottom .sd-wrap .img {
        height: 192px;
    }
}
