@charset "UTF-8";
@import "./tokens.css";  

#wrap {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#container {
  flex: 1 0 auto;
}

#footer {
  flex-shrink: 0;
}

#skip-link .skip-nav {
  position: absolute;
  top: -100px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 16px 16px;
  z-index: 10000;  
}

#skip-link .skip-nav:focus {
  top: 0;
}

.screen {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 0px solid #144eb5;
  outline-offset: 2px;
}

/* main-content  s*/
#main-content {
  width: 100%;
  position: relative;
  margin-bottom: 115px; /*수정*/   /*margin-bottom: 220px;*/
}

#main-content.lg_after {
  margin-bottom: 115px;  /*수정*/   /*margin-bottom: 300px;*/
}

/* #main-content .inner {
  max-width: 1720px;
} */

#main-content,
#main-content.lg_after {
  margin-bottom: 80px;
}

.section_title {
  font-size: 33px;
  color: #1f1f1f;
  letter-spacing: -0.8px;
  line-height: 1;
  white-space: nowrap;
}

.section_title span {
  color: #144eb5;
}

.content-area.main {
  max-width: 1720px;
  width: 100%;
  height: auto;
  min-height: 800px;
  margin: 0 auto;
  border-radius: 200px;
  position: relative;

  min-height: unset;
  padding-top: 80px;
  padding-bottom: 80px;
  background: url(../images/main/visual_wr_new.png) center center / cover no-repeat;
}

.content-area.main:has(.my_work.grid_style) {
  padding-top: 40px;
  padding-bottom: 40px;
}

.content-area.main .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.content-area.lg_befo .inner {
  gap: 30px;
}

.content-area.main .my_work {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  box-shadow: 0 8px 30px rgb(130, 148, 161, 20%);
  backdrop-filter: blur(6px);

  flex-direction: column;
  gap: 20px;
  padding: 20px 30px 25px 30px;
  background: rgba(255, 255, 255, 0.5);
  max-width: 1050px;
  min-width: 1050px;
  border-radius: 40px;
  margin-top: 8px;
}

.content-area.main .my_work .work_title {
  padding: 0 34px;
  display: flex;
  position: relative;
  padding-right: 0;
}

.content-area.main .my_work .work_title h2 {
  font-size: 21px;
  position: relative;
  margin-bottom: 0;
  line-height: 1.5;
}

.content-area.main .my_work .work_title h2::after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  background: url("../images/main/ico_my_work.svg") center center / cover no-repeat;
  left: -35px;
  top: 2.5px;
}

.content-area.main .my_work .work_title .logout {
  border: 1px solid #d0d0d0;
  background-color: #fff;
  padding: 6px 15px;
  font-size: 15px;
  line-height: 1.2;
  border-radius: 75px;
  
  position: absolute;
  left: 125px;
}

.content-area.main .my_work .work_title .logout:hover {
  background-color: #727272;
  color: #fff;
}

.content-area.main .my_work .work_cont {
  padding: 3px 0;
  width: 100%;
}

.content-area.main .my_work .work_cont .list_wrap {
  display: grid;
  width: 100%;
  padding-left: 0;
  border-left: none;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1050px;
  display: grid;
  gap: 14px;
  justify-content: center;
}

.content-area.main .my_work .work_cont .list_wrap[data-count='1'] {
  grid-template-columns: calc((100% - 28px) / 3);
}

.content-area.main .my_work .work_cont .list_wrap[data-count='2'] {
  grid-template-columns: repeat(2, calc((100% - 28px) / 3));
}

.content-area.main .my_work .work_cont .list_wrap[data-count='3'] {
  grid-template-columns: repeat(3, calc((100% - 28px) / 3));
}

.content-area.main .my_work .work_cont .list_wrap[data-count='4'] {
  grid-template-columns: repeat(4, 1fr);
  justify-content: stretch;
}

.content-area.main .my_work .work_cont .list_wrap .list {
  width: 100%;
}

.content-area.main .my_work .work_cont .list_wrap .list>a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #fff;
  border-radius: 50px;
  text-align: center;
  padding: 6px 4px;
  border: 1px solid #fff;
  transition: all 0.3s;
  gap: 6px;
}

.content-area.main .my_work .work_cont .list_wrap .list > a:hover {
  border-color: #144eb5;
  box-shadow: 0 4px 10px 0 rgba(20, 78, 181, 0.2);
}

.content-area.main .my_work .work_cont .list_wrap .list>a .list_name {
  white-space: nowrap;
  font-size: 17px;
  font-weight: 600;
}

.content-area.main .my_work .work_cont .list_wrap .list>a .list_right .count {
  display: flex;
  flex-direction: row;
  gap: 5px;
}

.content-area.main .my_work .work_cont .list_wrap .list>a .list_right .count>p {
  font-weight: 600;
  color: #144eb5;
  background-color: #e8f0fa;
  text-align: center;
  border-radius: 30px;
  width: 28px;
  height: 28px;
  line-height: 28px;
  font-size: 16px;
}

.content-area.main .my_work .work_cont .list_wrap .list > a .list_right .count > img {
  display: none;
}

.content-area.main .my_work .work_cont .list_wrap .list>a .list_right .count .red {
  color: #d9250e;
  background-color: #fff3f3;
}

.content-area.main .main_menu .menu_list {
  display: flex;
  justify-content: center;
  gap: var(--gap-12);
}

.content-area.main .main_menu .menu_list>li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.content-area.main .main_menu .menu_list>li a:hover .image img {
  transform: rotateY(360deg);
  transition: 0.6s;
}

.content-area.main .main_menu .menu_list>li a:hover .menu_name {
  font-weight: 700;
}

.content-area.main .main_menu .menu_list>li a .image {
  width: 100px;
  height: 100px;
  border-radius: 38px;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff30 50%, #ffffff 100%);
  box-shadow: -9px 8px 14px #8294a120;
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  margin-bottom: 14px;
}

.content-area.main .main_menu .menu_list>li a .menu_name {
  font-size: 17px;
  font-weight: 500;
  color: #333;
}

.content-area.main:has(.my_work.grid_style) .main_search #mainSearchBox {
	max-width: 1050px;
}

.content-area.main .main_menu .menu_list li {
  width: 120px;
}

/* ---- main-content ---- */


/* ---- main_notice ---- */
.main_notice {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  max-width: 1720px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  margin-top: 60px;
}

.main_notice.lg_after {
  bottom: -28%;
}

.main_notice .inner {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.main_notice .left {
  width: 48%;
  max-width: 708px;
  margin-left: 0;
  background-color: #fff;
  border-radius: 50px;
  flex-shrink: 0;
}

.main_notice .service_popup {
  position: relative;
  width: 100%;
  max-width: 708px;
  min-width: 400px;
  margin: 0 auto;

}

.main_notice .popup_slide_wrap {
  position: relative;
  overflow: hidden;
}

.main_notice .popup_slide_wrap .swiper-slide {
  text-align: center;
}

.main_notice .img_wrap {
  display: block;
  width: 100%;
  position: relative;
  aspect-ratio: unset;
  height: 310px;
}

.main_notice .view_img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-size: cover;
  background: url("../images/main/main_popup01_new.jpg") center center / cover no-repeat;
}

.main_notice .view_img2 {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-size: cover;
  background: url("../images/main/main_popup02_new.jpg") center center / cover no-repeat;
}

.main_notice .hidden_img {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
  border: 0;
}

.main_notice .popup_slide_control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 296px;
  z-index: 2;
  background-color: #ffffff;
  padding: 19px 23px 10px 0;
  border-top-right-radius: 32px;
}

.main_notice .count_wrap {
  position: relative;
}

.main_notice .count_wrap::after {
  content: '';
  position: absolute;
  top: -51px;
  left: 0;
  background: url('../images/main/popup_control_deco_02.png') center center / cover no-repeat;
  width: 30px;
  height: 30px;
}

.main_notice .count_wrap .count_text {
  font-size: 16px;
  font-weight: 600;
  color: #b2b2b2;
}

.main_notice .count_wrap .count_text.current {
  color: #333;
}

.main_notice .btn_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  position: relative;
}

.main_notice .btn_wrap::after {
  content: '';
  position: absolute;
  bottom: -11px;
  right: -52px;
  background: url('../images/main/popup_control_deco_02.png') center center / cover no-repeat;
  width: 30px;
  height: 30px;
}

.main_notice .btn_wrap .control_btn {
  width: 35px;
  height: 35px;
  background: none;
  border: none;
  cursor: pointer;
  background-color: #fff;
  box-shadow: 0 4px 8px #00000010;
  border-radius: 50%;
  position: relative;
}

.main_notice .btn_wrap .control_btn.prev::after {
  content: "";
  width: 7px;
  height: 13px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../images/main/ico_swiper_arrow_prev.svg") center center / cover no-repeat;
}


.main_notice .btn_wrap .control_btn.next::after {
  content: "";
  width: 7px;
  height: 13px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../images/main/ico_swiper_arrow_next.svg") center center / cover no-repeat;
}

.main_notice .btn_wrap .control_btn.auto::after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../images/main/ico_swiper_pause.svg") center center / cover no-repeat;
}

.main_notice .btn_wrap .control_btn.auto.paused::after {
  content: "";
  width: 11px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../images/main/ico_swiper_ing.svg") center center / cover no-repeat;
}

.main_notice .popup_slide_control .progress_bar {
  position: relative;
  width: clamp(50px, 6vw, 70px);
  height: 2px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.main_notice .popup_slide_control .progress {
  display: block;
  width: 0%;
  height: 100%;
  background: #000000;
  border-radius: inherit;
  transition: width linear;
}

.main_notice .right {
  width: 58.3%;
  max-width: 872px;
  background-color: #fff;
  border-top-right-radius: 180px;
  padding: 0;
  height: 310px;
}

.main_notice .right .right_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
}

.main_notice .right .right_title .right_btn {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.main_notice .right .right_title .right_btn .right_btn_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.main_notice .right .right_title .right_btn .right_btn_wrap .btn {
  border: none;
  color: #646871;
  font-size: 21px;
  font-weight: 700;
  padding: 0 10px;
  position: relative;
  
  padding: 0 24px;
  border-radius: 16px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  transition: none;
  padding-top: 6px;
}

.main_notice .right .right_title .right_btn .right_btn_wrap .btn.active {
  background: #144eb5;
  color: #fff;
}

.main_notice .right:has(.btn:nth-child(2).active) .right_title .right_btn .right_btn_wrap .btn.active {
  background: #3770cf;
}

.main_notice .right:has(.btn:nth-child(3).active) .right_title .right_btn .right_btn_wrap .btn.active {
  background: #516182;
}

.main_notice .right .right_title .right_btn .right_btn_wrap .btn.active::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  background: #fff;
  right: 14px;
  top: 10px;
}

.main_notice .right .right_title .right_btn .add {
 margin-right: 1.5rem;
}

.main_notice .right .right_title .right_btn .add img {
  transition: 0.5s;
}

.main_notice .right .right_title .right_btn .add:hover img {
  transform: rotate(360deg);
  transition: 0.5s;
}

.main_notice .right .right_contents {
  background: #144eb5;
  border-radius: 40px;
  padding: 1.5rem;
  height: 262px;
}

.main_notice .right:has(.btn:nth-child(1).active) .right_contents {
  border-top-left-radius: 0;
}

.main_notice .right:has(.btn:nth-child(2).active) .right_contents {
  background: #3770cf;
}

.main_notice .right:has(.btn:nth-child(3).active) .right_contents {
  background: #516182;
}

.main_notice .right .right_contents .tab_panel {
  display: flex;
  justify-content: center;
  gap: 26px;
}

.main_notice .right .right_contents .tab_panel>li {
  width: 328px;
  position: relative;
  width: auto;
  flex: 1;
}

.main_notice .right .right_contents .tab_panel>li a {
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  box-shadow: -5px 8px 14px #8294a120;

  width: auto;
  flex: 1;

  background: #fff;
  justify-content: space-between;
  padding: 25px 30px 28px 30px;
  padding-bottom: 0;
  gap: 10px;
}

.main_notice .right .right_contents .tab_panel,
.main_notice .right .right_contents .tab_panel > li,
.main_notice .right .right_contents .tab_panel > li a {
  height: 100%;
}

.main_notice .right .right_contents .tab_panel>li a:hover .deco::after {
  width: 50px;
  height: 50px;
  transition: 0.3s;
}

.main_notice .right .right_contents .tab_panel>li .cls_noti {
  display: block;
  color: #078d97;
  font-size: 17px;
  font-weight: 700;
}

.main_notice .right .right_contents .tab_panel>li .cls_data {
  display: block;
  color: #144eb5;
  font-size: 17px;
  font-weight: 700;
}

.main_notice .right:has(.btn:nth-child(2).active) .cls_noti,
.main_notice .right:has(.btn:nth-child(3).active) .cls_data {
  display: none;
}

.main_notice .right .right_contents .tab_panel > li .cls_noti {
  color: #3871ce;
}

.main_notice .right .right_contents .tab_panel > li .cls_data {
  color: #516182;
}

.main_notice .right .right_contents .tab_panel>li .text {
  display: inline-block;
  font-size: 15px;
  color: #333;
  font-weight: 600;
  text-align: left;
  line-height: 1.3;

  min-height: unset;
  max-height: 90px;
  padding: 10px 0;
  padding-right: 20px;
}

.main_notice .right .right_contents .tab_panel>li:hover .text {
  font-weight: 700;
}

.main_notice .right .right_contents .tab_panel>li .date {
  position: relative;
  font-size: 15px;
  color: #898989;
  margin-top: 16px;

  border-top: 1px solid #dfdfdf;
  padding: 15px 0 20px 23px;
  line-height: 1.2;
}

.main_notice .right .right_contents .tab_panel>li .date::after {
  content: "";
  position: absolute;
  left: 0;
  
  background: url(../images/main/ico_time.svg) center center / cover no-repeat;
  width: 18px;
  height: 18px;
  
  top: 15px;
}

.main_notice .right .right_contents .tab_panel>li .deco {
  display: block;
  position: absolute;
  top: 0;
  right: 0; 
  
  width: 88px;
  height: 88px;
  background-color: #144eb5;
  background-image: url(../images/main/notice_deco02.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: -3px;
  box-shadow: 1px 0 0 #144eb5;
}

.main_notice .right .right_contents .tab_panel > li a:hover .deco {
  transition: 0.3s;
}

.main_notice .right:has(.btn:nth-child(2).active) .right_contents .tab_panel > li .deco {
  background: url(../images/main/notice_deco02.png) #3770cf;
  box-shadow: 1px 0 0 #3770cf;
}

.main_notice .right:has(.btn:nth-child(3).active) .right_contents .tab_panel > li .deco {
  background: url(../images/main/notice_deco02.png) #516182;
  box-shadow: 1px 0 0 #516182;
}

.main_notice .right .right_contents .tab_panel > li .deco:before {
  content: '';
  position: absolute;
  top: 0;
  left: -2px;
  width: 5px;
  height: 100%;
  background: #ffffff;
}

.main_notice .right .right_contents .tab_panel > li .deco.blue::after {
  content: '';
  width: 40px;
  height: 40px;
  background: url(../images/main/ico_notice_blue02.svg) center center / cover no-repeat;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.3s;
}

.main_notice .right .right_contents .tab_panel > li .deco.green::after {
  content: '';
  width: 40px;
  height: 40px;
  background: url(../images/main/ico_notice_green02.svg) center center / cover no-repeat;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.3s;
}

.main_notice .right .right_contents .tab_panel > li a:hover .deco::after {
  width: 45px;
  height: 45px;
}
/* ---- main_notice ---- */

/* ---- 통합 검색 영역 ---- */

#mainSearchBox {
  width: 100%;
  max-width: 67%;
}

.content-area.main .main_search {
  margin-top: 0;
  margin-bottom: 10px;  /*수정*/
  padding: 0;
}

.content-area.main .main_search #mainSearchBox {
  max-width: 720px;
}

.main_search .search_wr { 
  width: 100%;
  height: 68px;
  border-radius: 38px;
  background-color: #fff;
  padding: 10px 12px 10px 25px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 20px rgba(130, 148, 161, 0.2);
  box-sizing: border-box;

}

.main_search .search_title {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #222;
}

.main_search .custom-input {
  flex: 1;
  min-width: 0;
  border: none;
  font-size: 1.2rem;
  font-weight: 600;
  height: 40px;
  background: transparent;
  padding: 0 15px;
}

.main_search .main_search_btn {
  flex-shrink: 0;
  height: 100%;
  padding: 0 25px;
  background-color: #1f1f1f;
  color: #fff;
  border-radius: 30px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.main_search {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1720px;
  margin: 20px auto;
  padding: 0 20px;
  box-sizing: border-box;
}
/* ---- 통합 검색 영역 ---- */

/* ---- 반응형 ---- */
@media (max-width: 1510px) {
  /* main_notice */
  .main_notice .left {
    margin-left: 0;
  }

@media (max-width: 1735px) {
  /* main-content */
  .content-area.main {
    border-radius: 0;
  }
}

@media (max-width: 1340px) {
  /* main_notice */
  .main_notice:has(.right.box_style) .inner {
    flex-wrap: wrap;
  }

  .main_notice:has(.right.box_style) .left,
  .main_notice:has(.right.box_style) .right {
    width: 100%;
    max-width: unset;
  }

  .main_notice:has(.right.box_style) .service_popup {
    max-width: unset;
  }

  .main_notice:has(.right.box_style) .img_wrap {
    width: 100%;
    height: unset;
    aspect-ratio: 2 / 1;
  }

  .main_notice:has(.right.box_style) .right,
  .main_notice .right.box_style .right_contents {
    height: auto;
  }
}

@media (max-width: 1300px) {
  /* main_notice */
  
  .main_notice .right .right_title .right_btn .btn {
    font-size: 16px;
  }

  .main_notice .right .right_title .right_btn .add {
    margin-left: 15px;
  }

  .main_notice .right .right_title .right_btn .add img {
    width: 15px;
    height: 15px;
    object-fit: cover;
  }
  
  /* 통합 검색 영역 */
  #mainSearchBox {
    max-width: 80%;
  }
  
}

@media (max-width: 1200px) {
  /* main-content */
  #main-content {
    margin-bottom: 180px;
  }

  /* main_notice */
  .main_notice {
    bottom: -8%;
  }

  .main_notice .right {
    margin-top: 0;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
  }

  .main_notice .right .right_title .right_btn {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
  }

  .main_notice .right .right_contents .tab_panel > li .date {
    margin-top: 8px;
  }

  .main_notice .right .right_contents .tab_panel > li .text {
    font-size: 18px;
  }
}

@media (max-width: 1120px) {
  /* main-content */
  .content-area.main .my_work {
    min-width: 100%;
  }

  .content-area.main .my_work .work_cont .list_wrap[data-count='4'] {
    grid-template-columns: repeat(3, 1fr);
  }
}



@media (max-width: 1024px) {

  .section_title {
    font-size: 27px;
  }

 /* main-content */
  
  .content-area.main {
    padding-bottom: 45px;
    padding-top: 15px;
    min-height: 255px;
  }
  
   .content-area.main:has(.my_work.grid_style) {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .content-area.main .my_work {
    margin-top: 20px;
  }

  .content-area.main .my_work.grid_style {
    margin-top: 0;
  }
  
  .content-area.main .my_work .work_title {
    padding: 0 24px;
  }

  .content-area.main .main_menu {
    width: 100%;
    
    margin-top: 0 !important;
  }

  .content-area.main .main_menu .menu_list {
    width: 100%;
    justify-content: space-between;
    padding: 0 25px;
    gap: 10px;
  }

  .content-area.main .main_menu .menu_list>li a .menu_name {
    font-size: 15px;
  }

  .content-area.main .main_menu .menu_list>li a .image {
    width: 80px;
    height: 80px;
    border-radius: 25px;
  }

  .content-area.main .main_menu .menu_list>li a .image img {
    width: 55px;
    height: 55px;
    object-fit: cover;
  }
  
  #main-content,
  #main-content.lg_after {
    margin-bottom: 50px;
  }
  
  /* main_notice */
  #main-content .main_notice .section_title {
    margin-left: 20px;
  }

  .main_notice {
    position: static;
    transform: none;
    padding-top: 20px;
  }
  
  .main_notice:has(.right.box_style),
  .main_notice.lg_after:has(.right.box_style) {
    margin-top: 40px;
    padding-top: 0;
  }

  .main_notice .left {
    width: 50%;
  }

  .main_notice .right .right_title .right_btn .right_btn_wrap {
    margin-left: 0;
  }

  .main_notice .right .right_title .right_btn .right_btn_wrap .btn {
    font-size: 19px;
  }

  .main_notice .right .right_contents .tab_panel {
    flex-wrap: wrap;
    margin-left: 0;
  }

  .main_notice .right .right_contents .tab_panel>li {
    width: 100%;
  }

  .main_notice .right .right_contents .tab_panel>li .text {
    font-size: 16px;
  }

  /* 통합 검색 영역 */
  #main-content .main_search {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 20px auto;

    width: 100%;
    margin-bottom: 0;
    margin-top: 0;
  }
  
  .content-area.main .main_search #mainSearchBox {
    width: 100%;
    max-width: unset;
  }
  
   #main-content .content-area.main:has(.my_work.grid_style) .main_search {
    margin: 0 auto 20px;
  }
  
  .content-area.main:has(.my_work.grid_style) .main_search #mainSearchBox {
    max-width: 100%;
  }
  
   .main_search .search_wr {
    height: 65px;
    padding-left: 20px;
  }

  .main_search .search_title .title_txt {
    display: none;
  }

  .main_search .custom-input {
    font-size: 1rem;
  }
  
   .main_search .main_search_btn {
    width: 42px;
    height: 42px;
    min-width: 42px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
    /* "조회" 글자 숨김 */
    justify-content: center;
    gap: 0;
  }
  
  .main_search .main_search_btn img {
    width: 20px;
    height: 20px;
    margin: 0;
  }
}

@media (max-width: 1024px) {
  /* main-content */
  .content-area.main .main_menu .menu_list {
    padding: 0;
  }
}

@media (max-width: 860px) {
  /* main-content */
  .content-area.main .my_work.grid_style {
    padding: 20px;
  }

  .content-area.main .my_work.grid_style .work_cont .list_wrap[data-count='1'] {
    grid-template-columns: repeat(1, 1fr);
  }

  .content-area.main .my_work.grid_style .work_cont .list_wrap[data-count='2'],
  .content-area.main .my_work.grid_style .work_cont .list_wrap[data-count='3'],
  .content-area.main .my_work.grid_style .work_cont .list_wrap[data-count='4'] {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
   /* main-content */
  .content-area.main {
    border-radius: 0;
    height: auto;
  }

  .content-area.main .my_work {
    flex-direction: column;
    width: 100%;
  }

  .content-area.main .my_work .work_title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    padding-left: 40px;
  }

  .content-area.main .my_work .work_title h2 {
    margin-bottom: 0;
  }
  
  .content-area.main .my_work .work_cont {
    width: 100%;
  }

  .content-area.main .my_work .work_cont .list_wrap {
    border: none;
    margin-top: 0;
    padding-left: 0;
  }
  
    /* 추가 s */
  .content-area.main .my_work .work_cont .list_wrap .list {
    max-width: none;
  }

   /* main_notice */
  .main_notice {
    transform: none;
    padding-top: 20px;
  }

  .main_notice .inner {
    flex-direction: column;
  }

  .main_notice .left {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .main_notice .service_popup {
    min-width: auto;
  }

  .main_notice .count_wrap {
    margin-left: 15px;
  }

  .main_notice .count_wrap::after {
    left: -15px;
  }

  .main_notice .right .right_title {
    flex-direction: column;
    align-items: center;
  }

  .main_notice .right.box_style .right_contents {
    padding: 1rem;
  }
  
.main_notice .right.box_style .right_contents .tab_panel {
    gap: 1rem;
  }
  
.main_notice .right.box_style .right_contents .tab_panel > li {
  width: 100%;
  flex: unset;
}

  /* 통합 검색 영역 */
 #main-content .main_search {
    padding: 0;
  }

@media (max-width: 665px) {

  /* main-content */
  .content-area.main .main_menu .menu_list>li a .image {
    width: 60px;
    height: 60px;
    border-radius: 15px;
  }

  .content-area.main .main_menu .menu_list>li a .image img {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
  }

  .content-area.main .main_menu .menu_list>li:nth-child(2) .menu_name {
    display: block;
    width: 63px;
    text-align: center;
    line-height: 1.2;
  }

  .content-area.main .main_menu .menu_list>li:nth-child(3) .menu_name {
    display: block;
    width: 65px;
    text-align: center;
    line-height: 1.2;
  }

  .content-area.main .main_menu .menu_list {
    padding: 0 10px;
    gap: 15px;
  }

  #main-content:has(.right.box_style) .main_menu .menu_list > li:nth-child(2) .menu_name,
  #main-content:has(.right.box_style) .main_menu .menu_list > li:nth-child(3) .menu_name {
    width: unset;
    line-height: inherit;
  }
}

@media (max-width: 600px) {
  /* main-content */
  .content-area.main .my_work.grid_style .work_cont .list_wrap[data-count='2'],
  .content-area.main .my_work.grid_style .work_cont .list_wrap[data-count='3'],
  .content-area.main .my_work.grid_style .work_cont .list_wrap[data-count='4'] {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 580px) {
  /* 통합 검색 영역 */
  .main_search .search_wr {
    height: 55px;
    border-radius: 25px;
    padding: 4px 4px 4px 15px;
  }

  .main_search .search_title {
    display: none;
  }

  .main_search .custom-input {
    font-weight: 500;
    padding-left: 0;
  }

  .main_search .custom-input::placeholder {
    font-size: 0.9rem;
  }
}

@media (max-width: 500px) {

  .section_title {
    font-size: 24px;
  }

  .content-area.main .my_work .work_cont .list_wrap .list>a .list_name {
    font-size: 17px;
  }

  .content-area.main .main_menu .menu_list {
    flex-direction: column;
  }
  
  .content-area.main .main_menu .menu_list > li {
    width: 100%;
  }

  .content-area.main .main_menu .menu_list>li a {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff30 50%, #ffffff 100%);
    box-shadow: 0 5px 15px rgb(47, 96, 102, 10%);
    padding: 10px 0;
    border-radius: 10px 20px;
  }

  .content-area.main .main_menu .menu_list>li a .image {
    background: none;
    box-shadow: none;
    border-radius: 0;
    margin-bottom: 0;
    padding: 10px 0;
  }

  .content-area.main .main_menu .menu_list>li a .image img {
    margin-bottom: 0;
  }

  .content-area.main .main_menu .menu_list>li a .menu_name {
    font-size: 17px;
  }

  .content-area.main .main_menu .menu_list>li:nth-child(2) .menu_name,
  .content-area.main .main_menu .menu_list>li:nth-child(3) .menu_name {
    width: auto;
  }


  /* main_notice */
  .main_notice .section_title {
    margin-left: 0;
  }

  .main_notice .right .right_contents .tab_panel {
    margin-left: 0;
  }

  .main_notice .right .right_title .right_btn .right_btn_wrap .btn {
    font-size: 17px;
  }

  .main_notice .popup_slide_control {
    padding: 12px 15px 10px 0;
    gap: 30px;
    width: auto;
  }

  .main_notice .btn_wrap .control_btn {
    width: 22px;
    height: 22px;
  }

  .main_notice .btn_wrap::after {
    right: -42px;
  }

  .main_notice .count_wrap::after {
    top: -42px;
  }

  .main_notice .count_wrap .count_text {
    font-size: 14px;
  }

@media (max-width: 400px) {
  /* main_notice */
  .main_notice .right.box_style .right_title .right_btn .right_btn_wrap .btn {
    padding: 0 14px;
    height: 2.5rem;
    line-height: 1.3;
    border-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  
  .main_notice .right.box_style .right_title .right_btn .right_btn_wrap .btn.active::after {
    width: 4px;
    height: 4px;
    right: 8px;
  }

  .main_notice .right.box_style .right_contents .tab_panel > li a {
    height: auto;
    padding: 20px 20px 23px 20px;
    padding-bottom: 0;
  }

  .main_notice .count_wrap {
    margin-left: 10px;
  }

  .main_notice .popup_slide_control {
    gap: 15px;
  }
}

@media (max-width: 380px) {
  /* main-content */
  #main-content {
    margin-bottom: 50px;
  }

  .content-area.main .my_work .work_title h2 {
    font-size: 18px;
    white-space: nowrap;
  }

  .content-area.main .my_work .work_title .logout {
    font-size: 14px;
    padding: 4px 8px;
  }

  .content-area.main .my_work .work_cont .list_wrap .list>a {
    gap: 8px;
  }

  .content-area.main .my_work .work_cont .list_wrap .list>a .list_right .count>p {
    font-size: 15px;
    width: 25px;
    height: 25px;
    line-height: 25px;
  }

  .content-area.main .my_work .work_cont .list_wrap .list>a .list_name {
    font-size: 14px;
  }


  .content-area.main .main_menu .menu_list>li a .menu_name {
    font-size: 14px;
  }
  
  .content-area.main .my_work .work_cont .list_wrap .list > a .list_right .count > p {
    font-size: 14px;
    width: 25px;
    height: 25px;
    line-height: 25px;
  }

  /* main_notice */
  .main_notice {
    padding-top: 20px;
  }

  .main_notice .popup_slide_control {
    padding: 5px 15px 5px 0;
  }

  .main_notice .btn_wrap::after,
  .main_notice .count_wrap::after {
    width: 25px;
    height: 25px;
  }

  .main_notice .btn_wrap::after {
    right: -34px;
    bottom: -7px;
  }

  .main_notice .count_wrap::after {
    top: -29px;
    left: -15px;
  }

  .main_notice .right .right_title .right_btn .right_btn_wrap .btn {
    font-size: 15px;
    padding: 0 4px;
  }

  .main_notice .view_img,
  .main_notice .view_img2 {
    border-radius: 25px;
  }

@media (max-width: 320px) {
  /* main_notice */
  .main_notice .right.box_style .right_title .right_btn .right_btn_wrap .btn {
    padding: 0 10px;
  }

  .main_notice .right.box_style .right_title .right_btn .right_btn_wrap .btn.active::after {
    display: none;
  }
}